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,STOLEN,2389,"{'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 -2398,12387,GO-20161661185,THEFT UNDER - BICYCLE,2016-09-18,2016,September,Sunday,18,262,13,2016-09-18,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2399,12496,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,9,2016-09-28,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2400,12497,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,9,2016-09-28,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2401,12498,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,9,2016-09-28,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2402,12499,GO-20161724702,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,9,2016-09-28,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2403,12635,GO-20161854121,THEFT OF EBIKE UNDER $5000,2016-10-16,2016,October,Sunday,16,290,16,2016-10-18,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2404,13535,GO-2020655727,THEFT UNDER - BICYCLE,2020-03-31,2020,March,Tuesday,31,91,17,2020-04-03,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2405,13596,GO-20202136551,THEFT OF EBIKE UNDER $5000,2020-11-06,2020,November,Friday,6,311,16,2020-11-10,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2406,14658,GO-20179008736,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,20,2017-06-23,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2407,14697,GO-20179013083,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,8,2017-08-22,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2408,14757,GO-20189002911,THEFT UNDER,2018-01-29,2018,January,Monday,29,29,1,2018-01-29,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2409,14769,GO-20189009915,THEFT UNDER - BICYCLE,2018-03-28,2018,March,Wednesday,28,87,8,2018-03-29,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2410,14919,GO-20149004003,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,18,2014-06-11,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2411,14939,GO-20159000092,THEFT UNDER,2014-12-23,2014,December,Tuesday,23,357,11,2015-01-06,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2412,15003,GO-20161040489,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,17,2016-06-15,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2413,15015,GO-20161390409,PROPERTY - FOUND,2016-07-24,2016,July,Sunday,24,206,15,2016-08-07,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2414,15020,GO-20169008826,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,15,2016-08-15,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2415,15029,GO-20169010580,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,9,2016-09-17,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2416,15047,GO-2017823525,THEFT OVER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,15,2017-05-10,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2417,16795,GO-20199031111,THEFT UNDER - BICYCLE,2019-09-20,2019,September,Friday,20,263,19,2019-09-23,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2418,16804,GO-20192459679,THEFT OF EBIKE UNDER $5000,2019-12-21,2019,December,Saturday,21,355,18,2019-12-21,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2419,16826,GO-20209017984,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,0,2020-07-19,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2420,17726,GO-20179014791,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,17,2017-09-14,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2421,17736,GO-20179015165,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,18,2017-09-19,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2422,17785,GO-20189002161,THEFT UNDER - BICYCLE,2018-01-05,2018,January,Friday,5,5,12,2018-01-23,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2423,17921,GO-20149003576,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,12,2014-05-26,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2424,17925,GO-20149003949,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,23,2014-06-10,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2425,17931,GO-20149004666,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,11,2014-07-03,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2426,17950,GO-20143052917,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,0,2014-10-06,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2427,17986,GO-20151413794,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,9,2015-08-17,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2428,17995,GO-20159007244,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,7,2015-09-15,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2429,18001,GO-20159009073,THEFT UNDER,2015-10-23,2015,October,Friday,23,296,15,2015-10-27,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2430,18006,GO-20159010225,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,9,2015-11-26,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2431,18007,GO-20152104230,THEFT UNDER,2015-12-06,2015,December,Sunday,6,340,11,2015-12-08,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2432,18008,GO-20152104230,THEFT UNDER,2015-12-06,2015,December,Sunday,6,340,11,2015-12-08,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2433,18033,GO-20169008008,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,23,2016-08-01,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2434,18052,GO-20169011425,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,17,2016-10-01,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2435,19989,GO-20189034693,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,11,2018-10-19,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2436,19990,GO-20189034693,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,11,2018-10-19,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2437,20044,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,2429,"{'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 -2438,20093,GO-20201170461,THEFT OVER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,13,2020-06-25,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2439,20094,GO-20201170461,THEFT OVER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,13,2020-06-25,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2440,2210,GO-2018745099,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,9,2018-04-26,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2441,20130,GO-20209026704,THEFT UNDER,2020-10-15,2020,October,Thursday,15,289,17,2020-10-16,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2442,21241,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,UK,,OT,21,BLK,0.0,STOLEN,2435,"{'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 -2443,21242,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,2436,"{'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 -2444,22029,GO-20149005582,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,14,2014-08-04,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2445,22079,GO-20159006320,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,22,2015-08-23,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2446,22104,GO-2016975755,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,23,2016-06-05,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2447,22121,GO-20169008230,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,8,2016-08-04,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2448,22131,GO-20169010805,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,7,2016-09-20,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2449,22149,GO-20179005869,THEFT UNDER - BICYCLE,2017-05-06,2017,May,Saturday,6,126,23,2017-05-07,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2450,23320,GO-20209012457,THEFT UNDER - BICYCLE,2019-11-19,2019,November,Tuesday,19,323,18,2020-05-04,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2451,23370,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,G1,SC,3,,1599.0,STOLEN,2444,"{'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 -2452,17984,GO-20151338398,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,9,2015-08-05,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2453,2222,GO-2018771233,THEFT UNDER - BICYCLE,2018-04-16,2018,April,Monday,16,106,16,2018-04-30,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2454,24487,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,CCM,,MT,1,SILYEL,250.0,STOLEN,2447,"{'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 -2455,17992,GO-20159006964,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,8,2015-09-09,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2456,17999,GO-20159008900,THEFT UNDER,2015-10-20,2015,October,Tuesday,20,293,11,2015-10-22,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2457,18019,GO-2016681663,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,14,2016-04-21,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2458,18020,GO-2016694561,THEFT UNDER - BICYCLE,2016-04-23,2016,April,Saturday,23,114,11,2016-04-23,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2459,18024,GO-2016923813,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,17,2016-05-28,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2460,18028,GO-20169006178,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,8,2016-06-22,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2461,18044,GO-20169008923,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,11,2016-08-17,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2462,18049,GO-20169010002,THEFT UNDER - BICYCLE,2016-09-05,2016,September,Monday,5,249,12,2016-09-05,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2463,18061,GO-20169013344,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,18,2016-11-13,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2464,18093,GO-20179010307,THEFT UNDER,2017-07-12,2017,July,Wednesday,12,193,21,2017-07-15,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2465,20072,GO-20199030557,THEFT UNDER - BICYCLE,2019-09-18,2019,September,Wednesday,18,261,7,2019-09-18,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2466,20081,GO-20199038375,THEFT UNDER - BICYCLE,2019-11-05,2019,November,Tuesday,5,309,22,2019-11-21,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2467,20091,GO-20209015681,THEFT UNDER - BICYCLE,2020-06-16,2020,June,Tuesday,16,168,21,2020-06-19,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2468,20122,GO-20209023036,THEFT UNDER - BICYCLE,2020-09-04,2020,September,Friday,4,248,10,2020-09-12,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2469,20127,GO-20209025414,THEFT UNDER - BICYCLE,2020-10-01,2020,October,Thursday,1,275,11,2020-10-04,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2470,21188,GO-20171315978,THEFT OF EBIKE UNDER $5000,2017-07-21,2017,July,Friday,21,202,22,2017-07-22,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2471,21269,GO-20189014907,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,14,2018-05-14,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2472,22017,GO-20142330656,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,9,2014-06-20,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2473,22048,GO-2015535675,THEFT UNDER,2014-03-15,2014,March,Saturday,15,74,9,2015-03-31,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2474,22101,GO-2016644191,THEFT UNDER - BICYCLE,2016-04-15,2016,April,Friday,15,106,16,2016-04-15,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2475,22112,GO-20169006554,THEFT UNDER - BICYCLE,2016-06-02,2016,June,Thursday,2,154,10,2016-06-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2476,22116,GO-20161276835,PROPERTY - FOUND,2016-07-20,2016,July,Wednesday,20,202,21,2016-07-20,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2477,22128,GO-20169010437,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,19,2016-09-14,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2478,22132,GO-20169011366,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,18,2016-09-30,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2479,22138,GO-201744884,THEFT UNDER - BICYCLE,2016-10-08,2016,October,Saturday,8,282,18,2017-01-08,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2480,23233,GO-20189043505,THEFT UNDER - BICYCLE,2018-12-18,2018,December,Tuesday,18,352,13,2018-12-28,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2481,23262,GO-20199018157,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,4,2019-06-11,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2482,23291,GO-20199023597,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,15,2019-07-24,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2483,23313,GO-2020521419,THEFT UNDER - BICYCLE,2020-03-12,2020,March,Thursday,12,72,8,2020-03-12,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2484,23359,GO-20209024558,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,16,2020-09-25,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2485,24202,GO-20179011757,THEFT UNDER,2017-08-02,2017,August,Wednesday,2,214,14,2017-08-05,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2486,24417,GO-20149003571,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,8,2014-05-25,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2487,24445,GO-20159000474,THEFT UNDER,2015-01-22,2015,January,Thursday,22,22,0,2015-01-26,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2488,24446,GO-20159001581,THEFT UNDER,2014-12-31,2014,December,Wednesday,31,365,9,2015-03-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2489,24520,GO-2016850481,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,15,2016-05-17,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2490,24521,GO-20169004948,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,18,2016-05-25,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2491,24529,GO-20169007659,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,3,2016-07-24,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2492,24540,GO-20161486915,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,19,2016-08-25,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2493,24548,GO-20161809705,THEFT UNDER,2016-10-11,2016,October,Tuesday,11,285,13,2016-10-11,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2494,24559,GO-20169014676,THEFT UNDER,2016-12-10,2016,December,Saturday,10,345,9,2016-12-14,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2495,24563,GO-2017211212,THEFT UNDER - BICYCLE,2017-02-02,2017,February,Thursday,2,33,20,2017-02-03,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2496,24568,GO-20179005696,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,18,2017-05-03,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2497,24582,GO-20179009671,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,20,2017-07-07,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2498,505,GO-2017955008,THEFT FROM MOTOR VEHICLE UNDER,2017-05-29,2017,May,Monday,29,149,22,2017-05-30,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2499,1235,GO-20179013180,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,22,2017-08-23,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2500,3578,GO-20189032383,THEFT UNDER - BICYCLE,2018-09-29,2018,September,Saturday,29,272,19,2018-09-29,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2501,4278,GO-20199015090,THEFT UNDER,2019-05-14,2019,May,Tuesday,14,134,17,2019-05-15,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2502,4980,GO-20191487398,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,22,2019-08-06,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2503,5809,GO-202043193,THEFT UNDER - BICYCLE,2020-01-01,2020,January,Wednesday,1,1,15,2020-01-07,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2504,5853,GO-20209003158,THEFT UNDER - BICYCLE,2019-12-29,2019,December,Sunday,29,363,10,2020-01-27,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2505,5854,GO-20209003158,THEFT UNDER - BICYCLE,2019-12-29,2019,December,Sunday,29,363,10,2020-01-27,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2506,5862,GO-20209003557,THEFT UNDER - BICYCLE,2020-01-12,2020,January,Sunday,12,12,10,2020-01-29,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2507,5936,GO-20209007287,THEFT UNDER - BICYCLE,2019-01-02,2019,January,Wednesday,2,2,0,2020-02-28,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2508,6370,GO-20209015273,THEFT UNDER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,11,2020-06-12,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2509,7380,GO-20209024539,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,17,2020-09-25,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2510,8109,GO-20142276510,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,15,2014-06-12,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2511,8599,GO-20149005685,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,21,2014-08-06,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2512,10495,GO-20151621216,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,14,2015-09-19,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2513,11323,GO-20169004622,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,14,2016-05-17,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2514,11327,GO-20169004622,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,14,2016-05-17,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2515,11381,GO-2016896161,FRAUD OVER,2016-05-10,2016,May,Tuesday,10,131,0,2016-05-24,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2516,11480,GO-20161005679,THEFT UNDER - BICYCLE,2016-05-19,2016,May,Thursday,19,140,12,2016-06-09,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2517,11602,GO-20169006145,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,15,2016-06-21,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2518,13495,GO-20191047208,THEFT UNDER - BICYCLE,2019-06-06,2019,June,Thursday,6,157,23,2019-06-07,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2519,13587,GO-20209024539,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,17,2020-09-25,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2520,13818,GO-20181731545,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,12,2018-09-18,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2521,14666,GO-20171212622,THEFT UNDER,2017-07-06,2017,July,Thursday,6,187,14,2017-07-07,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2522,14920,GO-20149004026,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,15,2014-06-12,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2523,15032,GO-20169010785,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,21,2016-09-20,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2524,16787,GO-20191515403,THEFT UNDER - BICYCLE,2019-08-10,2019,August,Saturday,10,222,17,2019-08-10,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2525,17934,GO-20142525437,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,21,2014-07-18,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2526,17956,GO-20159001678,THEFT UNDER,2015-03-31,2015,March,Tuesday,31,90,18,2015-04-02,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2527,17987,GO-20159006046,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,21,2015-08-19,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2528,18014,GO-2016437878,THEFT UNDER - BICYCLE,2016-03-13,2016,March,Sunday,13,73,14,2016-03-13,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2529,18072,GO-20179007261,THEFT FROM MOTOR VEHICLE UNDER,2017-05-30,2017,May,Tuesday,30,150,0,2017-05-30,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2530,20062,GO-20191404413,MISCHIEF UNDER,2019-07-25,2019,July,Thursday,25,206,17,2019-07-30,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2531,20107,GO-20201362364,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,11,2020-07-22,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2532,20108,GO-20201362364,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,11,2020-07-22,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2533,22030,GO-20149005614,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,19,2014-08-04,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2534,22100,GO-20169003408,THEFT UNDER - BICYCLE,2016-04-14,2016,April,Thursday,14,105,7,2016-04-14,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2535,22127,GO-20161571658,THEFT UNDER - BICYCLE,2016-09-04,2016,September,Sunday,4,248,16,2016-09-04,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2536,22159,GO-20179008949,THEFT FROM MOTOR VEHICLE UNDER,2017-06-26,2017,June,Monday,26,177,6,2017-06-26,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2537,23199,GO-20189029070,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,15,2018-09-04,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2538,23288,GO-20199022590,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,21,2019-07-16,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2539,23330,GO-20209015716,THEFT UNDER - BICYCLE,2020-06-18,2020,June,Thursday,18,170,19,2020-06-19,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2540,23593,GO-20189028645,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,22,2018-08-31,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2541,24464,GO-20159004628,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,16,2015-07-16,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2542,24490,GO-20159007672,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,19,2015-09-24,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2543,24512,GO-2016630597,THEFT UNDER - BICYCLE,2016-04-13,2016,April,Wednesday,13,104,6,2016-04-13,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2544,24519,GO-20169004622,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,14,2016-05-17,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2545,24547,GO-20169010785,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,21,2016-09-20,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)}",Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -2546,2645,GO-20189019761,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,16,2018-06-22,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2547,24504,GO-201631967,THEFT UNDER,2015-12-03,2015,December,Thursday,3,337,10,2016-01-06,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2548,24271,GO-20189000546,THEFT UNDER - BICYCLE,2017-12-01,2017,December,Friday,1,335,12,2018-01-08,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2549,2394,GO-20189016242,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,3,2018-05-25,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2550,23378,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,X18001,EL,3,,3199.0,STOLEN,2542,"{'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 -2551,24195,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,,189.0,STOLEN,2543,"{'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 -2552,24204,GO-20171429688,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,11,2017-08-08,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2553,24211,GO-20179012597,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,3,2017-08-16,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2554,24232,GO-20179015334,THEFT UNDER,2017-09-15,2017,September,Friday,15,258,8,2017-09-21,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2555,24237,GO-20171741014,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,12,2017-09-25,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2556,24239,GO-20171820459,THEFT UNDER,2017-10-06,2017,October,Friday,6,279,23,2017-10-07,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2557,24308,GO-20189015383,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,9,2018-05-18,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2558,24311,GO-20189018658,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,8,2018-06-14,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2559,24344,GO-20189022981,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,19,2018-07-18,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2560,24419,GO-20149003866,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,1,2014-06-07,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2561,24430,GO-20142553406,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,18,2014-07-23,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2562,24435,GO-20142848085,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,9,2014-09-05,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2563,24451,GO-20159002912,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,20,2015-05-19,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2564,24472,GO-20151342021,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,20,2015-08-05,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2565,24545,GO-20169010701,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,9,2016-09-19,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2566,24553,GO-20169013102,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,16,2016-11-07,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2567,24573,GO-2017942524,THEFT OVER - BICYCLE,2017-05-26,2017,May,Friday,26,146,11,2017-05-28,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2568,24574,GO-2017942524,THEFT OVER - BICYCLE,2017-05-26,2017,May,Friday,26,146,11,2017-05-28,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2569,24575,GO-2017950220,B&E,2017-05-29,2017,May,Monday,29,149,10,2017-05-29,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2570,24586,GO-20179010532,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,11,2017-07-19,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)}",Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -2571,92,GO-20179002060,THEFT UNDER - BICYCLE,2016-06-02,2016,June,Thursday,2,154,21,2017-02-16,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2572,279,GO-20179005239,THEFT OVER - BICYCLE,2017-04-26,2017,April,Wednesday,26,116,17,2017-04-26,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2573,388,GO-20179006296,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,10,2017-05-13,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2574,583,GO-20171030741,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,10,2017-06-12,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2575,800,GO-20179009671,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,20,2017-07-07,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2576,806,GO-20171225215,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,18,2017-07-08,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2577,1258,GO-20179013514,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,8,2017-08-28,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2578,1490,GO-20179013514,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,8,2017-08-28,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2579,1632,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,800.0,STOLEN,2572,"{'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 -2580,1721,GO-20179017916,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,22,2017-10-23,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2581,2329,GO-20189015218,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,20,2018-05-16,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2582,2794,GO-20189021779,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-07-09,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2583,2468,GO-20189017474,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,23,2018-06-05,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2584,3350,GO-20189028413,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,19,2018-08-29,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2585,24560,GO-20162278040,THEFT UNDER - BICYCLE,2016-12-20,2016,December,Tuesday,20,355,6,2016-12-24,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2586,4455,GO-20199018157,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,4,2019-06-11,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2587,5175,GO-20199027815,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,10,2019-08-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2588,5717,GO-20199038341,THEFT UNDER - BICYCLE,2019-11-07,2019,November,Thursday,7,311,22,2019-11-21,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2589,3308,GO-20189027735,THEFT FROM MOTOR VEHICLE UNDER,2018-08-24,2018,August,Friday,24,236,3,2018-08-24,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2590,5779,GO-20199041761,THEFT UNDER - BICYCLE,2019-12-16,2019,December,Monday,16,350,17,2019-12-22,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2591,6035,GO-20209010652,THEFT UNDER,2020-04-05,2020,April,Sunday,5,96,18,2020-04-07,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2592,6036,GO-20209010652,THEFT UNDER,2020-04-05,2020,April,Sunday,5,96,18,2020-04-07,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2593,6335,GO-20209014880,THEFT UNDER - BICYCLE,2020-06-08,2020,June,Monday,8,160,14,2020-06-08,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2594,6363,GO-20209015142,THEFT UNDER - BICYCLE,2020-06-05,2020,June,Friday,5,157,17,2020-06-11,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2595,6851,GO-20201450300,ROBBERY - MUGGING,2020-08-03,2020,August,Monday,3,216,1,2020-08-04,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2596,7159,GO-20209022094,THEFT FROM MOTOR VEHICLE UNDER,2020-08-26,2020,August,Wednesday,26,239,20,2020-09-02,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2597,7204,GO-20209022592,THEFT UNDER - BICYCLE,2020-09-05,2020,September,Saturday,5,249,19,2020-09-08,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2598,7259,GO-20201754739,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,3,2020-09-16,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2599,8457,GO-20149005129,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,18,2014-07-19,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2600,9001,GO-20143020137,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,20,2014-10-01,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2601,9713,GO-20159003282,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,8,2015-06-02,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2602,10064,GO-20159004809,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,15,2015-07-21,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2603,10186,GO-20159005404,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,16,2015-08-04,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2604,10245,GO-20151369081,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,23,2015-08-10,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2605,10357,GO-20159006438,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,8,2015-08-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2606,10478,GO-20151610370,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,10,2015-09-17,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2607,10956,GO-20169000943,THEFT UNDER,2016-01-25,2016,January,Monday,25,25,1,2016-01-29,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2608,10957,GO-20169000943,THEFT UNDER,2016-01-25,2016,January,Monday,25,25,1,2016-01-29,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2609,11181,GO-2016695430,THEFT UNDER - BICYCLE,2016-04-23,2016,April,Saturday,23,114,13,2016-04-23,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2610,11189,GO-20169003756,THEFT UNDER - BICYCLE,2016-04-23,2016,April,Saturday,23,114,11,2016-04-23,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2611,11263,GO-20169004214,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,9,2016-05-06,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2612,11302,GO-2016823327,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,13,2016-05-13,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2613,11370,GO-2016903344,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,18,2016-05-25,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2614,11485,GO-20161010119,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,10,2016-06-10,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2615,11528,GO-20169005780,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,7,2016-06-14,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2616,11556,GO-20161051814,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,15,2016-06-16,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2617,11621,GO-20169006269,THEFT UNDER,2016-06-21,2016,June,Tuesday,21,173,15,2016-06-21,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2618,9958,GO-20151147286,B&E,2015-07-05,2015,July,Sunday,5,186,17,2015-07-07,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2619,11884,GO-20169007659,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,3,2016-07-24,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2620,12052,GO-20169008534,THEFT UNDER,2016-08-03,2016,August,Wednesday,3,216,15,2016-08-10,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2621,12053,GO-20169008534,THEFT UNDER,2016-08-03,2016,August,Wednesday,3,216,15,2016-08-10,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2622,12086,GO-20169008725,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,10,2016-08-14,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2623,12105,GO-20169008818,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,19,2016-08-15,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2624,12187,GO-20161507678,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,19,2016-08-25,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2625,12253,GO-20169009927,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,1,2016-09-03,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2626,12254,GO-20169009927,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,1,2016-09-03,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2627,12335,GO-20169010397,THEFT UNDER - BICYCLE,2016-09-13,2016,September,Tuesday,13,257,8,2016-09-13,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2628,12467,GO-20161717814,THEFT UNDER - BICYCLE,2016-09-27,2016,September,Tuesday,27,271,10,2016-09-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2629,12475,GO-20169011212,THEFT UNDER - BICYCLE,2016-09-27,2016,September,Tuesday,27,271,14,2016-09-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2630,12626,GO-20169012115,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,16,2016-10-15,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2631,12771,GO-20169013496,THEFT UNDER - BICYCLE,2016-11-15,2016,November,Tuesday,15,320,6,2016-11-16,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2632,13515,GO-20199026353,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,13,2019-08-15,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2633,13826,GO-20181745977,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,17,2018-09-20,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2634,14750,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,2627,"{'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 -2635,14751,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,ONG,450.0,STOLEN,2628,"{'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 -2636,14799,GO-20189018318,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,9,2018-06-12,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2637,14970,GO-20159005722,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,14,2015-08-13,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2638,14972,GO-20159005959,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,15,2015-08-18,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2639,14993,GO-20169003882,THEFT UNDER - BICYCLE,2016-04-27,2016,April,Wednesday,27,118,17,2016-04-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2640,14994,GO-20169004046,THEFT UNDER - BICYCLE,2016-03-14,2016,March,Monday,14,74,19,2016-05-02,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2641,15010,GO-20169007695,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,20,2016-07-25,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2642,15023,GO-20169009230,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,19,2016-08-22,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2643,15028,GO-20169010437,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,19,2016-09-14,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2644,16791,GO-20199027815,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,10,2019-08-27,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2645,16798,GO-20199034691,THEFT UNDER,2019-10-12,2019,October,Saturday,12,285,1,2019-10-21,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)}",Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -2646,4460,GO-20199018250,THEFT UNDER - BICYCLE,2019-06-11,2019,June,Tuesday,11,162,20,2019-06-11,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2647,4535,GO-20199019157,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,18,2019-06-18,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2648,6018,GO-2020665264,THEFT UNDER,2020-03-24,2020,March,Tuesday,24,84,10,2020-04-05,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2649,6019,GO-2020665264,THEFT UNDER,2020-03-24,2020,March,Tuesday,24,84,10,2020-04-05,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2650,6020,GO-2020665264,THEFT UNDER,2020-03-24,2020,March,Tuesday,24,84,10,2020-04-05,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2651,6828,GO-20201432352,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-01,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2652,6836,GO-20201432352,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-01,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2653,11011,GO-2016326544,THEFT UNDER,2016-02-21,2016,February,Sunday,21,52,12,2016-02-24,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2654,6837,GO-20201432352,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-01,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2655,6839,GO-20201440605,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-02,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2656,6840,GO-20201440605,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-02,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2657,6845,GO-20201441362,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-03,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2658,6846,GO-20201441362,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-03,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2659,6848,GO-20201432352,B&E,2020-08-01,2020,August,Saturday,1,214,4,2020-08-01,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2660,7019,GO-20201574270,THEFT UNDER - BICYCLE,2020-08-21,2020,August,Friday,21,234,2,2020-08-21,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2661,7023,GO-20209020875,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,12,2020-08-21,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2662,7082,GO-20201608090,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,23,2020-08-26,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2663,7206,GO-20209022646,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,15,2020-09-08,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2664,7733,GO-20141291713,PROPERTY - LOST,2014-01-05,2014,January,Sunday,5,5,21,2014-01-06,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2665,8472,GO-20142533672,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,13,2014-07-20,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2666,8515,GO-20142588104,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,12,2014-07-28,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2667,8747,GO-20149006215,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,23,2014-08-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2668,9202,GO-20143375378,THEFT UNDER,2014-11-25,2014,November,Tuesday,25,329,17,2014-11-26,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2669,9304,GO-2015296948,B&E,2015-02-18,2015,February,Wednesday,18,49,4,2015-02-19,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2670,9519,GO-2015736724,B&E,2015-05-03,2015,May,Sunday,3,123,22,2015-05-03,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2671,9578,GO-2015797209,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,19,2015-05-13,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2672,9625,GO-20159002973,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,12,2015-05-21,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2673,9626,GO-20159002973,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,12,2015-05-21,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2674,9801,GO-20151002306,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,12,2015-06-15,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2675,10323,GO-20151476589,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,13,2015-08-27,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2676,10324,GO-20151476589,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,13,2015-08-27,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2677,10380,GO-20151451156,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,12,2015-08-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2678,10381,GO-20151451156,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,12,2015-08-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2679,10437,GO-20151544906,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,15,2015-09-07,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2680,10878,GO-20152125502,THEFT UNDER,2015-12-10,2015,December,Thursday,10,344,13,2015-12-11,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2681,11264,GO-2016776634,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,18,2016-05-06,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2682,11469,GO-20169005463,THEFT UNDER - BICYCLE,2016-06-07,2016,June,Tuesday,7,159,8,2016-06-08,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2683,11525,GO-20161038240,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,8,2016-06-14,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2684,2641,GO-20189019665,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,23,2018-06-21,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2685,11526,GO-20161038240,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,8,2016-06-14,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2686,11924,GO-20169007785,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,16,2016-07-26,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2687,12045,GO-20169008494,THEFT UNDER,2016-08-09,2016,August,Tuesday,9,222,9,2016-08-10,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2688,12116,GO-20169008878,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,10,2016-08-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2689,12652,GO-20169012363,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,16,2016-10-20,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2690,12787,GO-20162049881,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,17,2016-11-18,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2691,12818,GO-20162087261,THEFT UNDER - BICYCLE,2016-11-23,2016,November,Wednesday,23,328,13,2016-11-24,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2692,22089,GO-20151657193,PROPERTY - FOUND,2015-09-25,2015,September,Friday,25,268,10,2015-09-25,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2693,13493,GO-20199017335,THEFT UNDER,2019-05-22,2019,May,Wednesday,22,142,17,2019-06-04,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2694,13518,GO-20191661146,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,19,2019-08-30,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2695,13555,GO-20201295733,PROPERTY - FOUND,2020-07-13,2020,July,Monday,13,195,9,2020-07-13,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2696,13838,GO-20181904429,B&E,2018-10-13,2018,October,Saturday,13,286,20,2018-10-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2697,14656,GO-20179008202,THEFT UNDER - BICYCLE,2017-06-15,2017,June,Thursday,15,166,18,2017-06-15,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2698,14787,GO-2018921322,THEFT UNDER,2018-05-09,2018,May,Wednesday,9,129,0,2018-05-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2699,14855,GO-20199021676,THEFT UNDER - BICYCLE,2019-07-04,2019,July,Thursday,4,185,19,2019-07-10,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2700,14878,GO-2020708260,B&E,2020-03-16,2020,March,Monday,16,76,7,2020-04-12,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2701,14880,GO-20209012881,THEFT UNDER,2019-11-04,2019,November,Monday,4,308,8,2020-05-11,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2702,14925,GO-20149004578,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,11,2014-06-30,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2703,14965,GO-20159004433,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,9,2015-07-11,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2704,15007,GO-20169007093,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,22,2016-07-12,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2705,15011,GO-20161308727,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,20,2016-07-25,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2706,15526,GO-20161183150,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,19,2016-07-06,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2707,15633,GO-2018929355,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,16,2018-05-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2708,16838,GO-20209020870,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,12,2020-08-21,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2709,17793,GO-2018355941,THEFT UNDER - BICYCLE,2018-02-24,2018,February,Saturday,24,55,9,2018-02-25,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2710,17965,GO-20159003026,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,12,2015-05-22,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2711,18000,GO-20159008934,THEFT UNDER,2015-10-03,2015,October,Saturday,3,276,19,2015-10-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2712,18011,GO-2016138466,THEFT UNDER,2016-01-22,2016,January,Friday,22,22,15,2016-01-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2713,18086,GO-20171214236,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,9,2017-07-07,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2714,18149,GO-20161621442,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,21,2016-09-12,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2715,18232,GO-20189014885,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,10,2018-05-14,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2716,18254,GO-20191220785,THEFT OF MOTOR VEHICLE,2019-07-01,2019,July,Monday,1,182,5,2019-07-01,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2717,18258,GO-20199028896,THEFT UNDER - BICYCLE,2019-09-04,2019,September,Wednesday,4,247,21,2019-09-05,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2718,18268,GO-20201080656,THEFT FROM MOTOR VEHICLE OVER,2020-06-11,2020,June,Thursday,11,163,21,2020-06-12,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2719,18271,GO-20209015966,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,23,2020-06-23,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2720,18296,GO-20201753269,B&E,2020-09-16,2020,September,Wednesday,16,260,2,2020-09-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2721,18297,GO-20201753269,B&E,2020-09-16,2020,September,Wednesday,16,260,2,2020-09-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2722,18298,GO-20201753269,B&E,2020-09-16,2020,September,Wednesday,16,260,2,2020-09-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2723,18299,GO-20201753269,B&E,2020-09-16,2020,September,Wednesday,16,260,2,2020-09-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2724,18300,GO-20201753269,B&E,2020-09-16,2020,September,Wednesday,16,260,2,2020-09-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2725,18301,GO-20201753269,B&E,2020-09-16,2020,September,Wednesday,16,260,2,2020-09-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2726,18437,GO-20151309537,B&E,2015-06-24,2015,June,Wednesday,24,175,12,2015-07-31,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2727,19986,GO-20189033799,THEFT UNDER,2018-10-05,2018,October,Friday,5,278,11,2018-10-12,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2728,20064,GO-20199024694,THEFT UNDER - BICYCLE,2019-08-01,2019,August,Thursday,1,213,9,2019-08-01,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2729,21553,GO-2020750044,THEFT UNDER - BICYCLE,2020-04-13,2020,April,Monday,13,104,12,2020-04-19,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2730,21898,GO-20151288371,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,16,2015-07-27,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2731,22066,GO-20151154305,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,16,2015-07-08,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2732,22088,GO-20151657193,PROPERTY - FOUND,2015-09-25,2015,September,Friday,25,268,10,2015-09-25,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2733,22091,GO-20159008428,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,16,2015-10-11,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2734,22119,GO-20169008070,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,15,2016-08-03,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2735,23279,GO-20199021026,THEFT UNDER - BICYCLE,2019-07-04,2019,July,Thursday,4,185,15,2019-07-04,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2736,23304,GO-20199030165,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,7,2019-09-16,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2737,23315,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,BLUPNK,,STOLEN,2730,"{'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 -2738,24726,GO-20151233843,B&E,2015-07-12,2015,July,Sunday,12,193,21,2015-07-20,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2739,11024,GO-20169002127,THEFT UNDER - BICYCLE,2016-02-23,2016,February,Tuesday,23,54,3,2016-03-08,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2740,11135,GO-2016637784,THEFT UNDER - BICYCLE,2016-04-14,2016,April,Thursday,14,105,18,2016-04-14,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2741,11506,GO-20169005659,THEFT UNDER,2016-06-10,2016,June,Friday,10,162,4,2016-06-11,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2742,13471,GO-20199008467,THEFT UNDER - BICYCLE,2019-03-10,2019,March,Sunday,10,69,14,2019-03-16,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2743,13792,GO-20189024721,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,13,2018-08-01,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2744,13946,GO-2016327281,THEFT UNDER - BICYCLE,2015-12-30,2015,December,Wednesday,30,364,0,2016-02-24,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2745,13947,GO-2016327281,THEFT UNDER - BICYCLE,2015-12-30,2015,December,Wednesday,30,364,0,2016-02-24,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2746,25320,GO-20171962374,PROPERTY - FOUND,2017-10-30,2017,October,Monday,30,303,6,2017-10-30,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)}",Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -2747,14036,GO-20162171459,THEFT FROM MOTOR VEHICLE UNDER,2016-12-07,2016,December,Wednesday,7,342,15,2016-12-07,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2748,1361,GO-20179014425,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,21,2017-09-10,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2749,16763,GO-20199017975,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,0,2019-06-09,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2750,16786,GO-20199024866,THEFT UNDER - BICYCLE,2019-08-03,2019,August,Saturday,3,215,18,2019-08-03,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2751,16789,GO-20191599385,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,21,2019-08-22,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2752,16790,GO-20191621368,FRAUD UNDER,2019-08-24,2019,August,Saturday,24,236,23,2019-08-25,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2753,16920,GO-2017950415,THEFT UNDER,2017-05-25,2017,May,Thursday,25,145,2,2017-05-29,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2754,16929,GO-20171052422,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,18,2017-06-15,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2755,16930,GO-20179008125,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,21,2017-06-15,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2756,16967,GO-20171457910,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,8,2017-08-13,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2757,16968,GO-20171457910,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,8,2017-08-13,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2758,17075,GO-20189023805,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,23,2018-07-24,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2759,17179,GO-20151756170,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,19,2015-10-11,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2760,17186,GO-20151879054,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,10,2015-11-01,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2761,17203,GO-2016295888,THEFT UNDER,2016-02-18,2016,February,Thursday,18,49,18,2016-02-19,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2762,17204,GO-2016295888,THEFT UNDER,2016-02-18,2016,February,Thursday,18,49,18,2016-02-19,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2763,20185,GO-20171064865,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,23,2017-06-15,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2764,3106,GO-20189025444,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,16,2018-08-07,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2765,2765,GO-20189021342,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,20,2018-07-05,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2766,20221,GO-20171420221,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,16,2017-08-07,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2767,20294,GO-20189013469,THEFT UNDER - BICYCLE,2018-04-27,2018,April,Friday,27,117,18,2018-05-01,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2768,20380,GO-20159002671,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,12,2015-05-12,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2769,20416,GO-20151257655,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,12,2015-07-23,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2770,20875,GO-20142379078,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,20,2014-06-27,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2771,23345,GO-20209019220,THEFT UNDER - BICYCLE,2020-07-31,2020,July,Friday,31,213,17,2020-08-02,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2772,23425,GO-20179008587,PROPERTY - LOST,2017-06-21,2017,June,Wednesday,21,172,17,2017-06-21,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2773,23447,GO-20171333077,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,18,2017-07-25,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2774,23448,GO-20171333077,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,18,2017-07-25,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2775,23458,GO-20179012001,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,15,2017-08-09,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2776,23474,GO-20171755950,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,12,2017-09-27,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2777,23475,GO-20171755950,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,12,2017-09-27,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)}",Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -2778,3130,GO-20181440714,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,9,2018-08-06,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2779,4844,GO-20199023335,THEFT UNDER - BICYCLE,2019-07-23,2019,July,Tuesday,23,204,6,2019-07-23,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2780,6679,GO-20201332166,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,3,2020-07-18,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2781,5884,GO-20209004852,THEFT UNDER - BICYCLE,2020-02-07,2020,February,Friday,7,38,11,2020-02-10,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2782,7107,GO-20201624288,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,1,2020-08-28,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2783,7108,GO-20201624288,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,1,2020-08-28,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2784,8326,GO-20142434865,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,19,2014-07-05,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2785,13540,GO-2020897214,THEFT UNDER - BICYCLE,2020-05-14,2020,May,Thursday,14,135,5,2020-05-15,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2786,13559,GO-20209017816,THEFT UNDER - BICYCLE,2020-07-17,2020,July,Friday,17,199,17,2020-07-17,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2787,14035,GO-20162145516,THEFT UNDER,2016-12-03,2016,December,Saturday,3,338,11,2016-12-03,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2788,20279,GO-20179021127,THEFT FROM MOTOR VEHICLE UNDER,2017-12-01,2017,December,Friday,1,335,0,2017-12-03,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2789,20505,GO-20161155810,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,8,2016-07-02,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2790,23299,GO-20199026859,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,18,2019-08-19,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2791,23306,GO-20199030923,THEFT UNDER - BICYCLE,2019-09-16,2019,September,Monday,16,259,2,2019-09-20,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2792,23333,GO-20209016964,THEFT UNDER - BICYCLE,2020-07-03,2020,July,Friday,3,185,12,2020-07-06,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2793,23422,GO-20171067625,THEFT UNDER,2017-06-13,2017,June,Tuesday,13,164,1,2017-06-15,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)}",Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -2794,353,GO-2017824751,THEFT OVER - BICYCLE,2017-05-04,2017,May,Thursday,4,124,16,2017-05-10,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2795,354,GO-2017824751,THEFT OVER - BICYCLE,2017-05-04,2017,May,Thursday,4,124,16,2017-05-10,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2796,2529,GO-20189018228,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,14,2018-06-11,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2797,3472,GO-20189030500,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,7,2018-09-14,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2798,4514,GO-20199018870,THEFT UNDER - BICYCLE,2019-06-12,2019,June,Wednesday,12,163,9,2019-06-16,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2799,4773,GO-20199022354,THEFT UNDER - BICYCLE,2019-07-07,2019,July,Sunday,7,188,0,2019-07-15,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2800,5396,GO-20199031421,THEFT UNDER - BICYCLE,2019-09-24,2019,September,Tuesday,24,267,7,2019-09-25,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2801,7007,GO-20209020729,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,20,2020-08-19,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2802,8065,GO-20142228953,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,18,2014-06-05,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2803,8358,GO-20149004771,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,13,2014-07-07,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2804,8761,GO-20142800677,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,13,2014-08-29,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2805,8977,GO-20149007213,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,19,2014-09-25,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2806,8978,GO-20149007213,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,19,2014-09-25,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2807,9613,GO-2015836500,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,18,2015-05-19,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2808,9825,GO-20159003714,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,8,2015-06-18,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2809,10455,GO-20159007095,THEFT UNDER,2015-09-12,2015,September,Saturday,12,255,17,2015-09-12,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2810,10525,GO-20159007583,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,12,2015-09-22,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2811,13514,GO-20191519273,THEFT UNDER - BICYCLE,2019-08-05,2019,August,Monday,5,217,12,2019-08-11,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2812,13568,GO-20201427818,THEFT OF EBIKE UNDER $5000,2020-07-29,2020,July,Wednesday,29,211,17,2020-07-31,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2813,13684,GO-20171164669,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,15,2017-06-29,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2814,13819,GO-20189030970,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,16,2018-09-18,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2815,14348,GO-20141719595,THEFT UNDER,2014-03-16,2014,March,Sunday,16,75,9,2014-03-18,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2816,14416,GO-20142954226,PROPERTY - LOST,2014-09-21,2014,September,Sunday,21,264,14,2014-09-21,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2817,16800,GO-20199036015,THEFT UNDER - BICYCLE,2019-10-11,2019,October,Friday,11,284,21,2019-10-31,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2818,16820,GO-20209016335,THEFT UNDER - BICYCLE,2020-06-16,2020,June,Tuesday,16,168,19,2020-06-27,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2819,16839,GO-20209020919,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,15,2020-08-21,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2820,17036,GO-2018960448,B&E W'INTENT,2018-05-19,2018,May,Saturday,19,139,1,2018-05-28,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2821,17037,GO-2018960448,B&E W'INTENT,2018-05-19,2018,May,Saturday,19,139,1,2018-05-28,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2822,17110,GO-20189033604,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,16,2018-10-11,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2823,17135,GO-2015896438,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,8,2015-05-29,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2824,17231,GO-20169005848,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,12,2016-06-15,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2825,20123,GO-20209023689,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,8,2020-09-17,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2826,20129,GO-20209026467,THEFT UNDER - BICYCLE,2020-10-14,2020,October,Wednesday,14,288,14,2020-10-14,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2827,20230,GO-20179013310,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,9,2017-08-25,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2828,20348,GO-20189026409,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,15,2018-08-14,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2829,20408,GO-20151212996,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,0,2015-07-17,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2830,20415,GO-20159004897,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,12,2015-07-23,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2831,20483,GO-2016653898,THEFT UNDER - BICYCLE,2016-04-09,2016,April,Saturday,9,100,16,2016-04-17,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)}",Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -2832,1288,GO-20179013850,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,15,2017-09-01,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -2833,1347,GO-20179014320,THEFT UNDER,2017-09-08,2017,September,Friday,8,251,20,2017-09-09,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -2834,3378,GO-20181624052,B&E,2018-09-01,2018,September,Saturday,1,244,20,2018-09-02,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2835,3419,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,19,2018-09-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2836,3420,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,19,2018-09-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2837,3421,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,19,2018-09-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2838,3422,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,19,2018-09-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2839,3423,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,19,2018-09-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2840,3456,GO-20181686721,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,18,2018-09-11,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2841,3567,GO-20189032152,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,5,2018-09-27,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2842,3568,GO-20189032152,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,5,2018-09-27,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2843,3607,GO-20189032753,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,18,2018-10-03,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2844,3646,GO-20181869486,B&E,2018-10-10,2018,October,Wednesday,10,283,3,2018-10-10,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2845,4477,GO-20191078718,THEFT UNDER,2019-06-10,2019,June,Monday,10,161,19,2019-06-11,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2846,4513,GO-20191106695,THEFT FROM MOTOR VEHICLE UNDER,2019-06-14,2019,June,Friday,14,165,17,2019-06-17,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2847,4574,GO-20191159543,B&E,2019-06-21,2019,June,Friday,21,172,22,2019-06-22,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2848,4979,GO-20191488725,THEFT UNDER,2019-08-06,2019,August,Tuesday,6,218,22,2019-08-07,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2849,5207,GO-20199028439,THEFT UNDER - BICYCLE,2019-08-26,2019,August,Monday,26,238,23,2019-09-01,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2850,5338,GO-20191771267,THEFT FROM MOTOR VEHICLE UNDER,2019-09-14,2019,September,Saturday,14,257,18,2019-09-15,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2851,2290,GO-20189014516,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,19,2018-05-10,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2852,5438,GO-20191876085,THEFT UNDER - BICYCLE,2019-09-27,2019,September,Friday,27,270,11,2019-09-29,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2853,5625,GO-20192100966,THEFT UNDER,2019-10-20,2019,October,Sunday,20,293,8,2019-10-31,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2854,6388,GO-20209015380,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,22,2020-06-15,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2855,7216,GO-20209022749,THEFT UNDER - BICYCLE,2020-09-08,2020,September,Tuesday,8,252,20,2020-09-09,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2856,7727,GO-20141266048,THEFT UNDER,2013-12-30,2013,December,Monday,30,364,17,2014-01-02,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2857,7758,GO-20141466776,THEFT UNDER,2014-02-03,2014,February,Monday,3,34,19,2014-02-04,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2858,7868,GO-20141969226,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,14,2014-04-27,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2859,8045,GO-20142220797,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,15,2014-06-04,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2860,8268,GO-20142412197,THEFT OF MOTOR VEHICLE,2014-07-01,2014,July,Tuesday,1,182,23,2014-07-02,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2861,8269,GO-20142412197,THEFT OF MOTOR VEHICLE,2014-07-01,2014,July,Tuesday,1,182,23,2014-07-02,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2862,8687,GO-20142733353,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,0,2014-08-19,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2863,9526,GO-2015746458,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,22,2015-05-05,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2864,10506,GO-20159007482,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,9,2015-09-21,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2865,11319,GO-20169004588,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,18,2016-05-16,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2866,11435,GO-20169005290,THEFT UNDER - BICYCLE,2016-06-02,2016,June,Thursday,2,154,17,2016-06-02,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2867,11654,GO-20169006464,THEFT OF EBIKE UNDER $5000,2016-06-26,2016,June,Sunday,26,178,10,2016-06-28,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2868,11811,GO-20161247517,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,21,2016-07-16,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2869,11918,GO-20169007780,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,14,2016-07-26,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2870,11928,GO-20169007805,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,13,2016-07-27,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2871,12074,GO-20169008651,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,19,2016-08-12,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2872,12353,GO-20161644809,ROBBERY - MUGGING,2016-09-15,2016,September,Thursday,15,259,22,2016-09-15,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2873,12396,GO-20169010692,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,1,2016-09-19,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2874,12539,GO-20161755713,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,23,2016-10-03,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2875,12551,GO-20161766162,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,17,2016-10-04,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2876,12552,GO-20161766162,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,17,2016-10-04,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2877,12692,GO-20161922384,ROBBERY - MUGGING,2016-10-26,2016,October,Wednesday,26,300,19,2016-10-29,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2878,13044,GO-20209014841,THEFT UNDER - BICYCLE,2020-06-08,2020,June,Monday,8,160,12,2020-06-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2879,13482,GO-20199014209,THEFT UNDER,2019-04-04,2019,April,Thursday,4,94,17,2019-05-07,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2880,13483,GO-20199014209,THEFT UNDER,2019-04-04,2019,April,Thursday,4,94,17,2019-05-07,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2881,13510,GO-20199023947,THEFT FROM MOTOR VEHICLE UNDER,2019-07-21,2019,July,Sunday,21,202,23,2019-07-26,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2882,24525,GO-20161078620,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,19,2016-06-20,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2883,13511,GO-20199024376,THEFT UNDER - BICYCLE,2019-07-30,2019,July,Tuesday,30,211,12,2019-07-30,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2884,13517,GO-20191633841,THEFT UNDER,2019-08-27,2019,August,Tuesday,27,239,3,2019-08-27,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2885,13584,GO-20209023443,THEFT UNDER - BICYCLE,2020-09-09,2020,September,Wednesday,9,253,16,2020-09-16,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2886,14940,GO-201584706,THEFT UNDER,2014-12-26,2014,December,Friday,26,360,12,2015-01-15,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2887,16006,GO-20169001901,THEFT UNDER - BICYCLE,2016-02-28,2016,February,Sunday,28,59,15,2016-02-29,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2888,16764,GO-20191074420,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,0,2019-06-11,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2889,16792,GO-20191656678,THEFT OF EBIKE UNDER $5000,2019-08-29,2019,August,Thursday,29,241,23,2019-08-30,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2890,1038,GO-20179011554,THEFT UNDER,2017-07-31,2017,July,Monday,31,212,11,2017-08-02,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)}",St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946 -2891,16803,GO-20199041049,THEFT UNDER,2019-12-15,2019,December,Sunday,15,349,11,2019-12-16,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2892,16833,GO-20201444478,B&E,2020-08-03,2020,August,Monday,3,216,5,2020-08-03,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2893,16859,GO-20202236641,B&E,2020-11-26,2020,November,Thursday,26,331,5,2020-11-26,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2894,17098,GO-20189029580,THEFT UNDER,2018-09-08,2018,September,Saturday,8,251,10,2018-09-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2895,17099,GO-20181666812,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,19,2018-09-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2896,17767,GO-20173038596,THEFT OF EBIKE UNDER $5000,2017-10-15,2017,October,Sunday,15,288,14,2017-11-21,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2897,17954,GO-20143568899,THEFT OVER,2014-12-29,2014,December,Monday,29,363,17,2014-12-29,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2898,17957,GO-2015625277,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,17,2015-04-15,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2899,18053,GO-20169011485,THEFT UNDER,2016-09-19,2016,September,Monday,19,263,0,2016-10-03,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2900,18054,GO-20169011485,THEFT UNDER,2016-09-19,2016,September,Monday,19,263,0,2016-10-03,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2901,18114,GO-20179012940,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,21,2017-08-21,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2902,18872,GO-20143301083,B&E,2014-11-14,2014,November,Friday,14,318,9,2014-11-14,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2903,18934,GO-20151565809,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,18,2015-09-10,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2904,19637,GO-20142524376,B&E,2014-07-18,2014,July,Friday,18,199,15,2014-07-18,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2905,19715,GO-20159006217,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,22,2015-08-26,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2906,19719,GO-20159006467,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,7,2015-08-28,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2907,20063,GO-20199024376,THEFT UNDER - BICYCLE,2019-07-30,2019,July,Tuesday,30,211,12,2019-07-30,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2908,20075,GO-20191957645,B&E,2019-10-10,2019,October,Thursday,10,283,0,2019-10-10,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2909,22034,GO-20149005985,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,6,2014-08-15,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2910,22106,GO-20169005541,THEFT UNDER - BICYCLE,2016-06-07,2016,June,Tuesday,7,159,19,2016-06-09,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2911,22150,GO-20179006456,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,12,2017-05-16,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2912,22200,GO-20161659568,THEFT UNDER - BICYCLE,2016-09-07,2016,September,Wednesday,7,251,14,2016-09-18,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2913,23245,GO-2019624576,THEFT FROM MOTOR VEHICLE UNDER,2019-04-07,2019,April,Sunday,7,97,0,2019-04-07,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2914,23246,GO-2019624576,THEFT FROM MOTOR VEHICLE UNDER,2019-04-07,2019,April,Sunday,7,97,0,2019-04-07,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2915,23323,GO-20201016891,THEFT UNDER - BICYCLE,2020-06-02,2020,June,Tuesday,2,154,4,2020-06-03,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2916,23338,GO-20201306151,THEFT UNDER - BICYCLE,2020-07-13,2020,July,Monday,13,195,6,2020-07-17,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2917,24297,GO-20189013404,THEFT UNDER - BICYCLE,2018-04-27,2018,April,Friday,27,117,12,2018-04-29,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2918,24298,GO-20189013404,THEFT UNDER - BICYCLE,2018-04-27,2018,April,Friday,27,117,12,2018-04-29,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2919,24463,GO-20151150935,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,15,2015-07-08,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2920,24466,GO-20159004724,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,12,2015-07-19,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2921,24522,GO-20169005304,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,6,2016-06-03,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)}",Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -2922,3668,GO-20181882794,B&E,2018-10-11,2018,October,Thursday,11,284,23,2018-10-11,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2923,3669,GO-20189033664,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,12,2018-10-11,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2924,4004,GO-20199001632,THEFT UNDER - BICYCLE,2018-12-05,2018,December,Wednesday,5,339,8,2019-01-13,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2925,4135,GO-2019624418,THEFT UNDER,2019-04-06,2019,April,Saturday,6,96,23,2019-04-07,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2926,4136,GO-2019624418,THEFT UNDER,2019-04-06,2019,April,Saturday,6,96,23,2019-04-07,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2927,5330,GO-20199029203,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,0,2019-09-08,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2928,6557,GO-20209017067,THEFT UNDER - BICYCLE,2020-07-02,2020,July,Thursday,2,184,13,2020-07-07,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2929,6560,GO-20209017124,THEFT UNDER - BICYCLE,2020-07-08,2020,July,Wednesday,8,190,13,2020-07-08,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2930,6678,GO-20201332166,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,3,2020-07-18,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2931,10250,GO-20151402730,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,23,2015-08-15,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2932,10321,GO-20151464253,THEFT OVER,2015-08-25,2015,August,Tuesday,25,237,12,2015-08-25,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2933,10901,GO-20152237526,B&E,2015-12-27,2015,December,Sunday,27,361,22,2015-12-31,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2934,10902,GO-20152237526,B&E,2015-12-27,2015,December,Sunday,27,361,22,2015-12-31,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2935,10971,GO-2016217183,THEFT UNDER - SHOPLIFTING,2016-02-05,2016,February,Friday,5,36,20,2016-02-05,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2936,11856,GO-20161284418,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,2,2016-07-22,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2937,13476,GO-2019658628,THEFT UNDER,2019-04-11,2019,April,Thursday,11,101,17,2019-04-12,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2938,13519,GO-20199029203,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,0,2019-09-08,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2939,13520,GO-20199029203,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,0,2019-09-08,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2940,13522,GO-20199029575,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,13,2019-09-11,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2941,13560,GO-20201332166,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,3,2020-07-18,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2942,13561,GO-20201332166,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,3,2020-07-18,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2943,13575,GO-20209019938,THEFT UNDER - BICYCLE,2020-08-11,2020,August,Tuesday,11,224,0,2020-08-11,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2944,14791,GO-20189016770,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,2,2018-05-30,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2945,14916,GO-20142210732,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,13,2014-06-03,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2946,14931,GO-20149006507,THEFT UNDER,2014-08-30,2014,August,Saturday,30,242,18,2014-09-02,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2947,14937,GO-20143305739,THEFT UNDER,2014-11-14,2014,November,Friday,14,318,10,2014-11-15,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2948,15038,GO-2017345636,THEFT UNDER - BICYCLE,2017-02-16,2017,February,Thursday,16,47,18,2017-02-24,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2949,15039,GO-2017345636,THEFT UNDER - BICYCLE,2017-02-16,2017,February,Thursday,16,47,18,2017-02-24,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2950,15040,GO-2017345636,THEFT UNDER - BICYCLE,2017-02-16,2017,February,Thursday,16,47,18,2017-02-24,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2951,16843,GO-20209024183,THEFT UNDER,2020-09-23,2020,September,Wednesday,23,267,10,2020-09-23,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2952,17101,GO-20189030033,THEFT UNDER,2018-09-11,2018,September,Tuesday,11,254,21,2018-09-11,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2953,17102,GO-20189030033,THEFT UNDER,2018-09-11,2018,September,Tuesday,11,254,21,2018-09-11,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2954,17861,GO-20181349417,THEFT OF EBIKE UNDER $5000,2018-07-01,2018,July,Sunday,1,182,12,2018-07-24,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2955,17890,GO-20189027420,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,22,2018-08-22,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2956,17927,GO-20142315357,PROPERTY - FOUND,2014-06-16,2014,June,Monday,16,167,19,2014-06-18,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2957,18069,GO-20179006107,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,10,2017-05-11,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2958,20128,GO-20209025532,THEFT UNDER - BICYCLE,2020-10-06,2020,October,Tuesday,6,280,12,2020-10-06,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2959,20133,GO-20209028691,THEFT UNDER - BICYCLE,2020-10-25,2020,October,Sunday,25,299,22,2020-11-05,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2960,22033,GO-20142688227,THEFT OF MOTOR VEHICLE,2014-08-12,2014,August,Tuesday,12,224,7,2014-08-12,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2961,22037,GO-20142962402,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,18,2014-09-22,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2962,23210,GO-20189032138,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,20,2018-09-27,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2963,23238,GO-2019326780,PROPERTY - FOUND,2019-02-20,2019,February,Wednesday,20,51,23,2019-02-21,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2964,24498,GO-20159009282,THEFT UNDER,2015-10-08,2015,October,Thursday,8,281,19,2015-11-03,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)}",Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -2965,616,GO-20171065399,THEFT OF MOTOR VEHICLE,2017-06-14,2017,June,Wednesday,14,165,20,2017-06-15,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2966,1460,GO-20171694805,THEFT UNDER - BICYCLE,2017-09-06,2017,September,Wednesday,6,249,11,2017-09-18,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2967,1540,GO-20179015961,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,8,2017-09-27,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2968,1634,GO-20179016891,THEFT UNDER,2017-07-01,2017,July,Saturday,1,182,10,2017-10-10,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2969,2695,GO-20181155110,THEFT UNDER,2018-06-20,2018,June,Wednesday,20,171,18,2018-06-25,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2970,3293,GO-20181543617,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,19,2018-08-21,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2971,4011,GO-20199002235,THEFT UNDER - BICYCLE,2019-01-17,2019,January,Thursday,17,17,12,2019-01-17,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2972,5233,GO-20191677461,THEFT UNDER - BICYCLE,2019-09-01,2019,September,Sunday,1,244,20,2019-09-02,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2973,6115,GO-2020801829,THEFT UNDER - BICYCLE,2020-03-12,2020,March,Thursday,12,72,16,2020-04-28,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2974,6227,GO-20209013690,THEFT UNDER - BICYCLE,2020-05-19,2020,May,Tuesday,19,140,22,2020-05-22,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2975,6753,GO-20209018659,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,15,2020-07-27,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2976,6813,GO-20209018956,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,16,2020-07-30,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2977,7521,GO-20209027180,THEFT FROM MOTOR VEHICLE UNDER,2020-10-21,2020,October,Wednesday,21,295,3,2020-10-21,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2978,7933,GO-20149003360,THEFT UNDER,2014-05-14,2014,May,Wednesday,14,134,7,2014-05-14,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2979,9192,GO-20149008207,THEFT UNDER,2014-11-14,2014,November,Friday,14,318,13,2014-11-14,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2980,10305,GO-20151446669,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,12,2015-08-22,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2981,10306,GO-20151446669,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,12,2015-08-22,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2982,10320,GO-20151451778,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,14,2015-08-27,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2983,11895,GO-20169007697,THEFT OF EBIKE UNDER $5000,2016-07-24,2016,July,Sunday,24,206,8,2016-07-25,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2984,12257,GO-20161562841,THEFT FROM MOTOR VEHICLE UNDER,2016-09-02,2016,September,Friday,2,246,19,2016-09-03,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2985,13542,GO-20201015174,THEFT UNDER - BICYCLE,2020-06-01,2020,June,Monday,1,153,16,2020-06-02,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2986,13543,GO-20201015174,THEFT UNDER - BICYCLE,2020-06-01,2020,June,Monday,1,153,16,2020-06-02,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2987,13564,GO-20201371342,THEFT UNDER - BICYCLE,2020-07-18,2020,July,Saturday,18,200,19,2020-07-23,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2988,13567,GO-20209019008,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,20,2020-07-30,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2989,13857,GO-2019134739,THEFT UNDER,2018-12-24,2018,December,Monday,24,358,9,2019-01-22,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2990,14687,GO-20171374239,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-31,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2991,14766,GO-20189008421,THEFT UNDER - BICYCLE,2016-12-28,2016,December,Wednesday,28,363,18,2018-03-18,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2992,15035,GO-20169013071,THEFT UNDER - BICYCLE,2016-11-06,2016,November,Sunday,6,311,9,2016-11-07,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2993,16815,GO-20209012874,THEFT UNDER - BICYCLE,2020-04-04,2020,April,Saturday,4,95,19,2020-05-11,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2994,17100,GO-20181669868,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,16,2018-09-09,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2995,17838,GO-20181145460,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,11,2018-06-23,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2996,17839,GO-20181145460,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,11,2018-06-23,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2997,20055,GO-20199021846,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,8,2019-07-11,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2998,20113,GO-20201538429,THEFT OF EBIKE UNDER $5000,2020-08-16,2020,August,Sunday,16,229,14,2020-08-16,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -2999,20369,GO-20181669868,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,16,2018-09-09,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -3000,20370,GO-20181669868,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,16,2018-09-09,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -3001,22065,GO-20151127428,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,15,2015-07-04,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -3002,23243,GO-2019482025,THEFT FROM MOTOR VEHICLE UNDER,2019-03-15,2019,March,Friday,15,74,12,2019-03-16,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -3003,23352,GO-20209020772,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,22,2020-08-20,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)}",Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -3004,19609,GO-20149000963,PROPERTY - LOST,2014-02-02,2014,February,Sunday,2,33,1,2014-02-02,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3005,19754,GO-2016615190,THEFT UNDER,2016-04-11,2016,April,Monday,11,102,10,2016-04-11,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3006,22175,GO-20169008295,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,9,2016-08-06,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3007,22249,GO-20171501526,B&E,2017-08-17,2017,August,Thursday,17,229,14,2017-08-19,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3008,22389,GO-20191267279,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,1,2019-07-07,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3009,22390,GO-20191267279,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,1,2019-07-07,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3010,22468,GO-20209014056,THEFT UNDER,2020-05-25,2020,May,Monday,25,146,17,2020-05-27,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3011,22472,GO-20209014687,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,12,2020-06-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3012,22485,GO-20209016130,THEFT UNDER,2020-06-20,2020,June,Saturday,20,172,11,2020-06-25,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3013,22560,GO-20209023305,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,0,2020-09-15,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3014,22561,GO-20209023305,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,0,2020-09-15,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3015,22580,GO-20209026388,THEFT UNDER,2020-10-09,2020,October,Friday,9,283,17,2020-10-14,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3016,22808,GO-20141330378,THEFT UNDER,2014-01-11,2014,January,Saturday,11,11,23,2014-01-13,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3017,22838,GO-20142255759,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,21,2014-06-09,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3018,22998,GO-20169009381,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,17,2016-08-23,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3019,25432,GO-2017688798,THEFT UNDER - BICYCLE,2017-04-18,2017,April,Tuesday,18,108,19,2017-04-19,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3020,25433,GO-2017688798,THEFT UNDER - BICYCLE,2017-04-18,2017,April,Tuesday,18,108,19,2017-04-19,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3021,25692,GO-20209003601,THEFT UNDER,2020-01-29,2020,January,Wednesday,29,29,8,2020-01-30,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3022,25703,GO-2020602571,B&E,2020-03-23,2020,March,Monday,23,83,19,2020-03-25,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3023,25704,GO-2020602571,B&E,2020-03-23,2020,March,Monday,23,83,19,2020-03-25,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3024,105,GO-2017340895,THEFT UNDER - BICYCLE,2017-02-23,2017,February,Thursday,23,54,19,2017-02-23,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3025,1825,GO-20172034551,THEFT UNDER,2017-11-09,2017,November,Thursday,9,313,18,2017-11-10,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3026,3053,GO-20181147439,B&E,2018-06-23,2018,June,Saturday,23,174,17,2018-06-24,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3027,6250,GO-2020970118,THEFT UNDER - BICYCLE,2020-05-26,2020,May,Tuesday,26,147,0,2020-05-26,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3028,7469,GO-20209026442,THEFT UNDER,2020-10-14,2020,October,Wednesday,14,288,9,2020-10-14,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3029,8111,GO-20142297132,PROPERTY - FOUND,2014-06-14,2014,June,Saturday,14,165,16,2014-06-15,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3030,8382,GO-20149004861,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,16,2014-07-05,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3031,8383,GO-20149004861,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,16,2014-07-05,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3032,11223,GO-2016733750,INCIDENT,2016-04-29,2016,April,Friday,29,120,16,2016-04-29,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3033,12909,GO-20189037690,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,1,2018-11-10,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3034,14082,GO-20161265147,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,9,2016-07-19,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3035,14205,GO-20179016750,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,2,2017-10-08,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3036,15854,GO-20149002779,THEFT UNDER,2014-04-10,2014,April,Thursday,10,100,20,2014-04-11,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3037,18775,GO-20202053750,B&E,2020-10-28,2020,October,Wednesday,28,302,22,2020-10-29,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3038,18776,GO-20202053750,B&E,2020-10-28,2020,October,Wednesday,28,302,22,2020-10-29,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3039,18940,GO-20151652689,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,15,2015-09-24,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3040,19073,GO-20179003091,THEFT UNDER,2017-03-10,2017,March,Friday,10,69,1,2017-03-10,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3041,19086,GO-20171019457,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,18,2017-06-08,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3042,19115,GO-20179015421,THEFT UNDER,2017-09-21,2017,September,Thursday,21,264,16,2017-09-21,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3043,19337,GO-2020441852,THEFT OVER,2020-03-02,2020,March,Monday,2,62,3,2020-03-02,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3044,22529,GO-20209020567,THEFT UNDER,2020-08-13,2020,August,Thursday,13,226,4,2020-08-18,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3045,22912,GO-20151275675,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,5,2015-07-26,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3046,25560,GO-20181254679,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,19,2018-07-10,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3047,25787,GO-20209025283,THEFT UNDER,2020-10-02,2020,October,Friday,2,276,17,2020-10-02,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)}",Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -3048,588,GO-20171035882,THEFT OF EBIKE UNDER $5000,2017-06-11,2017,June,Sunday,11,162,1,2017-06-11,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3049,635,GO-20171085628,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,0,2017-06-18,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3050,636,GO-20171085628,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,0,2017-06-18,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3051,637,GO-20171085628,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,0,2017-06-18,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3052,1281,GO-20179013805,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,23,2017-09-01,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3053,2444,GO-20189017199,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,0,2018-06-03,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3054,2445,GO-20189017199,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,0,2018-06-03,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3055,2948,GO-20181358409,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,12,2018-07-25,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3056,3448,GO-20189030044,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,9,2018-09-12,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3057,4395,GO-20199017125,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,15,2019-06-01,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3058,4402,GO-20199017125,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,15,2019-06-01,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3059,4712,GO-20199021583,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,9,2019-07-09,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3060,5210,GO-20191679111,THEFT UNDER - BICYCLE,2019-09-02,2019,September,Monday,2,245,6,2019-09-02,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3061,5384,GO-20199031168,THEFT UNDER,2019-09-22,2019,September,Sunday,22,265,23,2019-09-23,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3062,5533,GO-20199034099,THEFT UNDER,2019-10-16,2019,October,Wednesday,16,289,4,2019-10-16,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3063,5613,GO-20199035723,THEFT FROM MOTOR VEHICLE UNDER,2019-10-23,2019,October,Wednesday,23,296,21,2019-10-29,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3064,6434,GO-20201146745,B&E,2020-06-21,2020,June,Sunday,21,173,5,2020-06-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3065,6541,GO-20209016936,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,0,2020-07-06,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3066,6670,GO-20209017988,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,5,2020-07-20,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3067,6671,GO-20209017988,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,5,2020-07-20,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3068,6672,GO-20209017988,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,5,2020-07-20,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3069,7087,GO-20209021437,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,16,2020-08-26,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3070,7385,GO-20209024905,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,19,2020-09-30,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3071,7596,GO-20209028746,THEFT UNDER,2020-11-05,2020,November,Thursday,5,310,7,2020-11-05,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3072,7644,GO-20209029851,THEFT UNDER,2020-11-14,2020,November,Saturday,14,319,15,2020-11-17,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3073,7667,GO-20209030697,THEFT UNDER,2020-11-26,2020,November,Thursday,26,331,13,2020-11-27,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3074,7668,GO-20209030697,THEFT UNDER,2020-11-26,2020,November,Thursday,26,331,13,2020-11-27,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3075,8987,GO-20149007256,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,1,2014-09-27,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3076,10075,GO-20159004835,FRAUD UNDER,2015-07-06,2015,July,Monday,6,187,21,2015-07-21,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3077,10422,GO-20159006851,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,0,2015-09-07,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3078,10886,GO-20152203000,PROPERTY - FOUND,2015-12-24,2015,December,Thursday,24,358,14,2015-12-24,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3079,11055,GO-2016412669,B&E,2016-03-08,2016,March,Tuesday,8,68,8,2016-03-09,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3080,11182,GO-20169003717,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,16,2016-04-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3081,11183,GO-20169003717,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,16,2016-04-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3082,11311,GO-2016829342,B&E,2016-05-14,2016,May,Saturday,14,135,3,2016-05-14,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3083,11312,GO-2016829342,B&E,2016-05-14,2016,May,Saturday,14,135,3,2016-05-14,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3084,11355,GO-2016888227,MISCHIEF UNDER,2016-05-21,2016,May,Saturday,21,142,11,2016-05-23,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3085,11356,GO-2016888227,MISCHIEF UNDER,2016-05-21,2016,May,Saturday,21,142,11,2016-05-23,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3086,11608,GO-20161093224,THEFT OF MOTOR VEHICLE,2016-06-14,2016,June,Tuesday,14,166,12,2016-06-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3087,11649,GO-20161126760,THEFT UNDER - BICYCLE,2016-06-27,2016,June,Monday,27,179,21,2016-06-27,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3088,11680,GO-20169006635,THEFT UNDER,2016-07-02,2016,July,Saturday,2,184,17,2016-07-02,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3089,12672,GO-20169012538,THEFT UNDER - BICYCLE,2016-10-23,2016,October,Sunday,23,297,20,2016-10-24,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3090,12948,GO-20191271545,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,13,2019-07-08,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3091,13041,GO-20209014781,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,21,2020-06-07,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3092,13065,GO-20209016918,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,9,2020-07-05,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3093,14086,GO-20161354819,PROPERTY - FOUND,2016-08-02,2016,August,Tuesday,2,215,6,2016-08-02,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3094,14144,GO-2017252094,THEFT UNDER - BICYCLE,2017-02-09,2017,February,Thursday,9,40,7,2017-02-09,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3095,14262,GO-20189023477,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,21,2018-07-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3096,14263,GO-20189023477,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,21,2018-07-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3097,15913,GO-20143123573,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,9,2014-10-17,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3098,18753,GO-20209022016,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,6,2020-09-01,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3099,18863,GO-20142935722,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,15,2014-09-18,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3100,18964,GO-2016423656,B&E W'INTENT,2016-01-28,2016,January,Thursday,28,28,16,2016-03-11,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3101,18984,GO-2016981274,THEFT UNDER - BICYCLE,2016-06-05,2016,June,Sunday,5,157,9,2016-06-06,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3102,19105,GO-20179012619,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,17,2017-08-17,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -3103,10908,GO-20169000127,THEFT UNDER,2015-12-21,2015,December,Monday,21,355,12,2016-01-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3104,10933,GO-2016115922,THEFT OVER,2016-01-13,2016,January,Wednesday,13,13,8,2016-01-20,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3105,11143,GO-2016655451,THEFT UNDER - BICYCLE,2016-04-17,2016,April,Sunday,17,108,14,2016-04-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3106,11211,GO-2016720354,THEFT UNDER - BICYCLE,2016-04-13,2016,April,Wednesday,13,104,12,2016-04-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3107,11213,GO-2016720569,THEFT OVER - BICYCLE,2016-04-27,2016,April,Wednesday,27,118,19,2016-04-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3108,11221,GO-2016725773,THEFT UNDER - BICYCLE,2016-02-28,2016,February,Sunday,28,59,9,2016-04-28,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3109,11250,GO-2016758543,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,8,2016-05-03,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3110,11317,GO-20169004581,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,15,2016-05-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3111,11363,GO-20169004879,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,8,2016-05-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3112,11418,GO-20169005172,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,2,2016-05-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3113,11607,GO-20161090270,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,13,2016-06-22,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3114,11637,GO-20169006359,THEFT OF EBIKE UNDER $5000,2016-06-25,2016,June,Saturday,25,177,13,2016-06-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3115,11803,GO-20169007174,THEFT UNDER,2016-07-10,2016,July,Sunday,10,192,11,2016-07-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3116,11819,GO-20169007266,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,17,2016-07-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3117,11868,GO-20169007572,THEFT UNDER - BICYCLE,2016-07-15,2016,July,Friday,15,197,19,2016-07-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3118,11955,GO-20169007984,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,23,2016-07-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3119,11956,GO-20169007984,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,23,2016-07-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3120,11957,GO-20169007984,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,23,2016-07-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3121,11958,GO-20169007984,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,23,2016-07-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3122,12015,GO-20169008317,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,8,2016-08-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3123,12168,GO-20169009174,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,11,2016-08-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3124,12260,GO-20169009951,THEFT UNDER - BICYCLE,2016-09-04,2016,September,Sunday,4,248,15,2016-09-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3125,12366,GO-20161656360,THEFT OF EBIKE UNDER $5000,2016-09-17,2016,September,Saturday,17,261,12,2016-09-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3126,12450,GO-20161705321,THEFT FROM MOTOR VEHICLE UNDER,2016-09-24,2016,September,Saturday,24,268,23,2016-09-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3127,12795,GO-20169013592,THEFT UNDER - BICYCLE,2016-10-29,2016,October,Saturday,29,303,16,2016-11-18,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3128,13497,GO-20199018805,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,21,2019-06-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3129,13531,GO-20192155804,THEFT UNDER - BICYCLE,2019-11-07,2019,November,Thursday,7,311,15,2019-11-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3130,13536,GO-20209010813,THEFT UNDER - BICYCLE,2020-04-09,2020,April,Thursday,9,100,18,2020-04-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3131,13545,GO-20209015995,THEFT UNDER - BICYCLE,2020-06-20,2020,June,Saturday,20,172,14,2020-06-23,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3132,13546,GO-20209016080,THEFT UNDER - BICYCLE,2020-06-23,2020,June,Tuesday,23,175,21,2020-06-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3133,13547,GO-20209016159,THEFT UNDER - BICYCLE,2020-02-01,2020,February,Saturday,1,32,18,2020-06-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3134,13554,GO-20201239799,THEFT UNDER - BICYCLE,2020-06-27,2020,June,Saturday,27,179,22,2020-07-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3135,13557,GO-20209017655,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,13,2020-07-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3136,13563,GO-20209018139,THEFT UNDER - BICYCLE,2020-07-20,2020,July,Monday,20,202,19,2020-07-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3137,13569,GO-20201434182,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,17,2020-08-01,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3138,13571,GO-20209019391,THEFT UNDER - BICYCLE,2020-07-13,2020,July,Monday,13,195,6,2020-08-05,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3139,13574,GO-20209019863,THEFT UNDER - BICYCLE,2020-08-10,2020,August,Monday,10,223,23,2020-08-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3140,13576,GO-20201531230,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,11,2020-08-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3141,13583,GO-20209022640,THEFT UNDER - BICYCLE,2020-09-07,2020,September,Monday,7,251,11,2020-09-08,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3142,13594,GO-20209028234,THEFT UNDER - BICYCLE,2020-10-30,2020,October,Friday,30,304,1,2020-10-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3143,13597,GO-20202166614,THEFT UNDER - BICYCLE,2020-11-15,2020,November,Sunday,15,320,10,2020-11-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3144,13842,GO-20189035983,THEFT UNDER - BICYCLE,2018-10-28,2018,October,Sunday,28,301,23,2018-10-28,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3145,13860,GO-2019246360,THEFT UNDER - BICYCLE,2019-02-07,2019,February,Thursday,7,38,19,2019-02-08,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3146,14688,GO-20179012053,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,7,2017-08-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3147,14752,GO-20179022808,THEFT UNDER - BICYCLE,2017-12-21,2017,December,Thursday,21,355,15,2017-12-22,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3148,14754,GO-20189000453,THEFT UNDER - BICYCLE,2018-01-04,2018,January,Thursday,4,4,8,2018-01-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3149,14911,GO-20149000401,THEFT UNDER,2014-01-08,2014,January,Wednesday,8,8,17,2014-01-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3150,14912,GO-20141803189,INCIDENT - BICYCLE,2013-12-01,2013,December,Sunday,1,335,0,2014-03-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3151,14963,GO-20151165878,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,11,2015-07-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3152,14964,GO-20159004341,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,3,2015-07-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3153,14967,GO-20159004754,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,11,2015-07-20,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3154,14974,GO-20159006864,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,17,2015-09-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3155,14980,GO-20151759647,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,9,2015-10-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3156,14983,GO-20152026166,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,17,2015-11-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3157,14996,GO-2016824261,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,15,2016-05-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3158,15000,GO-2016936607,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,15,2016-05-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3159,15002,GO-20169005758,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,18,2016-06-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3160,15022,GO-20169008936,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,23,2016-08-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3161,15024,GO-20169009692,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,15,2016-08-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3162,15030,GO-20161666196,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,18,2016-09-19,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3163,15033,GO-20169011160,POSSESSION PROPERTY OBC UNDER,2016-09-22,2016,September,Thursday,22,266,10,2016-09-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3164,16781,GO-20191272626,THEFT UNDER - BICYCLE,2019-07-07,2019,July,Sunday,7,188,20,2019-07-08,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3165,16797,GO-20191864292,THEFT UNDER - BICYCLE,2019-09-27,2019,September,Friday,27,270,6,2019-09-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3166,16799,GO-20199035321,THEFT UNDER - BICYCLE,2019-10-14,2019,October,Monday,14,287,12,2019-10-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3167,16812,GO-20209011365,THEFT UNDER - BICYCLE,2020-04-04,2020,April,Saturday,4,95,13,2020-04-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3168,16814,GO-20209012346,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,16,2020-05-02,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3169,16823,GO-20209017376,THEFT UNDER - BICYCLE,2020-07-12,2020,July,Sunday,12,194,13,2020-07-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3170,16824,GO-20209017820,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,21,2020-07-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3171,16825,GO-20209017931,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,0,2020-07-19,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3172,16828,GO-20201359840,THEFT FROM MOTOR VEHICLE UNDER,2020-07-21,2020,July,Tuesday,21,203,23,2020-07-23,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3173,16832,GO-20209019013,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,16,2020-07-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3174,16835,GO-20209019560,THEFT UNDER - BICYCLE,2020-08-06,2020,August,Thursday,6,219,19,2020-08-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3175,16846,GO-20201825269,THEFT UNDER - BICYCLE,2020-09-18,2020,September,Friday,18,262,12,2020-10-05,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3176,17106,GO-20181752835,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,11,2018-09-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3177,17754,GO-20179018640,THEFT UNDER,2017-10-31,2017,October,Tuesday,31,304,15,2017-10-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3178,17758,GO-20172019557,THEFT UNDER - BICYCLE,2017-11-06,2017,November,Monday,6,310,7,2017-11-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3179,17784,GO-20189001994,THEFT UNDER - BICYCLE,2018-01-21,2018,January,Sunday,21,21,1,2018-01-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3180,17875,GO-20189025097,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,7,2018-08-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3181,17933,GO-20149005007,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,21,2014-07-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3182,20082,GO-2020389612,THEFT UNDER - BICYCLE,2019-12-01,2019,December,Sunday,1,335,0,2020-02-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3183,17941,GO-20142668452,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,23,2014-08-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3184,17951,GO-20149007469,THEFT UNDER,2014-10-08,2014,October,Wednesday,8,281,8,2014-10-08,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3185,17966,GO-2015883792,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,21,2015-05-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3186,17979,GO-20151203238,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,7,2015-07-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3187,17980,GO-20159004806,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,16,2015-07-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3188,18015,GO-2016450976,THEFT UNDER - BICYCLE,2016-03-15,2016,March,Tuesday,15,75,15,2016-03-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3189,18017,GO-20169003309,THEFT UNDER - BICYCLE,2016-03-20,2016,March,Sunday,20,80,15,2016-04-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3190,18025,GO-20169005171,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,8,2016-05-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3191,18038,GO-20169008331,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,11,2016-08-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3192,18039,GO-20169008331,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,11,2016-08-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3193,18063,GO-20162025266,THEFT UNDER - BICYCLE,2016-11-12,2016,November,Saturday,12,317,9,2016-11-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3194,18090,GO-20171257451,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,15,2017-07-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3195,18107,GO-20179011946,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,19,2017-08-08,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3196,18111,GO-20171472647,THEFT OF EBIKE UNDER $5000,2017-08-11,2017,August,Friday,11,223,16,2017-08-18,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3197,19978,GO-20181779795,THEFT UNDER,2018-09-25,2018,September,Tuesday,25,268,8,2018-09-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3198,20000,GO-20189039899,THEFT UNDER - BICYCLE,2018-11-26,2018,November,Monday,26,330,15,2018-11-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3199,20057,GO-20199022357,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,8,2019-07-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3200,20073,GO-20199031460,THEFT UNDER - BICYCLE,2019-09-20,2019,September,Friday,20,263,13,2019-09-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3201,20078,GO-20199035321,THEFT UNDER - BICYCLE,2019-10-14,2019,October,Monday,14,287,12,2019-10-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3202,20079,GO-20199036173,THEFT UNDER,2019-10-30,2019,October,Wednesday,30,303,18,2019-11-01,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3203,1068,GO-20179011853,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,8,2017-08-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3204,17455,GO-20142542817,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,13,2014-07-25,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3205,8191,GO-20149004241,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,19,2014-06-19,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3206,1123,GO-20179012194,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,21,2017-08-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3207,20088,GO-20209013149,THEFT UNDER - BICYCLE,2020-05-14,2020,May,Thursday,14,135,18,2020-05-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3208,20089,GO-2020957688,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,9,2020-05-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3209,20102,GO-20209017045,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,8,2020-07-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3210,20105,GO-20209017839,THEFT UNDER - BICYCLE,2020-07-16,2020,July,Thursday,16,198,23,2020-07-18,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3211,20109,GO-20209018471,THEFT UNDER - BICYCLE,2020-07-15,2020,July,Wednesday,15,197,16,2020-07-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3212,20112,GO-20201515905,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,23,2020-08-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3213,20115,GO-20209021255,THEFT UNDER - BICYCLE,2020-08-05,2020,August,Wednesday,5,218,9,2020-08-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3214,7658,GO-20202225906,THEFT UNDER - BICYCLE,2020-11-23,2020,November,Monday,23,328,20,2020-11-24,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3215,20118,GO-20201603474,THEFT UNDER - BICYCLE,2019-08-01,2019,August,Thursday,1,213,0,2020-08-29,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3216,20131,GO-20209027755,THEFT UNDER - BICYCLE,2020-08-30,2020,August,Sunday,30,243,15,2020-10-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3217,21177,GO-20179009413,THEFT UNDER,2017-06-30,2017,June,Friday,30,181,13,2017-07-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3218,21206,GO-20171602768,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,14,2017-09-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3219,21207,GO-20171602768,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,14,2017-09-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3220,21247,GO-2018245738,THEFT OVER - BICYCLE,2018-01-15,2018,January,Monday,15,15,16,2018-02-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3221,21292,GO-20181056805,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,19,2018-06-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3222,21293,GO-20181056805,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,19,2018-06-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3223,21994,GO-20141293197,B&E,2013-12-28,2013,December,Saturday,28,362,16,2014-01-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3224,22020,GO-20142454265,B&E,2014-07-07,2014,July,Monday,7,188,2,2014-07-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3225,22026,GO-20149005280,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,15,2014-07-23,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3226,22072,GO-20151271616,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,21,2015-07-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3227,22102,GO-2016795929,THEFT UNDER - BICYCLE,2016-03-15,2016,March,Tuesday,15,75,12,2016-05-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3228,22108,GO-20161057997,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,19,2016-06-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3229,22110,GO-20161088215,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,16,2016-06-22,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3230,22141,GO-20179003256,THEFT UNDER - BICYCLE,2017-02-01,2017,February,Wednesday,1,32,9,2017-03-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3231,17456,GO-20142542817,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,13,2014-07-25,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3232,1128,GO-20179012232,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,21,2017-08-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3233,8944,GO-20149007111,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,14,2014-09-22,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3234,9455,GO-20159002133,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,18,2015-04-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3235,22145,GO-20179004111,THEFT UNDER - BICYCLE,2017-02-18,2017,February,Saturday,18,49,14,2017-04-02,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3236,23250,GO-20199013786,THEFT UNDER,2019-05-01,2019,May,Wednesday,1,121,6,2019-05-02,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3237,23307,GO-20199031025,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,11,2019-09-22,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3238,23308,GO-20191845563,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,0,2019-09-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3239,23310,GO-20191864292,THEFT UNDER - BICYCLE,2019-09-27,2019,September,Friday,27,270,6,2019-09-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3240,23325,GO-20201041467,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,12,2020-06-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3241,23328,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11,2020,June,Thursday,11,163,20,2020-06-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3242,23329,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11,2020,June,Thursday,11,163,20,2020-06-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3243,23332,GO-20209016159,THEFT UNDER - BICYCLE,2020-02-01,2020,February,Saturday,1,32,18,2020-06-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3244,23334,GO-20209017062,THEFT UNDER - BICYCLE,2020-07-04,2020,July,Saturday,4,186,14,2020-07-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3245,23335,GO-20209017445,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,1,2020-07-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3246,23337,GO-20201298724,THEFT UNDER - BICYCLE,2020-06-19,2020,June,Friday,19,171,12,2020-07-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3247,24209,GO-20179012314,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,20,2017-08-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3248,24216,GO-20179012900,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,13,2017-08-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3249,24230,GO-20179014622,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,15,2017-09-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3250,24242,GO-20179016896,THEFT UNDER,2017-09-24,2017,September,Sunday,24,267,0,2017-10-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3251,24243,GO-20179016896,THEFT UNDER,2017-09-24,2017,September,Sunday,24,267,0,2017-10-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3252,24250,GO-20179017911,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,11,2017-10-23,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3253,24272,GO-20189001209,THEFT UNDER,2018-01-11,2018,January,Thursday,11,11,20,2018-01-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3254,24459,GO-20159003705,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,5,2015-06-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3255,24467,GO-20159005010,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,8,2015-07-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3256,24484,GO-20159006351,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,20,2015-08-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3257,24485,GO-20159006351,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,20,2015-08-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3258,24491,GO-20159007731,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,16,2015-09-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3259,24508,GO-20169002260,THEFT UNDER - BICYCLE,2016-02-10,2016,February,Wednesday,10,41,12,2016-03-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3260,24510,GO-20169003107,THEFT UNDER - BICYCLE,2016-04-01,2016,April,Friday,1,92,5,2016-04-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3261,24517,GO-20169004434,THEFT UNDER - BICYCLE,2016-05-12,2016,May,Thursday,12,133,9,2016-05-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3262,24518,GO-20169004574,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,11,2016-05-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3263,24538,GO-20161455935,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,17,2016-08-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3264,24543,GO-20169010405,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,20,2016-09-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3265,24544,GO-20169010513,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,8,2016-09-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3266,24551,GO-20161890700,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,6,2016-10-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3267,720,GO-20179008961,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,0,2017-06-26,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3268,946,GO-20179010763,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,15,2017-07-21,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3269,1701,GO-20179017673,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,21,2017-10-20,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3270,1794,GO-20179018893,THEFT UNDER,2017-11-01,2017,November,Wednesday,1,305,10,2017-11-04,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3271,1800,GO-20179018893,THEFT UNDER,2017-11-01,2017,November,Wednesday,1,305,10,2017-11-04,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3272,1980,GO-20189000919,THEFT UNDER - BICYCLE,2018-01-03,2018,January,Wednesday,3,3,19,2018-01-11,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3273,2091,GO-20189008674,THEFT UNDER,2018-03-19,2018,March,Monday,19,78,12,2018-03-20,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3274,2153,GO-20189011351,THEFT UNDER - BICYCLE,2018-04-09,2018,April,Monday,9,99,23,2018-04-12,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3275,2556,GO-20189018547,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,15,2018-06-13,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3276,2676,GO-20189020150,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,0,2018-06-25,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3277,3153,GO-20189025891,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,11,2018-08-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3278,4085,GO-2019440265,THEFT UNDER - BICYCLE,2019-01-02,2019,January,Wednesday,2,2,11,2019-03-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3279,4185,GO-20199012557,THEFT UNDER - BICYCLE,2019-04-20,2019,April,Saturday,20,110,8,2019-04-21,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3280,4625,GO-20191197972,PROPERTY - FOUND,2019-06-27,2019,June,Thursday,27,178,23,2019-06-27,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3281,5093,GO-20199026657,THEFT UNDER - BICYCLE,2019-08-16,2019,August,Friday,16,228,10,2019-08-17,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3282,5221,GO-20199028635,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,11,2019-09-03,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3283,5589,GO-20199035134,THEFT UNDER,2019-10-24,2019,October,Thursday,24,297,15,2019-10-24,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3284,5680,GO-20192178314,ROBBERY - BUSINESS,2019-11-11,2019,November,Monday,11,315,9,2019-11-11,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3285,5938,GO-20209007448,THEFT UNDER - BICYCLE,2020-03-01,2020,March,Sunday,1,61,22,2020-03-01,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3286,6012,GO-20209010299,THEFT UNDER - BICYCLE,2020-03-29,2020,March,Sunday,29,89,19,2020-04-01,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3287,6013,GO-20209010299,THEFT UNDER - BICYCLE,2020-03-29,2020,March,Sunday,29,89,19,2020-04-01,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3288,6072,GO-20209011321,THEFT UNDER - BICYCLE,2020-04-13,2020,April,Monday,13,104,17,2020-04-16,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3289,6120,GO-2020808344,THEFT UNDER - BICYCLE,2019-10-01,2019,October,Tuesday,1,274,0,2020-04-29,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3290,6123,GO-20209012196,THEFT UNDER,2020-04-15,2020,April,Wednesday,15,106,11,2020-04-30,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3291,6149,GO-20209012565,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,17,2020-05-06,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3292,6229,GO-20209013723,THEFT UNDER - BICYCLE,2020-05-08,2020,May,Friday,8,129,22,2020-05-22,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3293,6447,GO-20209015961,THEFT UNDER - BICYCLE,2020-06-20,2020,June,Saturday,20,172,12,2020-06-23,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3294,6539,GO-20209016929,THEFT UNDER - BICYCLE,2020-07-05,2020,July,Sunday,5,187,17,2020-07-06,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3295,6540,GO-20209016931,THEFT UNDER - BICYCLE,2020-06-22,2020,June,Monday,22,174,11,2020-07-06,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3296,6564,GO-20201248666,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,19,2020-07-09,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3297,6565,GO-20201248666,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,19,2020-07-09,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3298,6581,GO-20209017279,THEFT UNDER - BICYCLE,2020-07-09,2020,July,Thursday,9,191,21,2020-07-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3299,6685,GO-20209018107,THEFT UNDER - BICYCLE,2020-07-20,2020,July,Monday,20,202,10,2020-07-21,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3300,6826,GO-20209019080,THEFT UNDER - BICYCLE,2020-07-31,2020,July,Friday,31,213,0,2020-07-31,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3301,6958,GO-20201531682,THEFT FROM MOTOR VEHICLE UNDER,2020-08-15,2020,August,Saturday,15,228,12,2020-08-15,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3302,7117,GO-20201626281,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,21,2020-08-29,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3303,7170,GO-20209022253,THEFT UNDER - BICYCLE,2020-08-29,2020,August,Saturday,29,242,11,2020-09-03,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3304,7185,GO-20209022441,THEFT UNDER - BICYCLE,2020-09-05,2020,September,Saturday,5,249,16,2020-09-05,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3305,7293,GO-20209023808,THEFT UNDER,2020-09-16,2020,September,Wednesday,16,260,0,2020-09-19,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3306,7302,GO-20209023858,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,9,2020-09-19,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3307,7592,GO-20209028622,THEFT UNDER - BICYCLE,2020-11-04,2020,November,Wednesday,4,309,15,2020-11-04,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3308,7642,GO-20209029794,THEFT UNDER - BICYCLE,2020-11-10,2020,November,Tuesday,10,315,9,2020-11-16,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3309,7657,GO-20202225906,THEFT UNDER - BICYCLE,2020-11-23,2020,November,Monday,23,328,20,2020-11-24,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3310,1137,GO-20179012298,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,20,2017-08-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3311,1362,GO-20179014424,THEFT UNDER - BICYCLE,2017-09-09,2017,September,Saturday,9,252,22,2017-09-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3312,1480,GO-20179015362,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,15,2017-09-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3313,1620,GO-20179016803,THEFT OVER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,5,2017-10-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3314,17457,GO-20142542817,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,13,2014-07-25,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3315,1795,GO-20179018917,THEFT UNDER - BICYCLE,2017-11-04,2017,November,Saturday,4,308,20,2017-11-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3316,1801,GO-20179018917,THEFT UNDER - BICYCLE,2017-11-04,2017,November,Saturday,4,308,20,2017-11-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3317,1968,GO-20189000468,THEFT UNDER - BICYCLE,2018-01-04,2018,January,Thursday,4,4,18,2018-01-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3318,2209,GO-2018749335,B&E,2018-04-26,2018,April,Thursday,26,116,20,2018-04-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3319,2527,GO-20189018176,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,10,2018-06-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3320,2792,GO-20189021772,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,9,2018-07-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3321,3006,GO-20189024293,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,1,2018-07-28,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3322,3144,GO-20189025808,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,20,2018-08-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3323,3391,GO-20189029112,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,1,2018-09-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3324,3392,GO-20189029112,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,1,2018-09-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3325,3483,GO-20189030564,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,22,2018-09-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3326,3829,GO-20182067085,THEFT UNDER - BICYCLE,2018-11-02,2018,November,Friday,2,306,10,2018-11-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3327,4042,GO-2019247610,THEFT OVER,2018-08-31,2018,August,Friday,31,243,18,2019-02-08,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3328,4150,GO-2019645119,THEFT OF MOTOR VEHICLE,2019-04-09,2019,April,Tuesday,9,99,21,2019-04-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3329,4285,GO-20199015253,THEFT UNDER,2019-05-15,2019,May,Wednesday,15,135,15,2019-05-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3330,4487,GO-20191102494,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,20,2019-06-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3331,4491,GO-20199018672,THEFT UNDER,2018-07-19,2018,July,Thursday,19,200,16,2019-06-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3332,4492,GO-20199018672,THEFT UNDER,2018-07-19,2018,July,Thursday,19,200,16,2019-06-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3333,4501,GO-20199018778,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,18,2019-06-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3334,4646,GO-20199020642,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,15,2019-07-01,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3335,4916,GO-20191433543,THEFT OF EBIKE UNDER $5000,2019-07-25,2019,July,Thursday,25,206,21,2019-07-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3336,5608,GO-20199035595,THEFT UNDER - BICYCLE,2019-10-02,2019,October,Wednesday,2,275,15,2019-10-28,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3337,5725,GO-20192283182,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,20,2019-11-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3338,5748,GO-20199039825,THEFT UNDER - BICYCLE,2019-11-16,2019,November,Saturday,16,320,21,2019-12-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3339,5777,GO-20199041602,THEFT UNDER - BICYCLE,2019-11-20,2019,November,Wednesday,20,324,17,2019-12-20,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3340,5786,GO-20199042027,THEFT UNDER - BICYCLE,2019-11-01,2019,November,Friday,1,305,7,2019-12-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3341,5825,GO-20209001488,THEFT UNDER - BICYCLE,2020-01-13,2020,January,Monday,13,13,17,2020-01-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3342,5826,GO-20209001488,THEFT UNDER - BICYCLE,2020-01-13,2020,January,Monday,13,13,17,2020-01-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3343,5898,GO-2020334344,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,0,2020-02-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3344,6091,GO-2020770077,B&E,2020-04-23,2020,April,Thursday,23,114,3,2020-04-23,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3345,6092,GO-2020770077,B&E,2020-04-23,2020,April,Thursday,23,114,3,2020-04-23,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3346,6189,GO-20209013149,THEFT UNDER - BICYCLE,2020-05-14,2020,May,Thursday,14,135,18,2020-05-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3347,6253,GO-20209013951,THEFT UNDER,2019-10-22,2019,October,Tuesday,22,295,14,2020-05-26,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3348,6269,GO-20209014197,THEFT UNDER - BICYCLE,2020-05-15,2020,May,Friday,15,136,13,2020-05-29,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3349,6278,GO-20209014369,THEFT UNDER - BICYCLE,2020-05-31,2020,May,Sunday,31,152,15,2020-06-01,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3350,6296,GO-20209014528,THEFT UNDER - BICYCLE,2020-06-01,2020,June,Monday,1,153,19,2020-06-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3351,6297,GO-20209014528,THEFT UNDER - BICYCLE,2020-06-01,2020,June,Monday,1,153,19,2020-06-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3352,6398,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11,2020,June,Thursday,11,163,20,2020-06-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3353,6399,GO-20209015420,THEFT FROM MOTOR VEHICLE UNDER,2020-06-11,2020,June,Thursday,11,163,20,2020-06-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3354,6404,GO-20209015503,THEFT UNDER - BICYCLE,2020-04-12,2020,April,Sunday,12,103,16,2020-06-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3355,6442,GO-20209015908,THEFT UNDER - BICYCLE,2020-06-21,2020,June,Sunday,21,173,20,2020-06-22,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3356,6484,GO-20209016305,THEFT UNDER - BICYCLE,2020-06-27,2020,June,Saturday,27,179,11,2020-06-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3357,6486,GO-20201189127,THEFT UNDER,2020-06-20,2020,June,Saturday,20,172,19,2020-06-28,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3358,6492,GO-20209016415,THEFT UNDER - BICYCLE,2020-06-23,2020,June,Tuesday,23,175,0,2020-06-29,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3359,6553,GO-20209017045,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,8,2020-07-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3360,6601,GO-20209017406,THEFT UNDER - BICYCLE,2020-07-07,2020,July,Tuesday,7,189,16,2020-07-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3361,6603,GO-20201296593,THEFT UNDER,2020-07-07,2020,July,Tuesday,7,189,14,2020-07-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3362,6604,GO-20201296593,THEFT UNDER,2020-07-07,2020,July,Tuesday,7,189,14,2020-07-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3363,6605,GO-20201296593,THEFT UNDER,2020-07-07,2020,July,Tuesday,7,189,14,2020-07-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3364,6680,GO-20209018056,THEFT UNDER - BICYCLE,2020-07-15,2020,July,Wednesday,15,197,17,2020-07-20,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3365,6718,GO-20201376125,THEFT OF EBIKE UNDER $5000,2020-07-21,2020,July,Tuesday,21,203,16,2020-07-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3366,6815,GO-20209019002,THEFT UNDER - BICYCLE,2020-06-23,2020,June,Tuesday,23,175,13,2020-07-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3367,6820,GO-20209019045,THEFT UNDER - BICYCLE,2020-07-30,2020,July,Thursday,30,212,21,2020-07-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3368,6888,GO-20209019566,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,18,2020-08-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3369,6918,GO-20201470271,THEFT UNDER - BICYCLE,2020-08-06,2020,August,Thursday,6,219,18,2020-08-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3370,6920,GO-20201468343,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,0,2020-08-06,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3371,6987,GO-20209020511,THEFT UNDER - BICYCLE,2020-05-23,2020,May,Saturday,23,144,8,2020-08-18,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3372,7060,GO-20209021153,THEFT UNDER - BICYCLE,2020-08-23,2020,August,Sunday,23,236,20,2020-08-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3373,7068,GO-20209021216,THEFT UNDER - BICYCLE,2020-08-24,2020,August,Monday,24,237,4,2020-08-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3374,7091,GO-20201613878,THEFT OF EBIKE UNDER $5000,2020-08-26,2020,August,Wednesday,26,239,11,2020-08-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3375,7156,GO-20209022098,THEFT UNDER - BICYCLE,2020-08-14,2020,August,Friday,14,227,23,2020-09-02,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3376,7165,GO-20209022191,THEFT UNDER - BICYCLE,2020-09-03,2020,September,Thursday,3,247,1,2020-09-03,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3377,7226,GO-20201697667,THEFT UNDER - BICYCLE,2020-08-11,2020,August,Tuesday,11,224,9,2020-09-08,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3378,7317,GO-20209024026,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,18,2020-09-22,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3379,7854,GO-20149002959,THEFT UNDER,2014-02-17,2014,February,Monday,17,48,0,2014-04-22,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3380,8084,GO-20149003932,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,20,2014-06-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3381,8085,GO-20149003932,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,20,2014-06-09,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3382,8241,GO-20149004412,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,15,2014-06-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3383,8323,GO-20142431368,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,16,2014-07-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3384,8406,GO-20149004940,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,22,2014-07-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3385,8421,GO-20149004988,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,8,2014-07-14,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3386,8438,GO-20149005051,PROPERTY - LOST,2014-06-09,2014,June,Monday,9,160,20,2014-07-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3387,8543,GO-20149005442,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,15,2014-07-29,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3388,8561,GO-20149005528,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,20,2014-07-31,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3389,8742,GO-20149006251,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,8,2014-08-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3390,9042,GO-20143078018,THEFT UNDER,2014-10-08,2014,October,Wednesday,8,281,4,2014-10-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3391,9077,GO-20149007636,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,19,2014-10-16,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3392,9106,GO-20143162944,THEFT UNDER,2014-10-10,2014,October,Friday,10,283,0,2014-10-23,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3393,9281,GO-20159000508,THEFT UNDER,2015-01-26,2015,January,Monday,26,26,13,2015-01-27,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3394,9287,GO-2015199687,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,12,2015-02-03,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3395,9308,GO-2015378613,THEFT UNDER,2014-12-25,2014,December,Thursday,25,359,9,2015-03-05,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3396,9309,GO-2015378613,THEFT UNDER,2014-12-25,2014,December,Thursday,25,359,9,2015-03-05,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3397,9397,GO-20159001893,THEFT UNDER,2015-04-01,2015,April,Wednesday,1,91,9,2015-04-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3398,9398,GO-20159001893,THEFT UNDER,2015-04-01,2015,April,Wednesday,1,91,9,2015-04-13,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3399,10150,GO-20159005186,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,14,2015-07-30,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3400,10257,GO-20151384615,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,22,2015-08-12,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3401,10366,GO-20159006508,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,14,2015-08-29,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3402,10447,GO-20159007047,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,13,2015-09-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3403,10498,GO-20159007427,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,12,2015-09-19,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3404,10503,GO-20151632704,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,20,2015-09-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3405,10578,GO-20159007731,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,16,2015-09-25,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3406,10814,GO-20152018144,THEFT UNDER,2015-11-16,2015,November,Monday,16,320,18,2015-11-24,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3407,10874,GO-20159010956,THEFT UNDER,2015-12-06,2015,December,Sunday,6,340,23,2015-12-15,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3408,9841,GO-20159003805,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,11,2015-06-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3409,9858,GO-20159003868,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,16,2015-06-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3410,10011,GO-20159004563,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,22,2015-07-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3411,10012,GO-20159004563,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,22,2015-07-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3412,10142,GO-20159005149,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,12,2015-07-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3413,10145,GO-20159005163,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,15,2015-07-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3414,10410,GO-20151539551,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,21,2015-09-06,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3415,10477,GO-20151587996,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,22,2015-09-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3416,10870,GO-20152123463,THEFT UNDER,2015-12-11,2015,December,Friday,11,345,12,2015-12-11,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3417,11053,GO-2016450173,THEFT UNDER - BICYCLE,2016-03-14,2016,March,Monday,14,74,11,2016-03-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3418,11125,GO-20169003268,THEFT UNDER - BICYCLE,2016-04-11,2016,April,Monday,11,102,12,2016-04-11,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3419,11156,GO-2016658985,THEFT UNDER - BICYCLE,2016-04-16,2016,April,Saturday,16,107,16,2016-04-18,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3420,11195,GO-2016700281,THEFT UNDER - BICYCLE,2016-04-23,2016,April,Saturday,23,114,16,2016-04-24,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3421,11236,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,0,2016-04-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3422,11237,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,0,2016-04-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3423,11238,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,0,2016-04-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3424,11239,GO-2016740223,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,0,2016-04-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3425,11321,GO-2016839588,THEFT UNDER - BICYCLE,2016-05-14,2016,May,Saturday,14,135,23,2016-05-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3426,10161,GO-20159005246,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,15,2015-08-01,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3427,11392,GO-20169005033,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,12,2016-05-27,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3428,11750,GO-20169006934,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,7,2016-07-09,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3429,11853,GO-20169007454,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,10,2016-07-20,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3430,12279,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3431,12280,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3432,12281,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3433,12282,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3434,12283,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3435,12284,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3436,12285,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3437,12286,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3438,12287,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3439,12288,GO-20161587221,B&E W'INTENT,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3440,12975,GO-20199028220,THEFT UNDER - BICYCLE,2019-08-14,2019,August,Wednesday,14,226,1,2019-08-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3441,12989,GO-20199032736,B&E,2019-10-05,2019,October,Saturday,5,278,16,2019-10-06,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3442,13010,GO-20192261923,THEFT UNDER - BICYCLE,2019-11-22,2019,November,Friday,22,326,19,2019-11-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3443,13011,GO-20192261923,THEFT UNDER - BICYCLE,2019-11-22,2019,November,Friday,22,326,19,2019-11-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3444,13053,GO-20209016277,THEFT UNDER - BICYCLE,2020-06-26,2020,June,Friday,26,178,14,2020-06-26,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3445,14071,GO-20169006073,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,19,2016-06-20,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3446,14092,GO-20169008664,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,9,2016-08-13,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3447,14210,GO-20179018141,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,10,2017-10-25,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3448,179,GO-2017543247,THEFT OVER,2017-03-27,2017,March,Monday,27,86,9,2017-03-27,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3449,14224,GO-20189009991,THEFT UNDER - BICYCLE,2018-03-29,2018,March,Thursday,29,88,9,2018-03-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3450,14248,GO-20181156175,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,13,2018-06-25,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3451,15855,GO-20141904285,THEFT UNDER,2014-04-07,2014,April,Monday,7,97,9,2014-04-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3452,15856,GO-20141904285,THEFT UNDER,2014-04-07,2014,April,Monday,7,97,9,2014-04-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3453,15863,GO-20142059340,PROPERTY - FOUND,2014-05-11,2014,May,Sunday,11,131,18,2014-05-11,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3454,15883,GO-20149004770,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,0,2014-07-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3455,15910,GO-20149007489,THEFT UNDER,2013-09-06,2013,September,Friday,6,249,18,2014-10-08,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3456,19371,GO-20209013840,THEFT UNDER - BICYCLE,2020-03-24,2020,March,Tuesday,24,84,19,2020-05-24,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3457,15911,GO-20149007489,THEFT UNDER,2013-09-06,2013,September,Friday,6,249,18,2014-10-08,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3458,15927,GO-2015516712,THEFT UNDER,2015-03-25,2015,March,Wednesday,25,84,21,2015-03-28,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3459,15955,GO-20159004464,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,15,2015-07-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3460,15957,GO-20159004749,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,23,2015-07-20,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3461,16003,GO-20152142678,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,13,2015-12-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3462,16041,GO-20201331078,B&E,2020-07-17,2020,July,Friday,17,199,23,2020-07-18,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3463,16106,GO-20209029983,THEFT UNDER,2020-11-17,2020,November,Tuesday,17,322,12,2020-11-18,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3464,19378,GO-20201083205,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,16,2020-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3465,18715,GO-20209018295,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,19,2020-07-22,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3466,18728,GO-20201495630,B&E,2020-08-01,2020,August,Saturday,1,214,19,2020-08-10,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3467,18741,GO-20209020836,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,21,2020-08-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3468,18771,GO-20209027509,THEFT UNDER,2020-10-20,2020,October,Tuesday,20,294,23,2020-10-24,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3469,18850,GO-20142577607,THEFT OVER,2014-07-22,2014,July,Tuesday,22,203,0,2014-07-26,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3470,18871,GO-20143234627,PROPERTY - FOUND,2013-07-22,2013,July,Monday,22,203,10,2014-11-04,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3471,18892,GO-2015922549,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,23,2015-06-02,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3472,23913,GO-20149004819,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,0,2014-07-08,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3473,18908,GO-20159004464,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,15,2015-07-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3474,18909,GO-20159004464,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,15,2015-07-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3475,19021,GO-20161445906,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,22,2016-08-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3476,19022,GO-20161445906,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,22,2016-08-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3477,19023,GO-20161445906,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,22,2016-08-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3478,19027,GO-20169009248,THEFT UNDER - BICYCLE,2016-08-22,2016,August,Monday,22,235,12,2016-08-22,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3479,19087,GO-20179007732,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,17,2017-06-08,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3480,2632,GO-20189019553,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,9,2018-06-20,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3481,19153,GO-2018808864,THEFT UNDER - BICYCLE,2018-04-27,2018,April,Friday,27,117,10,2018-05-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3482,19228,GO-2019950301,THEFT OF EBIKE OVER $5000,2019-05-22,2019,May,Wednesday,22,142,20,2019-05-24,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3483,19280,GO-20199028888,THEFT UNDER - BICYCLE,2019-09-05,2019,September,Thursday,5,248,10,2019-09-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3484,19318,GO-20199036031,THEFT UNDER - BICYCLE,2019-10-25,2019,October,Friday,25,298,13,2019-10-31,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3485,19332,GO-20209003596,THEFT UNDER,2020-01-29,2020,January,Wednesday,29,29,12,2020-01-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3486,19338,GO-20209008307,THEFT UNDER - BICYCLE,2020-03-09,2020,March,Monday,9,69,11,2020-03-09,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3487,19339,GO-20209008426,THEFT UNDER,2019-10-05,2019,October,Saturday,5,278,10,2020-03-10,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3488,7702,GO-20209031923,THEFT UNDER,2020-12-13,2020,December,Sunday,13,348,14,2020-12-13,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3489,19379,GO-20201083205,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,16,2020-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3490,19629,GO-20149004385,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,12,2014-06-24,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3491,19679,GO-20159002148,THEFT UNDER,2015-04-04,2015,April,Saturday,4,94,19,2015-04-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3492,19684,GO-2015934781,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,18,2015-06-04,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3493,19700,GO-20159004997,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,21,2015-07-26,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3494,19723,GO-20159006558,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,18,2015-08-31,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3495,19724,GO-20159006558,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,18,2015-08-31,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3496,22164,GO-20161146442,THEFT UNDER - BICYCLE,2016-06-26,2016,June,Sunday,26,178,12,2016-06-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3497,22173,GO-20161344638,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,3,2016-07-31,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3498,22174,GO-20161344638,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,3,2016-07-31,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3499,22189,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,10,2016-09-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3500,22190,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,10,2016-09-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3501,22191,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,10,2016-09-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3502,22192,GO-20161576391,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,10,2016-09-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3503,22226,GO-20179007946,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,0,2017-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3504,22227,GO-20179007946,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,0,2017-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3505,22245,GO-20179012454,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,20,2017-08-15,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3506,22284,GO-20189012650,THEFT UNDER,2018-04-19,2018,April,Thursday,19,109,11,2018-04-24,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3507,22294,GO-20189018448,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,2,2018-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3508,22313,GO-20189023488,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,18,2018-07-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3509,22343,GO-20189032141,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,7,2018-09-27,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3510,19985,GO-20181881196,THEFT OF EBIKE UNDER $5000,2018-10-11,2018,October,Thursday,11,284,8,2018-10-11,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3511,2350,GO-20189015583,THEFT UNDER - BICYCLE,2018-05-19,2018,May,Saturday,19,139,18,2018-05-20,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3512,7882,GO-20142019167,THEFT UNDER,2014-04-19,2014,April,Saturday,19,109,19,2014-05-05,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3513,20104,GO-20201323363,THEFT UNDER - BICYCLE,2020-07-16,2020,July,Thursday,16,198,20,2020-07-17,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3514,8419,GO-20149004978,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,5,2014-07-14,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3515,8639,GO-20149005810,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,11,2014-08-11,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3516,20201,GO-20179010140,THEFT UNDER,2017-07-13,2017,July,Thursday,13,194,21,2017-07-14,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3517,2521,GO-20181053551,B&E,2018-06-10,2018,June,Sunday,10,161,0,2018-06-10,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3518,9010,GO-20143029556,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,12,2014-10-02,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3519,20444,GO-20151725778,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,15,2015-10-06,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3520,9850,GO-20151054849,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,21,2015-06-23,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3521,20529,GO-20169010175,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,8,2016-09-09,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3522,3087,GO-20189025236,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,21,2018-08-06,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3523,9917,GO-20151107369,B&E,2015-06-30,2015,June,Tuesday,30,181,14,2015-07-01,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3524,23348,GO-20201501523,THEFT UNDER - BICYCLE,2020-08-09,2020,August,Sunday,9,222,8,2020-08-11,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3525,3463,GO-20181702336,B&E,2018-09-13,2018,September,Thursday,13,256,18,2018-09-14,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3526,9919,GO-20159004088,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,12,2015-07-01,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3527,23361,GO-20209026429,THEFT UNDER - BICYCLE,2020-10-13,2020,October,Tuesday,13,287,4,2020-10-14,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3528,136,GO-2017414307,THEFT OF EBIKE UNDER $5000,2017-03-01,2017,March,Wednesday,1,60,16,2017-03-07,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3529,373,GO-20179006163,THEFT UNDER,2017-05-10,2017,May,Wednesday,10,130,12,2017-05-11,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3530,515,GO-2017972189,THEFT UNDER - BICYCLE,2017-05-26,2017,May,Friday,26,146,20,2017-06-01,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3531,754,GO-20179009205,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,1,2017-06-30,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3532,1369,GO-20179014488,THEFT UNDER,2017-08-02,2017,August,Wednesday,2,214,16,2017-09-11,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3533,1392,GO-20179014657,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,11,2017-09-13,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3534,2349,GO-2018908248,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,13,2018-05-20,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3535,3172,GO-20189026041,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,15,2018-08-12,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3536,3935,GO-20181311831,THEFT OVER - BICYCLE,2018-07-16,2018,July,Monday,16,197,14,2018-07-16,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3537,4147,GO-2019630664,THEFT OF EBIKE UNDER $5000,2019-04-07,2019,April,Sunday,7,97,23,2019-04-08,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3538,4644,GO-20199020635,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,3,2019-07-01,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3539,4824,GO-20191368889,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,16,2019-07-21,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3540,6691,GO-20209018128,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,17,2020-07-22,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3541,7305,GO-20201790219,THEFT UNDER,2020-09-20,2020,September,Sunday,20,264,11,2020-09-21,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3542,7400,GO-20209025245,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,12,2020-10-02,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3543,22373,GO-20199014717,THEFT UNDER - BICYCLE,2019-05-11,2019,May,Saturday,11,131,16,2019-05-11,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3544,7519,GO-20201981245,THEFT UNDER - BICYCLE,2020-10-11,2020,October,Sunday,11,285,9,2020-10-19,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3545,7692,GO-20202302211,B&E,2020-12-06,2020,December,Sunday,6,341,3,2020-12-06,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3546,9269,GO-20159000369,THEFT UNDER,2015-01-19,2015,January,Monday,19,19,21,2015-01-20,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3547,9890,GO-20151078493,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,19,2015-06-26,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3548,9891,GO-20151078493,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,19,2015-06-26,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3549,9901,GO-20151082864,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,19,2015-06-27,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3550,9947,GO-20159004201,THEFT FROM MOTOR VEHICLE UNDER,2015-07-04,2015,July,Saturday,4,185,21,2015-07-05,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3551,10129,GO-20151299102,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,20,2015-07-29,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3552,10941,GO-2016129747,THEFT UNDER,2016-01-21,2016,January,Thursday,21,21,19,2016-01-22,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3553,11010,GO-2016326668,THEFT UNDER,2016-02-17,2016,February,Wednesday,17,48,18,2016-02-24,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3554,11115,GO-2016590160,THEFT UNDER - BICYCLE,2016-04-02,2016,April,Saturday,2,93,12,2016-04-07,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3555,11713,GO-20161169300,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,15,2016-07-04,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3556,12311,GO-20169010224,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,12,2016-09-10,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3557,12886,GO-20181562833,POSSESSION PROPERTY OBC UNDER,2018-08-24,2018,August,Friday,24,236,3,2018-08-24,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3558,12967,GO-20199026875,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,17,2019-08-19,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3559,14118,GO-20169013114,THEFT UNDER - BICYCLE,2016-11-06,2016,November,Sunday,6,311,19,2016-11-07,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3560,15872,GO-20142283683,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,16,2014-06-13,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3561,15891,GO-20142561479,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,0,2014-07-24,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3562,15978,GO-20151535082,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,21,2015-09-05,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3563,15991,GO-20151836543,ROBBERY - MUGGING,2015-10-25,2015,October,Sunday,25,298,16,2015-10-25,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3564,16073,GO-20201705452,B&E,2020-09-04,2020,September,Friday,4,248,20,2020-09-09,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3565,18827,GO-20141778180,THEFT UNDER,2014-03-27,2014,March,Thursday,27,86,6,2014-03-27,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3566,18882,GO-20159002085,THEFT UNDER,2015-04-01,2015,April,Wednesday,1,91,11,2015-04-20,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3567,18999,GO-20169007281,THEFT UNDER,2016-07-01,2016,July,Friday,1,183,13,2016-07-16,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3568,19145,GO-2018474399,THEFT OVER,2017-08-15,2017,August,Tuesday,15,227,12,2018-03-15,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3569,19196,GO-20181643876,B&E,2018-09-05,2018,September,Wednesday,5,248,1,2018-09-05,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3570,19197,GO-20181643876,B&E,2018-09-05,2018,September,Wednesday,5,248,1,2018-09-05,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3571,19288,GO-20199029889,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,17,2019-09-13,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3572,19645,GO-20142661541,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,0,2014-08-08,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3573,19663,GO-20143101946,PROPERTY - FOUND,2014-07-17,2014,July,Thursday,17,198,13,2014-07-17,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3574,22253,GO-20179014073,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,13,2017-09-05,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3575,22296,GO-20181105924,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,12,2018-06-18,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3576,22852,GO-20142493412,B&E,2014-07-11,2014,July,Friday,11,192,19,2014-07-14,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3577,22853,GO-20142493412,B&E,2014-07-11,2014,July,Friday,11,192,19,2014-07-14,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3578,22854,GO-20142488482,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,23,2014-07-13,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3579,22861,GO-20142720742,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,14,2014-08-17,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3580,22909,GO-20151069780,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,21,2015-06-25,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3581,25502,GO-20173007345,THEFT OF MOTOR VEHICLE,2017-11-15,2017,November,Wednesday,15,319,20,2017-11-16,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3582,25568,GO-20189023127,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,23,2018-07-19,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)}",O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -3583,42,GO-20179000403,THEFT UNDER - BICYCLE,2017-01-02,2017,January,Monday,2,2,16,2017-01-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3584,292,GO-2017739053,THEFT UNDER - BICYCLE,2017-04-26,2017,April,Wednesday,26,116,6,2017-04-27,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3585,463,GO-2017917831,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,19,2017-05-24,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3586,729,GO-20179009030,THEFT UNDER - BICYCLE,2017-06-25,2017,June,Sunday,25,176,0,2017-06-28,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3587,1046,GO-20179011603,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,15,2017-08-03,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3588,1178,GO-20171497669,B&E,2017-08-18,2017,August,Friday,18,230,4,2017-08-19,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3589,2341,GO-20189015341,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,18,2018-05-17,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3590,4262,GO-2019844720,THEFT UNDER,2019-05-09,2019,May,Thursday,9,129,17,2019-05-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3591,4515,GO-20199018924,THEFT UNDER - BICYCLE,2019-06-14,2019,June,Friday,14,165,14,2019-06-17,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3592,4723,GO-20199021651,THEFT UNDER - BICYCLE,2019-07-09,2019,July,Tuesday,9,190,8,2019-07-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3593,4742,GO-20199021785,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,8,2019-07-10,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3594,5298,GO-20191747613,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,7,2019-09-12,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3595,5972,GO-2020574723,THEFT UNDER - BICYCLE,2020-03-16,2020,March,Monday,16,76,14,2020-03-20,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3596,6073,GO-20209011331,THEFT UNDER,2020-04-16,2020,April,Thursday,16,107,15,2020-04-17,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3597,6903,GO-20201246958,B&E,2020-07-01,2020,July,Wednesday,1,183,16,2020-07-06,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3598,7381,GO-20209024824,THEFT UNDER - BICYCLE,2020-09-28,2020,September,Monday,28,272,19,2020-09-28,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3599,7626,GO-20202141380,THEFT UNDER - BICYCLE,2020-11-07,2020,November,Saturday,7,312,10,2020-11-13,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3600,7761,GO-20141508981,THEFT UNDER,2014-02-11,2014,February,Tuesday,11,42,10,2014-02-11,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3601,7766,GO-20141432628,THEFT UNDER,2014-01-28,2014,January,Tuesday,28,28,15,2014-01-29,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3602,7833,GO-20141885414,THEFT UNDER - SHOPLIFTING,2014-03-14,2014,March,Friday,14,73,19,2014-04-13,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3603,8106,GO-20142274631,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,17,2014-06-12,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3604,8848,GO-20149006710,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,13,2014-09-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3605,8849,GO-20149006711,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,22,2014-09-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3606,8850,GO-20149006711,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,22,2014-09-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3607,9318,GO-2015417111,THEFT UNDER,2015-03-10,2015,March,Tuesday,10,69,20,2015-03-11,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3608,9319,GO-2015417111,THEFT UNDER,2015-03-10,2015,March,Tuesday,10,69,20,2015-03-11,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3609,9616,GO-2015842573,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,15,2015-05-20,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3610,9895,GO-20151078178,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,15,2015-06-26,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3611,11137,GO-20141769678,PROPERTY - FOUND,2014-03-20,2014,March,Thursday,20,79,7,2014-03-26,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3612,11338,GO-2016862538,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,8,2016-05-19,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3613,12041,GO-20169008468,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,16,2016-08-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3614,12446,GO-20169011055,THEFT UNDER - BICYCLE,2016-09-25,2016,September,Sunday,25,269,8,2016-09-25,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3615,12980,GO-20199030265,THEFT UNDER - BICYCLE,2019-09-12,2019,September,Thursday,12,255,21,2019-09-16,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3616,10043,GO-20151215022,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,6,2015-07-17,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3617,10365,GO-20151505465,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,14,2015-09-01,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3618,11087,GO-2016544704,B&E,2016-03-31,2016,March,Thursday,31,91,17,2016-03-31,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3619,11287,GO-20169004377,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,13,2016-05-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3620,11417,GO-20169005170,THEFT UNDER,2016-05-25,2016,May,Wednesday,25,146,11,2016-05-30,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3621,11479,GO-2016989711,THEFT UNDER - BICYCLE,2016-06-07,2016,June,Tuesday,7,159,13,2016-06-09,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3622,11491,GO-20169005581,THEFT UNDER,2016-05-15,2016,May,Sunday,15,136,13,2016-06-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3623,11499,GO-20169005581,THEFT UNDER,2016-05-15,2016,May,Sunday,15,136,13,2016-06-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3624,11502,GO-20169005624,THEFT UNDER,2016-06-11,2016,June,Saturday,11,163,13,2016-06-11,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3625,11529,GO-20169005784,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,17,2016-06-14,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3626,11586,GO-20169006047,THEFT UNDER,2016-06-19,2016,June,Sunday,19,171,14,2016-06-20,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3627,11707,GO-20169006721,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,14,2016-07-04,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3628,11746,GO-20169006922,THEFT UNDER,2016-07-08,2016,July,Friday,8,190,16,2016-07-08,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3629,3569,GO-20189032157,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,9,2018-09-27,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3630,11869,GO-20169007569,THEFT UNDER - BICYCLE,2016-07-16,2016,July,Saturday,16,198,12,2016-07-20,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3631,11910,GO-20161308869,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,19,2016-07-25,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3632,12535,GO-20169011458,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,11,2016-10-02,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3633,13532,GO-20192249451,THEFT UNDER - BICYCLE,2019-11-11,2019,November,Monday,11,315,0,2019-11-21,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3634,13534,GO-20209009146,THEFT UNDER - BICYCLE,2020-03-17,2020,March,Tuesday,17,77,9,2020-03-17,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3635,13541,GO-20209014249,THEFT UNDER - BICYCLE,2020-05-27,2020,May,Wednesday,27,148,21,2020-05-30,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3636,13592,GO-20209026377,THEFT UNDER - BICYCLE,2020-10-13,2020,October,Tuesday,13,287,20,2020-10-13,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3637,13698,GO-20179011089,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,9,2017-07-26,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3638,13714,GO-20179014798,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,1,2017-09-14,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3639,13751,GO-2018830458,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,15,2018-05-08,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3640,13752,GO-2018830458,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,15,2018-05-08,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3641,13766,GO-20189018547,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,15,2018-06-13,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3642,13979,GO-20169006293,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,15,2016-06-24,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3643,14004,GO-20169009723,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,11,2016-08-30,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3644,14012,GO-20169010236,THEFT UNDER - BICYCLE,2016-08-30,2016,August,Tuesday,30,243,15,2016-09-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3645,14353,GO-20141941479,PROPERTY - FOUND,2014-04-22,2014,April,Tuesday,22,112,12,2014-04-22,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3646,16805,GO-20209000438,THEFT UNDER - BICYCLE,2020-01-05,2020,January,Sunday,5,5,13,2020-01-05,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3647,16808,GO-20209010599,THEFT UNDER,2020-04-02,2020,April,Thursday,2,93,13,2020-04-06,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3648,16819,GO-20201153801,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,19,2020-06-23,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3649,16827,GO-20209018107,THEFT UNDER - BICYCLE,2020-07-20,2020,July,Monday,20,202,10,2020-07-21,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3650,16836,GO-20209019617,THEFT UNDER - BICYCLE,2020-08-06,2020,August,Thursday,6,219,18,2020-08-07,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3651,16837,GO-20209020709,THEFT UNDER - BICYCLE,2020-08-10,2020,August,Monday,10,223,19,2020-08-19,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3652,16845,GO-20209024708,THEFT UNDER - BICYCLE,2020-09-13,2020,September,Sunday,13,257,0,2020-09-27,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3653,16851,GO-20202082613,THEFT UNDER - BICYCLE,2020-10-31,2020,October,Saturday,31,305,0,2020-11-02,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3654,16858,GO-20209030401,THEFT UNDER - BICYCLE,2020-11-11,2020,November,Wednesday,11,316,20,2020-11-23,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3655,16932,GO-20179008586,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,17,2017-06-21,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3656,16983,GO-20179015719,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,5,2017-09-25,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3657,17151,GO-20151205882,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,6,2015-07-16,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3658,17153,GO-20151209816,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,20,2015-07-16,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3659,17177,GO-20159007823,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,0,2015-09-27,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3660,17247,GO-20169007077,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,23,2016-07-12,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3661,17252,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,3659,"{'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 -3662,17301,GO-2017417544,THEFT UNDER - BICYCLE,2016-12-07,2016,December,Wednesday,7,342,12,2017-03-07,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3663,17432,GO-20142240413,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,6,2014-06-07,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3664,20030,GO-2019900674,B&E,2019-05-17,2019,May,Friday,17,137,10,2019-05-17,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3665,20086,GO-20209012411,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,16,2020-05-04,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3666,20092,GO-20209015961,THEFT UNDER - BICYCLE,2020-06-20,2020,June,Saturday,20,172,12,2020-06-23,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3667,20117,GO-20209021689,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,22,2020-08-29,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3668,20283,GO-20173270647,B&E,2017-12-27,2017,December,Wednesday,27,361,2,2017-12-27,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3669,20287,GO-20189003888,THEFT UNDER - BICYCLE,2018-02-07,2018,February,Wednesday,7,38,19,2018-02-08,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3670,20304,GO-2018951269,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,0,2018-05-26,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3671,20398,GO-20159004004,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,18,2015-06-28,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3672,20436,GO-20151605783,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,10,2015-09-12,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3673,20496,GO-20169005436,THEFT UNDER,2016-06-06,2016,June,Monday,6,158,16,2016-06-07,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3674,23326,GO-20201055426,THEFT UNDER - BICYCLE,2020-06-07,2020,June,Sunday,7,159,21,2020-06-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3675,23336,GO-20201306860,B&E,2020-07-13,2020,July,Monday,13,195,16,2020-07-14,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3676,23339,GO-20209017852,THEFT UNDER - BICYCLE,2020-07-08,2020,July,Wednesday,8,190,18,2020-07-16,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3677,23351,GO-20209020709,THEFT UNDER - BICYCLE,2020-08-10,2020,August,Monday,10,223,19,2020-08-19,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3678,23369,GO-20202224091,THEFT UNDER - BICYCLE,2020-11-11,2020,November,Wednesday,11,316,12,2020-11-24,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3679,23513,GO-20189011051,THEFT UNDER - BICYCLE,2018-04-08,2018,April,Sunday,8,98,18,2018-04-09,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3680,23514,GO-20189011224,THEFT UNDER - SHOPLIFTING,2018-04-09,2018,April,Monday,9,99,11,2018-04-11,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3681,23574,GO-20189025891,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,11,2018-08-10,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3682,23669,GO-20159009917,THEFT UNDER,2015-11-19,2015,November,Thursday,19,323,11,2015-11-19,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3683,23691,GO-20169004159,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,14,2016-05-04,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3684,22416,GO-20191763852,B&E,2019-09-13,2019,September,Friday,13,256,20,2019-09-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3685,23712,GO-20169006028,THEFT UNDER,2016-06-19,2016,June,Sunday,19,171,12,2016-06-19,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3686,23717,GO-20169006994,THEFT UNDER,2016-07-09,2016,July,Saturday,9,191,21,2016-07-11,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3687,23719,GO-20169007221,THEFT UNDER,2016-07-15,2016,July,Friday,15,197,8,2016-07-15,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3688,23914,GO-20149004817,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,16,2014-07-08,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)}",Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -3689,4380,GO-2019993328,THEFT OF EBIKE UNDER $5000,2019-05-30,2019,May,Thursday,30,150,15,2019-05-30,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3690,4845,GO-20199023355,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,9,2019-07-23,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3691,5080,GO-20191554402,THEFT FROM MOTOR VEHICLE UNDER,2019-08-16,2019,August,Friday,16,228,6,2019-08-16,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3692,5117,GO-20199027040,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,1,2019-08-21,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3693,5496,GO-20191956674,THEFT UNDER,2019-10-09,2019,October,Wednesday,9,282,11,2019-10-10,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3694,6375,GO-20201093440,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,11,2020-06-14,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3695,6376,GO-20201093440,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,11,2020-06-14,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3696,6727,GO-20209018459,THEFT UNDER - BICYCLE,2020-07-24,2020,July,Friday,24,206,15,2020-07-24,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3697,6798,GO-20209018846,THEFT UNDER - BICYCLE,2020-07-28,2020,July,Tuesday,28,210,17,2020-07-28,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3698,7076,GO-20209021332,THEFT UNDER - BICYCLE,2020-08-01,2020,August,Saturday,1,214,0,2020-08-25,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3699,7077,GO-20209021332,THEFT UNDER - BICYCLE,2020-08-01,2020,August,Saturday,1,214,0,2020-08-25,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3700,7462,GO-20209026373,THEFT UNDER - BICYCLE,2020-10-13,2020,October,Tuesday,13,287,9,2020-10-13,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3701,7893,GO-20142041036,B&E,2014-05-07,2014,May,Wednesday,7,127,21,2014-05-08,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3702,10361,GO-20159006486,THEFT UNDER,2015-08-22,2015,August,Saturday,22,234,23,2015-08-29,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3703,13566,GO-20209018910,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,14,2020-07-29,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3704,13708,GO-20179012520,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,16,2017-08-16,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3705,14006,GO-20161569434,ROBBERY WITH WEAPON,2016-09-04,2016,September,Sunday,4,248,12,2016-09-04,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3706,16841,GO-20209021341,THEFT UNDER - BICYCLE,2020-08-23,2020,August,Sunday,23,236,20,2020-08-25,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3707,16948,GO-20179010140,THEFT UNDER,2017-07-13,2017,July,Thursday,13,194,21,2017-07-14,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)}",Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -3708,4012,GO-2019108817,PROPERTY - FOUND,2019-01-18,2019,January,Friday,18,18,9,2019-01-18,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3709,22417,GO-20191763852,B&E,2019-09-13,2019,September,Friday,13,256,20,2019-09-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3710,4025,GO-20199003629,THEFT UNDER - BICYCLE,2019-01-17,2019,January,Thursday,17,17,16,2019-01-26,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3711,4382,GO-20199016945,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,18,2019-05-31,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3712,22426,GO-20199032643,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,7,2019-10-04,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3713,4464,GO-20191071378,THEFT UNDER - BICYCLE,2019-06-09,2019,June,Sunday,9,160,12,2019-06-10,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3714,22455,GO-20209011362,THEFT UNDER,2020-04-17,2020,April,Friday,17,108,13,2020-04-17,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3715,4857,GO-20191389911,THEFT UNDER - BICYCLE,2019-07-24,2019,July,Wednesday,24,205,5,2019-07-24,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3716,22459,GO-2020789791,THEFT UNDER - BICYCLE,2020-04-18,2020,April,Saturday,18,109,22,2020-04-26,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3717,5435,GO-20199032005,THEFT UNDER - BICYCLE,2019-09-23,2019,September,Monday,23,266,10,2019-09-29,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3718,22476,GO-20209015035,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,20,2020-06-09,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3719,22477,GO-20201079526,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,7,2020-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3720,22478,GO-20201079526,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,7,2020-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3721,22516,GO-20209018878,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,0,2020-07-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3722,22530,GO-20201554171,THEFT UNDER - BICYCLE,2020-08-13,2020,August,Thursday,13,226,11,2020-08-20,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3723,22572,GO-20209025215,THEFT UNDER - BICYCLE,2020-10-01,2020,October,Thursday,1,275,9,2020-10-02,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3724,22815,GO-20149002951,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,23,2014-04-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3725,22816,GO-20149002951,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,23,2014-04-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3726,22817,GO-20149002951,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,23,2014-04-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3727,22819,GO-20142058650,THEFT OVER,2014-04-20,2014,April,Sunday,20,110,12,2014-05-11,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3728,22848,GO-20149004602,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,11,2014-07-01,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3729,22892,GO-2015584351,THEFT UNDER,2015-04-08,2015,April,Wednesday,8,98,19,2015-04-09,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3730,22985,GO-20161294755,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,0,2016-07-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3731,25407,GO-20169013032,THEFT UNDER - BICYCLE,2016-11-06,2016,November,Sunday,6,311,3,2016-11-06,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3732,25408,GO-20169013032,THEFT UNDER - BICYCLE,2016-11-06,2016,November,Sunday,6,311,3,2016-11-06,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3733,25428,GO-20179002958,THEFT UNDER - BICYCLE,2017-03-08,2017,March,Wednesday,8,67,14,2017-03-08,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3734,25429,GO-20179002958,THEFT UNDER - BICYCLE,2017-03-08,2017,March,Wednesday,8,67,14,2017-03-08,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3735,25438,GO-2017816329,THEFT OVER - BICYCLE,2017-05-06,2017,May,Saturday,6,126,15,2017-05-10,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3736,25537,GO-20189015686,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,1,2018-05-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3737,25616,GO-2019745796,THEFT UNDER,2019-04-20,2019,April,Saturday,20,110,11,2019-04-25,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3738,25617,GO-2019745796,THEFT UNDER,2019-04-20,2019,April,Saturday,20,110,11,2019-04-25,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3739,25642,GO-20199022348,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,14,2019-07-15,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3740,25652,GO-20199024615,THEFT UNDER - BICYCLE,2019-07-31,2019,July,Wednesday,31,212,16,2019-08-01,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3741,25659,GO-20199026053,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,8,2019-08-13,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3742,25747,GO-20209017277,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,16,2020-07-10,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3743,5945,GO-20209007879,THEFT UNDER,2020-03-03,2020,March,Tuesday,3,63,16,2020-03-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3744,25789,GO-20201884270,B&E,2020-09-27,2020,September,Sunday,27,271,0,2020-10-04,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3745,32,GO-20169015197,THEFT UNDER - BICYCLE,2016-09-18,2016,September,Sunday,18,262,20,2016-12-29,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3746,91,GO-2017295663,B&E,2017-02-16,2017,February,Thursday,16,47,7,2017-02-16,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3747,426,GO-2017889266,B&E W'INTENT,2017-05-20,2017,May,Saturday,20,140,5,2017-05-20,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3748,1476,GO-20179015344,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,20,2017-09-21,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3749,1551,GO-20179016086,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,0,2017-09-29,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3750,1998,GO-20189002126,THEFT UNDER,2018-01-22,2018,January,Monday,22,22,8,2018-01-22,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3751,3985,GO-20199000656,THEFT UNDER,2018-12-23,2018,December,Sunday,23,357,16,2019-01-06,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3752,4108,GO-20199009623,THEFT UNDER,2019-03-20,2019,March,Wednesday,20,79,14,2019-03-25,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3753,4299,GO-20199015534,THEFT UNDER,2019-04-23,2019,April,Tuesday,23,113,0,2019-05-18,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3754,4650,GO-20199020689,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,15,2019-07-02,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3755,5018,GO-20199025607,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,19,2019-08-10,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3756,5239,GO-20199028843,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,6,2019-09-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3757,5240,GO-20199028843,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,6,2019-09-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3758,5337,GO-20199030129,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,17,2019-09-15,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3759,5483,GO-20199032904,THEFT UNDER,2019-10-03,2019,October,Thursday,3,276,1,2019-10-07,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3760,6258,GO-20209014020,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,9,2020-05-27,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3761,6283,GO-20201009296,THEFT UNDER - BICYCLE,2020-05-26,2020,May,Tuesday,26,147,22,2020-06-02,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3762,6290,GO-20209014446,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,15,2020-06-03,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3763,6291,GO-20209014446,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,15,2020-06-03,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3764,6292,GO-20201021913,PROPERTY - FOUND,2020-06-03,2020,June,Wednesday,3,155,13,2020-06-03,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3765,6293,GO-20201021913,PROPERTY - FOUND,2020-06-03,2020,June,Wednesday,3,155,13,2020-06-03,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3766,6294,GO-20201021913,PROPERTY - FOUND,2020-06-03,2020,June,Wednesday,3,155,13,2020-06-03,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3767,6309,GO-20209014687,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,12,2020-06-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3768,6764,GO-20209018715,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,16,2020-07-27,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3769,7071,GO-20209021293,THEFT FROM MOTOR VEHICLE UNDER,2020-08-22,2020,August,Saturday,22,235,2,2020-08-25,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3770,7284,GO-20209023715,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,17,2020-09-18,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3771,7493,GO-20209026793,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,17,2020-10-17,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3772,7494,GO-20209026793,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,17,2020-10-17,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3773,7570,GO-20202037032,THEFT UNDER - BICYCLE,2020-10-22,2020,October,Thursday,22,296,18,2020-10-27,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3774,7571,GO-20202037032,THEFT UNDER - BICYCLE,2020-10-22,2020,October,Thursday,22,296,18,2020-10-27,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3775,7573,GO-20202059428,THEFT OF EBIKE UNDER $5000,2020-10-21,2020,October,Wednesday,21,295,10,2020-10-31,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3776,7578,GO-20202069429,THEFT OF EBIKE UNDER $5000,2020-10-31,2020,October,Saturday,31,305,19,2020-10-31,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3777,8872,GO-20149006798,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,9,2014-09-11,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3778,9666,GO-20159003136,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,17,2015-05-27,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3779,10141,GO-20159005142,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,3,2015-07-29,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3780,10396,GO-20159006686,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,19,2015-09-02,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3781,10744,GO-20159009609,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,19,2015-11-10,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3782,10745,GO-20159009609,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,19,2015-11-10,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3783,11020,GO-2016386896,B&E,2016-03-04,2016,March,Friday,4,64,22,2016-03-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3784,11021,GO-2016386896,B&E,2016-03-04,2016,March,Friday,4,64,22,2016-03-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3785,11032,GO-2016386896,B&E,2016-03-04,2016,March,Friday,4,64,22,2016-03-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3786,11033,GO-2016386896,B&E,2016-03-04,2016,March,Friday,4,64,22,2016-03-05,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3787,11057,GO-20169002434,THEFT UNDER - BICYCLE,2016-03-13,2016,March,Sunday,13,73,13,2016-03-17,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3788,12051,GO-20169008521,THEFT UNDER,2016-05-11,2016,May,Wednesday,11,132,9,2016-08-10,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3789,12296,GO-20161595955,THEFT FROM MOTOR VEHICLE OVER,2016-09-08,2016,September,Thursday,8,252,14,2016-09-08,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3790,12297,GO-20161595955,THEFT FROM MOTOR VEHICLE OVER,2016-09-08,2016,September,Thursday,8,252,14,2016-09-08,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3791,12730,GO-20169013042,THEFT UNDER,2016-11-04,2016,November,Friday,4,309,20,2016-11-06,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3792,12805,GO-20162069416,THEFT UNDER - BICYCLE,2016-11-20,2016,November,Sunday,20,325,12,2016-11-21,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3793,12941,GO-20191136585,THEFT FROM MOTOR VEHICLE UNDER,2019-06-19,2019,June,Wednesday,19,170,0,2019-06-19,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3794,14067,GO-20161024514,THEFT UNDER,2016-06-12,2016,June,Sunday,12,164,9,2016-06-12,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3795,14078,GO-20169007260,THEFT UNDER,2016-07-15,2016,July,Friday,15,197,6,2016-07-15,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3796,14163,GO-20179008422,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,17,2017-06-19,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3797,14190,GO-20179015004,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,16,2017-09-17,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3798,15956,GO-20151205424,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,16,2015-07-16,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3799,15962,GO-20151367026,B&E,2015-08-06,2015,August,Thursday,6,218,15,2015-08-09,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3800,15963,GO-20151367026,B&E,2015-08-06,2015,August,Thursday,6,218,15,2015-08-09,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3801,15964,GO-20151367026,B&E,2015-08-06,2015,August,Thursday,6,218,15,2015-08-09,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3802,16059,GO-20209020585,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,15,2020-08-18,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3803,16065,GO-20201609214,B&E W'INTENT,2020-08-23,2020,August,Sunday,23,236,0,2020-08-26,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3804,16090,GO-20209025722,THEFT UNDER,2020-10-06,2020,October,Tuesday,6,280,22,2020-10-07,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3805,16092,GO-20201923275,B&E,2020-10-10,2020,October,Saturday,10,284,4,2020-10-10,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3806,16093,GO-20201923275,B&E,2020-10-10,2020,October,Saturday,10,284,4,2020-10-10,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3807,18726,GO-20209019290,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,0,2020-08-04,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3808,8237,GO-20149004401,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,10,2014-06-24,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3809,18756,GO-20201705028,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,8,2020-09-09,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3810,19106,GO-20171495841,B&E,2017-08-17,2017,August,Thursday,17,229,13,2017-08-19,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3811,19294,GO-20199031086,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,21,2019-09-22,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3812,19335,GO-20209006247,THEFT UNDER,2020-02-20,2020,February,Thursday,20,51,6,2020-02-21,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)}",Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -3813,5687,GO-20192193902,THEFT UNDER,2019-11-12,2019,November,Tuesday,12,316,12,2019-11-14,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3814,8893,GO-20149006921,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,20,2014-09-15,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3815,9108,GO-20143166325,THEFT UNDER,2014-10-24,2014,October,Friday,24,297,9,2014-10-24,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3816,9577,GO-20159002704,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,20,2015-05-13,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3817,9708,GO-20159003270,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,19,2015-06-02,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3818,11096,GO-2016569005,THEFT UNDER - BICYCLE,2016-03-29,2016,March,Tuesday,29,89,15,2016-03-30,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3819,13529,GO-20191990602,THEFT UNDER - BICYCLE,2019-10-14,2019,October,Monday,14,287,15,2019-10-15,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3820,14001,GO-20169009431,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,21,2016-08-24,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3821,16995,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,19,2017-10-19,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3822,16996,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,19,2017-10-19,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3823,17095,GO-20189027860,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,17,2018-08-25,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3824,17138,GO-2015948838,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,22,2015-06-06,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3825,17485,GO-20143028390,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,14,2014-10-02,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3826,20011,GO-2019105647,THREAT - PERSON,2019-01-17,2019,January,Thursday,17,17,16,2019-01-17,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3827,20256,GO-20171834720,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,19,2017-10-10,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3828,20260,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,19,2017-10-19,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3829,20261,GO-20179017561,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,19,2017-10-19,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3830,20461,GO-20151965617,THEFT UNDER,2015-11-11,2015,November,Wednesday,11,315,16,2015-11-16,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3831,20869,GO-20149004175,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,15,2014-06-17,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3832,23541,GO-20189018953,THEFT UNDER,2018-06-11,2018,June,Monday,11,162,12,2018-06-16,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3833,23554,GO-20189022318,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,16,2018-07-13,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3834,23692,GO-20169004237,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,10,2016-05-06,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)}",Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -3835,1866,GO-20179020237,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,3,2017-11-21,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3836,1895,GO-20173085479,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,15,2017-11-28,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3837,4532,GO-20199019118,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,18,2019-06-16,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3838,9365,GO-2015563537,PROPERTY - FOUND,2015-04-05,2015,April,Sunday,5,95,12,2015-04-05,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3839,9419,GO-2015635252,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,12,2015-04-17,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3840,9420,GO-2015635252,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,12,2015-04-17,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3841,14017,GO-20169010746,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,8,2016-09-19,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3842,16772,GO-20199019118,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,18,2019-06-16,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3843,16840,GO-20209020955,THEFT UNDER - BICYCLE,2020-08-21,2020,August,Friday,21,234,19,2020-08-22,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3844,16848,GO-20209026286,THEFT UNDER - BICYCLE,2020-09-30,2020,September,Wednesday,30,274,18,2020-10-13,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3845,20121,GO-20201704836,THEFT UNDER - BICYCLE,2020-09-05,2020,September,Saturday,5,249,3,2020-09-09,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3846,20299,GO-20189015052,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,21,2018-05-15,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3847,20941,GO-20149007907,THEFT UNDER,2014-10-30,2014,October,Thursday,30,303,13,2014-10-30,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3848,23951,GO-20142913787,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,18,2014-09-15,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)}",Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -3849,1136,GO-20179012296,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,14,2017-08-13,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3850,1618,GO-20179016797,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,14,2017-10-09,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3851,3226,GO-20189026627,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,8,2018-08-15,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3852,3379,GO-20189028860,THEFT UNDER - BICYCLE,2018-08-31,2018,August,Friday,31,243,21,2018-09-02,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3853,4194,GO-20199012829,THEFT UNDER,2019-04-23,2019,April,Tuesday,23,113,8,2019-04-23,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3854,5487,GO-20199033030,THEFT UNDER - BICYCLE,2019-10-07,2019,October,Monday,7,280,1,2019-10-07,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3855,5631,GO-20199036165,THEFT UNDER - BICYCLE,2019-11-01,2019,November,Friday,1,305,5,2019-11-01,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3856,5906,GO-20209006027,THEFT UNDER - BICYCLE,2020-01-15,2020,January,Wednesday,15,15,0,2020-02-19,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3857,8291,GO-20142441173,PROPERTY - FOUND,2014-07-06,2014,July,Sunday,6,187,9,2014-07-06,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3858,8612,GO-20149005710,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,14,2014-08-07,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3859,8895,GO-20149006908,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,9,2014-09-15,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3860,9205,GO-20143387156,THEFT UNDER,2014-11-28,2014,November,Friday,28,332,7,2014-11-28,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3861,9542,GO-2015754395,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,8,2015-05-06,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3862,9764,GO-2015966580,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,14,2015-06-09,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3863,10196,GO-20151359632,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,8,2015-07-29,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3864,12179,GO-20169009287,THEFT UNDER - BICYCLE,2016-08-22,2016,August,Monday,22,235,5,2016-08-22,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3865,12309,GO-20169010214,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,20,2016-09-09,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3866,12494,GO-20161730115,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,1,2016-09-29,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3867,12685,GO-20161906026,MHA SEC 16 (FORM 2),2016-10-26,2016,October,Wednesday,26,300,17,2016-10-26,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3868,12829,GO-20169013979,THEFT UNDER,2016-11-18,2016,November,Friday,18,323,21,2016-11-29,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3869,12830,GO-20169013984,THEFT UNDER - BICYCLE,2016-11-29,2016,November,Tuesday,29,334,11,2016-11-29,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3870,13828,GO-20189032302,THEFT UNDER,2018-09-26,2018,September,Wednesday,26,269,8,2018-09-28,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3871,14783,GO-2018887353,B&E,2018-05-16,2018,May,Wednesday,16,136,0,2018-05-17,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3872,14986,GO-20152163240,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,18,2015-12-17,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3873,17952,GO-20143381891,B&E,2014-11-27,2014,November,Thursday,27,331,8,2014-11-27,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3874,17971,GO-20151078203,THEFT UNDER,2015-01-02,2015,January,Friday,2,2,0,2015-06-26,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3875,18079,GO-20179008976,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,10,2017-06-27,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3876,18084,GO-20179009545,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,16,2017-07-06,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3877,20058,GO-20191333096,THEFT UNDER - BICYCLE,2019-07-09,2019,July,Tuesday,9,190,14,2019-07-16,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3878,20069,GO-20199029268,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,13,2019-09-09,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3879,20071,GO-20199030120,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,16,2019-09-15,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3880,20076,GO-20191990170,THEFT UNDER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,12,2019-10-16,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3881,21210,GO-20179014214,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,15,2017-09-07,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3882,21225,GO-20171888938,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,16,2017-10-18,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3883,21330,GO-20189025871,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,14,2018-08-10,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3884,22005,GO-20142174891,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,10,2014-05-16,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3885,22013,GO-20149003869,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,19,2014-06-07,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3886,22075,GO-20159005734,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,9,2015-08-13,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3887,22123,GO-20169008397,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,21,2016-08-08,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3888,24263,GO-20173026242,B&E,2017-11-19,2017,November,Sunday,19,323,2,2017-11-19,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3889,24495,GO-20159008565,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,19,2015-10-15,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)}",Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -3890,72,GO-2017174452,THEFT UNDER - BICYCLE,2016-12-28,2016,December,Wednesday,28,363,15,2017-01-28,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3891,125,GO-20179002662,THEFT UNDER - BICYCLE,2017-02-01,2017,February,Wednesday,1,32,18,2017-03-01,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3892,208,GO-2017639010,THEFT UNDER - BICYCLE,2017-02-24,2017,February,Friday,24,55,0,2017-04-11,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3893,631,GO-20171079314,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,3,2017-06-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3894,644,GO-20179008308,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,18,2017-06-17,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3895,668,GO-20171102753,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,0,2017-06-21,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3896,782,GO-20171194067,THEFT UNDER - BICYCLE,2017-07-01,2017,July,Saturday,1,182,0,2017-07-04,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3897,795,GO-20179009648,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,9,2017-07-07,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3898,823,GO-20179009860,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,12,2017-07-10,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3899,1056,GO-20179011732,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,11,2017-08-05,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)}",Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -3900,13000,GO-20199034499,THEFT UNDER - BICYCLE,2019-10-19,2019,October,Saturday,19,292,17,2019-10-19,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3901,13026,GO-20209011228,THEFT UNDER - BICYCLE,2020-03-15,2020,March,Sunday,15,75,17,2020-04-15,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3902,13064,GO-20201246958,B&E,2020-07-01,2020,July,Wednesday,1,183,16,2020-07-06,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3903,14075,GO-20169006664,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,12,2016-07-03,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3904,14123,GO-20162070165,THEFT UNDER - BICYCLE,2016-11-15,2016,November,Tuesday,15,320,12,2016-11-21,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3905,14124,GO-20162070165,THEFT UNDER - BICYCLE,2016-11-15,2016,November,Tuesday,15,320,12,2016-11-21,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3906,14155,GO-20179006334,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,19,2017-05-15,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3907,15959,GO-20159004775,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,5,2015-07-20,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3908,16016,GO-2016823004,THEFT UNDER - BICYCLE,2016-05-07,2016,May,Saturday,7,128,9,2016-05-13,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3909,18710,GO-20209017565,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,13,2020-07-14,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3910,19004,GO-20161267045,THEFT OF EBIKE UNDER $5000,2016-07-19,2016,July,Tuesday,19,201,13,2016-07-19,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3911,19025,GO-20161452156,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,21,2016-08-17,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3912,19147,GO-20189008808,THEFT UNDER - BICYCLE,2018-03-21,2018,March,Wednesday,21,80,11,2018-03-21,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3913,19627,GO-20142323982,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,19,2014-06-19,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3914,19760,GO-2016738272,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,11,2016-04-30,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3915,22204,GO-20169011050,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,13,2016-09-24,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3916,22393,GO-20199021655,THEFT UNDER - BICYCLE,2019-07-09,2019,July,Tuesday,9,190,8,2019-07-09,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3917,22506,GO-20209017812,THEFT UNDER - BICYCLE,2020-07-15,2020,July,Wednesday,15,197,19,2020-07-17,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3918,22545,GO-20209021666,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,20,2020-08-28,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3919,22590,GO-20209029468,THEFT UNDER - BICYCLE,2020-11-12,2020,November,Thursday,12,317,16,2020-11-12,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3920,22835,GO-20142242449,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,18,2014-06-07,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3921,25384,GO-20169009668,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,20,2016-08-29,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3922,25385,GO-20169009668,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,20,2016-08-29,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3923,25386,GO-20169009668,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,20,2016-08-29,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3924,25402,GO-20169012119,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,9,2016-10-15,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3925,25476,GO-20179013173,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,20,2017-08-23,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3926,25490,GO-20179015971,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,20,2017-09-28,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3927,25552,GO-20189020387,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,20,2018-06-26,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3928,25696,GO-20209006418,THEFT UNDER,2020-02-19,2020,February,Wednesday,19,50,17,2020-02-22,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3929,25716,GO-2020971099,B&E,2020-04-11,2020,April,Saturday,11,102,12,2020-05-26,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3930,25792,GO-20209026355,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,17,2020-10-13,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)}",Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -3931,356,GO-2017816329,THEFT OVER - BICYCLE,2017-05-06,2017,May,Saturday,6,126,15,2017-05-10,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3932,842,GO-20179010027,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,19,2017-07-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3933,982,GO-20179011046,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,9,2017-07-26,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3934,1214,GO-20171519322,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,0,2017-08-22,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3935,1309,GO-20179014003,THEFT UNDER - BICYCLE,2017-09-03,2017,September,Sunday,3,246,13,2017-09-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3936,1356,GO-20179014418,THEFT UNDER - BICYCLE,2017-09-07,2017,September,Thursday,7,250,15,2017-09-10,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3937,1563,GO-20179016205,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,1,2017-10-01,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3938,1752,GO-20179018299,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,16,2017-10-27,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3939,1806,GO-20179019079,THEFT UNDER - BICYCLE,2017-11-06,2017,November,Monday,6,310,9,2017-11-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3940,2066,GO-20189006982,THEFT UNDER - BICYCLE,2018-03-05,2018,March,Monday,5,64,9,2018-03-06,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3941,2180,GO-2018707640,B&E W'INTENT,2018-04-20,2018,April,Friday,20,110,14,2018-04-20,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3942,2331,GO-20189015226,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,20,2018-05-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3943,2365,GO-20189015686,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,1,2018-05-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3944,3774,GO-20189035910,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,14,2018-10-28,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3945,2431,GO-20189016925,THEFT UNDER - BICYCLE,2018-05-18,2018,May,Friday,18,138,12,2018-05-31,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3946,2539,GO-20189018341,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,3,2018-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3947,2540,GO-20189018341,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,3,2018-06-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3948,2659,GO-20189019908,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,1,2018-06-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3949,3450,GO-20189030048,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,7,2018-09-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3950,3555,GO-20189031916,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,15,2018-09-25,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3951,3766,GO-20189035720,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,13,2018-10-26,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3952,5863,GO-20209003677,THEFT UNDER,2020-01-30,2020,January,Thursday,30,30,17,2020-01-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3953,3815,GO-20182025450,THEFT UNDER,2018-10-29,2018,October,Monday,29,302,15,2018-11-02,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3954,3821,GO-20189037087,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,23,2018-11-06,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3955,3822,GO-20189037087,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,23,2018-11-06,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3956,4276,GO-20199015020,THEFT UNDER - BICYCLE,2019-05-14,2019,May,Tuesday,14,134,15,2019-05-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3957,4746,GO-20199021858,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,17,2019-07-11,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3958,4781,GO-20199022473,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,18,2019-07-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3959,5054,GO-20199026047,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,11,2019-08-13,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3960,5062,GO-20199026123,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,8,2019-08-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3961,5098,GO-20191572897,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,21,2019-08-18,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3962,5459,GO-20199032416,THEFT UNDER - BICYCLE,2019-10-01,2019,October,Tuesday,1,274,15,2019-10-02,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3963,5554,GO-20192031678,THEFT UNDER - BICYCLE,2019-10-20,2019,October,Sunday,20,293,21,2019-10-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3964,5726,GO-20192283638,THEFT UNDER - BICYCLE,2019-11-26,2019,November,Tuesday,26,330,10,2019-11-26,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3965,5737,GO-20199039402,THEFT UNDER - BICYCLE,2019-11-29,2019,November,Friday,29,333,8,2019-11-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3966,5860,GO-20209003544,THEFT UNDER,2020-01-29,2020,January,Wednesday,29,29,12,2020-01-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3967,5959,GO-2020532792,B&E,2020-03-12,2020,March,Thursday,12,72,1,2020-03-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3968,5960,GO-2020532792,B&E,2020-03-12,2020,March,Thursday,12,72,1,2020-03-14,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3969,5978,GO-2020578563,B&E,2020-03-09,2020,March,Monday,9,69,18,2020-03-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3970,5982,GO-20209009576,THEFT UNDER,2020-02-22,2020,February,Saturday,22,53,14,2020-03-22,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3971,6031,GO-2020675823,B&E,2020-04-06,2020,April,Monday,6,97,21,2020-04-07,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3972,6235,GO-20209013764,B&E,2020-05-23,2020,May,Saturday,23,144,2,2020-05-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3973,6240,GO-20209013846,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,10,2020-05-25,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3974,6241,GO-20209013846,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,10,2020-05-25,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3975,6271,GO-20209014261,THEFT UNDER - BICYCLE,2020-05-30,2020,May,Saturday,30,151,15,2020-05-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3976,6430,GO-20209015779,THEFT UNDER - BICYCLE,2020-06-19,2020,June,Friday,19,171,22,2020-06-20,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3977,6441,GO-20209015779,THEFT UNDER - BICYCLE,2020-06-19,2020,June,Friday,19,171,22,2020-06-20,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3978,6496,GO-20201198855,B&E,2020-06-29,2020,June,Monday,29,181,16,2020-06-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3979,6609,GO-20201298067,B&E,2020-06-17,2020,June,Wednesday,17,169,11,2020-07-13,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3980,6610,GO-20201298067,B&E,2020-06-17,2020,June,Wednesday,17,169,11,2020-07-13,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3981,6611,GO-20201298067,B&E,2020-06-17,2020,June,Wednesday,17,169,11,2020-07-13,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3982,7978,GO-20149003583,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,22,2014-05-25,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -3983,6612,GO-20201298067,B&E,2020-06-17,2020,June,Wednesday,17,169,11,2020-07-13,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3984,6730,GO-20209018295,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,19,2020-07-22,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3985,6780,GO-20201409693,THEFT OF MOTOR VEHICLE,2020-07-28,2020,July,Tuesday,28,210,23,2020-07-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3986,7055,GO-20209021093,THEFT UNDER - BICYCLE,2020-08-22,2020,August,Saturday,22,235,22,2020-08-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3987,7122,GO-20209021768,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,18,2020-08-30,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3988,7256,GO-20201728143,THEFT UNDER - BICYCLE,2020-09-12,2020,September,Saturday,12,256,13,2020-09-16,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3989,7384,GO-20209024867,THEFT UNDER - BICYCLE,2020-09-28,2020,September,Monday,28,272,19,2020-09-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3990,19174,GO-20189021179,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,8,2018-07-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -3991,7530,GO-20202005550,B&E,2020-10-18,2020,October,Sunday,18,292,16,2020-10-23,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3992,7734,GO-20141287666,THEFT FROM MOTOR VEHICLE UNDER,2014-01-04,2014,January,Saturday,4,4,20,2014-01-05,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3993,7790,GO-20149001867,THEFT UNDER,2014-03-08,2014,March,Saturday,8,67,7,2014-03-08,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3994,7794,GO-20149002225,THEFT UNDER,2014-03-19,2014,March,Wednesday,19,78,3,2014-03-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3995,7795,GO-20149002225,THEFT UNDER,2014-03-19,2014,March,Wednesday,19,78,3,2014-03-21,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3996,7796,GO-20141788268,THEFT UNDER,2014-03-18,2014,March,Tuesday,18,77,18,2014-03-29,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3997,7829,GO-20149002760,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,18,2014-04-12,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3998,7879,GO-20142007176,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,16,2014-05-03,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -3999,7880,GO-20142007176,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,16,2014-05-03,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -4000,7931,GO-20149003355,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,23,2014-05-15,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -4001,8077,GO-20149003898,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,11,2014-06-08,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)}",Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -4002,6583,GO-20201284336,B&E,2020-07-10,2020,July,Friday,10,192,14,2020-07-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4003,6584,GO-20201284336,B&E,2020-07-10,2020,July,Friday,10,192,14,2020-07-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4004,6769,GO-20201405601,THEFT UNDER,2020-07-14,2020,July,Tuesday,14,196,22,2020-07-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4005,6784,GO-20201405601,THEFT UNDER,2020-07-14,2020,July,Tuesday,14,196,22,2020-07-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4006,6792,GO-20209018823,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,9,2020-07-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4007,6932,GO-20201501555,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,16,2020-08-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4008,6946,GO-20209020035,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,2,2020-08-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4009,6950,GO-20201517436,PROPERTY - FOUND,2020-08-13,2020,August,Thursday,13,226,15,2020-08-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4010,6962,GO-20209020276,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,10,2020-08-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4011,7026,GO-20209020899,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,9,2020-08-21,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4012,7057,GO-20201596457,B&E,2020-08-21,2020,August,Friday,21,234,0,2020-08-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4013,7083,GO-20209021416,THEFT UNDER,2020-08-09,2020,August,Sunday,9,222,15,2020-08-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4014,7178,GO-20201673936,THEFT UNDER - BICYCLE,2020-08-30,2020,August,Sunday,30,243,6,2020-09-04,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4015,7180,GO-20201685640,B&E W'INTENT,2020-09-05,2020,September,Saturday,5,249,21,2020-09-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4016,7412,GO-20209025406,THEFT UNDER,2020-10-04,2020,October,Sunday,4,278,10,2020-10-04,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4017,7419,GO-20209025506,THEFT UNDER,2020-09-23,2020,September,Wednesday,23,267,1,2020-10-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4018,7452,GO-20201942016,B&E,2020-10-12,2020,October,Monday,12,286,22,2020-10-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4019,7557,GO-20209027835,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,10,2020-10-27,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4020,7621,GO-20202143166,THEFT OF EBIKE UNDER $5000,2020-11-10,2020,November,Tuesday,10,315,21,2020-11-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4021,7718,GO-20202433586,THEFT OF EBIKE UNDER $5000,2020-12-27,2020,December,Sunday,27,362,15,2020-12-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4022,7926,GO-20142085266,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,14,2014-05-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4023,8147,GO-20149004064,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,16,2014-06-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4024,8171,GO-20142327075,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,12,2014-06-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4025,8181,GO-20149004206,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,0,2014-06-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4026,8183,GO-20149004212,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,11,2014-06-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4027,8300,GO-20142448769,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,12,2014-07-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4028,8307,GO-20142448112,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,9,2014-07-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4029,8308,GO-20142448112,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,9,2014-07-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4030,8352,GO-20142495161,THEFT OF MOTOR VEHICLE,2014-07-14,2014,July,Monday,14,195,1,2014-07-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4031,8433,GO-20142511589,THEFT FROM MOTOR VEHICLE UNDER,2014-07-02,2014,July,Wednesday,2,183,0,2014-07-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4032,8463,GO-20149005151,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,0,2014-07-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4033,8501,GO-20142564782,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,23,2014-07-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4034,8502,GO-20142564782,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,23,2014-07-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4035,8514,GO-20149005343,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,21,2014-07-25,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4036,8673,GO-20149005988,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,15,2014-08-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4037,8820,GO-20149006600,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,17,2014-09-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4038,8835,GO-20149006663,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,16,2014-09-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4039,8941,GO-20142962720,PROPERTY - FOUND,2014-09-19,2014,September,Friday,19,262,12,2014-09-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4040,8942,GO-20142962720,PROPERTY - FOUND,2014-09-19,2014,September,Friday,19,262,12,2014-09-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4041,8984,GO-20149007246,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,18,2014-09-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4042,9032,GO-20149007493,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,17,2014-10-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4043,9134,GO-20143210259,THEFT UNDER,2014-10-17,2014,October,Friday,17,290,0,2014-10-31,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4044,9179,GO-20149008076,THEFT UNDER,2014-11-07,2014,November,Friday,7,311,18,2014-11-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4045,9664,GO-20159003129,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,18,2015-05-27,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4046,9716,GO-20159003298,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,9,2015-06-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4047,10291,GO-20159005947,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,22,2015-08-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4048,10586,GO-20151712249,THEFT UNDER,2015-10-01,2015,October,Thursday,1,274,23,2015-10-04,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4049,10647,GO-20159008663,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,20,2015-10-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4050,11006,GO-20169001671,THEFT UNDER - BICYCLE,2016-02-21,2016,February,Sunday,21,52,17,2016-02-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4051,11007,GO-20169001671,THEFT UNDER - BICYCLE,2016-02-21,2016,February,Sunday,21,52,17,2016-02-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4052,11008,GO-20169001671,THEFT UNDER - BICYCLE,2016-02-21,2016,February,Sunday,21,52,17,2016-02-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4053,11064,GO-2016393604,THEFT UNDER - BICYCLE,2016-03-05,2016,March,Saturday,5,65,12,2016-03-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4054,11110,GO-2016584844,THEFT UNDER,2016-03-27,2016,March,Sunday,27,87,9,2016-04-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4055,11376,GO-20169004958,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,15,2016-05-25,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4056,11390,GO-2016921213,B&E,2016-05-26,2016,May,Thursday,26,147,20,2016-05-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4057,11413,GO-2016944679,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,21,2016-05-31,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4058,11414,GO-2016944679,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,21,2016-05-31,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4059,11487,GO-20161009355,B&E,2016-06-09,2016,June,Thursday,9,161,23,2016-06-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4060,11495,GO-20161011920,MISCHIEF UNDER,2016-06-09,2016,June,Thursday,9,161,20,2016-06-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4061,11503,GO-20161021294,THEFT UNDER - BICYCLE,2016-06-11,2016,June,Saturday,11,163,23,2016-06-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4062,11504,GO-20161021294,THEFT UNDER - BICYCLE,2016-06-11,2016,June,Saturday,11,163,23,2016-06-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4063,11514,GO-20161029207,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,0,2016-06-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4064,11570,GO-20169005965,THEFT UNDER,2016-06-17,2016,June,Friday,17,169,15,2016-06-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4065,11671,GO-20161041526,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,18,2016-06-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4066,11672,GO-20161041526,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,18,2016-06-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4067,11696,GO-20169006684,THEFT UNDER,2016-06-30,2016,June,Thursday,30,182,10,2016-07-04,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4068,11822,GO-20161259303,B&E,2016-07-18,2016,July,Monday,18,200,6,2016-07-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4069,11830,GO-20161262304,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,18,2016-07-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4070,11841,GO-20169007370,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,18,2016-07-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4071,11842,GO-20169007382,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,13,2016-07-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4072,11919,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,8,2016-07-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4073,11920,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,8,2016-07-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4074,11941,GO-20169007882,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,11,2016-07-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4075,11952,GO-20161346172,B&E,2016-07-29,2016,July,Friday,29,211,9,2016-07-31,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4076,11953,GO-20161346172,B&E,2016-07-29,2016,July,Friday,29,211,9,2016-07-31,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4077,11959,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,8,2016-07-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4078,11960,GO-20161292450,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,8,2016-07-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4079,11984,GO-20169008146,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,22,2016-08-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4080,12044,GO-20161262304,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,18,2016-07-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4081,12070,GO-20169008613,THEFT UNDER,2016-08-10,2016,August,Wednesday,10,223,3,2016-08-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4082,12127,GO-20169008948,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,14,2016-08-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4083,12134,GO-20161450900,B&E W'INTENT,2016-08-05,2016,August,Friday,5,218,1,2016-08-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4084,12149,GO-20161481796,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,0,2016-08-21,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4085,12150,GO-20161481796,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,0,2016-08-21,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4086,12166,GO-20161488492,PROPERTY - FOUND,2016-08-22,2016,August,Monday,22,235,20,2016-08-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4087,12219,GO-20161532437,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,15,2016-08-29,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4088,12220,GO-20161532437,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,15,2016-08-29,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4089,12221,GO-20161532437,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,15,2016-08-29,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4090,12251,GO-20169009904,THEFT UNDER,2016-08-28,2016,August,Sunday,28,241,23,2016-09-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4091,12252,GO-20169009904,THEFT UNDER,2016-08-28,2016,August,Sunday,28,241,23,2016-09-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4092,12341,GO-20169010426,THEFT UNDER,2016-09-09,2016,September,Friday,9,253,17,2016-09-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4093,12342,GO-20169010443,THEFT UNDER,2016-09-09,2016,September,Friday,9,253,21,2016-09-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4094,12373,GO-20169010617,THEFT UNDER,2016-09-18,2016,September,Sunday,18,262,1,2016-09-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4095,12585,GO-20169011816,THEFT UNDER - BICYCLE,2016-10-09,2016,October,Sunday,9,283,21,2016-10-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4096,12704,GO-20161940449,B&E W'INTENT,2016-09-26,2016,September,Monday,26,270,23,2016-11-01,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4097,12880,GO-20189026724,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,8,2018-08-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4098,12981,GO-20199030340,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,5,2019-09-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4099,13024,GO-20209010024,THEFT UNDER,2020-03-28,2020,March,Saturday,28,88,10,2020-03-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4100,14064,GO-2016990964,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,20,2016-06-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4101,11102,GO-2016580104,ROBBERY - OTHER,2016-04-05,2016,April,Tuesday,5,96,21,2016-04-05,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4102,11103,GO-2016580104,ROBBERY - OTHER,2016-04-05,2016,April,Tuesday,5,96,21,2016-04-05,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4103,11104,GO-2016580104,ROBBERY - OTHER,2016-04-05,2016,April,Tuesday,5,96,21,2016-04-05,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4104,11455,GO-2016975309,THEFT OF EBIKE UNDER $5000,2016-06-04,2016,June,Saturday,4,156,22,2016-06-05,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4105,11518,GO-20169005715,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,22,2016-06-13,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4106,11677,GO-20161153182,THEFT UNDER - BICYCLE,2016-07-01,2016,July,Friday,1,183,21,2016-07-01,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4107,11979,GO-20169008057,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,18,2016-08-02,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4108,12011,GO-20169008277,THEFT UNDER,2016-08-05,2016,August,Friday,5,218,19,2016-08-06,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4109,12063,GO-20161394092,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,18,2016-08-08,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4110,12133,GO-20161446115,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,20,2016-08-16,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4111,12544,GO-20169011533,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,22,2016-10-04,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4112,12610,GO-20169011998,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,2,2016-10-13,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4113,12683,GO-20161910364,THEFT UNDER - BICYCLE,2016-09-27,2016,September,Tuesday,27,271,12,2016-10-27,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4114,12821,GO-20162089365,THEFT OF EBIKE UNDER $5000,2016-11-24,2016,November,Thursday,24,329,19,2016-11-24,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4115,12950,GO-20199022288,THEFT FROM MOTOR VEHICLE UNDER,2019-07-14,2019,July,Sunday,14,195,21,2019-07-15,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4116,12983,GO-20199030612,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,4,2019-09-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4117,12997,GO-20192025565,THEFT UNDER,2019-10-19,2019,October,Saturday,19,292,13,2019-10-20,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4118,12998,GO-20192025565,THEFT UNDER,2019-10-19,2019,October,Saturday,19,292,13,2019-10-20,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4119,12999,GO-20192025565,THEFT UNDER,2019-10-19,2019,October,Saturday,19,292,13,2019-10-20,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4120,14087,GO-20169008057,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,18,2016-08-02,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4121,14094,GO-20169008971,THEFT UNDER,2016-08-16,2016,August,Tuesday,16,229,0,2016-08-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4122,14105,GO-20161629616,THEFT OF MOTOR VEHICLE,2016-08-24,2016,August,Wednesday,24,237,18,2016-09-14,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4123,14146,GO-20179004597,THEFT UNDER,2017-04-11,2017,April,Tuesday,11,101,23,2017-04-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4124,14175,GO-20179011426,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,15,2017-07-31,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4125,14176,GO-20179011426,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,15,2017-07-31,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4126,14256,GO-20189021487,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,18,2018-07-06,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4127,15988,GO-20151754024,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,14,2015-10-11,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4128,15999,GO-20152100421,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,3,2015-12-08,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4129,16000,GO-20152100421,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,3,2015-12-08,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4130,16004,GO-20152217342,PROPERTY - FOUND,2015-12-27,2015,December,Sunday,27,361,12,2015-12-27,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4131,16055,GO-20201504289,B&E,2020-08-10,2020,August,Monday,10,223,23,2020-08-11,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4132,16060,GO-20201554217,THEFT OF EBIKE UNDER $5000,2020-08-14,2020,August,Friday,14,227,22,2020-08-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4133,16064,GO-20201602346,THEFT OF EBIKE UNDER $5000,2020-08-24,2020,August,Monday,24,237,23,2020-08-25,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4134,16086,GO-20209024471,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,22,2020-09-25,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4135,16087,GO-20209024471,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,22,2020-09-25,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4136,16089,GO-20201866121,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,0,2020-10-04,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4137,16094,GO-20209026212,THEFT UNDER,2020-10-11,2020,October,Sunday,11,285,21,2020-10-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4138,18735,GO-20209020216,THEFT UNDER,2020-05-05,2020,May,Tuesday,5,126,4,2020-08-14,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4139,18744,GO-20209021029,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,21,2020-08-22,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4140,18874,GO-20143322604,THEFT UNDER - SHOPLIFTING,2014-11-18,2014,November,Tuesday,18,322,10,2014-11-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4141,18949,GO-20151814200,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,15,2015-10-21,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4142,19024,GO-20169008907,THEFT UNDER,2016-08-17,2016,August,Wednesday,17,230,5,2016-08-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4143,19030,GO-20161520700,B&E,2016-08-26,2016,August,Friday,26,239,21,2016-08-27,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4144,19076,GO-20179005370,THEFT UNDER - BICYCLE,2017-04-26,2017,April,Wednesday,26,116,7,2017-04-27,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4145,19112,GO-20179014088,THEFT UNDER,2017-09-05,2017,September,Tuesday,5,248,18,2017-09-06,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4146,19113,GO-20179014088,THEFT UNDER,2017-09-05,2017,September,Tuesday,5,248,18,2017-09-06,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4147,19184,GO-20189024548,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,0,2018-07-31,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4148,19186,GO-20189025428,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,13,2018-08-07,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4149,19220,GO-20182271177,PROPERTY - FOUND,2018-12-11,2018,December,Tuesday,11,345,10,2018-12-11,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4150,19281,GO-20199029056,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,20,2019-09-07,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4151,19311,GO-20191972434,B&E,2019-10-12,2019,October,Saturday,12,285,2,2019-10-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4152,19312,GO-20191972434,B&E,2019-10-12,2019,October,Saturday,12,285,2,2019-10-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4153,19313,GO-20191972434,B&E,2019-10-12,2019,October,Saturday,12,285,2,2019-10-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4154,19632,GO-20142471435,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,18,2014-07-10,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4155,19698,GO-20151258718,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,21,2015-07-23,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4156,19753,GO-2016486799,THEFT UNDER - BICYCLE,2016-02-15,2016,February,Monday,15,46,18,2016-03-21,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4157,22179,GO-20169008673,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,14,2016-08-13,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4158,22180,GO-20169008771,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,5,2016-08-15,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4159,22182,GO-20169008965,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,2,2016-08-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4160,22255,GO-20179014582,THEFT UNDER,2017-09-12,2017,September,Tuesday,12,255,15,2017-09-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4161,22265,GO-20179017640,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,14,2017-10-19,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4162,22280,GO-20189008032,THEFT UNDER - BICYCLE,2018-03-15,2018,March,Thursday,15,74,8,2018-03-15,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4163,22329,GO-20189029395,THEFT UNDER,2018-09-05,2018,September,Wednesday,5,248,21,2018-09-06,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4164,22340,GO-20189031668,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,10,2018-09-24,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4165,22504,GO-20201319182,B&E,2020-07-16,2020,July,Thursday,16,198,2,2020-07-16,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4166,22552,GO-20201694574,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,17,2020-09-07,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4167,22555,GO-20201712871,THEFT UNDER - BICYCLE,2020-09-09,2020,September,Wednesday,9,253,20,2020-09-10,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4168,22569,GO-20209024397,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,10,2020-09-24,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4169,22576,GO-20201884771,B&E,2020-10-02,2020,October,Friday,2,276,17,2020-10-04,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4170,22887,GO-201591398,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,12,2015-01-16,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4171,22927,GO-20159006881,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,14,2015-09-08,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4172,22928,GO-20159006881,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,14,2015-09-08,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4173,22939,GO-20151729555,PROPERTY - FOUND,2015-10-06,2015,October,Tuesday,6,279,11,2015-10-07,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4174,22941,GO-20151924937,THEFT UNDER,2015-10-08,2015,October,Thursday,8,281,9,2015-11-09,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4175,22954,GO-20159011413,THEFT FROM MOTOR VEHICLE UNDER,2015-12-13,2015,December,Sunday,13,347,1,2015-12-30,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4176,22957,GO-20169002059,THEFT UNDER,2015-03-14,2015,March,Saturday,14,73,18,2016-03-06,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4177,25397,GO-20169010821,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,1,2016-09-20,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4178,25412,GO-20169013267,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,16,2016-11-11,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4179,25465,GO-20179010448,THEFT UNDER,2017-07-17,2017,July,Monday,17,198,12,2017-07-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4180,25491,GO-20179016008,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,19,2017-09-28,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4181,25523,GO-2018441410,THEFT UNDER - BICYCLE,2018-03-09,2018,March,Friday,9,68,22,2018-03-14,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4182,25546,GO-20189018458,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,20,2018-06-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4183,25591,GO-20181775223,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,16,2018-09-25,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4184,25621,GO-2019789762,THEFT UNDER - BICYCLE,2019-05-02,2019,May,Thursday,2,122,6,2019-05-02,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4185,25635,GO-20199018811,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,10,2019-06-16,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4186,25667,GO-20199029542,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,18,2019-09-11,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4187,25687,GO-20192076573,THEFT UNDER - BICYCLE,2019-10-26,2019,October,Saturday,26,299,21,2019-10-27,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4188,25695,GO-20209006169,THEFT UNDER,2020-02-20,2020,February,Thursday,20,51,7,2020-02-20,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4189,25742,GO-20209017070,THEFT UNDER,2020-07-07,2020,July,Tuesday,7,189,23,2020-07-08,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4190,25778,GO-20201828065,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,19,2020-09-26,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4191,25779,GO-20201828065,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,19,2020-09-26,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4192,25780,GO-20201828065,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,19,2020-09-26,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4193,355,GO-20179006058,THEFT UNDER,2017-04-30,2017,April,Sunday,30,120,14,2017-05-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4194,620,GO-20171055702,THEFT UNDER,2017-06-13,2017,June,Tuesday,13,164,22,2017-06-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4195,622,GO-20179008119,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,23,2017-06-15,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4196,863,GO-20171280834,THEFT OVER,2017-07-14,2017,July,Friday,14,195,17,2017-07-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4197,864,GO-20171280834,THEFT OVER,2017-07-14,2017,July,Friday,14,195,17,2017-07-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4198,889,GO-20179010377,THEFT OVER - BICYCLE,2017-07-14,2017,July,Friday,14,195,17,2017-07-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4199,890,GO-20179010377,THEFT OVER - BICYCLE,2017-07-14,2017,July,Friday,14,195,17,2017-07-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4200,1040,GO-20179011550,THEFT UNDER,2017-08-01,2017,August,Tuesday,1,213,0,2017-08-02,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4201,19255,GO-20199023992,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,3,2019-07-27,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4202,19389,GO-20209016936,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,0,2020-07-06,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4203,19680,GO-20159002386,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,8,2015-05-02,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4204,22292,GO-20189017170,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,0,2018-06-03,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4205,22301,GO-20189020931,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,15,2018-07-02,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4206,22387,GO-20191215900,B&E,2019-06-29,2019,June,Saturday,29,180,18,2019-06-30,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4207,22401,GO-20199024876,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,16,2019-08-03,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4208,22421,GO-20191846271,THEFT OF EBIKE UNDER $5000,2019-09-23,2019,September,Monday,23,266,7,2019-09-25,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4209,22453,GO-20209011016,THEFT UNDER,2020-04-08,2020,April,Wednesday,8,99,18,2020-04-13,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4210,22482,GO-20201147082,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,11,2020-06-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4211,22483,GO-20201147082,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,11,2020-06-22,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4212,22523,GO-20209019415,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,21,2020-08-05,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4213,22585,GO-20202120824,THEFT UNDER - BICYCLE,2020-11-07,2020,November,Saturday,7,312,17,2020-11-08,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4214,22586,GO-20202120824,THEFT UNDER - BICYCLE,2020-11-07,2020,November,Saturday,7,312,17,2020-11-08,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4215,22836,GO-20149003887,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,1,2014-06-08,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4216,22868,GO-20149006703,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,9,2014-09-08,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4217,22958,GO-2016412669,B&E,2016-03-08,2016,March,Tuesday,8,68,8,2016-03-09,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4218,22959,GO-2016412669,B&E,2016-03-08,2016,March,Tuesday,8,68,8,2016-03-09,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4219,22960,GO-2016412669,B&E,2016-03-08,2016,March,Tuesday,8,68,8,2016-03-09,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4220,22986,GO-20161352799,B&E,2016-07-29,2016,July,Friday,29,211,8,2016-08-01,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4221,22987,GO-20161352799,B&E,2016-07-29,2016,July,Friday,29,211,8,2016-08-01,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4222,25394,GO-20161648195,THEFT UNDER - BICYCLE,2016-09-04,2016,September,Sunday,4,248,23,2016-09-16,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4223,25482,GO-20171601019,PROPERTY - FOUND,2017-09-04,2017,September,Monday,4,247,12,2017-09-04,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4224,25596,GO-20189034925,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,6,2018-10-21,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)}",Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -4225,673,GO-20179008519,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,8,2017-06-20,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4226,2969,GO-20189023959,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,8,2018-07-26,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4227,3342,GO-20181593284,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,21,2018-08-28,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4228,3442,GO-20189029913,THEFT UNDER - BICYCLE,2018-09-10,2018,September,Monday,10,253,23,2018-09-11,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4229,3825,GO-20189029913,THEFT UNDER - BICYCLE,2018-09-10,2018,September,Monday,10,253,23,2018-09-11,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4230,4890,GO-20199023819,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,12,2019-07-26,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4231,4924,GO-20191441955,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,21,2019-07-31,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4232,4925,GO-20191441955,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,21,2019-07-31,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4233,5014,GO-20199025578,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,10,2019-08-09,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4234,5049,GO-20199025970,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,8,2019-08-12,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4235,6665,GO-20209017970,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,23,2020-07-19,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4236,7516,GO-20209027072,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,8,2020-10-20,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4237,7606,GO-20209029024,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,23,2020-11-08,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4238,7637,GO-20202168763,B&E,2020-11-14,2020,November,Saturday,14,319,16,2020-11-15,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4239,7638,GO-20202168763,B&E,2020-11-14,2020,November,Saturday,14,319,16,2020-11-15,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4240,7639,GO-20202168763,B&E,2020-11-14,2020,November,Saturday,14,319,16,2020-11-15,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4241,8265,GO-20149004492,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,10,2014-06-27,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4242,8398,GO-20149004918,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,8,2014-07-11,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4243,9183,GO-20143293490,THEFT UNDER,2014-10-24,2014,October,Friday,24,297,14,2014-11-13,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4244,10175,GO-20159005326,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,2,2015-08-04,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4245,10537,GO-20159007668,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,14,2015-09-23,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4246,10538,GO-20159007668,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,14,2015-09-23,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4247,11225,GO-2016733217,THEFT UNDER - BICYCLE,2016-04-29,2016,April,Friday,29,120,17,2016-04-29,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4248,11882,GO-20169007647,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,3,2016-07-23,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4249,12916,GO-20182321719,THEFT OF EBIKE UNDER $5000,2018-12-19,2018,December,Wednesday,19,353,0,2018-12-19,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4250,12926,GO-20199013544,THEFT UNDER,2019-04-30,2019,April,Tuesday,30,120,7,2019-04-30,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4251,15921,GO-20143406070,B&E,2014-12-01,2014,December,Monday,1,335,7,2014-12-01,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4252,19096,GO-20179009824,THEFT UNDER - BICYCLE,2017-07-09,2017,July,Sunday,9,190,19,2017-07-10,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4253,19293,GO-20199030944,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,13,2019-09-21,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4254,19651,GO-20149006466,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,20,2014-09-01,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4255,19766,GO-2016881335,THEFT UNDER,2016-05-20,2016,May,Friday,20,141,13,2016-05-22,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4256,22187,GO-20169009758,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,18,2016-08-31,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4257,22391,GO-20199021328,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,1,2019-07-07,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4258,22966,GO-2016547409,THEFT UNDER,2016-03-26,2016,March,Saturday,26,86,21,2016-03-31,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4259,22995,GO-20161475596,B&E,2016-08-20,2016,August,Saturday,20,233,16,2016-08-20,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4260,25383,GO-20169009427,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,20,2016-08-24,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4261,25570,GO-20189023526,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,11,2018-07-23,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4262,14085,GO-20161354391,PROPERTY - FOUND,2016-08-02,2016,August,Tuesday,2,215,4,2016-08-02,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4263,25699,GO-20209009115,THEFT UNDER,2020-03-12,2020,March,Thursday,12,72,4,2020-03-16,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)}",Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -4264,430,GO-2017892097,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,17,2017-05-20,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4265,710,GO-20171138282,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,1,2017-06-26,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4266,1346,GO-20179014303,THEFT UNDER,2017-09-08,2017,September,Friday,8,251,11,2017-09-08,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4267,1819,GO-20172025685,THEFT OF EBIKE UNDER $5000,2017-11-06,2017,November,Monday,6,310,23,2017-11-08,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4268,2108,GO-20189009527,THEFT UNDER - BICYCLE,2018-03-24,2018,March,Saturday,24,83,8,2018-03-26,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4269,2400,GO-20189016392,THEFT UNDER,2018-05-26,2018,May,Saturday,26,146,20,2018-05-27,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4270,2456,GO-20189017365,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,10,2018-06-04,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4271,2727,GO-20189020853,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,23,2018-07-01,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4272,1542,GO-20179015983,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,9,2017-09-27,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4273,3154,GO-20189025901,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,16,2018-08-10,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4274,3641,GO-20189033288,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,22,2018-10-09,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4275,3951,GO-20189042898,THEFT UNDER - BICYCLE,2018-12-19,2018,December,Wednesday,19,353,2,2018-12-21,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4276,4687,GO-20191267293,PROPERTY - FOUND,2019-07-06,2019,July,Saturday,6,187,15,2019-07-07,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4277,5386,GO-20199031265,THEFT UNDER,2019-09-23,2019,September,Monday,23,266,17,2019-09-23,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4278,5699,GO-20199037854,THEFT UNDER,2019-11-16,2019,November,Saturday,16,320,9,2019-11-18,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4279,6418,GO-20209015601,THEFT FROM MOTOR VEHICLE UNDER,2020-06-16,2020,June,Tuesday,16,168,18,2020-06-17,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4280,6849,GO-20201449190,THEFT OF EBIKE UNDER $5000,2020-08-02,2020,August,Sunday,2,215,20,2020-08-03,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4281,7090,GO-20209021354,THEFT UNDER,2020-08-25,2020,August,Tuesday,25,238,18,2020-08-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4282,7353,GO-20209024411,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,21,2020-09-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4283,7485,GO-20201970883,THEFT OF EBIKE UNDER $5000,2020-10-08,2020,October,Thursday,8,282,20,2020-10-09,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4284,7695,GO-20209031452,THEFT UNDER,2020-12-08,2020,December,Tuesday,8,343,2,2020-12-08,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4285,8159,GO-20142297997,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,20,2014-06-15,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4286,8182,GO-20149004211,B&E,2014-06-18,2014,June,Wednesday,18,169,0,2014-06-18,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4287,9078,GO-20149007637,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,19,2014-10-17,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4288,9139,GO-20143217834,THEFT UNDER,2014-10-30,2014,October,Thursday,30,303,17,2014-11-01,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4289,9813,GO-20151003581,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,17,2015-06-15,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4290,10494,GO-20151608633,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,14,2015-09-17,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4291,10682,GO-20151834416,THEFT UNDER,2015-10-25,2015,October,Sunday,25,298,6,2015-10-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4292,10858,GO-20152126789,PROPERTY - FOUND,2015-12-12,2015,December,Saturday,12,346,1,2015-12-12,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4293,11274,GO-20169004253,THEFT UNDER,2016-05-06,2016,May,Friday,6,127,6,2016-05-07,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4294,11402,GO-2016919827,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,21,2016-05-28,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4295,11730,GO-20161177407,THEFT OF EBIKE UNDER $5000,2016-05-30,2016,May,Monday,30,151,12,2016-07-05,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4296,12590,GO-20169011825,THEFT UNDER,2016-10-08,2016,October,Saturday,8,282,10,2016-10-11,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4297,12700,GO-20169012780,THEFT UNDER,2016-10-29,2016,October,Saturday,29,303,0,2016-10-30,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4298,12900,GO-20189034407,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,9,2018-10-17,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4299,14117,GO-20169012546,THEFT UNDER - BICYCLE,2016-10-24,2016,October,Monday,24,298,20,2016-10-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4300,14142,GO-2017174295,FTC WITH CONDITIONS,2017-01-28,2017,January,Saturday,28,28,11,2017-01-28,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4301,14230,GO-20189013544,THEFT UNDER,2018-04-19,2018,April,Thursday,19,109,16,2018-05-02,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4302,14241,GO-20189018251,THEFT UNDER,2018-06-11,2018,June,Monday,11,162,12,2018-06-11,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4303,22215,GO-20169014214,THEFT UNDER,2016-11-20,2016,November,Sunday,20,325,18,2016-12-04,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4304,15890,GO-20142555903,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,11,2014-07-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4305,22846,GO-20149004564,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,18,2014-06-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4306,14088,GO-20169008206,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,9,2016-08-04,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4307,15899,GO-20149005986,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,20,2014-08-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4308,22216,GO-20169014662,POSSESSION PROPERTY OBC OVER,2016-12-09,2016,December,Friday,9,344,23,2016-12-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4309,22849,GO-20149004618,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,1,2014-07-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4310,1605,GO-20179016636,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,0,2017-10-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4311,14098,GO-20161501233,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,19,2016-08-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4312,1643,GO-20179016911,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,18,2017-10-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4313,14100,GO-20169009847,THEFT UNDER,2016-09-02,2016,September,Friday,2,246,10,2016-09-02,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4314,15914,GO-20143127296,THEFT UNDER,2014-10-18,2014,October,Saturday,18,291,8,2014-10-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4315,1799,GO-20179018955,THEFT UNDER - BICYCLE,2017-11-05,2017,November,Sunday,5,309,0,2017-11-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4316,22244,GO-20179011890,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4317,22864,GO-20149006217,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,14,2014-08-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4318,14122,GO-20169013527,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,22,2016-11-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4319,15918,GO-20143291698,THEFT UNDER,2014-11-08,2014,November,Saturday,8,312,15,2014-11-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4320,15932,GO-2015721503,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,12,2015-05-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4321,15969,GO-20151427228,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,13,2015-08-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4322,15975,GO-20159006456,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,1,2015-08-28,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4323,15983,GO-20159007760,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,10,2015-09-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4324,16001,GO-20159010700,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,12,2015-10-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4325,16002,GO-20159010700,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,12,2015-10-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4326,16012,GO-2016629906,B&E,2016-04-12,2016,April,Tuesday,12,103,2,2016-04-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4327,16014,GO-20169004053,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,23,2016-05-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4328,16042,GO-20209017811,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,1,2020-07-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4329,16058,GO-20209020375,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,23,2020-08-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4330,16066,GO-20209021549,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,21,2020-08-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4331,16076,GO-20209022998,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,16,2020-09-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4332,16077,GO-20209023042,FTC PROBATION ORDER,2020-08-29,2020,August,Saturday,29,242,5,2020-09-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4333,16111,GO-20209032086,THEFT UNDER,2020-12-09,2020,December,Wednesday,9,344,23,2020-12-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4334,18712,GO-20209017944,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,11,2020-07-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4335,18754,GO-20201685277,B&E,2020-09-06,2020,September,Sunday,6,250,4,2020-09-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4336,18762,GO-20209024796,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,0,2020-09-28,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4337,18763,GO-20201871244,THEFT UNDER,2020-10-02,2020,October,Friday,2,276,11,2020-10-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4338,18774,GO-20202053114,THEFT OF EBIKE UNDER $5000,2020-10-21,2020,October,Wednesday,21,295,10,2020-10-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4339,18838,GO-20149004488,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,6,2014-06-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4340,18839,GO-20149004488,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,6,2014-06-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4341,18877,GO-2015109251,THEFT UNDER,2015-01-02,2015,January,Friday,2,2,18,2015-01-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4342,18903,GO-20151030851,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,13,2015-06-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4343,18919,GO-20151368941,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,8,2015-08-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4344,18933,GO-20159006879,THEFT UNDER,2015-08-22,2015,August,Saturday,22,234,11,2015-09-08,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4345,18938,GO-20159007507,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,19,2015-09-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4346,18962,GO-2016290356,THEFT UNDER,2016-02-16,2016,February,Tuesday,16,47,10,2016-02-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4347,18963,GO-2016345108,PROPERTY - FOUND,2016-02-27,2016,February,Saturday,27,58,11,2016-02-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4348,18996,GO-20169006671,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,3,2016-07-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4349,19001,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,2,2016-07-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4350,19172,GO-20189020854,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,16,2018-07-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4351,19002,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,2,2016-07-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4352,19003,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,2,2016-07-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4353,19042,GO-20169011418,THEFT UNDER,2016-10-01,2016,October,Saturday,1,275,16,2016-10-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4354,19101,GO-20179012022,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,7,2017-08-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4355,19117,GO-20171723179,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,9,2017-09-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4356,19124,GO-20179017012,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,7,2017-10-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4357,19156,GO-20189014366,THEFT UNDER,2018-05-09,2018,May,Wednesday,9,129,2,2018-05-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4358,19169,GO-20181082743,THEFT OF EBIKE UNDER $5000,2018-06-14,2018,June,Thursday,14,165,20,2018-06-14,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4359,19208,GO-20181931015,THEFT UNDER,2018-10-18,2018,October,Thursday,18,291,11,2018-10-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4360,19222,GO-20199010039,THEFT UNDER,2019-03-25,2019,March,Monday,25,84,15,2019-03-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4361,19238,GO-20199018158,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,7,2019-06-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4362,19264,GO-20191526325,THEFT UNDER - BICYCLE,2019-08-10,2019,August,Saturday,10,222,20,2019-08-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4363,19278,GO-20199028781,THEFT UNDER,2019-09-02,2019,September,Monday,2,245,20,2019-09-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4364,19348,GO-2020648751,THEFT UNDER,2020-03-28,2020,March,Saturday,28,88,20,2020-04-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4365,19354,GO-20209010975,THEFT UNDER,2020-04-12,2020,April,Sunday,12,103,1,2020-04-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4366,19355,GO-20209010975,THEFT UNDER,2020-04-12,2020,April,Sunday,12,103,1,2020-04-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4367,19360,GO-20209012997,THEFT UNDER,2020-05-08,2020,May,Friday,8,129,18,2020-05-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4368,19611,GO-20142033897,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,17,2014-05-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4369,19613,GO-20142089548,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,20,2014-05-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4370,19614,GO-20142089548,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,20,2014-05-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4371,19615,GO-20142085824,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,7,2014-05-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4372,19616,GO-20142085824,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,7,2014-05-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4373,19617,GO-20142102880,B&E W'INTENT,2014-05-18,2014,May,Sunday,18,138,3,2014-05-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4374,19757,GO-2016675465,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,17,2016-04-20,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4375,19630,GO-20142436854,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,16,2014-07-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4376,19634,GO-20149004790,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,15,2014-07-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4377,19638,GO-20142518797,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,17,2014-07-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4378,19639,GO-20149005153,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,13,2014-07-20,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4379,19667,GO-20143292674,THEFT UNDER,2014-11-12,2014,November,Wednesday,12,316,20,2014-11-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4380,19690,GO-20151051558,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,17,2015-06-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4381,19692,GO-20151095995,B&E W'INTENT,2015-06-29,2015,June,Monday,29,180,13,2015-06-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4382,19709,GO-20151415270,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,6,2015-08-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4383,19711,GO-20159006050,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,18,2015-08-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4384,19712,GO-20159006050,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,18,2015-08-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4385,19713,GO-20159006050,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,18,2015-08-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4386,19720,GO-20159006481,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,0,2015-08-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4387,19721,GO-20159006481,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,0,2015-08-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4388,19731,GO-20151620573,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,17,2015-09-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4389,19740,GO-20159008854,THEFT UNDER,2015-10-17,2015,October,Saturday,17,290,20,2015-10-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4390,19751,GO-20169001629,THEFT UNDER,2016-02-21,2016,February,Sunday,21,52,15,2016-02-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4391,22169,GO-20169007091,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,1,2016-07-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4392,22196,GO-20161644098,B&E,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4393,22197,GO-20161644098,B&E,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4394,22198,GO-20161644098,B&E,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4395,22229,GO-20179008062,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,12,2017-06-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4396,22233,GO-20171226481,ROBBERY - OTHER,2017-07-08,2017,July,Saturday,8,189,21,2017-07-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4397,22275,GO-20173264050,THEFT OF EBIKE UNDER $5000,2017-12-24,2017,December,Sunday,24,358,22,2017-12-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4398,22402,GO-20199025635,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,8,2019-08-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4399,22276,GO-20173264050,THEFT OF EBIKE UNDER $5000,2017-12-24,2017,December,Sunday,24,358,22,2017-12-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4400,22293,GO-20189018327,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,2,2018-06-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4401,22337,GO-20189031002,THEFT UNDER,2018-09-18,2018,September,Tuesday,18,261,12,2018-09-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4402,22348,GO-20189033179,THEFT UNDER - BICYCLE,2018-10-07,2018,October,Sunday,7,280,12,2018-10-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4403,22363,GO-20189042547,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,12,2018-12-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4404,22377,GO-20199017046,THEFT UNDER,2019-05-26,2019,May,Sunday,26,146,23,2019-05-31,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4405,22378,GO-20199017191,THEFT UNDER,2019-06-02,2019,June,Sunday,2,153,17,2019-06-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4406,22395,GO-20191328055,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,15,2019-07-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4407,22427,GO-20199034172,THEFT UNDER,2019-10-08,2019,October,Tuesday,8,281,20,2019-10-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4408,22469,GO-2020995056,THEFT FROM MOTOR VEHICLE UNDER,2020-05-29,2020,May,Friday,29,150,16,2020-05-30,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4409,22493,GO-20209016862,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,5,2020-07-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4410,22494,GO-20209016862,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,5,2020-07-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4411,22551,GO-20209022464,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,14,2020-09-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4412,22818,GO-20149002985,THEFT UNDER,2014-04-23,2014,April,Wednesday,23,113,19,2014-04-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4413,22827,GO-20149003522,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,18,2014-05-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4414,22845,GO-20149004354,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,20,2014-06-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4415,14126,GO-20162100935,THEFT OVER,2016-11-23,2016,November,Wednesday,23,328,20,2016-11-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4416,14127,GO-20162100935,THEFT OVER,2016-11-23,2016,November,Wednesday,23,328,20,2016-11-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4417,22867,GO-20142833853,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,13,2014-09-03,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4418,14135,GO-20169014476,THEFT UNDER - BICYCLE,2016-12-10,2016,December,Saturday,10,345,13,2016-12-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4419,1803,GO-20179018955,THEFT UNDER - BICYCLE,2017-11-05,2017,November,Sunday,5,309,0,2017-11-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4420,22878,GO-20149007424,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,17,2014-10-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4421,22312,GO-20189023278,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,23,2018-07-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4422,14136,GO-201712282,THEFT UNDER,2016-12-27,2016,December,Tuesday,27,362,0,2017-01-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4423,22350,GO-20181905786,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,23,2018-10-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4424,1928,GO-20179021680,THEFT UNDER - BICYCLE,2017-12-08,2017,December,Friday,8,342,5,2017-12-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4425,14137,GO-201712282,THEFT UNDER,2016-12-27,2016,December,Tuesday,27,362,0,2017-01-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4426,22365,GO-20199003176,THEFT UNDER - BICYCLE,2019-01-20,2019,January,Sunday,20,20,6,2019-01-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4427,22879,GO-20149007495,THEFT UNDER,2014-10-08,2014,October,Wednesday,8,281,8,2014-10-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4428,2103,GO-20189009243,THEFT UNDER,2018-03-23,2018,March,Friday,23,82,10,2018-03-24,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4429,14138,GO-201712282,THEFT UNDER,2016-12-27,2016,December,Tuesday,27,362,0,2017-01-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4430,22379,GO-20191018123,THEFT UNDER,2019-06-03,2019,June,Monday,3,154,11,2019-06-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4431,22885,GO-20143555642,B&E W'INTENT,2014-12-17,2014,December,Wednesday,17,351,15,2014-12-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4432,2136,GO-20189010555,THEFT UNDER - BICYCLE,2018-04-05,2018,April,Thursday,5,95,0,2018-04-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4433,14139,GO-201712282,THEFT UNDER,2016-12-27,2016,December,Tuesday,27,362,0,2017-01-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4434,22406,GO-20199027666,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,23,2019-08-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4435,22422,GO-20199031588,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,5,2019-09-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4436,22557,GO-20209023062,THEFT FROM MOTOR VEHICLE UNDER,2020-09-11,2020,September,Friday,11,255,23,2020-09-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4437,22562,GO-20209023538,THEFT UNDER,2020-09-14,2020,September,Monday,14,258,13,2020-09-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4438,22564,GO-20209023820,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,4,2020-09-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4439,22588,GO-20202143166,THEFT OF EBIKE UNDER $5000,2020-11-10,2020,November,Tuesday,10,315,21,2020-11-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4440,22820,GO-20142082360,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,23,2014-05-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4441,22821,GO-20142082360,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,23,2014-05-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4442,22822,GO-20142082360,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,23,2014-05-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4443,22839,GO-20142257544,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,17,2014-06-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4444,22844,GO-20149004308,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,17,2014-06-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4445,22847,GO-20142448095,THEFT OVER,2014-07-07,2014,July,Monday,7,188,3,2014-07-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4446,22873,GO-20142960689,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,16,2014-09-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4447,22874,GO-20142971762,THEFT OVER,2014-09-23,2014,September,Tuesday,23,266,8,2014-09-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4448,22875,GO-20142971762,THEFT OVER,2014-09-23,2014,September,Tuesday,23,266,8,2014-09-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4449,22881,GO-20149007696,THEFT UNDER,2014-10-19,2014,October,Sunday,19,292,17,2014-10-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4450,22911,GO-20151196119,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,20,2015-07-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4451,22926,GO-20159006687,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,0,2015-09-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4452,22942,GO-20151950062,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,11,2015-11-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4453,22943,GO-20151950062,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,11,2015-11-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4454,22972,GO-20169004896,THEFT UNDER,2016-05-17,2016,May,Tuesday,17,138,21,2016-05-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4455,22978,GO-20169006266,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,3,2016-06-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4456,22994,GO-20161450900,B&E W'INTENT,2016-08-05,2016,August,Friday,5,218,1,2016-08-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4457,25396,GO-20169010651,THEFT UNDER,2016-09-17,2016,September,Saturday,17,261,14,2016-09-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4458,25405,GO-20169012631,THEFT UNDER,2016-10-25,2016,October,Tuesday,25,299,22,2016-10-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4459,25406,GO-20169012631,THEFT UNDER,2016-10-25,2016,October,Tuesday,25,299,22,2016-10-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4460,25414,GO-20162049053,B&E,2016-11-17,2016,November,Thursday,17,322,22,2016-11-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4461,25415,GO-20162049053,B&E,2016-11-17,2016,November,Thursday,17,322,22,2016-11-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4462,25416,GO-20162049053,B&E,2016-11-17,2016,November,Thursday,17,322,22,2016-11-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4463,25417,GO-20162079698,B&E,2016-11-22,2016,November,Tuesday,22,327,21,2016-11-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4464,25418,GO-20162079698,B&E,2016-11-22,2016,November,Tuesday,22,327,21,2016-11-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4465,25431,GO-20179003624,THEFT UNDER - BICYCLE,2016-02-13,2016,February,Saturday,13,44,16,2017-03-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4466,25463,GO-20179010356,THEFT UNDER - BICYCLE,2017-07-17,2017,July,Monday,17,198,0,2017-07-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4467,25496,GO-20179017811,THEFT UNDER,2017-10-20,2017,October,Friday,20,293,19,2017-10-21,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4468,25517,GO-20173246532,FRAUD OVER,2017-12-22,2017,December,Friday,22,356,13,2017-12-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4469,25577,GO-20189026023,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,1,2018-08-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4470,25583,GO-20189029616,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,23,2018-09-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4471,25611,GO-20189042866,THEFT UNDER - BICYCLE,2018-12-20,2018,December,Thursday,20,354,16,2018-12-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4472,25651,GO-20199024538,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,18,2019-07-31,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4473,25653,GO-20191479526,THEFT UNDER,2019-08-01,2019,August,Thursday,1,213,9,2019-08-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4474,25681,GO-20191928589,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,6,2019-10-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4475,25710,GO-20209011353,THEFT UNDER - BICYCLE,2020-04-16,2020,April,Thursday,16,107,23,2020-04-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4476,25729,GO-20201130779,THEFT UNDER - BICYCLE,2020-06-19,2020,June,Friday,19,171,16,2020-06-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4477,25743,GO-20201264543,B&E,2020-06-26,2020,June,Friday,26,178,0,2020-07-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4478,25744,GO-20201269062,THEFT UNDER - BICYCLE,2020-07-09,2020,July,Thursday,9,191,4,2020-07-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4479,507,GO-2017958803,THEFT UNDER - BICYCLE,2017-05-30,2017,May,Tuesday,30,150,21,2017-05-30,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4480,553,GO-20171005782,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,17,2017-06-06,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4481,589,GO-20179007909,THEFT UNDER,2017-06-08,2017,June,Thursday,8,159,19,2017-06-11,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4482,1035,GO-20171361185,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,23,2017-07-29,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4483,1357,GO-20179014420,THEFT UNDER,2017-09-10,2017,September,Sunday,10,253,16,2017-09-10,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4484,1510,GO-20171739965,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,12,2017-09-25,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4485,1622,GO-20171807110,THEFT UNDER,2017-10-05,2017,October,Thursday,5,278,0,2017-10-05,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4486,1874,GO-20179020403,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,22,2017-11-23,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4487,2088,GO-20189008552,THEFT UNDER,2017-11-20,2017,November,Monday,20,324,16,2018-03-19,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4488,2244,GO-20189013662,THEFT UNDER,2018-04-03,2018,April,Tuesday,3,93,0,2018-05-03,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4489,2246,GO-20189013719,THEFT UNDER,2018-05-02,2018,May,Wednesday,2,122,18,2018-05-03,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4490,2260,GO-20189013925,THEFT UNDER - BICYCLE,2018-04-30,2018,April,Monday,30,120,17,2018-05-05,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4491,2874,GO-20189022828,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,4,2018-07-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4492,2878,GO-20189022957,THEFT UNDER,2018-07-10,2018,July,Tuesday,10,191,20,2018-07-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4493,3457,GO-20189030265,THEFT UNDER,2018-09-12,2018,September,Wednesday,12,255,0,2018-09-13,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4494,3458,GO-20189030265,THEFT UNDER,2018-09-12,2018,September,Wednesday,12,255,0,2018-09-13,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4495,3750,GO-20189035289,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,15,2018-10-23,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4496,4109,GO-20199009661,THEFT UNDER,2019-03-25,2019,March,Monday,25,84,10,2019-03-26,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4497,4188,GO-20199012611,THEFT UNDER,2019-04-21,2019,April,Sunday,21,111,0,2019-04-21,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4498,4545,GO-20191138658,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,4,2019-06-19,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4499,4587,GO-20199019864,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,16,2019-06-24,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4500,4605,GO-20191184739,THEFT UNDER,2019-06-24,2019,June,Monday,24,175,22,2019-06-26,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4501,4917,GO-20199024257,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,15,2019-07-29,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4502,4918,GO-20199024257,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,15,2019-07-29,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4503,5312,GO-20191752018,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,0,2019-09-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4504,5511,GO-20191973230,B&E,2019-10-11,2019,October,Friday,11,284,19,2019-10-12,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4505,5583,GO-20192053410,THEFT UNDER - BICYCLE,2019-09-09,2019,September,Monday,9,252,17,2019-10-24,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4506,6045,GO-20209010851,THEFT UNDER,2020-04-09,2020,April,Thursday,9,100,13,2020-04-10,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4507,6050,GO-20209010926,THEFT UNDER,2020-04-11,2020,April,Saturday,11,102,16,2020-04-11,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4508,6262,GO-20209014093,THEFT UNDER,2020-05-28,2020,May,Thursday,28,149,7,2020-05-28,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4509,6416,GO-20209015571,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,13,2020-06-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4510,6438,GO-20201149377,THEFT UNDER - BICYCLE,2020-06-21,2020,June,Sunday,21,173,20,2020-06-22,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4511,6982,GO-20201553093,B&E,2020-08-14,2020,August,Friday,14,227,0,2020-08-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4512,6983,GO-20201553093,B&E,2020-08-14,2020,August,Friday,14,227,0,2020-08-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4513,6984,GO-20201553093,B&E,2020-08-14,2020,August,Friday,14,227,0,2020-08-18,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4514,7350,GO-20209024397,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,10,2020-09-24,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4515,7372,GO-20209024746,THEFT UNDER,2020-09-27,2020,September,Sunday,27,271,22,2020-09-28,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4516,7482,GO-20201971972,B&E,2020-10-16,2020,October,Friday,16,290,16,2020-10-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4517,7765,GO-20141546511,THEFT UNDER,2014-01-17,2014,January,Friday,17,17,6,2014-02-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4518,8211,GO-20149004333,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,22,2014-06-23,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4519,8753,GO-20149006196,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,1,2014-08-22,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4520,9642,GO-2015865523,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,13,2015-05-24,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4521,10820,GO-20159010280,THEFT UNDER,2015-11-24,2015,November,Tuesday,24,328,0,2015-11-28,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4522,10822,GO-20159010306,THEFT UNDER,2015-11-27,2015,November,Friday,27,331,11,2015-11-29,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4523,10832,GO-20159010480,THEFT UNDER,2015-12-02,2015,December,Wednesday,2,336,23,2015-12-03,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4524,10974,GO-20169001234,THEFT UNDER,2015-12-18,2015,December,Friday,18,352,9,2016-02-08,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4525,10996,GO-2016283868,THEFT OVER,2016-02-14,2016,February,Sunday,14,45,16,2016-02-17,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4526,11101,GO-2016580104,ROBBERY - OTHER,2016-04-05,2016,April,Tuesday,5,96,21,2016-04-05,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)}",Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -4527,14140,GO-201712282,THEFT UNDER,2016-12-27,2016,December,Tuesday,27,362,0,2017-01-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4528,14147,GO-20179005217,THEFT UNDER,2017-04-24,2017,April,Monday,24,114,16,2017-04-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4529,14149,GO-2017737042,THEFT OVER,2017-04-26,2017,April,Wednesday,26,116,23,2017-04-27,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4530,14150,GO-2017737042,THEFT OVER,2017-04-26,2017,April,Wednesday,26,116,23,2017-04-27,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4531,14167,GO-20179009308,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,0,2017-07-02,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4532,14178,GO-20179011740,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,13,2017-08-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4533,2426,GO-20189016821,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,9,2018-05-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4534,14180,GO-20179012225,THEFT UNDER,2017-08-12,2017,August,Saturday,12,224,9,2017-08-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4535,22894,GO-2015649368,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,12,2015-04-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4536,14198,GO-20179015839,THEFT UNDER,2017-09-26,2017,September,Tuesday,26,269,13,2017-09-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4537,14204,GO-20179016429,THEFT UNDER - BICYCLE,2017-10-02,2017,October,Monday,2,275,14,2017-10-04,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4538,14236,GO-20189016627,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,16,2018-05-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4539,14259,GO-20189022445,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,0,2018-07-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4540,15874,GO-20149004100,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,4,2014-06-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4541,15876,GO-20142349697,B&E W'INTENT,2014-06-23,2014,June,Monday,23,174,5,2014-06-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4542,15887,GO-20142511127,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,13,2014-07-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4543,15896,GO-20149005581,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,16,2014-08-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4544,15900,GO-20149006465,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,23,2014-09-01,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4545,15903,GO-20149006725,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,16,2014-09-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4546,15907,GO-20149007025,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,20,2014-09-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4547,15931,GO-20159002323,THEFT UNDER,2015-04-26,2015,April,Sunday,26,116,22,2015-04-27,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4548,15938,GO-20159002630,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,16,2015-05-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4549,15958,GO-20151244307,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,18,2015-07-21,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4550,16028,GO-2016990964,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,20,2016-06-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4551,16029,GO-20209016946,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,0,2020-07-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4552,16081,GO-20209023538,THEFT UNDER,2020-09-14,2020,September,Monday,14,258,13,2020-09-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4553,16082,GO-20209023809,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,23,2020-09-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4554,18733,GO-20209020035,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,2,2020-08-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4555,18750,GO-20201611408,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,2,2020-08-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4556,18759,GO-20209023381,THEFT UNDER,2020-09-16,2020,September,Wednesday,16,260,2,2020-09-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4557,18772,GO-20202031331,B&E,2020-10-23,2020,October,Friday,23,297,12,2020-10-27,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4558,18780,GO-20209029040,THEFT UNDER,2020-11-08,2020,November,Sunday,8,313,20,2020-11-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4559,18783,GO-20202178144,B&E,2020-11-17,2020,November,Tuesday,17,322,5,2020-11-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4560,18841,GO-20142448110,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,5,2014-07-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4561,18842,GO-20142448110,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,5,2014-07-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4562,18859,GO-20142894056,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,15,2014-09-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4563,18860,GO-20142894056,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,15,2014-09-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4564,18861,GO-20149006923,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,6,2014-09-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4565,18865,GO-20149007165,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,22,2014-09-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4566,18867,GO-20143017402,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,18,2014-09-30,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4567,18904,GO-20151039339,THEFT FROM MOTOR VEHICLE UNDER,2015-06-20,2015,June,Saturday,20,171,18,2015-06-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4568,18926,GO-20159006383,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,13,2015-08-25,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4569,18937,GO-20151607442,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,8,2015-09-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4570,18955,GO-20152103232,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,0,2015-12-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4571,18971,GO-20169004081,THEFT UNDER,2016-04-29,2016,April,Friday,29,120,17,2016-05-02,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4572,18977,GO-2016837212,THEFT UNDER - BICYCLE,2016-05-14,2016,May,Saturday,14,135,11,2016-05-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4573,18985,GO-2016992630,THEFT UNDER - BICYCLE,2016-06-07,2016,June,Tuesday,7,159,22,2016-06-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4574,18987,GO-20169005738,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,21,2016-06-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4575,19015,GO-20169008420,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,23,2016-08-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4576,19016,GO-20169008420,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,23,2016-08-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4577,19026,GO-20169009191,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,2,2016-08-22,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4578,19035,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,16,2016-09-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4579,19036,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,16,2016-09-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4580,19040,GO-20169010643,THEFT UNDER,2016-09-17,2016,September,Saturday,17,261,23,2016-09-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4581,19061,GO-20162047311,TRESPASS AT NIGHT,2016-11-18,2016,November,Friday,18,323,3,2016-11-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4582,19062,GO-20162047311,TRESPASS AT NIGHT,2016-11-18,2016,November,Friday,18,323,3,2016-11-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4583,19085,GO-20171007989,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,7,2017-06-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4584,19143,GO-20189004515,THEFT UNDER - BICYCLE,2018-02-07,2018,February,Wednesday,7,38,13,2018-02-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4585,19150,GO-2018598875,THEFT UNDER - BICYCLE,2018-04-03,2018,April,Tuesday,3,93,21,2018-04-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4586,19152,GO-2018773686,THEFT UNDER - BICYCLE,2018-04-30,2018,April,Monday,30,120,17,2018-04-30,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4587,19183,GO-20181317304,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,12,2018-07-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4588,19194,GO-20189027025,THEFT UNDER,2018-08-15,2018,August,Wednesday,15,227,18,2018-08-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4589,19200,GO-20181737737,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,18,2018-09-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4590,19201,GO-20181737737,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,18,2018-09-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4591,19219,GO-20189041003,THEFT UNDER - BICYCLE,2018-12-03,2018,December,Monday,3,337,10,2018-12-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4592,19221,GO-20199002783,THEFT UNDER - BICYCLE,2019-01-20,2019,January,Sunday,20,20,2,2019-01-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4593,19229,GO-2019958099,THEFT UNDER - BICYCLE,2019-05-25,2019,May,Saturday,25,145,20,2019-05-25,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4594,19231,GO-20191019082,THEFT UNDER,2019-06-03,2019,June,Monday,3,154,11,2019-06-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4595,19235,GO-20199017872,THEFT UNDER,2018-09-01,2018,September,Saturday,1,244,19,2019-06-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4596,19266,GO-20199026289,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,9,2019-08-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4597,19272,GO-20199028348,THEFT UNDER,2019-08-31,2019,August,Saturday,31,243,0,2019-08-31,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4598,19290,GO-20199030072,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,6,2019-09-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4599,19314,GO-20191984547,THEFT UNDER,2019-10-13,2019,October,Sunday,13,286,19,2019-10-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4600,19315,GO-20199033871,THEFT UNDER,2019-10-12,2019,October,Saturday,12,285,22,2019-10-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4601,19380,GO-20209015727,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,7,2020-06-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4602,19631,GO-20142449217,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,3,2014-07-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4603,19654,GO-20149006721,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,6,2014-09-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4604,19655,GO-20149007061,THEFT UNDER,2013-08-08,2013,August,Thursday,8,220,15,2014-09-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4605,19658,GO-20143021111,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,18,2014-10-01,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4606,19669,GO-20143419149,THEFT UNDER,2014-12-03,2014,December,Wednesday,3,337,17,2014-12-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4607,19671,GO-20149008873,THEFT UNDER,2014-12-19,2014,December,Friday,19,353,19,2014-12-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4608,19678,GO-20159002112,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,19,2015-04-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4609,19682,GO-2015744234,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,16,2015-05-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4610,19688,GO-20151042057,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,16,2015-06-21,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4611,19752,GO-2016393604,THEFT UNDER - BICYCLE,2016-03-05,2016,March,Saturday,5,65,12,2016-03-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4612,22166,GO-20169006849,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,22,2016-07-07,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4613,22171,GO-20169007456,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,18,2016-07-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4614,22194,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,16,2016-09-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4615,22195,GO-20161607267,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,16,2016-09-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4616,22206,GO-20161792466,B&E,2016-10-08,2016,October,Saturday,8,282,0,2016-10-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4617,2477,GO-20189017560,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,23,2018-06-06,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4618,22907,GO-20151019639,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,9,2015-06-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4619,2503,GO-20189017786,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,12,2018-06-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4620,22938,GO-20159008038,THEFT UNDER,2015-10-01,2015,October,Thursday,1,274,21,2015-10-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4621,2566,GO-20189018693,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,23,2018-06-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4622,22961,GO-2016447141,B&E,2016-03-12,2016,March,Saturday,12,72,0,2016-03-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4623,2687,GO-20189020314,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,21,2018-06-26,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4624,22962,GO-2016447141,B&E,2016-03-12,2016,March,Saturday,12,72,0,2016-03-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4625,2779,GO-20189021574,THEFT UNDER,2018-07-07,2018,July,Saturday,7,188,10,2018-07-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4626,22989,GO-20161382438,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,10,2016-08-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4627,3068,GO-20189025062,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,21,2018-08-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4628,3094,GO-20189025327,THEFT UNDER,2018-08-06,2018,August,Monday,6,218,14,2018-08-06,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4629,25388,GO-20169010222,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,20,2016-09-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4630,3095,GO-20189025327,THEFT UNDER,2018-08-06,2018,August,Monday,6,218,14,2018-08-06,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4631,3135,GO-20189025693,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,13,2018-08-09,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4632,3151,GO-20189025877,THEFT UNDER,2018-08-10,2018,August,Friday,10,222,5,2018-08-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4633,3176,GO-20189026077,THEFT UNDER,2018-08-09,2018,August,Thursday,9,221,23,2018-08-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4634,3292,GO-20189027553,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,18,2018-08-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4635,3319,GO-20189027905,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,1,2018-08-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4636,3475,GO-20189030521,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,19,2018-09-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4637,3749,GO-20189035263,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,10,2018-10-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4638,4204,GO-2019744685,THEFT UNDER,2019-04-24,2019,April,Wednesday,24,114,17,2019-04-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4639,4319,GO-2019933551,THEFT UNDER,2019-05-22,2019,May,Wednesday,22,142,13,2019-05-22,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4640,4367,GO-20199016667,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,21,2019-05-28,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4641,4372,GO-20199016822,THEFT UNDER,2019-05-28,2019,May,Tuesday,28,148,12,2019-05-29,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4642,4393,GO-20199017083,THEFT UNDER,2019-05-28,2019,May,Tuesday,28,148,9,2019-06-01,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4643,4512,GO-20199018875,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,21,2019-06-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4644,4538,GO-20199019178,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,23,2019-06-18,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4645,4692,GO-20199021347,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,13,2019-07-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4646,4734,GO-20191289493,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,12,2019-07-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4647,4735,GO-20191289493,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,12,2019-07-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4648,4736,GO-20191289493,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,12,2019-07-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4649,5169,GO-20199027728,THEFT FROM MOTOR VEHICLE UNDER,2019-07-28,2019,July,Sunday,28,209,0,2019-08-26,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4650,5213,GO-20199028499,THEFT UNDER,2019-09-02,2019,September,Monday,2,245,11,2019-09-02,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4651,5308,GO-20199029779,THEFT UNDER,2019-09-11,2019,September,Wednesday,11,254,23,2019-09-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4652,5309,GO-20199029779,THEFT UNDER,2019-09-11,2019,September,Wednesday,11,254,23,2019-09-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4653,5310,GO-20199029779,THEFT UNDER,2019-09-11,2019,September,Wednesday,11,254,23,2019-09-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4654,1050,GO-20179011677,THEFT UNDER,2017-08-03,2017,August,Thursday,3,215,18,2017-08-04,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -4655,5329,GO-20199030143,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,20,2019-09-15,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4656,5371,GO-20199030762,THEFT UNDER,2019-09-19,2019,September,Thursday,19,262,7,2019-09-20,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4657,5403,GO-20199031510,THEFT UNDER,2019-09-25,2019,September,Wednesday,25,268,1,2019-09-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4658,5417,GO-20191845805,THEFT UNDER,2019-09-25,2019,September,Wednesday,25,268,0,2019-09-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4659,5507,GO-20199033448,THEFT UNDER,2019-10-06,2019,October,Sunday,6,279,21,2019-10-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4660,5528,GO-20191998423,THEFT UNDER - BICYCLE,2019-10-14,2019,October,Monday,14,287,23,2019-10-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4661,5529,GO-20191998423,THEFT UNDER - BICYCLE,2019-10-14,2019,October,Monday,14,287,23,2019-10-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4662,5798,GO-202014564,THEFT UNDER,2020-01-02,2020,January,Thursday,2,2,22,2020-01-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4663,5799,GO-202014564,THEFT UNDER,2020-01-02,2020,January,Thursday,2,2,22,2020-01-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4664,5827,GO-20209001489,THEFT UNDER,2020-01-13,2020,January,Monday,13,13,6,2020-01-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4665,6000,GO-20209010118,THEFT FROM MOTOR VEHICLE UNDER,2020-02-22,2020,February,Saturday,22,53,0,2020-03-29,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4666,6001,GO-20209010118,THEFT FROM MOTOR VEHICLE UNDER,2020-02-22,2020,February,Saturday,22,53,0,2020-03-29,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4667,6030,GO-20209010598,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,19,2020-04-06,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4668,6093,GO-20209011769,THEFT UNDER,2020-04-22,2020,April,Wednesday,22,113,2,2020-04-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4669,6344,GO-20201067492,THEFT UNDER - BICYCLE,2020-06-09,2020,June,Tuesday,9,161,18,2020-06-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4670,2664,GO-20189019981,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,16,2018-06-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4671,6349,GO-20209015051,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,22,2020-06-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4672,6426,GO-20201120469,B&E,2020-06-18,2020,June,Thursday,18,170,2,2020-06-18,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4673,6530,GO-20209016821,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,19,2020-07-04,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4674,6576,GO-20201278473,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,0,2020-07-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4675,6577,GO-20201278473,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,0,2020-07-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4676,6593,GO-20201290814,B&E,2020-07-09,2020,July,Thursday,9,191,0,2020-07-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4677,6626,GO-20209017613,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,3,2020-07-15,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4678,6667,GO-20201343298,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,14,2020-07-20,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4679,6668,GO-20201343298,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,14,2020-07-20,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4680,6794,GO-20201413779,B&E,2020-07-28,2020,July,Tuesday,28,210,22,2020-07-29,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4681,6907,GO-20209019716,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,0,2020-08-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4682,6908,GO-20209019716,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,0,2020-08-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4683,6909,GO-20209019716,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,0,2020-08-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4684,6963,GO-20209020277,THEFT UNDER,2020-08-09,2020,August,Sunday,9,222,9,2020-08-15,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4685,7042,GO-20201585990,B&E W'INTENT,2020-08-23,2020,August,Sunday,23,236,1,2020-08-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4686,7043,GO-20201585990,B&E W'INTENT,2020-08-23,2020,August,Sunday,23,236,1,2020-08-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4687,7044,GO-20201585990,B&E W'INTENT,2020-08-23,2020,August,Sunday,23,236,1,2020-08-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4688,7203,GO-20201701498,B&E,2020-09-08,2020,September,Tuesday,8,252,5,2020-09-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4689,7262,GO-20209023407,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,4,2020-09-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4690,7263,GO-20209023407,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,4,2020-09-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4691,7378,GO-20209024781,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,9,2020-09-28,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4692,7379,GO-20209024781,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,9,2020-09-28,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4693,7416,GO-20201890336,B&E,2020-10-02,2020,October,Friday,2,276,8,2020-10-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4694,7499,GO-20209026843,THEFT UNDER,2020-10-18,2020,October,Sunday,18,292,0,2020-10-18,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4695,7500,GO-20209026843,THEFT UNDER,2020-10-18,2020,October,Sunday,18,292,0,2020-10-18,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4696,7534,GO-20209027495,THEFT UNDER,2020-10-22,2020,October,Thursday,22,296,8,2020-10-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4697,7719,GO-20202449278,B&E,2020-12-29,2020,December,Tuesday,29,364,8,2020-12-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4698,7780,GO-20141694393,THEFT UNDER,2014-03-11,2014,March,Tuesday,11,70,11,2014-03-13,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4699,7798,GO-20141796490,THEFT UNDER,2014-03-30,2014,March,Sunday,30,89,16,2014-03-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4700,7806,GO-20141821281,THEFT UNDER,2014-04-03,2014,April,Thursday,3,93,6,2014-04-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4701,8019,GO-20149003740,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,23,2014-06-01,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4702,8188,GO-20149004235,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,9,2014-06-19,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4703,8245,GO-20149004417,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,12,2014-06-24,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4704,8374,GO-20142508125,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,16,2014-07-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4705,8430,GO-20142527957,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,23,2014-07-19,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4706,8446,GO-20149005086,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,10,2014-07-19,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4707,8476,GO-20142558527,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,1,2014-07-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4708,8485,GO-20142543466,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,14,2014-07-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4709,8550,GO-20142628420,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,13,2014-08-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4710,8713,GO-20149006179,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,16,2014-08-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4711,9260,GO-20159000247,THEFT UNDER,2015-01-13,2015,January,Tuesday,13,13,8,2015-01-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4712,9297,GO-2015294591,THEFT OVER,2015-02-18,2015,February,Wednesday,18,49,22,2015-02-19,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4713,9298,GO-2015294591,THEFT OVER,2015-02-18,2015,February,Wednesday,18,49,22,2015-02-19,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4714,9299,GO-2015295477,THEFT UNDER,2015-02-19,2015,February,Thursday,19,50,10,2015-02-19,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4715,9748,GO-2015949312,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,4,2015-06-06,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -4716,25410,GO-20161978184,THEFT UNDER - BICYCLE,2016-11-07,2016,November,Monday,7,312,0,2016-11-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4717,25411,GO-20161978184,THEFT UNDER - BICYCLE,2016-11-07,2016,November,Monday,7,312,0,2016-11-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4718,25427,GO-20179002381,THEFT UNDER,2017-02-22,2017,February,Wednesday,22,53,11,2017-02-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4719,25440,GO-2017883997,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,22,2017-05-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4720,25456,GO-20171188729,B&E,2017-06-25,2017,June,Sunday,25,176,23,2017-07-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4721,25512,GO-20173125146,PROPERTY - FOUND,2017-12-03,2017,December,Sunday,3,337,21,2017-12-03,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4722,25515,GO-20173163803,THEFT UNDER - BICYCLE,2017-12-03,2017,December,Sunday,3,337,20,2017-12-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4723,25544,GO-20189017987,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,16,2018-06-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4724,25559,GO-20181246962,B&E,2018-07-08,2018,July,Sunday,8,189,12,2018-07-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4725,25582,GO-20181650339,THEFT UNDER,2018-08-26,2018,August,Sunday,26,238,20,2018-09-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4726,25585,GO-20189030457,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,3,2018-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4727,25586,GO-20189030457,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,3,2018-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4728,25612,GO-2019138225,THEFT FROM MOTOR VEHICLE UNDER,2019-01-19,2019,January,Saturday,19,19,16,2019-01-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4729,25658,GO-20199025944,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,18,2019-08-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4730,25697,GO-2020442253,B&E,2020-02-17,2020,February,Monday,17,48,0,2020-03-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4731,25698,GO-2020442253,B&E,2020-02-17,2020,February,Monday,17,48,0,2020-03-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4732,25760,GO-20209020375,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,23,2020-08-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4733,25764,GO-20209021212,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,0,2020-08-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4734,25784,GO-20209025138,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,8,2020-10-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4735,25796,GO-20209028661,THEFT UNDER,2020-10-31,2020,October,Saturday,31,305,22,2020-11-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4736,2,GO-20169014493,THEFT UNDER - BICYCLE,2016-12-07,2016,December,Wednesday,7,342,10,2016-12-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4737,15,GO-20169014662,POSSESSION PROPERTY OBC OVER,2016-12-09,2016,December,Friday,9,344,23,2016-12-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4738,30,GO-20169015027,THEFT UNDER - BICYCLE,2016-12-22,2016,December,Thursday,22,357,22,2016-12-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4739,225,GO-2017669939,THEFT UNDER - BICYCLE,2017-04-09,2017,April,Sunday,9,99,12,2017-04-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4740,226,GO-2017669939,THEFT UNDER - BICYCLE,2017-04-09,2017,April,Sunday,9,99,12,2017-04-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4741,346,GO-2017815813,B&E,2017-05-09,2017,May,Tuesday,9,129,0,2017-05-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4742,522,GO-2017984314,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,13,2017-06-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4743,860,GO-20179010196,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,2,2017-07-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4744,908,GO-20179010523,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,22,2017-07-19,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4745,954,GO-20179010889,THEFT UNDER,2017-07-23,2017,July,Sunday,23,204,0,2017-07-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4746,1111,GO-20171448068,PROPERTY - FOUND,2017-08-10,2017,August,Thursday,10,222,22,2017-08-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4747,1112,GO-20179012090,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,19,2017-08-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4748,1168,GO-20171487085,ASSAULT,2017-08-17,2017,August,Thursday,17,229,16,2017-08-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4749,1350,GO-20179014360,THEFT UNDER,2017-09-09,2017,September,Saturday,9,252,18,2017-09-09,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4750,1898,GO-20173090010,THEFT OF MOTOR VEHICLE,2017-11-23,2017,November,Thursday,23,327,22,2017-11-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4751,1899,GO-20173102191,THEFT UNDER,2017-11-23,2017,November,Thursday,23,327,22,2017-11-30,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4752,2029,GO-20189004515,THEFT UNDER - BICYCLE,2018-02-07,2018,February,Wednesday,7,38,13,2018-02-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4753,2082,GO-2018493523,THEFT UNDER,2018-03-17,2018,March,Saturday,17,76,0,2018-03-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4754,2083,GO-2018493523,THEFT UNDER,2018-03-17,2018,March,Saturday,17,76,0,2018-03-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4755,2084,GO-2018493523,THEFT UNDER,2018-03-17,2018,March,Saturday,17,76,0,2018-03-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4756,2124,GO-2018572995,THEFT UNDER,2018-03-29,2018,March,Thursday,29,88,0,2018-03-30,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4757,2528,GO-20189018209,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,9,2018-06-11,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4758,2591,GO-20189018979,THEFT UNDER,2018-06-15,2018,June,Friday,15,166,22,2018-06-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4759,2673,GO-20189020094,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,7,2018-06-25,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4760,2682,GO-20189020241,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,16,2018-06-25,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4761,2766,GO-20189021379,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,14,2018-07-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4762,2859,GO-20189022713,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,0,2018-07-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4763,3085,GO-20189025212,THEFT UNDER - BICYCLE,2018-08-05,2018,August,Sunday,5,217,15,2018-08-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4764,3086,GO-20189025212,THEFT UNDER - BICYCLE,2018-08-05,2018,August,Sunday,5,217,15,2018-08-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4765,3309,GO-20189027757,THEFT FROM MOTOR VEHICLE UNDER,2018-08-23,2018,August,Thursday,23,235,0,2018-08-24,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4766,3427,GO-20189029624,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,20,2018-09-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4767,3502,GO-20189030947,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,0,2018-09-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4768,3606,GO-20189032742,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,23,2018-10-03,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4769,3724,GO-20189034541,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,18,2018-10-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4770,3782,GO-20189036118,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,22,2018-10-29,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4771,3846,GO-20182090749,THEFT UNDER,2018-11-13,2018,November,Tuesday,13,317,4,2018-11-13,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4772,4415,GO-20199017511,THEFT UNDER,2019-06-05,2019,June,Wednesday,5,156,13,2019-06-05,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4773,4684,GO-20199021249,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,17,2019-07-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4774,4700,GO-20199021249,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,17,2019-07-06,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4775,5086,GO-20199026402,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,21,2019-08-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4776,5100,GO-20191552501,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,12,2019-08-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4777,5119,GO-20191593451,THEFT FROM MOTOR VEHICLE OVER,2019-08-16,2019,August,Friday,16,228,22,2019-08-21,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4778,5144,GO-20199027418,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,8,2019-08-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4779,5170,GO-20199027758,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,23,2019-08-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4780,5274,GO-20199029230,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,17,2019-09-08,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4781,5325,GO-20199030072,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,6,2019-09-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4782,5331,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,12,2019-09-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4783,5332,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,12,2019-09-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4784,5343,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,12,2019-09-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4785,5344,GO-20191777656,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,12,2019-09-16,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4786,5349,GO-20199030340,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,5,2019-09-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4787,5412,GO-20199031588,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,5,2019-09-26,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4788,5524,GO-20199033871,THEFT UNDER,2019-10-12,2019,October,Saturday,12,285,22,2019-10-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4789,5541,GO-20199034276,THEFT UNDER,2019-10-17,2019,October,Thursday,17,290,16,2019-10-17,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4790,5605,GO-20192083918,B&E,2019-10-26,2019,October,Saturday,26,299,5,2019-10-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4791,5606,GO-20192083918,B&E,2019-10-26,2019,October,Saturday,26,299,5,2019-10-28,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4792,5774,GO-20199041571,THEFT UNDER,2019-12-19,2019,December,Thursday,19,353,21,2019-12-20,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4793,5885,GO-2020288870,B&E,2020-02-04,2020,February,Tuesday,4,35,3,2020-02-10,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4794,5903,GO-20209005825,THEFT UNDER,2020-01-01,2020,January,Wednesday,1,1,0,2020-02-18,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4795,6055,GO-20209010989,THEFT UNDER,2020-04-11,2020,April,Saturday,11,102,1,2020-04-12,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4796,6190,GO-2020902385,B&E,2020-05-11,2020,May,Monday,11,132,22,2020-05-15,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4797,6378,GO-20209015308,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,22,2020-06-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4798,6379,GO-20209015308,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,22,2020-06-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4799,6380,GO-20209015308,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,22,2020-06-14,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4800,6454,GO-20209016068,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,16,2020-06-23,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)}",The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -4801,15882,GO-20142424690,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,17,2014-07-03,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4802,15925,GO-2015120014,THEFT UNDER,2015-01-19,2015,January,Monday,19,19,18,2015-01-21,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4803,16068,GO-20201604076,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,18,2020-08-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4804,18747,GO-20209021354,THEFT UNDER,2020-08-25,2020,August,Tuesday,25,238,18,2020-08-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4805,18765,GO-20209026357,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,17,2020-10-13,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4806,18884,GO-2015728167,THEFT UNDER,2015-04-03,2015,April,Friday,3,93,0,2015-05-02,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4807,18968,GO-2016717929,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,18,2016-04-27,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4808,19160,GO-2018898470,THEFT UNDER,2018-05-18,2018,May,Friday,18,138,14,2018-05-21,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4809,19178,GO-20189022374,THEFT UNDER,2018-07-12,2018,July,Thursday,12,193,7,2018-07-14,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4810,19619,GO-20142148181,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,21,2014-05-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4811,19633,GO-20149004692,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,18,2014-07-03,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4812,19635,GO-20149004912,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,14,2014-07-11,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4813,19726,GO-20159006863,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,15,2015-09-07,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4814,19745,GO-20151985041,THEFT UNDER,2015-11-19,2015,November,Thursday,19,323,9,2015-11-19,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4815,19747,GO-20152180897,B&E,2015-12-20,2015,December,Sunday,20,354,17,2015-12-20,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4816,22311,GO-20181297336,B&E W'INTENT,2018-07-12,2018,July,Thursday,12,193,11,2018-07-16,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4817,22342,GO-20189031794,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,10,2018-09-25,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4818,22347,GO-20189032967,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,0,2018-10-05,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4819,22358,GO-20189036950,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,6,2018-11-05,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4820,22446,GO-20209009120,THEFT UNDER,2020-03-16,2020,March,Monday,16,76,16,2020-03-16,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4821,22537,GO-20201589488,B&E,2020-08-23,2020,August,Sunday,23,236,11,2020-08-24,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4822,22563,GO-20201771582,B&E,2020-09-16,2020,September,Wednesday,16,260,23,2020-09-18,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4823,22589,GO-20202154814,THEFT UNDER,2020-11-12,2020,November,Thursday,12,317,22,2020-11-13,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4824,22871,GO-20149007016,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,8,2014-09-18,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4825,22947,GO-20159010359,THEFT UNDER,2015-11-30,2015,November,Monday,30,334,19,2015-11-30,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4826,22967,GO-2016560330,THEFT UNDER - BICYCLE,2016-04-02,2016,April,Saturday,2,93,15,2016-04-02,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4827,22969,GO-2016764391,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,18,2016-05-04,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4828,25556,GO-20189020840,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,10,2018-07-02,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4829,25624,GO-2019949908,THEFT OF EBIKE UNDER $5000,2019-05-24,2019,May,Friday,24,144,17,2019-05-24,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4830,25722,GO-20209014871,THEFT UNDER,2020-06-08,2020,June,Monday,8,160,7,2020-06-08,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4831,25723,GO-20209015155,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,17,2020-06-11,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4832,25755,GO-20201402997,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,22,2020-07-31,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4833,25756,GO-20201402997,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,22,2020-07-31,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)}",Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -4834,96,GO-2017312515,ASSAULT,2017-02-19,2017,February,Sunday,19,50,12,2017-02-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4835,147,GO-2017410822,B&E,2017-03-03,2017,March,Friday,3,62,18,2017-03-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4836,148,GO-2017410822,B&E,2017-03-03,2017,March,Friday,3,62,18,2017-03-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4837,149,GO-2017410822,B&E,2017-03-03,2017,March,Friday,3,62,18,2017-03-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4838,150,GO-2017410822,B&E,2017-03-03,2017,March,Friday,3,62,18,2017-03-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4839,151,GO-2017410822,B&E,2017-03-03,2017,March,Friday,3,62,18,2017-03-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4840,221,GO-2017660086,THEFT OF EBIKE UNDER $5000,2017-04-14,2017,April,Friday,14,104,17,2017-04-14,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4841,408,GO-20179006518,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,3,2017-05-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4842,416,GO-20179006564,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,13,2017-05-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4843,470,GO-2017912054,B&E,2017-05-21,2017,May,Sunday,21,141,13,2017-05-24,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4844,601,GO-20171042990,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,13,2017-06-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4845,838,GO-20179010020,THEFT UNDER,2017-07-12,2017,July,Wednesday,12,193,21,2017-07-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4846,906,GO-20179010506,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,16,2017-07-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4847,1059,GO-20179011771,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,7,2017-08-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4848,1375,GO-20179014525,THEFT UNDER,2017-08-05,2017,August,Saturday,5,217,0,2017-09-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4849,1417,GO-20179014826,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,8,2017-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4850,1606,GO-20179016644,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,18,2017-10-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4851,1688,GO-20179017567,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,5,2017-10-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4852,1785,GO-20179018780,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,16,2017-11-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4853,1813,GO-20179019134,THEFT UNDER,2017-11-07,2017,November,Tuesday,7,311,15,2017-11-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4854,1828,GO-20172054460,THEFT UNDER,2017-10-29,2017,October,Sunday,29,302,12,2017-11-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4855,1838,GO-20172055236,THEFT OF EBIKE UNDER $5000,2017-11-13,2017,November,Monday,13,317,16,2017-11-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4856,1847,GO-20179019691,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,23,2017-11-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4857,1931,GO-20173163853,THEFT OF EBIKE UNDER $5000,2017-12-05,2017,December,Tuesday,5,339,16,2017-12-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4858,2017,GO-2018233630,THEFT OF EBIKE UNDER $5000,2018-02-06,2018,February,Tuesday,6,37,14,2018-02-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4859,2138,GO-20189010777,THEFT UNDER,2018-04-05,2018,April,Thursday,5,95,19,2018-04-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4860,2261,GO-2018796609,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,16,2018-05-03,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4861,2304,GO-20189014829,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,22,2018-05-14,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4862,2435,GO-20189016962,THEFT UNDER,2018-05-30,2018,May,Wednesday,30,150,17,2018-05-31,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4863,2647,GO-20189019813,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,2,2018-06-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4864,2906,GO-20189023301,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,1,2018-07-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4865,2949,GO-20181359179,THEFT OVER,2018-07-19,2018,July,Thursday,19,200,21,2018-07-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4866,2950,GO-20181359179,THEFT OVER,2018-07-19,2018,July,Thursday,19,200,21,2018-07-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4867,2951,GO-20181359179,THEFT OVER,2018-07-19,2018,July,Thursday,19,200,21,2018-07-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4868,3009,GO-20189024320,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,10,2018-07-28,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4869,3029,GO-20189024540,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,12,2018-07-30,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4870,3189,GO-20181495782,B&E,2018-08-13,2018,August,Monday,13,225,23,2018-08-14,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4871,3469,GO-20181692039,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,11,2018-09-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4872,3528,GO-20189031389,THEFT UNDER - BICYCLE,2018-09-21,2018,September,Friday,21,264,3,2018-09-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4873,3553,GO-20189031899,THEFT UNDER - BICYCLE,2018-09-25,2018,September,Tuesday,25,268,17,2018-09-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4874,3564,GO-20181787864,B&E,2018-09-26,2018,September,Wednesday,26,269,19,2018-09-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4875,3570,GO-20189032175,THEFT UNDER,2018-09-27,2018,September,Thursday,27,270,9,2018-09-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4876,3623,GO-20181846736,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,0,2018-10-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4877,3624,GO-20181846736,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,0,2018-10-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4878,3634,GO-20189033179,THEFT UNDER - BICYCLE,2018-10-07,2018,October,Sunday,7,280,12,2018-10-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4879,3666,GO-20189033624,THEFT UNDER,2018-10-11,2018,October,Thursday,11,284,10,2018-10-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4880,3700,GO-20189034099,THEFT UNDER,2018-10-14,2018,October,Sunday,14,287,21,2018-10-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4881,4052,GO-20199024845,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,3,2019-08-03,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4882,4062,GO-2019342944,B&E,2019-02-23,2019,February,Saturday,23,54,4,2019-02-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4883,4063,GO-2019342944,B&E,2019-02-23,2019,February,Saturday,23,54,4,2019-02-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4884,4093,GO-20199008427,THEFT UNDER - BICYCLE,2019-03-13,2019,March,Wednesday,13,72,5,2019-03-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4885,4094,GO-20199008427,THEFT UNDER - BICYCLE,2019-03-13,2019,March,Wednesday,13,72,5,2019-03-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4886,4117,GO-2019551244,THEFT UNDER - BICYCLE,2018-12-02,2018,December,Sunday,2,336,12,2019-03-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4887,4450,GO-20191047973,B&E,2019-06-02,2019,June,Sunday,2,153,7,2019-06-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4888,4564,GO-20191075290,THEFT UNDER,2019-06-05,2019,June,Wednesday,5,156,1,2019-06-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4889,4592,GO-20191174248,THEFT UNDER,2017-06-24,2017,June,Saturday,24,175,10,2019-06-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4890,4657,GO-20199020820,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,7,2019-07-03,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4891,5057,GO-20173264050,THEFT OF EBIKE UNDER $5000,2017-12-24,2017,December,Sunday,24,358,22,2017-12-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4892,5123,GO-20199027178,THEFT UNDER,2019-08-21,2019,August,Wednesday,21,233,8,2019-08-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4893,5181,GO-20199028019,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,12,2019-08-28,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4894,5258,GO-20199029071,THEFT UNDER,2019-09-06,2019,September,Friday,6,249,8,2019-09-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4895,5421,GO-20199031812,THEFT UNDER,2019-09-27,2019,September,Friday,27,270,19,2019-09-27,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4896,5790,GO-20192506549,THEFT UNDER,2019-12-28,2019,December,Saturday,28,362,18,2019-12-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4897,6206,GO-2020918591,THEFT UNDER - BICYCLE,2020-05-18,2020,May,Monday,18,139,10,2020-05-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4898,6531,GO-20209016830,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,22,2020-07-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4899,6549,GO-20191786303,FRAUD OVER,2019-04-01,2019,April,Monday,1,91,0,2019-09-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4900,6587,GO-20209017311,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,23,2020-07-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4901,6638,GO-20209017746,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,12,2020-07-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4902,6654,GO-20209017811,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,1,2020-07-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4903,6677,GO-20209016862,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,5,2020-07-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4904,6899,GO-20201477766,B&E,2020-08-07,2020,August,Friday,7,220,20,2020-08-08,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4905,6914,GO-20201469441,THEFT OVER - BICYCLE,2020-08-05,2020,August,Wednesday,5,218,22,2020-08-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4906,6980,GO-20201551638,THEFT UNDER - BICYCLE,2020-08-16,2020,August,Sunday,16,229,14,2020-08-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4907,7040,GO-20209020992,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,1,2020-08-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4908,7049,GO-20209021037,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,16,2020-08-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4909,7136,GO-20209021846,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,7,2020-08-31,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4910,7247,GO-20209022998,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,16,2020-09-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4911,7281,GO-20201768219,THEFT UNDER - BICYCLE,2020-09-10,2020,September,Thursday,10,254,14,2020-09-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4912,7341,GO-20201804482,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,4,2020-09-24,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4913,7342,GO-20201804482,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,4,2020-09-24,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4914,7390,GO-20209025031,THEFT UNDER,2020-09-30,2020,September,Wednesday,30,274,2,2020-09-30,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4915,7435,GO-20201930924,FTC PROBATION ORDER,2020-10-07,2020,October,Wednesday,7,281,16,2020-10-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4916,7450,GO-20209026222,THEFT UNDER,2020-10-12,2020,October,Monday,12,286,22,2020-10-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4917,7451,GO-20209026222,THEFT UNDER,2020-10-12,2020,October,Monday,12,286,22,2020-10-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4918,3471,GO-20189030499,THEFT UNDER,2018-09-14,2018,September,Friday,14,257,8,2018-09-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -4919,7514,GO-20209027049,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,20,2020-10-20,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4920,7543,GO-20209027646,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,10,2020-10-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4921,7615,GO-20209029211,THEFT UNDER,2020-11-05,2020,November,Thursday,5,310,12,2020-11-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4922,7772,GO-20149001784,THEFT UNDER,2014-03-04,2014,March,Tuesday,4,63,21,2014-03-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4923,7910,GO-20149003290,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,1,2014-05-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4924,7917,GO-20142062543,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,19,2014-05-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4925,7918,GO-20142062543,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,19,2014-05-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4926,8087,GO-20142234818,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,8,2014-06-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4927,8214,GO-20142338385,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,13,2014-06-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4928,8242,GO-20142356777,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,0,2014-06-24,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4929,8442,GO-20149005076,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,13,2014-07-17,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4930,8575,GO-20149005571,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,21,2014-08-02,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4931,8584,GO-20142656825,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,12,2014-08-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4932,8585,GO-20149005608,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,11,2014-08-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4933,8654,GO-20142725123,PROPERTY - FOUND,2014-08-18,2014,August,Monday,18,230,0,2014-08-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4934,9041,GO-20143073926,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,16,2014-10-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4935,9278,GO-2015150798,THEFT UNDER,2015-01-26,2015,January,Monday,26,26,10,2015-01-26,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4936,9285,GO-2015189266,B&E,2015-01-31,2015,January,Saturday,31,31,22,2015-02-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4937,9286,GO-2015189266,B&E,2015-01-31,2015,January,Saturday,31,31,22,2015-02-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4938,9404,GO-2015581613,B&E,2015-04-03,2015,April,Friday,3,93,18,2015-04-08,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4939,9417,GO-20159001976,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,17,2015-04-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4940,9441,GO-2015649368,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,12,2015-04-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4941,9442,GO-2015649368,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,12,2015-04-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4942,9683,GO-2015901706,B&E,2015-05-30,2015,May,Saturday,30,150,3,2015-05-30,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4943,9737,GO-2015955028,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,11,2015-06-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4944,9826,GO-20151013364,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,22,2015-06-19,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4945,9996,GO-20151179770,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,19,2015-07-12,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4946,10091,GO-20159004952,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,16,2015-07-24,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4947,10135,GO-20159005122,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,16,2015-07-29,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4948,10138,GO-20159005148,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,7,2015-07-30,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4949,10168,GO-20159005278,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,0,2015-08-03,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4950,10319,GO-20159006140,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,8,2015-08-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4951,10431,GO-20159006880,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,12,2015-09-08,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4952,10487,GO-20159007327,POSSESSION PROPERTY OBC UNDER,2015-01-09,2015,January,Friday,9,9,16,2015-01-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4953,10709,GO-20151877095,THEFT UNDER,2015-10-03,2015,October,Saturday,3,276,11,2015-11-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4954,10754,GO-20159009637,THEFT UNDER,2015-11-10,2015,November,Tuesday,10,314,22,2015-11-11,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4955,10856,GO-20159010778,THEFT UNDER,2015-12-10,2015,December,Thursday,10,344,8,2015-12-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4956,10898,GO-20152193950,THEFT UNDER,2015-12-23,2015,December,Wednesday,23,357,0,2015-12-23,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4957,10972,GO-20169001189,THEFT UNDER,2016-01-25,2016,January,Monday,25,25,19,2016-02-06,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4958,5965,GO-20209009006,THEFT UNDER,2020-03-13,2020,March,Friday,13,73,23,2020-03-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -4959,10986,GO-20169001327,THEFT UNDER,2016-01-29,2016,January,Friday,29,29,6,2016-02-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4960,11613,GO-20169006215,THEFT UNDER,2016-06-16,2016,June,Thursday,16,168,15,2016-06-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4961,11643,GO-20161119810,B&E,2016-06-26,2016,June,Sunday,26,178,14,2016-06-26,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4962,11708,GO-20161168882,THEFT UNDER - BICYCLE,2016-07-01,2016,July,Friday,1,183,14,2016-07-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4963,11729,GO-20169006839,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,2,2016-07-07,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4964,11831,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,2,2016-07-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4965,11832,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,2,2016-07-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4966,11833,GO-20169007328,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,2,2016-07-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4967,11994,GO-20169008208,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,16,2016-08-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4968,12004,GO-20169008245,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,10,2016-08-04,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4969,12099,GO-20169008782,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,0,2016-08-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4970,12111,GO-20169008856,THEFT UNDER,2016-08-14,2016,August,Sunday,14,227,16,2016-08-16,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4971,12132,GO-20169009005,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,13,2016-08-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4972,12152,GO-20169009127,THEFT UNDER,2016-08-20,2016,August,Saturday,20,233,13,2016-08-20,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4973,12157,GO-20161485894,PROPERTY - FOUND,2016-08-22,2016,August,Monday,22,235,13,2016-08-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4974,12172,GO-20169009221,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,23,2016-08-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4975,12216,GO-20161527955,THEFT OF EBIKE UNDER $5000,2016-08-24,2016,August,Wednesday,24,237,7,2016-08-28,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4976,12355,GO-20169010503,THEFT UNDER,2016-09-14,2016,September,Wednesday,14,258,18,2016-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4977,12360,GO-20161644098,B&E,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4978,12361,GO-20161644098,B&E,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4979,12362,GO-20161644098,B&E,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4980,12542,GO-20169011499,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,11,2016-10-03,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4981,12653,GO-20161823233,B&E W'INTENT,2016-10-13,2016,October,Thursday,13,287,17,2016-10-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4982,12654,GO-20161823233,B&E W'INTENT,2016-10-13,2016,October,Thursday,13,287,17,2016-10-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4983,12768,GO-20169013474,THEFT UNDER,2016-11-15,2016,November,Tuesday,15,320,10,2016-11-15,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4984,12779,GO-20162047779,THEFT UNDER - BICYCLE,2016-11-17,2016,November,Thursday,17,322,17,2016-11-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4985,12782,GO-20162048254,THEFT UNDER - BICYCLE,2016-11-17,2016,November,Thursday,17,322,18,2016-11-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4986,12806,GO-20162068868,THEFT OF EBIKE UNDER $5000,2016-08-19,2016,August,Friday,19,232,8,2016-11-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4987,12881,GO-20189026868,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,11,2018-08-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4988,12892,GO-20181748193,B&E,2018-09-21,2018,September,Friday,21,264,0,2018-09-21,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4989,12907,GO-20182074030,B&E,2018-10-24,2018,October,Wednesday,24,297,0,2018-11-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4990,12908,GO-20182074030,B&E,2018-10-24,2018,October,Wednesday,24,297,0,2018-11-10,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4991,12910,GO-20189038114,THEFT UNDER - BICYCLE,2018-11-13,2018,November,Tuesday,13,317,20,2018-11-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4992,12927,GO-20199013601,THEFT UNDER,2019-04-30,2019,April,Tuesday,30,120,12,2019-05-01,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4993,12944,GO-20199020018,THEFT UNDER,2019-06-25,2019,June,Tuesday,25,176,9,2019-06-25,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4994,12964,GO-20199025371,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,0,2019-08-08,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4995,13008,GO-20192256538,THEFT OF EBIKE UNDER $5000,2019-11-21,2019,November,Thursday,21,325,17,2019-11-22,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4996,13031,GO-2020844592,THEFT UNDER - BICYCLE,2020-05-04,2020,May,Monday,4,125,23,2020-05-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4997,14095,GO-20169009002,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,1,2016-08-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4998,14168,GO-20179009514,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,14,2017-07-05,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -4999,14170,GO-20179010114,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,0,2017-07-13,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -5000,14223,GO-20189009899,THEFT UNDER - BICYCLE,2018-03-28,2018,March,Wednesday,28,87,9,2018-03-28,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -5001,14240,GO-20189017987,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,16,2018-06-09,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -5002,14243,GO-20181107211,B&E,2018-06-18,2018,June,Monday,18,169,9,2018-06-18,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)}",East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -5003,9754,GO-2015952509,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,17,2015-06-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5004,9896,GO-20151076457,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,18,2015-06-26,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5005,10429,GO-20151545537,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,15,2015-09-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5006,10430,GO-20159006873,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,20,2015-09-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5007,10480,GO-20159007275,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,8,2015-09-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5008,10844,GO-20159010613,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,0,2015-12-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5009,10904,GO-20169000009,THEFT UNDER,2015-12-31,2015,December,Thursday,31,365,15,2016-01-01,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5010,10912,GO-20169000223,THEFT UNDER,2016-01-07,2016,January,Thursday,7,7,7,2016-01-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5011,10929,GO-2016101050,THEFT UNDER,2016-01-14,2016,January,Thursday,14,14,18,2016-01-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5012,10930,GO-2016101050,THEFT UNDER,2016-01-14,2016,January,Thursday,14,14,18,2016-01-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5013,11113,GO-2016591928,THEFT UNDER - BICYCLE,2016-04-07,2016,April,Thursday,7,98,12,2016-04-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5014,11173,GO-20151133851,PROPERTY - FOUND,2015-07-01,2015,July,Wednesday,1,182,8,2015-07-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5015,11209,GO-20151717265,PROPERTY - FOUND,2015-10-05,2015,October,Monday,5,278,9,2015-10-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5016,11382,GO-2016896686,THEFT UNDER - BICYCLE,2016-05-18,2016,May,Wednesday,18,139,8,2016-05-24,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5017,11429,GO-2016950031,THEFT UNDER - BICYCLE,2016-05-29,2016,May,Sunday,29,150,16,2016-06-01,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5018,11693,GO-20161160931,THEFT OF EBIKE UNDER $5000,2016-07-03,2016,July,Sunday,3,185,3,2016-07-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5019,11712,GO-20169006731,THEFT UNDER,2016-07-03,2016,July,Sunday,3,185,18,2016-07-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5020,11754,GO-20161207814,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,23,2016-07-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5021,11775,GO-20169007083,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,7,2016-07-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5022,11795,GO-20161232525,B&E,2016-07-14,2016,July,Thursday,14,196,4,2016-07-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5023,11796,GO-20161232525,B&E,2016-07-14,2016,July,Thursday,14,196,4,2016-07-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5024,11797,GO-20161232525,B&E,2016-07-14,2016,July,Thursday,14,196,4,2016-07-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5025,11950,GO-20161346274,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,17,2016-07-31,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5026,11951,GO-20161346274,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,17,2016-07-31,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5027,12200,GO-20169009481,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,13,2016-08-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5028,12211,GO-20169009571,THEFT UNDER,2016-08-25,2016,August,Thursday,25,238,23,2016-08-27,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5029,12244,GO-20161555583,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,11,2016-09-02,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5030,12349,GO-20169010481,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-15,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5031,12679,GO-20169012617,THEFT UNDER - BICYCLE,2016-10-24,2016,October,Monday,24,298,21,2016-10-26,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5032,12722,GO-20161960455,THEFT UNDER - BICYCLE,2016-11-03,2016,November,Thursday,3,308,19,2016-11-04,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5033,12893,GO-20189031605,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,18,2018-09-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5034,12899,GO-20189034101,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,16,2018-10-15,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5035,12919,GO-20199000972,THEFT UNDER - BICYCLE,2019-01-05,2019,January,Saturday,5,5,23,2019-01-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5036,12920,GO-20199003002,THEFT UNDER - BICYCLE,2019-01-15,2019,January,Tuesday,15,15,2,2019-01-22,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5037,12921,GO-20199003002,THEFT UNDER - BICYCLE,2019-01-15,2019,January,Tuesday,15,15,2,2019-01-22,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5038,12995,GO-20199033875,THEFT UNDER,2019-10-14,2019,October,Monday,14,287,21,2019-10-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5039,14084,GO-20169007863,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,1,2016-07-27,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5040,14089,GO-20169008297,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,12,2016-08-06,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5041,14109,GO-20169011089,THEFT UNDER,2016-09-25,2016,September,Sunday,25,269,14,2016-09-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5042,14129,GO-20169014076,THEFT UNDER - BICYCLE,2016-11-30,2016,November,Wednesday,30,335,20,2016-12-01,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5043,14130,GO-20169014076,THEFT UNDER - BICYCLE,2016-11-30,2016,November,Wednesday,30,335,20,2016-12-01,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5044,14160,GO-20179007284,THEFT UNDER,2017-05-30,2017,May,Tuesday,30,150,9,2017-05-31,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5045,14165,GO-20179009152,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,9,2017-06-29,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5046,14211,GO-20179018195,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,19,2017-10-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5047,14216,GO-20179020402,THEFT UNDER - BICYCLE,2017-11-21,2017,November,Tuesday,21,325,8,2017-11-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5048,14227,GO-20189010555,THEFT UNDER - BICYCLE,2018-04-05,2018,April,Thursday,5,95,0,2018-04-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5049,15924,GO-20149009002,THEFT UNDER,2014-12-28,2014,December,Sunday,28,362,0,2014-12-28,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5050,15992,GO-20159009169,THEFT UNDER,2015-10-27,2015,October,Tuesday,27,300,10,2015-10-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5051,15993,GO-20159009349,THEFT UNDER,2015-11-04,2015,November,Wednesday,4,308,5,2015-11-04,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5052,16025,GO-20169005101,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,11,2016-05-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5053,16036,GO-20201298900,B&E,2020-07-08,2020,July,Wednesday,8,190,13,2020-07-13,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5054,16047,GO-20201353985,THEFT UNDER - BICYCLE,2020-07-21,2020,July,Tuesday,21,203,4,2020-07-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5055,16050,GO-20209018252,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,0,2020-07-22,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5056,16088,GO-20209024759,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,0,2020-09-28,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5057,18705,GO-20209017012,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,21,2020-07-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5058,18722,GO-20209018979,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,13,2020-07-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5059,18768,GO-20209027040,THEFT UNDER,2020-10-11,2020,October,Sunday,11,285,2,2020-10-20,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5060,18888,GO-20159003058,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,15,2015-05-24,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5061,18994,GO-20169006425,THEFT UNDER,2016-06-21,2016,June,Tuesday,21,173,1,2016-06-27,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5062,19018,GO-20169008476,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,8,2016-08-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5063,19019,GO-20169008476,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,8,2016-08-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5064,19020,GO-20169008476,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,8,2016-08-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5065,19089,GO-20179007869,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,10,2017-06-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5066,19102,GO-20179012094,THEFT UNDER - BICYCLE,2017-04-08,2017,April,Saturday,8,98,18,2017-08-08,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5067,19110,GO-20179013187,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,22,2017-08-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5068,19223,GO-20199011804,THEFT UNDER,2019-04-13,2019,April,Saturday,13,103,22,2019-04-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5069,19253,GO-20199022474,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,12,2019-07-16,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5070,19302,GO-20191896013,THEFT UNDER - BICYCLE,2019-10-01,2019,October,Tuesday,1,274,22,2019-10-02,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5071,19303,GO-20191896013,THEFT UNDER - BICYCLE,2019-10-01,2019,October,Tuesday,1,274,22,2019-10-02,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5072,19304,GO-20191896013,THEFT UNDER - BICYCLE,2019-10-01,2019,October,Tuesday,1,274,22,2019-10-02,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5073,19310,GO-20199033354,THEFT UNDER,2019-10-09,2019,October,Wednesday,9,282,22,2019-10-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5074,19330,GO-20209001908,THEFT UNDER,2020-01-17,2020,January,Friday,17,17,0,2020-01-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5075,19668,GO-20143355027,THEFT UNDER,2014-11-18,2014,November,Tuesday,18,322,8,2014-11-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5076,19693,GO-20159004038,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,2,2015-06-29,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5077,19733,GO-20159007577,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,10,2015-09-22,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5078,19768,GO-2016924810,B&E,2016-05-28,2016,May,Saturday,28,149,13,2016-05-28,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5079,22165,GO-20161173123,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,7,2016-07-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5080,22170,GO-20161232525,B&E,2016-07-14,2016,July,Thursday,14,196,4,2016-07-14,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5081,22267,GO-20172002871,B&E,2017-11-04,2017,November,Saturday,4,308,16,2017-11-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5082,22268,GO-20172002871,B&E,2017-11-04,2017,November,Saturday,4,308,16,2017-11-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5083,22281,GO-20189009393,THEFT UNDER - BICYCLE,2018-03-24,2018,March,Saturday,24,83,4,2018-03-25,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5084,22282,GO-20189010555,THEFT UNDER - BICYCLE,2018-04-05,2018,April,Thursday,5,95,0,2018-04-05,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5085,22320,GO-20189026875,THEFT UNDER - BICYCLE,2018-08-17,2018,August,Friday,17,229,20,2018-08-18,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5086,22349,GO-20189033894,THEFT UNDER,2018-10-12,2018,October,Friday,12,285,6,2018-10-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5087,22364,GO-20199000624,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,14,2019-01-06,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5088,22396,GO-20199023085,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,5,2019-07-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5089,22484,GO-20209015962,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,0,2020-06-23,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5090,22491,GO-20201210509,THEFT UNDER - BICYCLE,2020-06-30,2020,June,Tuesday,30,182,23,2020-07-01,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5091,22518,GO-20209018942,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,18,2020-07-29,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5092,22526,GO-20201508005,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,20,2020-08-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5093,22527,GO-20201508005,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,20,2020-08-12,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5094,22531,GO-20209020869,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,0,2020-08-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5095,22532,GO-20209020869,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,0,2020-08-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5096,22533,GO-20209020865,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,23,2020-08-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5097,22547,GO-20201635623,THEFT UNDER - BICYCLE,2020-08-30,2020,August,Sunday,30,243,6,2020-08-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5098,22866,GO-20142807767,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,1,2014-08-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5099,22888,GO-20159007249,THEFT UNDER,2015-09-12,2015,September,Saturday,12,255,1,2015-09-15,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5100,22889,GO-2015190712,THEFT UNDER,2015-02-02,2015,February,Monday,2,33,1,2015-02-02,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5101,22948,GO-20152096408,THEFT UNDER,2015-12-04,2015,December,Friday,4,338,18,2015-12-07,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5102,22952,GO-20152168084,THEFT UNDER,2015-12-18,2015,December,Friday,18,352,14,2015-12-18,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5103,2677,GO-20189020151,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,23,2018-06-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5104,7102,GO-20209021584,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,19,2020-08-27,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5105,2711,GO-20189020576,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,1,2018-06-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5106,2714,GO-20189020599,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,15,2018-06-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5107,2728,GO-20189020393,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,18,2018-06-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5108,2824,GO-20189022144,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,22,2018-07-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5109,2852,GO-20181263649,THEFT OF EBIKE UNDER $5000,2018-06-21,2018,June,Thursday,21,172,18,2018-07-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5110,2853,GO-20181264162,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,12,2018-07-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5111,3080,GO-20189025163,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,17,2018-08-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5112,3163,GO-20181484649,THEFT OVER,2018-08-10,2018,August,Friday,10,222,22,2018-08-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5113,3164,GO-20181484649,THEFT OVER,2018-08-10,2018,August,Friday,10,222,22,2018-08-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5114,3165,GO-20181484649,THEFT OVER,2018-08-10,2018,August,Friday,10,222,22,2018-08-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5115,3166,GO-20181484649,THEFT OVER,2018-08-10,2018,August,Friday,10,222,22,2018-08-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5116,3173,GO-20189026046,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,7,2018-08-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5117,3178,GO-20189026115,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,16,2018-08-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5118,3191,GO-20189026263,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,15,2018-08-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5119,3201,GO-20189026115,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,16,2018-08-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5120,3330,GO-20189028102,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,11,2018-08-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5121,3356,GO-20181589620,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,22,2018-08-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5122,3367,GO-20189028623,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,10,2018-08-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5123,3394,GO-20181643841,THEFT UNDER,2018-08-29,2018,August,Wednesday,29,241,2,2018-09-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5124,3397,GO-20189029231,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,16,2018-09-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5125,3494,GO-20189030791,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,14,2018-09-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5126,3523,GO-20181746258,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,0,2018-09-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5127,3538,GO-20189031591,THEFT UNDER,2018-09-22,2018,September,Saturday,22,265,21,2018-09-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5128,3591,GO-20189032521,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,12,2018-10-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5129,6824,GO-20209019070,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,13,2020-07-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5130,7344,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24,2020,September,Thursday,24,268,0,2020-09-24,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5131,3661,GO-20189033586,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,8,2018-10-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5132,3678,GO-20189033770,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,0,2018-10-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5133,3723,GO-20189034518,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,3,2018-10-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5134,3747,GO-20189035225,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,13,2018-10-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5135,3767,GO-20189035756,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,19,2018-10-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5136,3783,GO-20181976760,THEFT OVER,2018-10-20,2018,October,Saturday,20,293,19,2018-10-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5137,3800,GO-20182019908,THEFT UNDER,2018-10-27,2018,October,Saturday,27,300,22,2018-10-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5138,3801,GO-20182019908,THEFT UNDER,2018-10-27,2018,October,Saturday,27,300,22,2018-10-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5139,3806,GO-20189036571,THEFT UNDER - BICYCLE,2018-11-01,2018,November,Thursday,1,305,18,2018-11-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5140,3832,GO-20189037487,THEFT UNDER - BICYCLE,2018-11-05,2018,November,Monday,5,309,8,2018-11-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5141,3845,GO-20189037627,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,13,2018-11-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5142,3870,GO-20182124295,B&E,2018-11-17,2018,November,Saturday,17,321,16,2018-11-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5143,3884,GO-20182138932,THEFT UNDER - BICYCLE,2018-11-19,2018,November,Monday,19,323,23,2018-11-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5144,3927,GO-20189040982,THEFT UNDER - BICYCLE,2018-12-04,2018,December,Tuesday,4,338,9,2018-12-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5145,3929,GO-20182230988,THEFT UNDER,2018-12-04,2018,December,Tuesday,4,338,8,2018-12-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5146,3936,GO-20189041778,THEFT UNDER - BICYCLE,2018-12-11,2018,December,Tuesday,11,345,8,2018-12-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5147,3943,GO-20189042213,THEFT UNDER - BICYCLE,2018-12-15,2018,December,Saturday,15,349,23,2018-12-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5148,3944,GO-20189042213,THEFT UNDER - BICYCLE,2018-12-15,2018,December,Saturday,15,349,23,2018-12-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5149,3945,GO-20189042213,THEFT UNDER - BICYCLE,2018-12-15,2018,December,Saturday,15,349,23,2018-12-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5150,3966,GO-20182348717,THEFT UNDER - BICYCLE,2018-12-29,2018,December,Saturday,29,363,23,2018-12-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5151,3991,GO-20199000914,THEFT UNDER - BICYCLE,2019-01-08,2019,January,Tuesday,8,8,4,2019-01-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5152,4081,GO-20199007725,THEFT UNDER - BICYCLE,2019-03-08,2019,March,Friday,8,67,10,2019-03-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5153,4236,GO-20199014029,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,19,2019-05-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5154,4250,GO-2019830290,THEFT UNDER,2019-05-04,2019,May,Saturday,4,124,21,2019-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5155,4251,GO-2019830290,THEFT UNDER,2019-05-04,2019,May,Saturday,4,124,21,2019-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5156,4305,GO-2019889884,THEFT OF EBIKE UNDER $5000,2019-05-10,2019,May,Friday,10,130,22,2019-05-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5157,4417,GO-20199017558,THEFT UNDER,2019-06-05,2019,June,Wednesday,5,156,19,2019-06-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5158,4500,GO-20199018751,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,19,2019-06-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5159,4524,GO-20191111997,THEFT FROM MOTOR VEHICLE OVER,2019-06-16,2019,June,Sunday,16,167,0,2019-06-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5160,4542,GO-20199019200,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,18,2019-06-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5161,4543,GO-20199019217,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,8,2019-06-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5162,4571,GO-20191111997,THEFT FROM MOTOR VEHICLE OVER,2019-06-16,2019,June,Sunday,16,167,0,2019-06-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5163,4871,GO-20191397940,THEFT UNDER,2019-03-04,2019,March,Monday,4,63,12,2019-07-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5164,4872,GO-20191397940,THEFT UNDER,2019-03-04,2019,March,Monday,4,63,12,2019-07-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5165,4876,GO-20191372463,THEFT OF EBIKE UNDER $5000,2019-07-21,2019,July,Sunday,21,202,22,2019-07-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5166,4963,GO-20199024903,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,1,2019-08-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5167,4978,GO-20199025111,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,13,2019-08-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5168,5046,GO-20199025935,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,6,2019-08-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5169,5063,GO-20199026164,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,10,2019-08-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5170,5081,GO-20199026355,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,15,2019-08-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5171,5242,GO-20191705618,B&E,2019-09-05,2019,September,Thursday,5,248,20,2019-09-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5172,5243,GO-20191705618,B&E,2019-09-05,2019,September,Thursday,5,248,20,2019-09-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5173,5249,GO-20199028890,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,12,2019-09-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5174,5405,GO-20199031541,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,18,2019-09-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5175,5426,GO-20191854098,THEFT OF EBIKE OVER $5000,2019-09-25,2019,September,Wednesday,25,268,21,2019-09-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5176,5433,GO-20199031942,THEFT UNDER,2019-09-29,2019,September,Sunday,29,272,1,2019-09-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5177,5458,GO-20199032421,THEFT UNDER,2019-10-02,2019,October,Wednesday,2,275,18,2019-10-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5178,5491,GO-20199033218,THEFT UNDER,2019-10-08,2019,October,Tuesday,8,281,22,2019-10-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5179,5620,GO-20199035811,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,11,2019-10-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5180,5681,GO-20199037129,FTC PROBATION ORDER,2019-11-11,2019,November,Monday,11,315,7,2019-11-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5181,5753,GO-20192388095,B&E,2019-12-01,2019,December,Sunday,1,335,20,2019-12-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5182,5792,GO-20199042435,THEFT UNDER,2019-12-24,2019,December,Tuesday,24,358,0,2019-12-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5183,5818,GO-202074429,B&E,2019-12-20,2019,December,Friday,20,354,16,2020-01-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5184,5881,GO-2020282516,THEFT UNDER,2020-02-08,2020,February,Saturday,8,39,15,2020-02-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5185,25464,GO-20179010394,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,23,2017-07-18,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5186,5882,GO-2020282516,THEFT UNDER,2020-02-08,2020,February,Saturday,8,39,15,2020-02-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5187,5914,GO-2020375616,THEFT UNDER - BICYCLE,2020-02-15,2020,February,Saturday,15,46,10,2020-02-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5188,5915,GO-2020375616,THEFT UNDER - BICYCLE,2020-02-15,2020,February,Saturday,15,46,10,2020-02-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5189,5955,GO-20209008660,THEFT UNDER,2020-03-12,2020,March,Thursday,12,72,1,2020-03-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5190,5962,GO-20209008947,THEFT UNDER,2020-03-13,2020,March,Friday,13,73,19,2020-03-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5191,5966,GO-20209009026,THEFT UNDER,2020-03-15,2020,March,Sunday,15,75,18,2020-03-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5192,6051,GO-20209010921,THEFT UNDER,2020-04-11,2020,April,Saturday,11,102,15,2020-04-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5193,6220,GO-20209013645,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,20,2020-05-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5194,6221,GO-20209013645,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,20,2020-05-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5195,6236,GO-20209013785,THEFT UNDER,2020-05-23,2020,May,Saturday,23,144,18,2020-05-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5196,6273,GO-20209014293,THEFT UNDER,2020-05-29,2020,May,Friday,29,150,20,2020-05-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5197,6287,GO-20209014432,THEFT UNDER,2020-06-02,2020,June,Tuesday,2,154,23,2020-06-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5198,6288,GO-20209014432,THEFT UNDER,2020-06-02,2020,June,Tuesday,2,154,23,2020-06-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5199,6306,GO-20201040624,THEFT UNDER,2020-06-04,2020,June,Thursday,4,156,2,2020-06-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5200,6439,GO-20209015890,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,10,2020-06-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5201,6460,GO-20209016078,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,18,2020-06-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5202,6526,GO-20201239093,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,3,2020-07-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5203,6527,GO-20201239093,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,3,2020-07-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5204,6552,GO-20209017028,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,16,2020-07-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5205,6613,GO-20201294477,THEFT OVER - BICYCLE,2020-07-12,2020,July,Sunday,12,194,22,2020-07-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5206,12960,GO-20199025096,THEFT UNDER,2019-08-05,2019,August,Monday,5,217,17,2019-08-06,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5207,25539,GO-20189016246,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,14,2018-05-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5208,6830,GO-20201433732,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,20,2020-08-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5209,25551,GO-20181156632,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,17,2018-06-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5210,7345,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24,2020,September,Thursday,24,268,0,2020-09-24,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5211,12961,GO-20199025096,THEFT UNDER,2019-08-05,2019,August,Monday,5,217,17,2019-08-06,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5212,25608,GO-20182108900,THEFT UNDER,2018-11-09,2018,November,Friday,9,313,10,2018-11-15,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5213,6883,GO-20209019506,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,6,2020-08-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5214,25625,GO-20199016504,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,8,2019-05-27,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5215,7199,GO-20201698385,THEFT FROM MOTOR VEHICLE OVER,2020-08-25,2020,August,Tuesday,25,238,17,2020-09-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5216,7224,GO-20201642304,B&E,2020-08-30,2020,August,Sunday,30,243,19,2020-08-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5217,7277,GO-20201764221,B&E W'INTENT,2020-09-16,2020,September,Wednesday,16,260,19,2020-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5218,7294,GO-20209023811,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,1,2020-09-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5219,7295,GO-20209023811,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,1,2020-09-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5220,7303,GO-20201791495,THEFT UNDER,2020-09-16,2020,September,Wednesday,16,260,18,2020-09-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5221,7471,GO-20201946246,THEFT OF EBIKE UNDER $5000,2020-10-13,2020,October,Tuesday,13,287,2,2020-10-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5222,7544,GO-20209027645,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,16,2020-10-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5223,7554,GO-20202024200,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,20,2020-10-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5224,7631,GO-20209029515,THEFT UNDER,2020-11-13,2020,November,Friday,13,318,15,2020-11-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5225,7690,GO-20202291540,THEFT UNDER,2020-12-03,2020,December,Thursday,3,338,20,2020-12-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5226,7698,GO-20209031734,THEFT UNDER,2020-12-10,2020,December,Thursday,10,345,15,2020-12-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5227,7712,GO-20202402321,B&E W'INTENT,2020-12-17,2020,December,Thursday,17,352,1,2020-12-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5228,7738,GO-20141304072,B&E W'INTENT,2014-01-07,2014,January,Tuesday,7,7,8,2014-01-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5229,7763,GO-20141545496,THEFT UNDER,2014-01-15,2014,January,Wednesday,15,15,0,2014-02-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5230,7803,GO-20141809722,THEFT UNDER,2014-04-01,2014,April,Tuesday,1,91,12,2014-04-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5231,25557,GO-20189021110,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,1,2018-07-04,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5232,12965,GO-20191501142,THEFT OF MOTOR VEHICLE,2019-08-08,2019,August,Thursday,8,220,16,2019-08-08,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5233,7346,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24,2020,September,Thursday,24,268,0,2020-09-24,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5234,7863,GO-20149003010,THEFT UNDER,2014-04-20,2014,April,Sunday,20,110,8,2014-04-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5235,7929,GO-20142078954,THEFT UNDER,2014-05-14,2014,May,Wednesday,14,134,15,2014-05-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5236,8049,GO-20142214576,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,18,2014-06-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5237,8157,GO-20149004145,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,18,2014-06-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5238,8168,GO-20142319598,B&E,2014-06-18,2014,June,Wednesday,18,169,11,2014-06-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5239,8248,GO-20149004427,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,10,2014-06-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5240,8302,GO-20142442318,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,21,2014-07-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5241,8306,GO-20149004610,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,17,2014-07-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5242,8319,GO-20142457019,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,18,2014-07-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5243,8337,GO-20142485077,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,19,2014-07-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5244,8346,GO-20149004701,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,22,2014-07-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5245,8425,GO-20149004995,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,20,2014-07-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5246,8444,GO-20149005087,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,20,2014-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5247,8623,GO-20149005745,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,17,2014-08-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5248,8644,GO-20149005846,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,17,2014-08-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5249,8668,GO-20149005969,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,19,2014-08-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5250,8670,GO-20149005970,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,10,2014-08-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5251,8705,GO-20149006164,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,17,2014-08-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5252,8756,GO-20142800792,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,15,2014-08-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5253,8797,GO-20149006516,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,15,2014-09-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5254,8839,GO-20142807911,PROPERTY - FOUND,2014-08-30,2014,August,Saturday,30,242,17,2014-09-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5255,8866,GO-20149006774,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,23,2014-09-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5256,8923,GO-20142941034,B&E,2014-09-18,2014,September,Thursday,18,261,22,2014-09-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5257,8938,GO-20142960787,B&E,2014-09-18,2014,September,Thursday,18,261,19,2014-09-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5258,8939,GO-20142960787,B&E,2014-09-18,2014,September,Thursday,18,261,19,2014-09-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5259,8996,GO-20149007290,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,16,2014-09-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5260,9035,GO-20149007500,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,17,2014-10-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5261,9156,GO-20143243099,THEFT UNDER,2014-11-04,2014,November,Tuesday,4,308,17,2014-11-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5262,9206,GO-20142807911,PROPERTY - FOUND,2014-08-30,2014,August,Saturday,30,242,17,2014-09-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5263,9214,GO-20149008549,THEFT UNDER,2014-12-03,2014,December,Wednesday,3,337,18,2014-12-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5264,9216,GO-20143248290,THEFT UNDER,2014-11-05,2014,November,Wednesday,5,309,10,2014-11-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5265,9242,GO-20143560104,THEFT UNDER,2014-12-27,2014,December,Saturday,27,361,10,2014-12-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5266,9294,GO-20159000868,THEFT UNDER,2015-02-08,2015,February,Sunday,8,39,21,2015-02-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5267,9311,GO-2015390494,THEFT UNDER,2015-03-07,2015,March,Saturday,7,66,8,2015-03-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5268,9312,GO-2015390494,THEFT UNDER,2015-03-07,2015,March,Saturday,7,66,8,2015-03-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5269,9351,GO-20159001534,THEFT UNDER,2015-03-25,2015,March,Wednesday,25,84,15,2015-03-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5270,9366,GO-2015562735,PROPERTY - FOUND,2015-04-05,2015,April,Sunday,5,95,9,2015-04-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5271,9367,GO-2015562735,PROPERTY - FOUND,2015-04-05,2015,April,Sunday,5,95,9,2015-04-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5272,9392,GO-2015598145,THEFT UNDER,2015-04-03,2015,April,Friday,3,93,2,2015-04-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5273,9434,GO-2015648821,THEFT OVER,2015-04-19,2015,April,Sunday,19,109,1,2015-04-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5274,9435,GO-2015648821,THEFT OVER,2015-04-19,2015,April,Sunday,19,109,1,2015-04-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5275,9436,GO-2015648821,THEFT OVER,2015-04-19,2015,April,Sunday,19,109,1,2015-04-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5276,9450,GO-2015654746,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,18,2015-04-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5277,9488,GO-2015698079,THEFT UNDER,2015-04-27,2015,April,Monday,27,117,7,2015-04-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5278,9493,GO-20159002347,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,15,2015-04-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5279,9504,GO-2015722905,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,11,2015-05-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5280,9540,GO-2015753678,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,17,2015-05-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5281,9632,GO-20159003002,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,12,2015-05-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5282,9675,GO-20159003160,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,22,2015-05-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5283,9751,GO-20159003434,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,18,2015-06-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5284,9806,GO-2015992840,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,14,2015-06-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5285,9837,GO-20159003784,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,7,2015-06-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5286,9854,GO-20151051265,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,15,2015-06-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5287,9862,GO-20159003882,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,8,2015-06-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5288,9868,GO-20159003904,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,22,2015-06-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5289,9922,GO-20159004107,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,21,2015-07-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5290,9940,GO-20159004170,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,22,2015-07-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5291,10014,GO-20151199870,B&E W'INTENT,2015-07-14,2015,July,Tuesday,14,195,15,2015-07-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5292,10081,GO-20159004877,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,14,2015-07-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5293,10088,GO-20159004920,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,0,2015-07-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5294,10151,GO-20159005193,THEFT FROM MOTOR VEHICLE UNDER,2015-07-30,2015,July,Thursday,30,211,16,2015-07-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5295,10180,GO-20151353816,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,20,2015-08-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5296,10227,GO-20159005562,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,15,2015-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5297,10281,GO-20151429121,B&E,2015-07-21,2015,July,Tuesday,21,202,20,2015-08-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5298,10282,GO-20151429121,B&E,2015-07-21,2015,July,Tuesday,21,202,20,2015-08-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5299,10296,GO-20159005968,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,23,2015-08-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5300,10299,GO-20151438274,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,12,2015-08-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5301,10368,GO-20151519841,B&E,2015-09-02,2015,September,Wednesday,2,245,11,2015-09-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5302,10475,GO-20159007234,THEFT UNDER,2015-09-13,2015,September,Sunday,13,256,23,2015-09-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5303,10574,GO-20151693587,THEFT UNDER,2015-10-01,2015,October,Thursday,1,274,9,2015-10-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5304,10617,GO-20159008458,THEFT UNDER,2015-10-01,2015,October,Thursday,1,274,13,2015-10-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5305,10741,GO-20159009576,THEFT UNDER,2015-11-01,2015,November,Sunday,1,305,15,2015-11-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5306,10776,GO-20159009765,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,14,2015-11-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5307,10777,GO-20159009765,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,14,2015-11-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5308,10793,GO-20159009930,THEFT UNDER,2015-11-17,2015,November,Tuesday,17,321,23,2015-11-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5309,10823,GO-20159010323,THEFT UNDER,2015-11-29,2015,November,Sunday,29,333,13,2015-11-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5310,10838,GO-20159010551,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,1,2015-12-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5311,10855,GO-20159010758,THEFT UNDER,2015-12-09,2015,December,Wednesday,9,343,23,2015-12-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5312,10888,GO-20159011293,THEFT UNDER,2015-12-25,2015,December,Friday,25,359,13,2015-12-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5313,10906,GO-20169000017,THEFT UNDER,2014-12-31,2014,December,Wednesday,31,365,17,2016-01-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5314,10973,GO-20169001218,THEFT UNDER,2016-02-03,2016,February,Wednesday,3,34,23,2016-02-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5315,7347,GO-20201816050,THEFT UNDER - BICYCLE,2020-09-24,2020,September,Thursday,24,268,0,2020-09-24,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5316,25562,GO-20189022110,THEFT UNDER,2018-07-11,2018,July,Wednesday,11,192,17,2018-07-11,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5317,25575,GO-20189024561,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,21,2018-07-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5318,13002,GO-20192087795,THEFT FROM MOTOR VEHICLE UNDER,2019-10-29,2019,October,Tuesday,29,302,9,2019-10-29,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5319,25606,GO-20182085856,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,17,2018-11-12,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5320,7375,GO-20201819127,THEFT UNDER,2020-09-20,2020,September,Sunday,20,264,23,2020-09-25,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5321,12835,GO-20169014077,THEFT UNDER - BICYCLE,2016-11-30,2016,November,Wednesday,30,335,9,2016-12-01,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5322,13040,GO-20201046645,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,20,2020-06-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5323,25610,GO-20189040159,THEFT UNDER - BICYCLE,2018-11-28,2018,November,Wednesday,28,332,8,2018-11-28,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5324,7551,GO-20209027068,MISCHIEF UNDER,2020-10-20,2020,October,Tuesday,20,294,9,2020-10-20,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5325,12973,GO-20199027984,THEFT UNDER,2019-08-01,2019,August,Thursday,1,213,9,2019-08-28,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5326,14090,GO-20169008546,THEFT UNDER,2016-08-10,2016,August,Wednesday,10,223,19,2016-08-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5327,25615,GO-20199012744,THEFT FROM MOTOR VEHICLE UNDER,2019-04-21,2019,April,Sunday,21,111,2,2019-04-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5328,7654,GO-20209030332,THEFT UNDER,2020-11-17,2020,November,Tuesday,17,322,20,2020-11-23,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5329,13007,GO-20199037805,THEFT UNDER,2019-11-17,2019,November,Sunday,17,321,0,2019-11-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5330,14145,GO-2017300788,B&E,2017-02-17,2017,February,Friday,17,48,9,2017-02-17,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5331,25639,GO-20199019339,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,7,2019-06-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5332,7687,GO-20202200302,THEFT UNDER - BICYCLE,2020-11-20,2020,November,Friday,20,325,11,2020-11-20,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5333,13045,GO-20209014860,THEFT UNDER,2020-06-08,2020,June,Monday,8,160,14,2020-06-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5334,14207,GO-20179017060,THEFT UNDER,2017-10-12,2017,October,Thursday,12,285,18,2017-10-12,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5335,14233,GO-20189015310,THEFT UNDER - SHOPLIFTING,2018-05-17,2018,May,Thursday,17,137,11,2018-05-17,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5336,15868,GO-20149003735,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,8,2014-06-01,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5337,15919,GO-20143376124,THEFT UNDER,2014-11-13,2014,November,Thursday,13,317,17,2014-11-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5338,15953,GO-20159004075,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,16,2015-07-01,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5339,15996,GO-20151966910,THEFT UNDER,2015-11-15,2015,November,Sunday,15,319,19,2015-11-16,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5340,16023,GO-2016912625,B&E,2016-05-27,2016,May,Friday,27,148,4,2016-05-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5341,16024,GO-2016912625,B&E,2016-05-27,2016,May,Friday,27,148,4,2016-05-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5342,16026,GO-2016953785,B&E,2016-06-02,2016,June,Thursday,2,154,6,2016-06-02,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5343,16035,GO-20209017400,THEFT UNDER,2020-07-08,2020,July,Wednesday,8,190,19,2020-07-12,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5344,16037,GO-20209017564,THEFT UNDER,2020-07-13,2020,July,Monday,13,195,16,2020-07-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5345,16038,GO-20209017564,THEFT UNDER,2020-07-13,2020,July,Monday,13,195,16,2020-07-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5346,16054,GO-20201447841,THEFT UNDER - BICYCLE,2020-08-02,2020,August,Sunday,2,215,19,2020-08-03,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5347,16080,GO-20201754046,THEFT OF EBIKE UNDER $5000,2020-09-15,2020,September,Tuesday,15,259,13,2020-09-16,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5348,18707,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,6,2020-07-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5349,18708,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,6,2020-07-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5350,18717,GO-20209018853,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,16,2020-07-29,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5351,18732,GO-20209020011,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,23,2020-08-12,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5352,18832,GO-20142149692,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,14,2014-05-25,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5353,18835,GO-20149004144,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,10,2014-06-16,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5354,18876,GO-20143541626,THEFT UNDER,2014-12-24,2014,December,Wednesday,24,358,5,2014-12-24,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5355,18893,GO-2015935485,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,9,2015-06-04,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5356,18936,GO-20159007227,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,9,2015-09-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5357,25626,GO-20199016504,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,8,2019-05-27,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5358,19041,GO-20169010871,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,6,2016-09-21,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5359,19047,GO-20169011709,THEFT UNDER - BICYCLE,2016-10-07,2016,October,Friday,7,281,8,2016-10-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5360,19057,GO-20169013117,THEFT UNDER - BICYCLE,2016-11-07,2016,November,Monday,7,312,10,2016-11-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5361,19059,GO-20162031807,PROPERTY - FOUND,2016-11-15,2016,November,Tuesday,15,320,17,2016-11-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5362,19090,GO-20179008566,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,9,2017-06-21,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5363,19148,GO-20189009523,THEFT UNDER - BICYCLE,2018-03-08,2018,March,Thursday,8,67,23,2018-03-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5364,19203,GO-20189032153,THEFT UNDER,2018-09-27,2018,September,Thursday,27,270,8,2018-09-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5365,19204,GO-20189032186,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,17,2018-09-28,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5366,19241,GO-20199018424,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,8,2019-06-13,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5367,19251,GO-20199021762,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,9,2019-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5368,19254,GO-20191412923,B&E,2019-07-27,2019,July,Saturday,27,208,10,2019-07-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5369,19308,GO-20199032895,THEFT UNDER,2019-10-06,2019,October,Sunday,6,279,23,2019-10-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5370,19750,GO-20169001273,THEFT UNDER,2015-12-02,2015,December,Wednesday,2,336,22,2016-02-09,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5371,19767,GO-2016869818,THEFT UNDER - BICYCLE,2016-05-20,2016,May,Friday,20,141,1,2016-05-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5372,22223,GO-2017913544,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,1,2017-05-24,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5373,22269,GO-20172036864,THEFT OF EBIKE UNDER $5000,2017-11-10,2017,November,Friday,10,314,7,2017-11-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5374,22289,GO-20189015310,THEFT UNDER - SHOPLIFTING,2018-05-17,2018,May,Thursday,17,137,11,2018-05-17,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5375,22322,GO-20189027378,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,9,2018-08-21,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5376,22376,GO-20199017006,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,12,2019-05-31,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5377,22388,GO-20199021289,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,20,2019-07-06,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5378,22434,GO-20209143,THEFT OF EBIKE UNDER $5000,2019-12-31,2019,December,Tuesday,31,365,19,2020-01-02,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5379,22496,GO-20209016920,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,21,2020-07-05,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5380,22500,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,6,2020-07-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5381,22501,GO-20201283341,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,6,2020-07-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5382,22553,GO-20209022548,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,19,2020-09-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5383,22579,GO-20209026369,THEFT UNDER,2020-09-30,2020,September,Wednesday,30,274,2,2020-10-13,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5384,22581,GO-20209027730,THEFT UNDER,2020-10-26,2020,October,Monday,26,300,4,2020-10-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5385,22824,GO-20149003376,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,9,2014-05-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5386,22842,GO-20142297604,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,16,2014-06-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5387,22901,GO-20159002948,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,14,2015-05-20,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5388,22903,GO-2015872809,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,15,2015-05-25,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5389,25459,GO-20171228271,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,16,2017-07-09,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5390,25493,GO-20179017555,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,13,2017-10-18,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5391,25498,GO-20179018584,THEFT UNDER - BICYCLE,2017-10-30,2017,October,Monday,30,303,0,2017-10-31,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5392,25531,GO-20189013241,THEFT UNDER - BICYCLE,2018-04-28,2018,April,Saturday,28,118,20,2018-04-29,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5393,25593,GO-20181882646,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,18,2018-10-13,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5394,25662,GO-20199027502,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,0,2019-08-24,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5395,25677,GO-20199032120,THEFT UNDER,2019-09-23,2019,September,Monday,23,266,17,2019-09-30,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5396,25691,GO-20192487360,B&E,2019-12-25,2019,December,Wednesday,25,359,22,2019-12-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5397,25706,GO-2020636369,THEFT OF EBIKE UNDER $5000,2020-03-31,2020,March,Tuesday,31,91,15,2020-03-31,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5398,25763,GO-20209021171,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,13,2020-08-24,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5399,109,GO-20179002501,THEFT UNDER,2017-02-25,2017,February,Saturday,25,56,22,2017-02-26,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5400,434,GO-20179006755,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,19,2017-05-21,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5401,732,GO-20171141356,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,19,2017-06-26,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5402,748,GO-20179009145,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,18,2017-06-29,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5403,856,GO-20171251193,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,12,2017-07-12,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5404,888,GO-20171260302,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,15,2017-07-16,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5405,1453,GO-20179015168,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,2,2017-09-19,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5406,14074,GO-20161165864,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,3,2016-07-04,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5407,1454,GO-20179015168,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,2,2017-09-19,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5408,1462,GO-20179015258,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,18,2017-09-20,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5409,2044,GO-20189005750,THEFT UNDER - BICYCLE,2018-02-22,2018,February,Thursday,22,53,8,2018-02-23,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5410,2555,GO-20189018223,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,14,2018-06-11,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5411,2803,GO-20189021886,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,17,2018-07-10,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5412,2879,GO-20189022970,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,18,2018-07-18,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5413,3027,GO-20189024509,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,4,2018-07-30,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5414,3192,GO-20189026271,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,12,2018-08-13,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5415,3208,GO-20189026468,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,22,2018-08-15,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5416,3506,GO-20189030769,THEFT UNDER,2018-09-10,2018,September,Monday,10,253,12,2018-09-17,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5417,3807,GO-20189036686,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,23,2018-11-03,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5418,4371,GO-20199016740,THEFT UNDER,2019-05-28,2019,May,Tuesday,28,148,1,2019-05-29,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5419,5130,GO-20191593872,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,18,2019-08-21,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5420,5513,GO-20199033638,THEFT UNDER,2019-10-11,2019,October,Friday,11,284,19,2019-10-11,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5421,6405,GO-20209015516,THEFT UNDER,2020-06-16,2020,June,Tuesday,16,168,17,2020-06-16,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5422,6741,GO-20201390052,B&E,2020-07-24,2020,July,Friday,24,206,11,2020-07-26,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5423,6742,GO-20201390052,B&E,2020-07-24,2020,July,Friday,24,206,11,2020-07-26,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5424,6778,GO-20201390052,B&E,2020-07-24,2020,July,Friday,24,206,11,2020-07-26,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5425,6779,GO-20201390052,B&E,2020-07-24,2020,July,Friday,24,206,11,2020-07-26,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5426,6785,GO-20201411074,B&E,2020-07-23,2020,July,Thursday,23,205,18,2020-07-29,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5427,6803,GO-20209018880,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,20,2020-07-29,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5428,25693,GO-20209004007,THEFT UNDER,2020-02-02,2020,February,Sunday,2,33,4,2020-02-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5429,7800,GO-20149002462,THEFT UNDER,2014-03-30,2014,March,Sunday,30,89,17,2014-03-31,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5430,13054,GO-20201195957,B&E,2020-06-28,2020,June,Sunday,28,180,23,2020-06-29,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5431,25737,GO-20209016416,THEFT UNDER,2020-06-27,2020,June,Saturday,27,179,22,2020-06-29,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5432,7844,GO-20149002915,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,8,2014-04-18,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5433,25636,GO-20199018863,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,18,2019-06-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5434,7939,GO-20142085833,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,15,2014-05-15,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5435,14069,GO-20169005970,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,13,2016-06-18,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5436,25748,GO-20209017569,THEFT UNDER,2020-07-13,2020,July,Monday,13,195,23,2020-07-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5437,25637,GO-20199018863,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,18,2019-06-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5438,8026,GO-20142205019,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,14,2014-06-02,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5439,25765,GO-20209021211,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,18,2020-08-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5440,8051,GO-20142217199,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,22,2014-06-04,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5441,25682,GO-20191972025,THEFT OVER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,14,2019-10-12,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5442,14093,GO-20169008742,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,1,2016-08-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5443,25766,GO-20201595981,THEFT UNDER - BICYCLE,2020-08-24,2020,August,Monday,24,237,7,2020-08-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5444,8074,GO-20149003895,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,23,2014-06-08,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5445,25685,GO-20199034579,THEFT UNDER,2019-10-20,2019,October,Sunday,20,293,18,2019-10-20,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5446,14096,GO-20161494852,B&E,2016-08-23,2016,August,Tuesday,23,236,7,2016-08-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5447,25771,GO-20209022949,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,0,2020-09-11,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5448,8693,GO-20142758131,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,1,2014-08-23,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5449,25690,GO-20199039218,THEFT UNDER,2019-11-28,2019,November,Thursday,28,332,19,2019-11-28,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5450,14097,GO-20161494852,B&E,2016-08-23,2016,August,Tuesday,23,236,7,2016-08-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5451,25773,GO-20201742015,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,13,2020-09-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5452,8730,GO-20149006290,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,9,2014-08-25,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5453,9002,GO-20143021544,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,21,2014-10-01,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5454,9045,GO-20143088482,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,10,2014-10-11,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5455,9209,GO-20149008501,THEFT UNDER,2014-11-29,2014,November,Saturday,29,333,23,2014-12-02,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5456,9899,GO-20159004007,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,17,2015-06-29,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5457,10028,GO-20159004608,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,8,2015-07-15,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5458,10193,GO-20159005423,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,22,2015-08-06,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5459,10308,GO-20159006019,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,4,2015-08-19,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5460,10470,GO-20159007204,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,18,2015-09-14,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5461,10963,GO-20169001046,THEFT UNDER,2016-02-01,2016,February,Monday,1,32,17,2016-02-02,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5462,11241,GO-2016743813,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,22,2016-05-01,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5463,11687,GO-20169006657,THEFT UNDER,2016-07-02,2016,July,Saturday,2,184,14,2016-07-03,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5464,11789,GO-20169007129,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,20,2016-07-13,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5465,12217,GO-20161507894,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,7,2016-08-25,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5466,12352,GO-20169010496,THEFT UNDER,2016-09-14,2016,September,Wednesday,14,258,22,2016-09-15,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5467,12993,GO-20191963567,B&E,2019-10-10,2019,October,Thursday,10,283,11,2019-10-11,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5468,12994,GO-20191963567,B&E,2019-10-10,2019,October,Thursday,10,283,11,2019-10-11,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5469,13025,GO-20209010679,THEFT UNDER,2020-04-08,2020,April,Wednesday,8,99,8,2020-04-08,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5470,13048,GO-20201111907,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,5,2020-06-17,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5471,14099,GO-20169009819,THEFT UNDER - BICYCLE,2016-08-31,2016,August,Wednesday,31,244,16,2016-09-01,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5472,14121,GO-20162042860,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,10,2016-11-17,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5473,14260,GO-20189022771,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,23,2018-07-17,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5474,15870,GO-20142224329,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,19,2014-06-05,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5475,15902,GO-20149006674,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,10,2014-09-08,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5476,15904,GO-20142890861,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,7,2014-09-11,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5477,15916,GO-20143144068,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,1,2014-10-21,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5478,3639,GO-20189033257,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,14,2018-10-08,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5479,16013,GO-2016704891,THEFT UNDER,2015-11-30,2015,November,Monday,30,334,23,2016-04-25,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5480,16061,GO-20201571420,MISCHIEF UNDER,2020-08-21,2020,August,Friday,21,234,2,2020-08-21,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5481,16084,GO-20201806772,B&E,2020-09-12,2020,September,Saturday,12,256,23,2020-09-23,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5482,16096,GO-20209026895,THEFT UNDER,2020-10-18,2020,October,Sunday,18,292,22,2020-10-19,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5483,16105,GO-20202161771,THEFT UNDER,2020-11-14,2020,November,Saturday,14,319,11,2020-11-14,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5484,16116,GO-20202421275,B&E,2020-12-25,2020,December,Friday,25,360,4,2020-12-25,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5485,16117,GO-20202421275,B&E,2020-12-25,2020,December,Friday,25,360,4,2020-12-25,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5486,18852,GO-20149005744,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,15,2014-08-08,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5487,18886,GO-20159002762,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,7,2015-05-15,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5488,18920,GO-20151395703,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,20,2015-08-14,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5489,18923,GO-20151463442,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,22,2015-08-26,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5490,18993,GO-20169006031,THEFT UNDER,2016-06-19,2016,June,Sunday,19,171,18,2016-06-19,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5491,19014,GO-20161371072,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,2,2016-08-04,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5492,19033,GO-20169009654,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,17,2016-08-29,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5493,19051,GO-20169012028,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,0,2016-10-14,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5494,19347,GO-2020639353,THEFT UNDER,2020-04-01,2020,April,Wednesday,1,92,2,2020-04-01,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5495,19077,GO-20179005589,THEFT UNDER - BICYCLE,2017-05-01,2017,May,Monday,1,121,19,2017-05-02,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5496,19082,GO-2017957322,THEFT UNDER - BICYCLE,2017-05-29,2017,May,Monday,29,149,17,2017-05-30,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5497,19164,GO-20189016416,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,16,2018-05-27,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5498,19233,GO-20199017660,THEFT UNDER,2019-06-04,2019,June,Tuesday,4,155,16,2019-06-06,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5499,19262,GO-20199024998,THEFT UNDER,2019-08-05,2019,August,Monday,5,217,0,2019-08-05,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5500,19327,GO-202087393,B&E,2020-01-10,2020,January,Friday,10,10,19,2020-01-13,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5501,19328,GO-202087393,B&E,2020-01-10,2020,January,Friday,10,10,19,2020-01-13,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5502,19329,GO-202087393,B&E,2020-01-10,2020,January,Friday,10,10,19,2020-01-13,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5503,19659,GO-20143029638,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,16,2014-10-02,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5504,19666,GO-20143286128,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,13,2014-11-12,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5505,19674,GO-2015384006,THEFT UNDER,2015-03-05,2015,March,Thursday,5,64,23,2015-03-06,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5506,19705,GO-20159005531,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,22,2015-08-09,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5507,19761,GO-20169004216,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,19,2016-05-06,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5508,22220,GO-20179005957,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,8,2017-05-08,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5509,22230,GO-20171065959,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,14,2017-06-15,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5510,5765,GO-20192415736,PROPERTY - FOUND,2019-12-15,2019,December,Sunday,15,349,13,2019-12-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5511,22231,GO-20179008402,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,23,2017-06-19,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5512,22235,GO-20171260302,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,15,2017-07-16,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5513,22246,GO-20179012522,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,8,2017-08-16,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5514,22314,GO-20189023588,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,7,2018-07-23,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5515,22334,GO-20189030546,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,21,2018-09-15,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5516,22410,GO-20199029533,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,23,2019-09-10,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5517,22519,GO-20201440144,DRUG - POSS METH (SCHD I),2020-08-02,2020,August,Sunday,2,215,14,2020-08-02,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5518,22598,GO-20202341046,THEFT UNDER,2020-12-10,2020,December,Thursday,10,345,23,2020-12-12,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5519,22809,GO-20141499515,THEFT UNDER,2014-02-07,2014,February,Friday,7,38,20,2014-02-09,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5520,22810,GO-20141499515,THEFT UNDER,2014-02-07,2014,February,Friday,7,38,20,2014-02-09,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5521,22840,GO-20149004071,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,15,2014-06-14,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5522,22884,GO-20149008682,THEFT UNDER,2014-12-10,2014,December,Wednesday,10,344,18,2014-12-10,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5523,22895,GO-2015663853,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,17,2015-04-22,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5524,22956,GO-2016258701,THEFT UNDER,2016-02-12,2016,February,Friday,12,43,16,2016-02-12,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5525,15961,GO-20151294478,PROPERTY - FOUND,2015-07-29,2015,July,Wednesday,29,210,7,2015-07-29,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5526,25393,GO-20161646679,PROPERTY - FOUND,2016-09-16,2016,September,Friday,16,260,10,2016-09-16,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5527,25534,GO-20189013772,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,11,2018-05-04,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5528,25545,GO-20189018223,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,14,2018-06-11,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5529,25587,GO-20189030769,THEFT UNDER,2018-09-10,2018,September,Monday,10,253,12,2018-09-17,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5530,25613,GO-20199011277,THEFT UNDER,2019-04-09,2019,April,Tuesday,9,99,17,2019-04-09,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5531,25627,GO-20199016740,THEFT UNDER,2019-05-28,2019,May,Tuesday,28,148,1,2019-05-29,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5532,25666,GO-20199028955,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,22,2019-09-06,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5533,25731,GO-20201168540,B&E W'INTENT,2020-06-23,2020,June,Tuesday,23,175,22,2020-06-25,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5534,25758,GO-20201505719,B&E,2020-08-11,2020,August,Tuesday,11,224,4,2020-08-12,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)}",Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -5535,231,GO-2017669379,THEFT UNDER,2017-04-16,2017,April,Sunday,16,106,11,2017-04-16,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5536,232,GO-2017669379,THEFT UNDER,2017-04-16,2017,April,Sunday,16,106,11,2017-04-16,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5537,431,GO-20179006699,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,12,2017-05-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5538,642,GO-20179008307,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,8,2017-06-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5539,25740,GO-20209016848,THEFT UNDER,2020-07-04,2020,July,Saturday,4,186,11,2020-07-04,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5540,25794,GO-20209026401,THEFT UNDER,2020-10-05,2020,October,Monday,5,279,10,2020-10-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5541,567,GO-20179007798,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,7,2017-06-09,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5542,670,GO-20179008565,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,20,2017-06-20,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5543,995,GO-20179011161,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,21,2017-07-27,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5544,1352,GO-20179014376,THEFT UNDER,2017-09-08,2017,September,Friday,8,251,0,2017-09-10,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5545,1441,GO-20179015047,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,13,2017-09-18,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5546,2715,GO-20189020674,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,1,2018-06-29,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5547,3074,GO-20189025110,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,19,2018-08-04,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5548,3235,GO-20189026717,THEFT UNDER,2018-08-15,2018,August,Wednesday,15,227,23,2018-08-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5549,4212,GO-20199013347,THEFT UNDER,2019-04-28,2019,April,Sunday,28,118,10,2019-04-28,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5550,4213,GO-20199013347,THEFT UNDER,2019-04-28,2019,April,Sunday,28,118,10,2019-04-28,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5551,4441,GO-20199017996,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,23,2019-06-10,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5552,5015,GO-20191514204,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,15,2019-08-10,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5553,5548,GO-20199034443,THEFT UNDER,2019-10-19,2019,October,Saturday,19,292,14,2019-10-19,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5554,5560,GO-20199034579,THEFT UNDER,2019-10-20,2019,October,Sunday,20,293,18,2019-10-20,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5555,5734,GO-20199039218,THEFT UNDER,2019-11-28,2019,November,Thursday,28,332,19,2019-11-28,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5556,14104,GO-20169010347,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,0,2016-09-13,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5557,5855,GO-20209003269,THEFT UNDER,2020-01-27,2020,January,Monday,27,27,12,2020-01-27,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5558,5929,GO-20209006996,THEFT UNDER,2020-02-26,2020,February,Wednesday,26,57,0,2020-02-26,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5559,5933,GO-20209007122,THEFT UNDER,2020-02-25,2020,February,Tuesday,25,56,16,2020-02-27,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5560,6303,GO-20209014627,THEFT UNDER,2020-06-04,2020,June,Thursday,4,156,6,2020-06-05,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5561,6320,GO-20209014789,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,0,2020-06-07,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5562,7018,GO-20201565601,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,2,2020-08-21,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5563,7037,GO-20209020974,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,0,2020-08-22,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5564,7211,GO-20209022690,B&E,2020-09-09,2020,September,Wednesday,9,253,2,2020-09-09,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5565,7231,GO-20201727842,THEFT UNDER - BICYCLE,2020-09-01,2020,September,Tuesday,1,245,6,2020-09-12,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5566,7232,GO-20201727842,THEFT UNDER - BICYCLE,2020-09-01,2020,September,Tuesday,1,245,6,2020-09-12,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5567,25806,GO-20202372210,B&E,2020-12-16,2020,December,Wednesday,16,351,17,2020-12-17,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5568,7807,GO-20149002553,THEFT UNDER,2014-04-03,2014,April,Thursday,3,93,9,2014-04-03,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5569,7815,GO-20149002569,THEFT UNDER,2014-04-02,2014,April,Wednesday,2,92,22,2014-04-04,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5570,7816,GO-20141832158,THEFT UNDER,2014-04-04,2014,April,Friday,4,94,21,2014-04-05,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5571,8001,GO-20142171998,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,16,2014-05-28,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5572,8410,GO-20149004946,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,12,2014-07-13,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5573,8755,GO-20149006329,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,18,2014-08-26,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5574,8823,GO-20149006628,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,13,2014-09-06,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5575,9089,GO-20143147357,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,9,2014-10-21,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5576,9090,GO-20143147357,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,9,2014-10-21,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5577,9464,GO-2015673928,THEFT UNDER,2015-04-22,2015,April,Wednesday,22,112,21,2015-04-23,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5578,9478,GO-20159002268,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,23,2015-04-26,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5579,9551,GO-20159002542,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,21,2015-05-08,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5580,9743,GO-2015948849,THEFT UNDER - SHOPLIFTING,2014-11-03,2014,November,Monday,3,307,12,2015-06-06,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5581,9759,GO-2015948849,THEFT UNDER - SHOPLIFTING,2014-11-03,2014,November,Monday,3,307,12,2015-06-06,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5582,9840,GO-20159003795,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,1,2015-06-21,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5583,10030,GO-20151207744,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,14,2015-07-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5584,10034,GO-20159004635,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,22,2015-07-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5585,10454,GO-20151583240,THEFT UNDER,2015-08-29,2015,August,Saturday,29,241,12,2015-09-13,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5586,11146,GO-2016653442,THEFT UNDER - BICYCLE,2016-04-16,2016,April,Saturday,16,107,22,2016-04-17,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5587,11569,GO-20169005956,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,19,2016-06-17,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5588,11728,GO-20169006818,THEFT UNDER - BICYCLE,2016-07-02,2016,July,Saturday,2,184,20,2016-07-05,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5589,11907,GO-20169007742,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,22,2016-07-25,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5590,12031,GO-20161375899,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,13,2016-08-05,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5591,12189,GO-20161510550,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,17,2016-08-26,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5592,12190,GO-20161510550,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,17,2016-08-26,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5593,12809,GO-20162074811,THEFT UNDER - BICYCLE,2016-11-22,2016,November,Tuesday,22,327,13,2016-11-22,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5594,12864,GO-20189023984,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,9,2018-07-26,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5595,12987,GO-20191897549,THEFT UNDER - BICYCLE,2019-10-02,2019,October,Wednesday,2,275,7,2019-10-02,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5596,14102,GO-20169010032,THEFT UNDER,2016-09-03,2016,September,Saturday,3,247,1,2016-09-06,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5597,14157,GO-20179006886,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,7,2017-05-24,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5598,14164,GO-20179008567,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,16,2017-06-21,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5599,14187,GO-20179014215,THEFT UNDER,2017-09-06,2017,September,Wednesday,6,249,23,2017-09-07,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5600,14200,GO-20179015908,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,14,2017-09-27,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5601,15981,GO-20159007317,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,23,2015-09-17,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5602,15990,GO-20159008634,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,16,2015-10-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5603,16045,GO-20201347215,B&E,2020-07-17,2020,July,Friday,17,199,22,2020-07-20,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5604,16063,GO-20209020842,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,14,2020-08-21,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5605,18790,GO-20202326917,THEFT UNDER,2020-12-09,2020,December,Wednesday,9,344,18,2020-12-10,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5606,18791,GO-20202326917,THEFT UNDER,2020-12-09,2020,December,Wednesday,9,344,18,2020-12-10,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5607,18828,GO-20141810819,THEFT UNDER,2014-04-01,2014,April,Tuesday,1,91,19,2014-04-01,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5608,18846,GO-20149005066,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,2,2014-07-17,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5609,18921,GO-20159005738,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,17,2015-08-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5610,18961,GO-20169001244,THEFT UNDER,2016-02-07,2016,February,Sunday,7,38,23,2016-02-08,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5611,19098,GO-20171260455,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,16,2017-07-14,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5612,19126,GO-20179018192,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,15,2017-10-25,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5613,19236,GO-20199017940,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,23,2019-06-09,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5614,19652,GO-20149006506,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,18,2014-09-02,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5615,19677,GO-2015666284,THEFT UNDER,2015-04-22,2015,April,Wednesday,22,112,14,2015-04-23,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5616,19746,GO-20152010728,THEFT UNDER,2015-11-23,2015,November,Monday,23,327,9,2015-11-23,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5617,22290,GO-20189015706,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,19,2018-05-21,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5618,22458,GO-20209011790,THEFT UNDER,2020-04-22,2020,April,Wednesday,22,113,20,2020-04-23,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5619,22515,GO-20209018778,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,5,2020-07-28,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5620,22517,GO-20209018932,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,12,2020-07-30,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5621,22917,GO-20151415078,PROPERTY - FOUND,2015-08-17,2015,August,Monday,17,229,13,2015-08-17,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5622,22975,GO-2016935385,THEFT UNDER,2016-05-17,2016,May,Tuesday,17,138,22,2016-05-30,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5623,25425,GO-20179002073,THEFT UNDER - BICYCLE,2017-02-05,2017,February,Sunday,5,36,21,2017-02-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5624,25426,GO-20179002073,THEFT UNDER - BICYCLE,2017-02-05,2017,February,Sunday,5,36,21,2017-02-16,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5625,25452,GO-20179008885,THEFT UNDER - BICYCLE,2017-06-25,2017,June,Sunday,25,176,17,2017-06-25,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)}",Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -5626,22981,GO-20169006933,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,16,2016-07-09,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5627,14112,GO-20169011597,THEFT UNDER - BICYCLE,2016-10-05,2016,October,Wednesday,5,279,15,2016-10-05,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5628,25435,GO-20179005351,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,8,2017-04-27,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5629,13,GO-20162212834,THEFT FROM MOTOR VEHICLE UNDER,2016-12-08,2016,December,Thursday,8,343,21,2016-12-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5630,14128,GO-20162127312,THEFT OF EBIKE UNDER $5000,2016-11-25,2016,November,Friday,25,330,0,2016-11-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5631,14,GO-20162212834,THEFT FROM MOTOR VEHICLE UNDER,2016-12-08,2016,December,Thursday,8,343,21,2016-12-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5632,14154,GO-2017841797,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,17,2017-05-13,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5633,23,GO-20162240554,THEFT OVER,2016-12-17,2016,December,Saturday,17,352,4,2016-12-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5634,14186,GO-20179013928,THEFT UNDER - BICYCLE,2017-09-03,2017,September,Sunday,3,246,0,2017-09-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5635,14195,GO-20171672794,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,17,2017-09-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5636,14232,GO-20189014036,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,14,2018-05-07,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5637,15865,GO-20142168635,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,20,2014-05-28,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5638,15875,GO-20149004135,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,20,2014-06-16,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5639,15877,GO-20149004357,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,18,2014-06-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5640,15886,GO-20149004888,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,18,2014-07-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5641,15901,GO-20149006629,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,16,2014-09-06,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5642,15928,GO-20159001949,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,21,2015-04-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5643,15929,GO-2015667434,THEFT UNDER,2015-04-22,2015,April,Wednesday,22,112,8,2015-04-22,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5644,15935,GO-20159002575,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,1,2015-05-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5645,15950,GO-20151054497,PROPERTY - FOUND,2015-06-18,2015,June,Thursday,18,169,0,2015-06-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5646,16021,GO-20169004785,THEFT UNDER,2016-05-20,2016,May,Friday,20,141,17,2016-05-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5647,16083,GO-20209024132,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,19,2020-09-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5648,16085,GO-20201811872,B&E,2020-09-24,2020,September,Thursday,24,268,4,2020-09-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5649,18748,GO-20201593115,THEFT UNDER - BICYCLE,2020-08-24,2020,August,Monday,24,237,3,2020-08-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5650,18769,GO-20209027094,THEFT UNDER - BICYCLE,2020-10-18,2020,October,Sunday,18,292,17,2020-10-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5651,18834,GO-20149003768,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,19,2014-06-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5652,18845,GO-20149004941,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,14,2014-07-12,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5653,18862,GO-20142919235,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,19,2014-09-16,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5654,18864,GO-20149007107,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,7,2014-09-22,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5655,18873,GO-20149008225,THEFT UNDER,2014-11-15,2014,November,Saturday,15,319,15,2014-11-16,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5656,18916,GO-20159004963,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,0,2015-07-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5657,18958,GO-20162322,THEFT UNDER,2015-12-16,2015,December,Wednesday,16,350,10,2016-01-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5658,19011,GO-20161299686,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,11,2016-07-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5659,19038,GO-20161644651,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,19,2016-09-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5660,19078,GO-20179005604,THEFT UNDER - BICYCLE,2017-05-01,2017,May,Monday,1,121,9,2017-05-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5661,19094,GO-20179009246,THEFT UNDER - BICYCLE,2017-07-01,2017,July,Saturday,1,182,14,2017-07-01,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5662,19121,GO-20171757733,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,17,2017-09-27,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5663,19123,GO-20171835721,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,11,2017-10-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5664,19138,GO-20189002337,THEFT UNDER - BICYCLE,2018-01-21,2018,January,Sunday,21,21,23,2018-01-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5665,25474,GO-20179012612,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,22,2017-08-17,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5666,19139,GO-20189002337,THEFT UNDER - BICYCLE,2018-01-21,2018,January,Sunday,21,21,23,2018-01-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5667,19140,GO-2018187063,THEFT OVER - BICYCLE,2018-01-22,2018,January,Monday,22,22,9,2018-01-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5668,19141,GO-2018187063,THEFT OVER - BICYCLE,2018-01-22,2018,January,Monday,22,22,9,2018-01-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5669,19155,GO-20189014363,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,14,2018-05-09,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5670,19157,GO-20189014743,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,18,2018-05-13,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5671,19158,GO-20189014917,THEFT UNDER - BICYCLE,2018-05-06,2018,May,Sunday,6,126,21,2018-05-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5672,19163,GO-20189016246,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,14,2018-05-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5673,19175,GO-20189021211,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,2,2018-07-04,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5674,19185,GO-20189024589,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,19,2018-07-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5675,19217,GO-20189040308,THEFT UNDER - BICYCLE,2018-11-29,2018,November,Thursday,29,333,9,2018-11-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5676,19218,GO-20189040308,THEFT UNDER - BICYCLE,2018-11-29,2018,November,Thursday,29,333,9,2018-11-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5677,19250,GO-20199021508,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,13,2019-07-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5678,19257,GO-20199024213,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,9,2019-07-29,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5679,19273,GO-20199028487,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,6,2019-09-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5680,19274,GO-20199028487,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,6,2019-09-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5681,19279,GO-20199028832,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,14,2019-09-05,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5682,19285,GO-20191741883,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,19,2019-09-11,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5683,19305,GO-20191910817,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,1,2019-10-04,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5684,19341,GO-2020539327,B&E,2020-03-15,2020,March,Sunday,15,75,2,2020-03-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5685,19342,GO-2020589212,B&E,2020-03-05,2020,March,Thursday,5,65,9,2020-03-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5686,19343,GO-2020589212,B&E,2020-03-05,2020,March,Thursday,5,65,9,2020-03-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5687,19610,GO-20141656024,B&E,2014-03-07,2014,March,Friday,7,66,10,2014-03-07,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5688,19612,GO-20149003281,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,7,2014-05-11,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5689,19728,GO-20159007101,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,17,2015-09-12,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5690,19742,GO-20159009242,THEFT UNDER,2015-10-23,2015,October,Friday,23,296,18,2015-11-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5691,22176,GO-20169008323,THEFT UNDER,2016-08-06,2016,August,Saturday,6,219,20,2016-08-06,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5692,22183,GO-20169009059,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,0,2016-08-19,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5693,22240,GO-20179011020,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,0,2017-07-26,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5694,22325,GO-20181603978,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,22,2018-08-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5695,22326,GO-20181603978,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,22,2018-08-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5696,22346,GO-20181828389,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,8,2018-10-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5697,22351,GO-20189034355,THEFT UNDER - BICYCLE,2018-10-15,2018,October,Monday,15,288,21,2018-10-16,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5698,22353,GO-20189035827,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,4,2018-10-27,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5699,22354,GO-20189035827,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,4,2018-10-27,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5700,22370,GO-2019798750,THEFT UNDER,2018-11-05,2018,November,Monday,5,309,20,2019-05-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5701,22394,GO-20191301566,THEFT UNDER - BICYCLE,2019-07-11,2019,July,Thursday,11,192,20,2019-07-12,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5702,22420,GO-20199031304,THEFT UNDER,2019-09-19,2019,September,Thursday,19,262,5,2019-09-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5703,22433,GO-20192500995,B&E,2019-12-27,2019,December,Friday,27,361,12,2019-12-28,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5704,22443,GO-20209008173,THEFT UNDER,2020-03-04,2020,March,Wednesday,4,64,5,2020-03-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5705,22447,GO-20209009456,THEFT UNDER,2020-03-16,2020,March,Monday,16,76,15,2020-03-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5706,22450,GO-20209010028,THEFT UNDER,2020-03-27,2020,March,Friday,27,87,12,2020-03-28,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5707,22456,GO-20209011585,THEFT UNDER,2020-04-20,2020,April,Monday,20,111,13,2020-04-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5708,22462,GO-20209012065,THEFT UNDER,2020-04-21,2020,April,Tuesday,21,112,12,2020-04-28,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5709,22474,GO-20209014860,THEFT UNDER,2020-06-08,2020,June,Monday,8,160,14,2020-06-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5710,22565,GO-20209023816,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,3,2020-09-19,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5711,22573,GO-20209025256,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,23,2020-10-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5712,22830,GO-20142145196,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,17,2014-05-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5713,22858,GO-20149005500,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,6,2014-07-31,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5714,22965,GO-2016545369,THEFT UNDER - BICYCLE,2016-03-30,2016,March,Wednesday,30,90,1,2016-03-31,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5715,25390,GO-20169010442,THEFT UNDER,2016-09-05,2016,September,Monday,5,249,15,2016-09-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5716,25409,GO-20161974130,THEFT UNDER - BICYCLE,2016-11-03,2016,November,Thursday,3,308,21,2016-11-06,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5717,25439,GO-20179006581,THEFT UNDER,2016-09-01,2016,September,Thursday,1,245,15,2017-05-18,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5718,25453,GO-20179009209,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,19,2017-06-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5719,25484,GO-20171622791,B&E,2017-09-07,2017,September,Thursday,7,250,16,2017-09-07,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5720,25499,GO-20179018819,THEFT UNDER - BICYCLE,2017-11-03,2017,November,Friday,3,307,1,2017-11-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5721,25511,GO-20179020675,THEFT UNDER,2017-11-24,2017,November,Friday,24,328,0,2017-11-27,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5722,25526,GO-20189012367,THEFT UNDER - BICYCLE,2018-04-20,2018,April,Friday,20,110,5,2018-04-21,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5723,25629,GO-20191029217,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,16,2019-06-04,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5724,25630,GO-20191029217,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,16,2019-06-04,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5725,25631,GO-20191029217,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,16,2019-06-04,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5726,25661,GO-20191575759,THEFT OF EBIKE UNDER $5000,2019-08-18,2019,August,Sunday,18,230,21,2019-08-19,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5727,25679,GO-20199032545,THEFT UNDER,2019-10-03,2019,October,Thursday,3,276,9,2019-10-04,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5728,25753,GO-20201390101,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,0,2020-07-26,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5729,25754,GO-20209018957,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,0,2020-07-30,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5730,81,GO-20179001624,THEFT UNDER - BICYCLE,2017-02-04,2017,February,Saturday,4,35,14,2017-02-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5731,25788,GO-20209025327,THEFT UNDER,2020-10-03,2020,October,Saturday,3,277,8,2020-10-03,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5732,25790,GO-20201920069,PROPERTY - FOUND,2020-10-09,2020,October,Friday,9,283,17,2020-10-10,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)}",Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -5733,548,GO-20179007621,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,14,2017-06-06,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5734,1682,GO-20179017520,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,14,2017-10-18,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5735,2106,GO-20189009514,THEFT UNDER - BICYCLE,2018-03-25,2018,March,Sunday,25,84,0,2018-03-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5736,2285,GO-20189014401,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,17,2018-05-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5737,2743,GO-20189021049,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,21,2018-07-03,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5738,3007,GO-20181378902,THEFT UNDER,2018-07-21,2018,July,Saturday,21,202,22,2018-07-28,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5739,3102,GO-20181448256,ROBBERY - OTHER,2018-08-07,2018,August,Tuesday,7,219,11,2018-08-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5740,3159,GO-20189025946,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,23,2018-08-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5741,3170,GO-20189026000,THEFT UNDER,2018-08-11,2018,August,Saturday,11,223,6,2018-08-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5742,3823,GO-20189037179,THEFT UNDER - BICYCLE,2018-11-06,2018,November,Tuesday,6,310,10,2018-11-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5743,4026,GO-20199003718,THEFT UNDER - BICYCLE,2019-01-26,2019,January,Saturday,26,26,19,2019-01-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5744,4053,GO-2019292566,THEFT OF MOTOR VEHICLE,2019-02-15,2019,February,Friday,15,46,14,2019-02-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5745,4575,GO-20191159547,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,17,2019-06-22,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5746,4660,GO-20199020855,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,7,2019-07-03,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5747,4691,GO-20199021323,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,23,2019-07-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5748,4737,GO-20199021684,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,0,2019-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5749,4929,GO-20191416610,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,21,2019-07-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5750,4948,GO-20199024563,THEFT UNDER,2019-07-31,2019,July,Wednesday,31,212,7,2019-07-31,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5751,5001,GO-20191501142,THEFT OF MOTOR VEHICLE,2019-08-08,2019,August,Thursday,8,220,16,2019-08-08,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5752,5010,GO-20199025555,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,18,2019-08-09,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5753,5149,GO-20199027502,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,0,2019-08-24,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5754,5357,GO-20199030428,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,8,2019-09-17,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5755,5557,GO-20192031711,THEFT UNDER,2019-10-15,2019,October,Tuesday,15,288,2,2019-10-21,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5756,5667,GO-20192166519,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,8,2019-11-09,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5757,5668,GO-20192166519,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,8,2019-11-09,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5758,5841,GO-2020110943,THEFT OVER,2020-01-15,2020,January,Wednesday,15,15,5,2020-01-16,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5759,5842,GO-2020110943,THEFT OVER,2020-01-15,2020,January,Wednesday,15,15,5,2020-01-16,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5760,5843,GO-2020110943,THEFT OVER,2020-01-15,2020,January,Wednesday,15,15,5,2020-01-16,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5761,5957,GO-20209008752,THEFT UNDER,2020-03-12,2020,March,Thursday,12,72,6,2020-03-12,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5762,6065,GO-2020721113,THEFT UNDER - BICYCLE,2020-04-08,2020,April,Wednesday,8,99,0,2020-04-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5763,6495,GO-20201198494,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,17,2020-06-29,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5764,6573,GO-20209017219,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,13,2020-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5765,6602,GO-20201267849,THEFT UNDER - BICYCLE,2020-07-09,2020,July,Thursday,9,191,1,2020-07-09,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5766,6621,GO-20201310355,B&E,2020-07-15,2020,July,Wednesday,15,197,6,2020-07-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5767,6702,GO-20209018230,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,10,2020-07-22,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5768,6835,GO-20209019132,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,0,2020-08-01,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5769,7041,GO-20201586377,THEFT UNDER - BICYCLE,2020-08-22,2020,August,Saturday,22,235,22,2020-08-23,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5770,7125,GO-20201610259,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,19,2020-08-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5771,7227,GO-20209022916,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,23,2020-09-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5772,7300,GO-20209023840,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,2,2020-09-19,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5773,7361,GO-20209024573,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,0,2020-09-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5774,7362,GO-20209024573,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,0,2020-09-26,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5775,7386,GO-20209024906,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,9,2020-09-29,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5776,7396,GO-20209025176,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,18,2020-10-01,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5777,7454,GO-20209026254,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,4,2020-10-13,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5778,7478,GO-20201952928,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,16,2020-10-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5779,7510,GO-20209026974,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,19,2020-10-20,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5780,7593,GO-20209028645,THEFT UNDER,2020-11-04,2020,November,Wednesday,4,309,16,2020-11-04,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5781,8995,GO-20143009344,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,16,2014-09-29,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5782,9061,GO-20143101375,THEFT FROM MOTOR VEHICLE OVER,2014-10-13,2014,October,Monday,13,286,17,2014-10-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5783,9062,GO-20143101375,THEFT FROM MOTOR VEHICLE OVER,2014-10-13,2014,October,Monday,13,286,17,2014-10-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5784,9413,GO-2015628587,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,11,2015-04-16,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5785,9646,GO-20159003044,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,14,2015-05-23,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5786,9745,GO-2015949406,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,17,2015-06-06,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5787,9782,GO-20159003530,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,7,2015-06-11,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5788,10885,GO-20159011173,THEFT UNDER,2015-12-20,2015,December,Sunday,20,354,17,2015-12-21,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5789,10965,GO-2016196509,THEFT UNDER,2016-02-02,2016,February,Tuesday,2,33,9,2016-02-02,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5790,11309,GO-2016763522,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,12,2016-05-04,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5791,11367,GO-20169004905,THEFT UNDER,2016-05-16,2016,May,Monday,16,137,19,2016-05-24,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5792,11436,GO-2016953785,B&E,2016-06-02,2016,June,Thursday,2,154,6,2016-06-02,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5793,11603,GO-20161078286,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,17,2016-06-20,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5794,11751,GO-20161206950,B&E W'INTENT,2016-07-07,2016,July,Thursday,7,189,17,2016-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5795,11752,GO-20161206950,B&E W'INTENT,2016-07-07,2016,July,Thursday,7,189,17,2016-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5796,11753,GO-20161206950,B&E W'INTENT,2016-07-07,2016,July,Thursday,7,189,17,2016-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5797,11761,GO-20161206950,B&E W'INTENT,2016-07-07,2016,July,Thursday,7,189,17,2016-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5798,11762,GO-20161206950,B&E W'INTENT,2016-07-07,2016,July,Thursday,7,189,17,2016-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5799,11763,GO-20161206950,B&E W'INTENT,2016-07-07,2016,July,Thursday,7,189,17,2016-07-10,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5800,11933,GO-20161325593,PROPERTY - FOUND,2016-07-28,2016,July,Thursday,28,210,12,2016-07-28,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5801,11976,GO-20169008111,THEFT UNDER,2016-08-02,2016,August,Tuesday,2,215,8,2016-08-02,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5802,12005,GO-20169008242,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,7,2016-08-04,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5803,12100,GO-20169008785,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,1,2016-08-15,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5804,12206,GO-20169009542,THEFT UNDER,2016-08-27,2016,August,Saturday,27,240,18,2016-08-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5805,12347,GO-20169010464,THEFT UNDER,2016-09-14,2016,September,Wednesday,14,258,16,2016-09-14,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5806,297,GO-20179005431,THEFT UNDER,2017-04-28,2017,April,Friday,28,118,20,2017-04-28,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -5807,12436,GO-20161700074,THEFT UNDER,2016-09-10,2016,September,Saturday,10,254,12,2016-09-24,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5808,12869,GO-20181378902,THEFT UNDER,2018-07-21,2018,July,Saturday,21,202,22,2018-07-28,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5809,12874,GO-20189025744,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,8,2018-08-09,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5810,12889,GO-20181686974,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,22,2018-09-12,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5811,12896,GO-20189032140,THEFT UNDER,2018-09-18,2018,September,Tuesday,18,261,16,2018-09-27,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5812,12914,GO-20182248974,THEFT OF EBIKE UNDER $5000,2018-11-06,2018,November,Tuesday,6,310,22,2018-12-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5813,12915,GO-20182248974,THEFT OF EBIKE UNDER $5000,2018-11-06,2018,November,Tuesday,6,310,22,2018-12-07,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5814,12931,GO-2019981909,THEFT UNDER,2019-05-13,2019,May,Monday,13,133,4,2019-05-29,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)}",Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -5815,170,GO-2017528217,THEFT OF EBIKE UNDER $5000,2017-03-25,2017,March,Saturday,25,84,2,2017-03-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5816,233,GO-2017669966,THEFT OVER - BICYCLE,2017-04-15,2017,April,Saturday,15,105,1,2017-04-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5817,234,GO-20179004785,THEFT UNDER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,20,2017-04-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5818,241,GO-20179004844,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,20,2017-04-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5819,338,GO-20179005866,THEFT UNDER - BICYCLE,2017-05-07,2017,May,Sunday,7,127,7,2017-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5820,347,GO-20179005970,THEFT UNDER,2017-05-09,2017,May,Tuesday,9,129,1,2017-05-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5821,359,GO-20179006072,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,16,2017-05-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5822,448,GO-2017908049,THEFT UNDER,2017-05-16,2017,May,Tuesday,16,136,15,2017-05-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5823,449,GO-2017908049,THEFT UNDER,2017-05-16,2017,May,Tuesday,16,136,15,2017-05-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5824,503,GO-2017954942,B&E W'INTENT,2017-02-20,2017,February,Monday,20,51,12,2017-05-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5825,584,GO-20179007896,THEFT UNDER,2017-06-07,2017,June,Wednesday,7,158,15,2017-06-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5826,596,GO-20171017612,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,12,2017-06-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5827,676,GO-20179008578,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,22,2017-06-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5828,730,GO-20171139586,THEFT UNDER,2017-06-25,2017,June,Sunday,25,176,15,2017-06-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5829,765,GO-20179009330,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,20,2017-07-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5830,1525,GO-20179015768,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,10,2017-09-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5831,789,GO-20179009515,THEFT UNDER - BICYCLE,2017-03-22,2017,March,Wednesday,22,81,22,2017-07-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5832,804,GO-20171223626,THEFT UNDER - SHOPLIFTING,2017-07-08,2017,July,Saturday,8,189,16,2017-07-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5833,805,GO-20179009697,THEFT UNDER,2017-07-08,2017,July,Saturday,8,189,10,2017-07-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5834,843,GO-20179010042,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,19,2017-07-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5835,902,GO-20179010494,THEFT UNDER,2017-07-16,2017,July,Sunday,16,197,19,2017-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5836,907,GO-20179010519,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5837,911,GO-20179010533,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,2,2017-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5838,926,GO-20179010533,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,2,2017-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5839,928,GO-20179010665,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,0,2017-07-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5840,944,GO-20179010771,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,21,2017-07-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5841,1060,GO-20179011768,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,15,2017-08-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5842,1062,GO-20179011801,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,17,2017-08-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5843,1065,GO-20179011822,THEFT UNDER - BICYCLE,2017-07-17,2017,July,Monday,17,198,2,2017-08-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5844,1067,GO-20179011846,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,15,2017-08-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5845,1074,GO-20179011903,THEFT UNDER,2017-08-03,2017,August,Thursday,3,215,9,2017-08-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5846,1075,GO-20179011903,THEFT UNDER,2017-08-03,2017,August,Thursday,3,215,9,2017-08-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5847,1105,GO-20171447198,THEFT OF EBIKE UNDER $5000,2017-08-11,2017,August,Friday,11,223,13,2017-08-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5848,1115,GO-20179012133,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,2,2017-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5849,1229,GO-20179013124,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,12,2017-08-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5850,1264,GO-20171564533,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,17,2017-08-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5851,1265,GO-20171564533,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,17,2017-08-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5852,1306,GO-20171607775,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,12,2017-09-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5853,1328,GO-20171620007,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,2,2017-09-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5854,1431,GO-20179014975,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,15,2017-09-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5855,1528,GO-20171724328,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,21,2017-09-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5856,1562,GO-20179016169,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,23,2017-09-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5857,1590,GO-20171804571,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,23,2017-10-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5858,1598,GO-20179016595,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,20,2017-10-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5859,1681,GO-20179017513,THEFT UNDER,2017-10-18,2017,October,Wednesday,18,291,13,2017-10-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5860,1692,GO-20179017585,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,1,2017-10-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5861,1700,GO-20179017656,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,17,2017-10-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5862,1714,GO-20171898943,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,19,2017-10-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5863,1731,GO-20179018035,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,12,2017-10-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5864,1753,GO-20179018305,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,9,2017-10-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5865,1764,GO-20179018455,THEFT UNDER,2017-10-29,2017,October,Sunday,29,302,4,2017-10-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5866,1773,GO-20179018606,THEFT UNDER - BICYCLE,2017-10-31,2017,October,Tuesday,31,304,1,2017-10-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5867,1792,GO-20179018880,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,5,2017-11-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5868,1802,GO-20179018979,THEFT UNDER - BICYCLE,2017-11-05,2017,November,Sunday,5,309,3,2017-11-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5869,1814,GO-20179019153,B&E,2017-11-03,2017,November,Friday,3,307,10,2017-11-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5870,1816,GO-20172027772,B&E,2017-10-29,2017,October,Sunday,29,302,6,2017-11-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5871,1852,GO-20179019746,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,13,2017-11-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5872,1943,GO-20173225835,THEFT UNDER,2017-12-19,2017,December,Tuesday,19,353,6,2017-12-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5873,1965,GO-20189000354,THEFT UNDER - BICYCLE,2018-01-03,2018,January,Wednesday,3,3,9,2018-01-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5874,2008,GO-20189002875,THEFT UNDER - BICYCLE,2018-01-29,2018,January,Monday,29,29,13,2018-01-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5875,2019,GO-2018226916,B&E,2018-02-05,2018,February,Monday,5,36,5,2018-02-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5876,2031,GO-2018271175,THEFT OF EBIKE UNDER $5000,2018-02-05,2018,February,Monday,5,36,23,2018-02-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5877,2041,GO-20189005654,THEFT UNDER,2016-11-30,2016,November,Wednesday,30,335,22,2018-02-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5878,2158,GO-20189011668,THEFT UNDER - BICYCLE,2018-04-13,2018,April,Friday,13,103,17,2018-04-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5879,2161,GO-20189011735,THEFT UNDER - SHOPLIFTING,2018-04-14,2018,April,Saturday,14,104,18,2018-04-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5880,2193,GO-20189012657,THEFT UNDER,2018-03-29,2018,March,Thursday,29,88,21,2018-04-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5881,2201,GO-20189012801,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,13,2018-04-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5882,2202,GO-2018729134,THEFT OF EBIKE UNDER $5000,2018-04-21,2018,April,Saturday,21,111,2,2018-04-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5883,2282,GO-2018822394,THEFT OF EBIKE UNDER $5000,2018-05-05,2018,May,Saturday,5,125,15,2018-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5884,2284,GO-2018843625,DRUG - TRAF CANNABIS (SCHD II),2018-05-05,2018,May,Saturday,5,125,15,2018-05-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5885,2294,GO-20189014672,THEFT UNDER,2018-05-12,2018,May,Saturday,12,132,12,2018-05-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5886,2311,GO-20189014967,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,15,2018-05-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5887,2401,GO-20189016394,THEFT UNDER,2018-05-24,2018,May,Thursday,24,144,20,2018-05-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5888,2408,GO-20189016473,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,17,2018-05-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5889,2413,GO-20189016394,THEFT UNDER,2018-05-24,2018,May,Thursday,24,144,20,2018-05-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5890,790,GO-20179009543,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,17,2017-07-05,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5891,2428,GO-20189016864,THEFT UNDER - BICYCLE,2018-05-28,2018,May,Monday,28,148,18,2018-05-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5892,2512,GO-20189017977,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,20,2018-06-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5893,2513,GO-20189017977,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,20,2018-06-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5894,2535,GO-20189018380,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,16,2018-06-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5895,2537,GO-20189018359,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,22,2018-06-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5896,2622,GO-20189019406,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,12,2018-06-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5897,2637,GO-20189019589,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,7,2018-06-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5898,2668,GO-20189020049,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,10,2018-06-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5899,2670,GO-20189020070,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,9,2018-06-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5900,2674,GO-20189020112,FTC PROBATION ORDER,2018-06-20,2018,June,Wednesday,20,171,8,2018-06-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -5901,1048,GO-20171398545,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,19,2017-08-04,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5902,1405,GO-20179014743,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,15,2017-09-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5903,1466,GO-20171710472,THEFT OVER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,18,2017-09-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5904,1481,GO-20179015368,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,15,2017-09-21,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5905,1607,GO-20179016673,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,16,2017-10-07,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5906,1709,GO-20179017796,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,17,2017-10-21,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5907,1713,GO-20179017810,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,6,2017-10-21,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5908,1738,GO-20179018169,THEFT UNDER - BICYCLE,2017-10-14,2017,October,Saturday,14,287,8,2017-10-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5909,1761,GO-20179018420,THEFT UNDER - BICYCLE,2017-10-28,2017,October,Saturday,28,301,8,2017-10-28,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5910,1946,GO-20179022596,THEFT UNDER - BICYCLE,2017-12-18,2017,December,Monday,18,352,19,2017-12-19,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5911,2277,GO-2018838818,B&E,2018-05-09,2018,May,Wednesday,9,129,14,2018-05-09,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5912,2278,GO-2018838818,B&E,2018-05-09,2018,May,Wednesday,9,129,14,2018-05-09,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5913,2658,GO-20189019873,THEFT UNDER,2018-06-13,2018,June,Wednesday,13,164,17,2018-06-22,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5914,2972,GO-20189024003,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,12,2018-07-26,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5915,2985,GO-20189024003,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,12,2018-07-26,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5916,3000,GO-20189024237,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,23,2018-07-27,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5917,3023,GO-20189024463,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,23,2018-07-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5918,3060,GO-20189024953,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,21,2018-08-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5919,3467,GO-20181709317,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,3,2018-09-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5920,3478,GO-20189030545,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,0,2018-09-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5921,3491,GO-20181700976,THEFT FROM MOTOR VEHICLE UNDER,2018-09-13,2018,September,Thursday,13,256,0,2018-09-13,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5922,3647,GO-20189033393,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,22,2018-10-09,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5923,3788,GO-20189036238,THEFT UNDER - BICYCLE,2018-10-30,2018,October,Tuesday,30,303,1,2018-10-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5924,3837,GO-20189037686,THEFT UNDER,2018-11-08,2018,November,Thursday,8,312,2,2018-11-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5925,3838,GO-20189037686,THEFT UNDER,2018-11-08,2018,November,Thursday,8,312,2,2018-11-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5926,3839,GO-20189037686,THEFT UNDER,2018-11-08,2018,November,Thursday,8,312,2,2018-11-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5927,3865,GO-20182120292,THEFT UNDER,2018-11-09,2018,November,Friday,9,313,6,2018-11-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5928,3917,GO-20189040672,THEFT UNDER - BICYCLE,2018-12-03,2018,December,Monday,3,337,17,2018-12-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5929,3980,GO-20199000475,THEFT UNDER - BICYCLE,2019-01-03,2019,January,Thursday,3,3,2,2019-01-05,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5930,3986,GO-20199000690,THEFT UNDER - BICYCLE,2018-12-07,2018,December,Friday,7,341,9,2019-01-07,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5931,4175,GO-20199012187,THEFT UNDER,2019-04-16,2019,April,Tuesday,16,106,18,2019-04-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5932,4307,GO-20199015721,THEFT UNDER,2019-05-14,2019,May,Tuesday,14,134,8,2019-05-21,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5933,4379,GO-20199016880,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,19,2019-05-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5934,4434,GO-20199017892,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,23,2019-06-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5935,4458,GO-20199018230,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,11,2019-06-11,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5936,4662,GO-20199020859,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,13,2019-07-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5937,4663,GO-20199020859,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,13,2019-07-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5938,5012,GO-20199025564,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,17,2019-08-09,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5939,5041,GO-20199025853,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,23,2019-08-12,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5940,5077,GO-20199026284,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,22,2019-08-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5941,5177,GO-20199027873,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,23,2019-08-27,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5942,5208,GO-20191678472,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,6,2019-09-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5943,5209,GO-20191678472,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,6,2019-09-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5944,5272,GO-20199029212,THEFT UNDER,2019-09-07,2019,September,Saturday,7,250,17,2019-09-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5945,5273,GO-20199029212,THEFT UNDER,2019-09-07,2019,September,Saturday,7,250,17,2019-09-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5946,5321,GO-20199029998,THEFT UNDER,2019-09-13,2019,September,Friday,13,256,20,2019-09-14,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5947,5393,GO-20191832819,THEFT UNDER - BICYCLE,2019-08-28,2019,August,Wednesday,28,240,17,2019-09-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5948,5508,GO-20199033527,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,20,2019-10-11,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5949,5769,GO-20192428221,THEFT UNDER,2019-12-11,2019,December,Wednesday,11,345,8,2019-12-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5950,5770,GO-20192428221,THEFT UNDER,2019-12-11,2019,December,Wednesday,11,345,8,2019-12-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5951,5780,GO-20199041792,THEFT UNDER,2019-11-09,2019,November,Saturday,9,313,11,2019-12-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5952,5918,GO-2020383262,B&E,2020-02-15,2020,February,Saturday,15,46,14,2020-02-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5953,5950,GO-20209008240,THEFT UNDER,2020-03-08,2020,March,Sunday,8,68,16,2020-03-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5954,6548,GO-20209017000,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,23,2020-07-07,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5955,6639,GO-20201324921,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,8,2020-07-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5956,6640,GO-20201324921,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,8,2020-07-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5957,7006,GO-20209020724,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,16,2020-08-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5958,7069,GO-20209021211,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,18,2020-08-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5959,7134,GO-20201595981,THEFT UNDER - BICYCLE,2020-08-24,2020,August,Monday,24,237,7,2020-08-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5960,7190,GO-20209022463,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,23,2020-09-06,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5961,7215,GO-20209022744,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,0,2020-09-09,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5962,7587,GO-20209028520,THEFT UNDER,2020-11-03,2020,November,Tuesday,3,308,16,2020-11-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5963,7847,GO-20149002953,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,21,2014-04-21,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5964,7940,GO-20149003412,THEFT UNDER,2014-05-17,2014,May,Saturday,17,137,18,2014-05-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5965,7970,GO-20142160908,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,6,2014-05-27,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5966,7980,GO-20141992310,THEFT UNDER,2014-03-02,2014,March,Sunday,2,61,12,2014-05-01,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5967,7981,GO-20141992310,THEFT UNDER,2014-03-02,2014,March,Sunday,2,61,12,2014-05-01,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5968,8064,GO-20149003849,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,18,2014-06-05,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5969,8173,GO-20149004181,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,10,2014-06-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5970,8445,GO-20149005103,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,17,2014-07-18,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5971,8892,GO-20149006900,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,8,2014-09-15,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5972,9008,GO-20149007358,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,19,2014-10-02,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5973,9131,GO-20143204324,THEFT UNDER,2014-10-29,2014,October,Wednesday,29,302,21,2014-10-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5974,9141,GO-20143228990,THEFT UNDER,2014-10-31,2014,October,Friday,31,304,12,2014-11-03,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5975,9454,GO-2015665524,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,1,2015-04-22,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5976,9772,GO-20159003508,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,0,2015-06-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5977,9773,GO-20159003508,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,0,2015-06-10,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5978,9892,GO-20159003947,THEFT UNDER,2015-02-01,2015,February,Sunday,1,32,9,2015-06-26,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5979,10147,GO-20159005182,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,22,2015-07-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5980,10148,GO-20159005178,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,17,2015-07-30,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5981,10496,GO-20159007386,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,0,2015-09-19,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5982,10497,GO-20159007419,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,9,2015-09-19,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5983,10527,GO-20151644141,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,11,2015-09-23,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5984,10707,GO-20151870983,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,19,2015-10-31,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5985,10720,GO-20159009359,THEFT UNDER,2015-10-27,2015,October,Tuesday,27,300,15,2015-11-04,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5986,10781,GO-20151950550,THEFT UNDER,2015-11-11,2015,November,Wednesday,11,315,18,2015-11-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5987,10815,GO-20151271201,THEFT UNDER,2015-07-25,2015,July,Saturday,25,206,18,2015-07-25,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5988,10865,GO-20159010865,THEFT UNDER,2015-12-12,2015,December,Saturday,12,346,7,2015-12-13,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5989,10961,GO-2016189841,THEFT UNDER,2015-12-20,2015,December,Sunday,20,354,9,2016-02-01,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5990,10975,GO-2016231224,THEFT OVER,2016-02-07,2016,February,Sunday,7,38,13,2016-02-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5991,10976,GO-2016231224,THEFT OVER,2016-02-07,2016,February,Sunday,7,38,13,2016-02-08,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5992,11063,GO-2016480239,THEFT UNDER,2016-03-20,2016,March,Sunday,20,80,12,2016-03-20,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5993,11194,GO-2016701823,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,19,2016-04-24,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5994,11240,GO-2016668970,B&E W'INTENT,2016-04-19,2016,April,Tuesday,19,110,8,2016-04-19,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5995,12121,GO-20169008950,THEFT FROM MOTOR VEHICLE UNDER,2016-08-14,2016,August,Sunday,14,227,12,2016-08-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5996,12122,GO-20169008950,THEFT FROM MOTOR VEHICLE UNDER,2016-08-14,2016,August,Sunday,14,227,12,2016-08-17,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5997,12306,GO-20161602993,THEFT UNDER,2016-09-08,2016,September,Thursday,8,252,21,2016-09-09,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5998,12423,GO-20161687061,PROPERTY - FOUND,2016-09-22,2016,September,Thursday,22,266,11,2016-09-22,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -5999,12462,GO-20169011147,THEFT UNDER,2016-09-24,2016,September,Saturday,24,268,0,2016-09-26,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)}",North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -6000,20701,GO-20209011499,THEFT UNDER - BICYCLE,2020-04-18,2020,April,Saturday,18,109,23,2020-04-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6001,20705,GO-20209013109,THEFT UNDER,2020-05-14,2020,May,Thursday,14,135,13,2020-05-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6002,20708,GO-2020931052,PROPERTY - FOUND,2020-05-20,2020,May,Wednesday,20,141,16,2020-05-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6003,20847,GO-20141542732,B&E,2014-02-16,2014,February,Sunday,16,47,19,2014-02-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6004,20851,GO-20141668687,THEFT UNDER,2014-03-08,2014,March,Saturday,8,67,9,2014-03-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6005,20867,GO-20149004091,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,11,2014-06-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6006,20894,GO-20149005284,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,9,2014-07-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6007,20914,GO-20142763398,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,20,2014-08-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6008,20932,GO-20143065914,THEFT UNDER,2014-10-08,2014,October,Wednesday,8,281,7,2014-10-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6009,20960,GO-2015635131,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,9,2015-04-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6010,22618,GO-20191527344,THEFT OF EBIKE UNDER $5000,2019-07-19,2019,July,Friday,19,200,0,2019-08-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6011,22640,GO-20199028826,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,15,2019-09-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6012,22703,GO-2020652625,B&E W'INTENT,2020-03-17,2020,March,Tuesday,17,77,23,2020-04-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6013,22704,GO-2020652625,B&E W'INTENT,2020-03-17,2020,March,Tuesday,17,77,23,2020-04-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6014,22705,GO-2020652625,B&E W'INTENT,2020-03-17,2020,March,Tuesday,17,77,23,2020-04-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6015,22715,GO-20209012083,THEFT UNDER - BICYCLE,2020-04-25,2020,April,Saturday,25,116,22,2020-04-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6016,22735,GO-20209016286,THEFT UNDER,2020-06-27,2020,June,Saturday,27,179,0,2020-06-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6017,22744,GO-20201262782,THEFT UNDER - BICYCLE,2020-07-04,2020,July,Saturday,4,186,9,2020-07-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6018,22753,GO-20209018848,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,14,2020-07-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6019,22782,GO-20209025057,THEFT UNDER - BICYCLE,2020-09-29,2020,September,Tuesday,29,273,13,2020-09-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6020,22784,GO-20209025522,THEFT UNDER - BICYCLE,2020-10-05,2020,October,Monday,5,279,21,2020-10-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6021,22908,GO-20151045103,THEFT UNDER - BICYCLE,2015-06-21,2015,June,Sunday,21,172,18,2015-06-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6022,23213,GO-20189033047,THEFT UNDER - BICYCLE,2017-09-30,2017,September,Saturday,30,273,10,2018-10-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6023,23215,GO-20189033575,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,14,2018-10-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6024,23232,GO-20182311065,THEFT UNDER - BICYCLE,2018-12-14,2018,December,Friday,14,348,15,2018-12-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6025,23253,GO-20199015233,THEFT UNDER,2019-05-15,2019,May,Wednesday,15,135,22,2019-05-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6026,23256,GO-20199016500,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,12,2019-05-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6027,23263,GO-20199018493,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,18,2019-06-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6028,23264,GO-20191112925,B&E,2019-06-16,2019,June,Sunday,16,167,0,2019-06-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6029,23265,GO-20191112925,B&E,2019-06-16,2019,June,Sunday,16,167,0,2019-06-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6030,23272,GO-20199019898,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,0,2019-06-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6031,23277,GO-20191241938,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,21,2019-07-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6032,23278,GO-20191241938,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,21,2019-07-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6033,23444,GO-20179010686,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,21,2017-07-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6034,23450,GO-20179011229,ASSAULT WITH WEAPON,2017-07-28,2017,July,Friday,28,209,13,2017-07-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6035,23495,GO-20179019696,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,5,2017-11-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6036,23511,GO-20189009426,THEFT UNDER - BICYCLE,2018-03-25,2018,March,Sunday,25,84,18,2018-03-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6037,23556,GO-2018845419,THEFT OVER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,20,2018-05-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6038,23558,GO-20189022737,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,19,2018-07-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6039,23563,GO-20181343102,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,13,2018-07-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6040,23573,GO-20189025258,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,11,2018-08-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6041,23576,GO-20189026092,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,14,2018-08-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6042,406,GO-20179006488,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,16,2017-05-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6043,23583,GO-20189027062,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,1,2018-08-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6044,23585,GO-20189027645,THEFT UNDER,2018-08-23,2018,August,Thursday,23,235,15,2018-08-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6045,23596,GO-20159002765,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,23,2015-05-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6046,23603,GO-20159003186,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,9,2015-05-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6047,23631,GO-20159005243,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,15,2015-08-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6048,23641,GO-20159005698,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,14,2015-08-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6049,23647,GO-20159006293,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,1,2015-08-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6050,23916,GO-20142469396,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,11,2014-07-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6051,23654,GO-20159007463,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,23,2015-09-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6052,23677,GO-2016334854,THEFT UNDER,2016-02-23,2016,February,Tuesday,23,54,22,2016-02-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6053,23684,GO-20169003742,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,23,2016-04-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6054,23687,GO-20169003994,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,16,2016-04-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6055,23711,GO-20161056378,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,13,2016-06-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6056,23724,GO-20169008403,THEFT UNDER,2016-08-08,2016,August,Monday,8,221,19,2016-08-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6057,23741,GO-20169009575,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,21,2016-08-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6058,23759,GO-20161824302,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,17,2016-10-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6059,23763,GO-20161814990,PROPERTY - FOUND,2016-09-21,2016,September,Wednesday,21,265,0,2016-10-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6060,23868,GO-20149000071,THEFT UNDER,2013-12-25,2013,December,Wednesday,25,359,10,2014-01-02,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6061,23880,GO-20149003499,THEFT UNDER,2014-05-20,2014,May,Tuesday,20,140,19,2014-05-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6062,23905,GO-20149004424,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,8,2014-06-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6063,23907,GO-20142396871,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,20,2014-07-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6064,23908,GO-20142396871,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,20,2014-07-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6065,23928,GO-20149005380,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,14,2014-07-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6066,23929,GO-20149005391,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,7,2014-07-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6067,23932,GO-20149005449,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,21,2014-07-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6068,23937,GO-20149005788,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,12,2014-08-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6069,23964,GO-20143138742,THEFT UNDER,2014-10-20,2014,October,Monday,20,293,7,2014-10-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6070,23968,GO-20149008691,THEFT UNDER,2014-12-10,2014,December,Wednesday,10,344,8,2014-12-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6071,23971,GO-20159000362,THEFT UNDER,2015-01-19,2015,January,Monday,19,19,11,2015-01-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6072,23975,GO-20159001607,THEFT UNDER,2015-03-24,2015,March,Tuesday,24,83,0,2015-03-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6073,23978,GO-20159002042,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,23,2015-04-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6074,23980,GO-2015675002,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,21,2015-04-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6075,23985,GO-20159002613,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,0,2015-05-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6076,55,GO-20179000864,THEFT UNDER - BICYCLE,2016-11-15,2016,November,Tuesday,15,320,20,2017-01-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6077,167,GO-20179003708,THEFT OVER - BICYCLE,2017-03-22,2017,March,Wednesday,22,81,22,2017-03-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6078,187,GO-20179004094,THEFT UNDER - BICYCLE,2017-04-01,2017,April,Saturday,1,91,19,2017-04-01,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6079,254,GO-2017702106,THEFT OF EBIKE UNDER $5000,2017-04-21,2017,April,Friday,21,111,18,2017-04-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6080,514,GO-20179007324,THEFT UNDER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,5,2017-06-01,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6081,688,GO-20179008688,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,22,2017-06-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6082,816,GO-20179009786,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,19,2017-07-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6083,878,GO-20179010353,THEFT UNDER,2017-07-15,2017,July,Saturday,15,196,20,2017-07-16,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6084,894,GO-20171298414,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,20,2017-07-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6085,895,GO-20171298414,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,20,2017-07-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6086,934,GO-20179010705,THEFT UNDER,2017-07-20,2017,July,Thursday,20,201,18,2017-07-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6087,1000,GO-20171364123,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,16,2017-07-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6088,1007,GO-20179011333,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,9,2017-07-30,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6089,1098,GO-20171441119,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,7,2017-08-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6090,1196,GO-20179012893,THEFT UNDER,2017-08-11,2017,August,Friday,11,223,8,2017-08-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6091,1242,GO-20179013251,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,16,2017-08-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6092,1459,GO-20171708732,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,6,2017-09-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6093,1512,GO-20179015673,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,18,2017-09-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6094,1691,GO-20179017570,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,15,2017-10-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6095,1697,GO-20171882354,THEFT OF EBIKE UNDER $5000,2017-10-17,2017,October,Tuesday,17,290,15,2017-10-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6096,1704,GO-20179017708,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,0,2017-10-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6097,1775,GO-20179018626,THEFT UNDER - BICYCLE,2017-10-31,2017,October,Tuesday,31,304,6,2017-10-31,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6098,1784,GO-20171987378,B&E,2017-11-02,2017,November,Thursday,2,306,13,2017-11-02,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6099,1850,GO-20179019711,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,13,2017-11-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6100,1863,GO-20179020092,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,11,2017-11-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6101,1924,GO-20179021540,THEFT UNDER - BICYCLE,2017-12-06,2017,December,Wednesday,6,340,23,2017-12-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6102,1966,GO-20189000378,THEFT UNDER - BICYCLE,2017-12-23,2017,December,Saturday,23,357,13,2018-01-05,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6103,1985,GO-20189001063,THEFT UNDER - BICYCLE,2018-01-12,2018,January,Friday,12,12,17,2018-01-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6104,2150,GO-20189011243,THEFT UNDER,2018-04-10,2018,April,Tuesday,10,100,8,2018-04-11,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6105,2156,GO-2018655710,B&E,2017-11-25,2017,November,Saturday,25,329,5,2018-04-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6106,2274,GO-20189014244,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,19,2018-05-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6107,2387,GO-20189016134,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,22,2018-05-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6108,2389,GO-20189016138,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,19,2018-05-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6109,2461,GO-20181016355,POSSESSION PROPERTY OBC UNDER,2018-06-05,2018,June,Tuesday,5,156,0,2018-06-05,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6110,2514,GO-20189017989,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,17,2018-06-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6111,2596,GO-20189019038,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,12,2018-06-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6112,2689,GO-20189020349,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,19,2018-06-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6113,2851,GO-20181295798,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,13,2018-07-16,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6114,2897,GO-20189023163,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,0,2018-07-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6115,2899,GO-20189023155,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,8,2018-07-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6116,2930,GO-20189023555,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,18,2018-07-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6117,3089,GO-20189025246,THEFT UNDER,2018-07-28,2018,July,Saturday,28,209,17,2018-08-06,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6118,3184,GO-20189026193,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,17,2018-08-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6119,3236,GO-20181491894,B&E W'INTENT,2018-08-13,2018,August,Monday,13,225,1,2018-08-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6120,3237,GO-20181491894,B&E W'INTENT,2018-08-13,2018,August,Monday,13,225,1,2018-08-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6121,3621,GO-20181844150,POSSESSION PROPERTY OBC UNDER,2018-10-05,2018,October,Friday,5,278,20,2018-10-05,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6122,3727,GO-20181923433,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,0,2018-10-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6123,3950,GO-20189042840,THEFT UNDER - BICYCLE,2018-12-16,2018,December,Sunday,16,350,17,2018-12-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6124,4044,GO-20199005062,B&E,2019-02-10,2019,February,Sunday,10,41,18,2019-02-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6125,4071,GO-20199006969,THEFT UNDER - BICYCLE,2019-02-27,2019,February,Wednesday,27,58,7,2019-03-01,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6126,4127,GO-20199010544,THEFT UNDER,2019-04-03,2019,April,Wednesday,3,93,18,2019-04-03,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6127,4130,GO-20199010544,THEFT UNDER,2019-04-03,2019,April,Wednesday,3,93,18,2019-04-03,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6128,4148,GO-20199011225,THEFT UNDER,2019-04-09,2019,April,Tuesday,9,99,8,2019-04-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6129,4238,GO-2019820018,B&E,2019-04-27,2019,April,Saturday,27,117,0,2019-05-06,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6130,4253,GO-20199014412,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,17,2019-05-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6131,4263,GO-20199014680,B&E,2019-04-29,2019,April,Monday,29,119,10,2019-05-11,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6132,4320,GO-2019933102,B&E,2019-05-22,2019,May,Wednesday,22,142,5,2019-05-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6133,4325,GO-20199010544,THEFT UNDER,2019-04-03,2019,April,Wednesday,3,93,18,2019-04-03,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6134,4329,GO-2019942985,B&E,2019-05-21,2019,May,Tuesday,21,141,13,2019-05-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6135,4366,GO-20199016492,B&E,2019-05-24,2019,May,Friday,24,144,8,2019-05-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6136,4531,GO-20199019110,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,18,2019-06-18,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6137,4665,GO-20199020923,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,23,2019-07-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6138,5116,GO-20199027036,THEFT UNDER,2019-08-20,2019,August,Tuesday,20,232,23,2019-08-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6139,5159,GO-20191626171,B&E,2019-08-25,2019,August,Sunday,25,237,23,2019-08-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6140,5160,GO-20191626171,B&E,2019-08-25,2019,August,Sunday,25,237,23,2019-08-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6141,5211,GO-20191680093,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,19,2019-09-02,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6142,5241,GO-20191690487,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,0,2019-09-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6143,5306,GO-20199029771,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,18,2019-09-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6144,5313,GO-20199029827,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,20,2019-09-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6145,5704,GO-20199038004,THEFT UNDER,2019-11-17,2019,November,Sunday,17,321,23,2019-11-18,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6146,5764,GO-20192415552,B&E,2019-12-15,2019,December,Sunday,15,349,13,2019-12-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6147,5778,GO-20201519594,POSSESSION PROPERTY OBC UNDER,2020-08-13,2020,August,Thursday,13,226,20,2020-08-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6148,5908,GO-2020355516,THEFT UNDER - BICYCLE,2020-01-30,2020,January,Thursday,30,30,15,2020-02-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6149,5909,GO-2020355516,THEFT UNDER - BICYCLE,2020-01-30,2020,January,Thursday,30,30,15,2020-02-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6150,5917,GO-20209006406,THEFT UNDER,2019-11-01,2019,November,Friday,1,305,11,2020-02-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6151,5964,GO-20209009002,THEFT UNDER,2020-03-15,2020,March,Sunday,15,75,9,2020-03-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6152,5995,GO-2020613414,THEFT OF EBIKE UNDER $5000,2020-03-25,2020,March,Wednesday,25,85,17,2020-03-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6153,6299,GO-20209014589,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,21,2020-06-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6154,6304,GO-20209014629,THEFT UNDER,2020-06-04,2020,June,Thursday,4,156,22,2020-06-05,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6155,6305,GO-20201017831,THEFT UNDER - BICYCLE,2020-06-02,2020,June,Tuesday,2,154,16,2020-06-02,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6156,6485,GO-20209016351,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,22,2020-06-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6157,6546,GO-20201249609,THEFT OVER - BICYCLE,2020-06-12,2020,June,Friday,12,164,13,2020-07-06,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6158,7038,GO-20201585595,PROPERTY - FOUND,2020-08-22,2020,August,Saturday,22,235,20,2020-08-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6159,7084,GO-20209021420,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,7,2020-08-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6160,7508,GO-20209026949,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,11,2020-10-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6161,7700,GO-20209031791,THEFT UNDER,2020-12-06,2020,December,Sunday,6,341,12,2020-12-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6162,7922,GO-20149003317,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,6,2014-05-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6163,7952,GO-20142122036,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,9,2014-05-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6164,8005,GO-20142189645,THEFT UNDER,2013-05-04,2013,May,Saturday,4,124,12,2014-05-31,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6165,8292,GO-20142431618,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,13,2014-07-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6166,8391,GO-20149004891,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,19,2014-07-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6167,8399,GO-20149004920,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,17,2014-07-11,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6168,8471,GO-20142533476,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,15,2014-07-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6169,8538,GO-20142602639,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,16,2014-07-30,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6170,8656,GO-20149005916,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,8,2014-08-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6171,8661,GO-20149005955,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,21,2014-08-14,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6172,8680,GO-20149006015,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,23,2014-08-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6173,8837,GO-20142875027,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,17,2014-09-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6174,8992,GO-20143004958,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,22,2014-09-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6175,9213,GO-20143422504,THEFT UNDER,2014-12-04,2014,December,Thursday,4,338,10,2014-12-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6176,9596,GO-2015812159,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,12,2015-05-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6177,9605,GO-2015835182,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,7,2015-05-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6178,9645,GO-2015866635,B&E,2015-05-24,2015,May,Sunday,24,144,12,2015-05-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6179,9648,GO-2015873821,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,17,2015-05-25,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6180,9995,GO-20159004467,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,14,2015-07-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6181,10301,GO-20151439424,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,23,2015-08-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6182,10312,GO-20151440192,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,15,2015-08-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6183,10528,GO-20151647476,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,19,2015-09-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6184,10529,GO-20159007605,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,13,2015-09-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6185,10613,GO-20151748377,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,18,2015-10-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6186,11022,GO-2016403804,THEFT UNDER - BICYCLE,2016-03-07,2016,March,Monday,7,67,13,2016-03-08,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6187,11051,GO-2016453685,THEFT UNDER,2016-03-04,2016,March,Friday,4,64,0,2016-03-16,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6188,11099,GO-2016572968,THEFT UNDER,2016-04-04,2016,April,Monday,4,95,19,2016-04-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6189,11315,GO-20169004573,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,11,2016-05-16,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6190,11400,GO-2016915784,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,15,2016-05-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6191,11477,GO-20169005500,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,22,2016-06-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6192,11622,GO-20169006275,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,17,2016-06-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6193,11647,GO-20161118089,B&E,2016-06-26,2016,June,Sunday,26,178,12,2016-06-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6194,11921,GO-20161317464,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,14,2016-07-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6195,11935,GO-20161327355,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,16,2016-07-28,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6196,12047,GO-20169008501,THEFT UNDER,2016-08-08,2016,August,Monday,8,221,19,2016-08-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6197,12368,GO-20169010587,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,22,2016-09-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6198,12507,GO-20169011313,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,2,2016-09-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6199,11111,GO-20169003115,THEFT UNDER - BICYCLE,2016-04-06,2016,April,Wednesday,6,97,11,2016-04-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6200,11163,GO-20169003624,THEFT UNDER,2016-04-18,2016,April,Monday,18,109,7,2016-04-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6201,11184,GO-20169003721,THEFT UNDER,2016-04-18,2016,April,Monday,18,109,7,2016-04-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6202,11191,GO-20169003775,THEFT UNDER,2016-04-23,2016,April,Saturday,23,114,23,2016-04-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6203,11260,GO-20169004171,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,2,2016-05-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6204,11265,GO-20169004227,THEFT UNDER,2016-05-06,2016,May,Friday,6,127,3,2016-05-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6205,11271,GO-2016786575,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,17,2016-05-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6206,11305,GO-2016832618,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,23,2016-05-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6207,11377,GO-20169004975,THEFT UNDER,2016-05-26,2016,May,Thursday,26,147,11,2016-05-26,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6208,11484,GO-2016997730,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,16,2016-06-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6209,11497,GO-20169005595,THEFT UNDER,2016-06-10,2016,June,Friday,10,162,0,2016-06-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6210,11748,GO-20169006927,THEFT UNDER,2016-07-09,2016,July,Saturday,9,191,3,2016-07-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6211,11771,GO-20169007057,THEFT UNDER,2016-07-11,2016,July,Monday,11,193,12,2016-07-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6212,11794,GO-20169007076,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,23,2016-07-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6213,11808,GO-20169007211,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,19,2016-07-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6214,22186,GO-20169009496,THEFT UNDER,2016-08-21,2016,August,Sunday,21,234,17,2016-08-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6215,11854,GO-20161250482,THEFT OF EBIKE UNDER $5000,2016-07-10,2016,July,Sunday,10,192,0,2016-07-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6216,11876,GO-20169007610,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,0,2016-07-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6217,11939,GO-20169007873,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,17,2016-07-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6218,12048,GO-20169008513,THEFT UNDER,2016-08-10,2016,August,Wednesday,10,223,10,2016-08-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6219,12077,GO-20169008674,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,0,2016-08-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6220,12078,GO-20169008667,THEFT UNDER,2016-08-13,2016,August,Saturday,13,226,1,2016-08-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6221,12193,GO-20169009414,THEFT UNDER,2016-08-23,2016,August,Tuesday,23,236,20,2016-08-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6222,12299,GO-20169010142,THEFT UNDER,2016-09-07,2016,September,Wednesday,7,251,22,2016-09-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6223,12343,GO-20169010450,THEFT UNDER,2016-09-14,2016,September,Wednesday,14,258,0,2016-09-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6224,12491,GO-20169011277,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,10,2016-09-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6225,12576,GO-20169011717,THEFT UNDER,2016-10-05,2016,October,Wednesday,5,279,22,2016-10-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6226,12579,GO-20161795618,THEFT UNDER - BICYCLE,2016-10-08,2016,October,Saturday,8,282,4,2016-10-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6227,12580,GO-20161795618,THEFT UNDER - BICYCLE,2016-10-08,2016,October,Saturday,8,282,4,2016-10-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6228,12581,GO-20161795618,THEFT UNDER - BICYCLE,2016-10-08,2016,October,Saturday,8,282,4,2016-10-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6229,12582,GO-20169011776,THEFT UNDER - BICYCLE,2016-10-08,2016,October,Saturday,8,282,9,2016-10-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6230,12591,GO-20169011854,THEFT UNDER,2016-10-11,2016,October,Tuesday,11,285,12,2016-10-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6231,12612,GO-20169012017,THEFT UNDER - BICYCLE,2016-10-07,2016,October,Friday,7,281,20,2016-10-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6232,12613,GO-20169012030,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,22,2016-10-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6233,12721,GO-20169012920,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,19,2016-11-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6234,13486,GO-20199015350,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,16,2019-05-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6235,13505,GO-20199020493,THEFT UNDER,2019-06-29,2019,June,Saturday,29,180,0,2019-06-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6236,22811,GO-20149001966,THEFT UNDER,2014-01-15,2014,January,Wednesday,15,15,11,2014-03-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6237,13715,GO-20179014866,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,13,2017-09-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6238,13734,GO-20172025911,B&E,2017-10-30,2017,October,Monday,30,303,0,2017-11-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6239,13762,GO-20181011032,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,16,2018-06-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6240,13797,GO-20189026561,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15,2018,August,Wednesday,15,227,3,2018-08-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6241,13798,GO-20189026561,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15,2018,August,Wednesday,15,227,3,2018-08-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6242,13803,GO-20181512555,THEFT UNDER - BICYCLE,2018-08-05,2018,August,Sunday,5,217,12,2018-08-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6243,13806,GO-20181550630,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,23,2018-08-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6244,13811,GO-20189028894,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,17,2018-09-02,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6245,13822,GO-20189031053,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,21,2018-09-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6246,13850,GO-20189041771,THEFT UNDER - BICYCLE,2018-12-11,2018,December,Tuesday,11,345,13,2018-12-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6247,13854,GO-201922285,THEFT UNDER - BICYCLE,2019-01-04,2019,January,Friday,4,4,16,2019-01-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6248,13855,GO-20199001317,THEFT UNDER - BICYCLE,2019-01-10,2019,January,Thursday,10,10,18,2019-01-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6249,13856,GO-20199002584,THEFT UNDER - BICYCLE,2019-01-19,2019,January,Saturday,19,19,0,2019-01-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6250,13868,GO-20159002990,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,21,2015-05-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6251,11740,GO-20169006860,THEFT UNDER,2016-07-06,2016,July,Wednesday,6,188,22,2016-07-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6252,13903,GO-20159006295,THEFT UNDER,2015-08-22,2015,August,Saturday,22,234,19,2015-08-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6253,13908,GO-20159007060,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,10,2015-09-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6254,13911,GO-20159007463,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,23,2015-09-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6255,13915,GO-20151680642,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,1,2015-09-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6256,13916,GO-20151680642,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,1,2015-09-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6257,13919,GO-20159007916,THEFT UNDER,2015-09-29,2015,September,Tuesday,29,272,12,2015-09-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6258,13920,GO-20159008117,THEFT UNDER,2015-10-03,2015,October,Saturday,3,276,19,2015-10-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6259,12596,GO-20169011194,THEFT UNDER,2016-09-27,2016,September,Tuesday,27,271,15,2016-09-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6260,13937,GO-20152101727,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,18,2015-12-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6261,13948,GO-2016329406,B&E,2016-01-27,2016,January,Wednesday,27,27,17,2016-02-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6262,13955,GO-20169003065,THEFT UNDER,2016-04-04,2016,April,Monday,4,95,3,2016-04-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6263,13957,GO-20169003536,THEFT FROM MOTOR VEHICLE UNDER,2016-04-15,2016,April,Friday,15,106,17,2016-04-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6264,13985,GO-20169007081,THEFT UNDER - BICYCLE,2016-07-08,2016,July,Friday,8,190,12,2016-07-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6265,13993,GO-20161408013,THEFT OF EBIKE UNDER $5000,2016-08-09,2016,August,Tuesday,9,222,22,2016-08-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6266,14030,GO-20169013216,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,1,2016-11-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6267,14037,GO-20169014351,THEFT UNDER,2016-12-04,2016,December,Sunday,4,339,0,2016-12-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6268,14042,GO-2017118600,THEFT UNDER - BICYCLE,2017-01-19,2017,January,Thursday,19,19,23,2017-01-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6269,14048,GO-20179002781,THEFT UNDER - BICYCLE,2017-03-05,2017,March,Sunday,5,64,8,2017-03-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6270,14052,GO-2017675667,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,16,2017-04-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6271,14056,GO-20179005359,THEFT UNDER - BICYCLE,2017-04-26,2017,April,Wednesday,26,116,9,2017-04-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6272,14059,GO-2017812255,THEFT UNDER - BICYCLE,2017-04-28,2017,April,Friday,28,118,15,2017-05-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6273,14349,GO-20141791881,THEFT UNDER,2014-03-29,2014,March,Saturday,29,88,15,2014-03-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6274,15819,GO-20201686873,B&E,2020-09-06,2020,September,Sunday,6,250,0,2020-09-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6275,14351,GO-20141902305,THEFT UNDER,2014-04-07,2014,April,Monday,7,97,18,2014-04-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6276,14357,GO-20149003205,THEFT UNDER,2014-05-06,2014,May,Tuesday,6,126,11,2014-05-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6277,14371,GO-20149004260,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,17,2014-06-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6278,14377,GO-20142349296,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,14,2014-06-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6279,14380,GO-20142412181,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,19,2014-07-02,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6280,14384,GO-20149004607,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,7,2014-07-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6281,14399,GO-20149005577,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,17,2014-08-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6282,14420,GO-20149007345,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,17,2014-10-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6283,14421,GO-20149007345,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,17,2014-10-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6284,14433,GO-2015204117,B&E W'INTENT,2015-02-03,2015,February,Tuesday,3,34,15,2015-02-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6285,14434,GO-2015204117,B&E W'INTENT,2015-02-03,2015,February,Tuesday,3,34,15,2015-02-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6286,14443,GO-2015671981,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,22,2015-04-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6287,15658,GO-20191413661,B&E,2019-07-27,2019,July,Saturday,27,208,14,2019-07-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6288,15660,GO-20199024105,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,21,2019-07-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6289,15685,GO-20191676682,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,20,2019-09-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6290,14020,GO-20169011194,THEFT UNDER,2016-09-27,2016,September,Tuesday,27,271,15,2016-09-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -6291,15686,GO-20191676682,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,20,2019-09-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6292,15687,GO-20191676682,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,20,2019-09-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6293,15737,GO-20192415401,B&E,2019-12-14,2019,December,Saturday,14,348,21,2019-12-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6294,15738,GO-20192423553,B&E,2019-12-12,2019,December,Thursday,12,346,1,2019-12-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6295,15783,GO-20209016124,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,17,2020-06-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6296,15796,GO-20201378917,THEFT OF EBIKE UNDER $5000,2020-07-24,2020,July,Friday,24,206,0,2020-07-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6297,15798,GO-20209018623,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,14,2020-07-26,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6298,15820,GO-20201686873,B&E,2020-09-06,2020,September,Sunday,6,250,0,2020-09-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6299,16420,GO-20192372397,THEFT OF EBIKE UNDER $5000,2019-12-08,2019,December,Sunday,8,342,21,2019-12-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6300,16422,GO-20192415401,B&E,2019-12-14,2019,December,Saturday,14,348,21,2019-12-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6301,16446,GO-2020619742,THEFT UNDER,2020-03-25,2020,March,Wednesday,25,85,22,2020-03-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6302,16478,GO-20209017477,THEFT UNDER,2020-07-13,2020,July,Monday,13,195,14,2020-07-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6303,16485,GO-20209018848,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,14,2020-07-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6304,4741,GO-20199021766,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,12,2019-07-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6305,25530,GO-20189012657,THEFT UNDER,2018-03-29,2018,March,Thursday,29,88,21,2018-04-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6306,22238,GO-20179010664,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,0,2017-07-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6307,4750,GO-20199021930,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,7,2019-07-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6308,4758,GO-20191306788,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,21,2019-07-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6309,4851,GO-20191384539,THEFT UNDER - BICYCLE,2019-07-19,2019,July,Friday,19,200,17,2019-07-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6310,5055,GO-20199026102,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,17,2019-08-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6311,5078,GO-20199026307,THEFT FROM MOTOR VEHICLE UNDER,2019-08-14,2019,August,Wednesday,14,226,0,2019-08-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6312,5155,GO-20199027617,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,2,2019-08-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6313,13895,GO-20159005422,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,19,2015-08-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6314,5353,GO-20199030350,THEFT FROM MOTOR VEHICLE UNDER,2019-05-10,2019,May,Friday,10,130,23,2019-09-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6315,5382,GO-20199031120,THEFT UNDER - BICYCLE,2019-09-19,2019,September,Thursday,19,262,20,2019-09-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6316,5486,GO-20199033032,THEFT UNDER - BICYCLE,2019-10-07,2019,October,Monday,7,280,10,2019-10-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6317,5760,GO-20199040750,THEFT UNDER,2019-12-12,2019,December,Thursday,12,346,16,2019-12-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6318,5866,GO-20209003749,THEFT UNDER,2020-01-31,2020,January,Friday,31,31,2,2020-01-31,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6319,5878,GO-2020273343,B&E,2019-08-29,2019,August,Thursday,29,241,0,2020-02-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6320,5935,GO-20209007192,THEFT UNDER,2020-02-17,2020,February,Monday,17,48,14,2020-02-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6321,20263,GO-20179017989,B&E,2017-10-23,2017,October,Monday,23,296,11,2017-10-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6322,5980,GO-2020580021,B&E,2020-03-20,2020,March,Friday,20,80,23,2020-03-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6323,6100,GO-20209011906,THEFT UNDER - BICYCLE,2020-04-25,2020,April,Saturday,25,116,9,2020-04-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6324,6113,GO-2020796704,THEFT UNDER - BICYCLE,2020-04-24,2020,April,Friday,24,115,19,2020-04-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6325,6186,GO-2020895621,B&E,2020-05-10,2020,May,Sunday,10,131,20,2020-05-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6326,6187,GO-20209013109,THEFT UNDER,2020-05-14,2020,May,Thursday,14,135,13,2020-05-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6327,6214,GO-20209013585,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,1,2020-05-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6328,6834,GO-20209019121,THEFT UNDER,2020-07-31,2020,July,Friday,31,213,11,2020-07-31,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6329,6872,GO-20209019438,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,10,2020-08-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6330,6873,GO-20209019438,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,10,2020-08-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6331,6900,GO-20209019668,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,0,2020-08-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6332,6913,GO-20209019750,THEFT UNDER,2020-08-02,2020,August,Sunday,2,215,10,2020-08-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6333,6944,GO-20209020016,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,7,2020-08-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6334,6990,GO-20209020550,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,1,2020-08-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6335,7173,GO-20209022270,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,2,2020-09-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6336,7174,GO-20209022270,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,2,2020-09-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6337,7444,GO-20209026127,THEFT UNDER,2020-09-30,2020,September,Wednesday,30,274,19,2020-10-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6338,7559,GO-20202038899,THEFT OF EBIKE UNDER $5000,2020-10-11,2020,October,Sunday,11,285,20,2020-10-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6339,7608,GO-20209029113,THEFT UNDER,2020-11-09,2020,November,Monday,9,314,15,2020-11-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6340,7624,GO-20209029360,THEFT UNDER - BICYCLE,2020-11-11,2020,November,Wednesday,11,316,0,2020-11-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6341,7754,GO-20149000818,THEFT UNDER,2014-01-27,2014,January,Monday,27,27,17,2014-01-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6342,7755,GO-20149000818,THEFT UNDER,2014-01-27,2014,January,Monday,27,27,17,2014-01-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6343,7759,GO-20141475534,THEFT UNDER,2014-02-04,2014,February,Tuesday,4,35,18,2014-02-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6344,7783,GO-20141736217,THEFT UNDER,2014-03-20,2014,March,Thursday,20,79,13,2014-03-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6345,7839,GO-20141895846,THEFT UNDER,2014-04-15,2014,April,Tuesday,15,105,11,2014-04-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6346,7949,GO-20149003474,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,18,2014-05-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6347,8023,GO-20142199558,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,13,2014-06-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6348,8035,GO-20149003773,THEFT UNDER,2014-01-03,2014,January,Friday,3,3,9,2014-06-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6349,8044,GO-20142218659,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,2,2014-06-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6350,8050,GO-20142214828,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,19,2014-06-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6351,8057,GO-20149003837,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,1,2014-06-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6352,10240,GO-20159005641,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,0,2015-08-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6353,8115,GO-20142281756,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,20,2014-06-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6354,8126,GO-20149004004,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,18,2014-06-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6355,8127,GO-20149004004,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,18,2014-06-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6356,8128,GO-20149004004,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,18,2014-06-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6357,8193,GO-20149004242,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,10,2014-06-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6358,8212,GO-20149004327,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,11,2014-06-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6359,8252,GO-20149004441,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,16,2014-06-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6360,12875,GO-20181481599,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,0,2018-08-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6361,8281,GO-20149004556,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,4,2014-06-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6362,8357,GO-20142499604,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,4,2014-07-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6363,8441,GO-20149005067,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,9,2014-07-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6364,8443,GO-20149005079,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,13,2014-07-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6365,8536,GO-20149005407,B&E,2014-07-10,2014,July,Thursday,10,191,9,2014-07-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6366,8597,GO-20149005675,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,14,2014-08-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6367,8598,GO-20149005675,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,14,2014-08-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6368,25565,GO-20189022479,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,10,2018-07-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6369,8646,GO-20142715245,THEFT UNDER,2013-12-03,2013,December,Tuesday,3,337,0,2014-08-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6370,8710,GO-20149006176,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,14,2014-08-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6371,8772,GO-20149006421,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,12,2014-08-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6372,8910,GO-20149006983,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,20,2014-09-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6373,8917,GO-20149007004,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,2,2014-09-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6374,8934,GO-20149007083,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,18,2014-09-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6375,8968,GO-20149007162,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,19,2014-09-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6376,8993,GO-20143007120,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,17,2014-09-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6377,9025,GO-20143054931,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,11,2014-10-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6378,9158,GO-20143250271,THEFT UNDER,2014-11-05,2014,November,Wednesday,5,309,15,2014-11-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6379,9257,GO-201568010,B&E,2014-12-30,2014,December,Tuesday,30,364,19,2015-01-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6380,9268,GO-20159000357,THEFT UNDER,2015-01-17,2015,January,Saturday,17,17,14,2015-01-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6381,9307,GO-2015377913,THEFT UNDER,2015-03-04,2015,March,Wednesday,4,63,20,2015-03-05,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6382,9332,GO-20159001378,THEFT UNDER,2015-03-12,2015,March,Thursday,12,71,16,2015-03-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6383,9401,GO-2015614955,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,22,2015-04-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6384,9443,GO-2015651850,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,18,2015-04-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6385,9490,GO-20159002327,THEFT UNDER,2015-04-27,2015,April,Monday,27,117,7,2015-04-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6386,9491,GO-20159002327,THEFT UNDER,2015-04-27,2015,April,Monday,27,117,7,2015-04-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6387,9554,GO-20159002546,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,1,2015-05-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6388,9636,GO-2015859318,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,0,2015-05-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6389,9639,GO-20159003021,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,21,2015-05-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6390,9690,GO-2015906276,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,20,2015-05-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6391,9709,GO-20159003272,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,9,2015-06-02,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6392,9766,GO-20159003479,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,20,2015-06-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6393,9792,GO-20159003553,B&E,2015-06-08,2015,June,Monday,8,159,21,2015-06-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6394,9842,GO-20159003803,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,15,2015-06-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6395,9982,GO-20159004390,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,22,2015-07-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6396,10004,GO-20159004523,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,20,2015-07-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6397,10005,GO-20159004523,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,20,2015-07-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6398,10118,GO-20159005066,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,7,2015-07-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6399,10423,GO-20159006857,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,12,2015-09-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6400,10432,GO-20151525816,THEFT UNDER - BICYCLE,2015-09-11,2015,September,Friday,11,254,7,2015-09-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6401,10438,GO-20151565837,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,20,2015-09-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6402,10560,GO-20159007871,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,18,2015-09-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6403,10561,GO-20159007893,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,20,2015-09-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6404,10672,GO-20151818913,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,23,2015-10-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6405,10687,GO-20151831406,THEFT UNDER,2015-10-22,2015,October,Thursday,22,295,18,2015-10-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6406,10738,GO-20151917124,THEFT UNDER,2015-11-07,2015,November,Saturday,7,311,16,2015-11-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6407,10772,GO-20159009725,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,23,2015-11-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6408,10813,GO-20159010202,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,11,2015-11-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6409,10899,GO-20159011417,THEFT UNDER,2015-12-20,2015,December,Sunday,20,354,14,2015-12-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6410,14166,GO-20179009294,THEFT UNDER - BICYCLE,2017-07-01,2017,July,Saturday,1,182,22,2017-07-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6411,16517,GO-20209023450,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,16,2020-09-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6412,25540,GO-20189016806,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,21,2018-05-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6413,14171,GO-20179010391,THEFT UNDER - BICYCLE,2017-07-09,2017,July,Sunday,9,190,15,2017-07-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6414,25541,GO-20189016806,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,21,2018-05-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6415,14172,GO-20179010391,THEFT UNDER - BICYCLE,2017-07-09,2017,July,Sunday,9,190,15,2017-07-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6416,25553,GO-20189020393,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,18,2018-06-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6417,14173,GO-20179010494,THEFT UNDER,2017-07-16,2017,July,Sunday,16,197,19,2017-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6418,25558,GO-20181223747,THEFT UNDER - BICYCLE,2018-07-03,2018,July,Tuesday,3,184,15,2018-07-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6419,14179,GO-20179012062,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,20,2017-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6420,25561,GO-20189022055,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,7,2018-07-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6421,25574,GO-20189024530,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,21,2018-07-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6422,25578,GO-20189027648,THEFT UNDER,2018-08-23,2018,August,Thursday,23,235,14,2018-08-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6423,25579,GO-20181568266,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,20,2018-08-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6424,25584,GO-20189030020,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,23,2018-09-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6425,25590,GO-20181755783,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,21,2018-09-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6426,25594,GO-20189034156,THEFT FROM MOTOR VEHICLE UNDER,2018-06-11,2018,June,Monday,11,162,1,2018-10-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6427,25595,GO-20189034733,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,1,2018-10-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6428,25598,GO-20189036005,THEFT UNDER - BICYCLE,2018-10-28,2018,October,Sunday,28,301,17,2018-10-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6429,25603,GO-20189036574,THEFT UNDER - BICYCLE,2018-11-01,2018,November,Thursday,1,305,23,2018-11-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6430,25604,GO-20189037162,THEFT UNDER,2018-11-05,2018,November,Monday,5,309,17,2018-11-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6431,25668,GO-20199029599,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,23,2019-09-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6432,25671,GO-20199030035,THEFT UNDER,2019-09-13,2019,September,Friday,13,256,17,2019-09-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6433,25714,GO-20209013981,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,0,2020-05-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6434,25715,GO-20209013981,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,0,2020-05-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6435,22259,GO-20179014837,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,9,2017-09-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6436,16729,GO-20189043026,THEFT UNDER - BICYCLE,2018-12-10,2018,December,Monday,10,344,23,2018-12-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6437,25718,GO-20209014432,THEFT UNDER,2020-06-02,2020,June,Tuesday,2,154,23,2020-06-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6438,25721,GO-20209014804,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,18,2020-06-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6439,25761,GO-20209020411,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,19,2020-08-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6440,25768,GO-20209022395,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,6,2020-09-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6441,25769,GO-20209022474,THEFT UNDER,2020-09-06,2020,September,Sunday,6,250,1,2020-09-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6442,25781,GO-20201829170,THEFT OF MOTOR VEHICLE,2020-09-26,2020,September,Saturday,26,270,13,2020-09-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6443,307,GO-2017760297,B&E,2017-04-28,2017,April,Friday,28,118,18,2017-04-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6444,333,GO-2017797659,THEFT UNDER,2017-04-29,2017,April,Saturday,29,119,17,2017-05-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6445,334,GO-2017797659,THEFT UNDER,2017-04-29,2017,April,Saturday,29,119,17,2017-05-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6446,382,GO-20179006248,B&E,2017-05-08,2017,May,Monday,8,128,22,2017-05-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6447,562,GO-20179007760,THEFT UNDER,2017-06-08,2017,June,Thursday,8,159,22,2017-06-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6448,778,GO-20171186826,THEFT UNDER,2017-07-02,2017,July,Sunday,2,183,21,2017-07-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6449,874,GO-20179010315,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,15,2017-07-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6450,939,GO-20179010736,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,16,2017-07-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6451,952,GO-20179010874,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,11,2017-07-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6452,959,GO-20179010906,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,15,2017-07-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6453,1037,GO-20179011533,THEFT UNDER,2017-08-01,2017,August,Tuesday,1,213,17,2017-08-02,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6454,1222,GO-20179013050,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,3,2017-08-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6455,1336,GO-20179014179,THEFT UNDER,2017-09-04,2017,September,Monday,4,247,21,2017-09-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6456,1442,GO-20179014866,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,13,2017-09-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6457,1564,GO-20179016220,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,0,2017-10-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6458,1580,GO-20179016345,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,7,2017-10-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6459,1623,GO-20179016836,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,20,2017-10-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6460,1626,GO-20179016845,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,22,2017-10-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6461,1669,GO-20179017342,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,18,2017-10-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6462,1835,GO-20179019521,THEFT UNDER,2017-11-11,2017,November,Saturday,11,315,21,2017-11-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6463,1905,GO-20179021077,THEFT UNDER - BICYCLE,2017-12-02,2017,December,Saturday,2,336,11,2017-12-02,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6464,1944,GO-20179022573,THEFT OF EBIKE UNDER $5000,2017-12-18,2017,December,Monday,18,352,12,2017-12-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6465,2056,GO-20189003884,THEFT UNDER - BICYCLE,2018-02-07,2018,February,Wednesday,7,38,20,2018-02-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6466,2104,GO-20189009306,THEFT UNDER - BICYCLE,2018-03-24,2018,March,Saturday,24,83,20,2018-03-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6467,2433,GO-20189016952,THEFT UNDER - BICYCLE,2018-05-29,2018,May,Tuesday,29,149,1,2018-05-31,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6468,2722,GO-20189020764,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,12,2018-06-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6469,2734,GO-20189020959,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,21,2018-07-02,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6470,2745,GO-20189021094,THEFT UNDER,2018-06-30,2018,June,Saturday,30,181,6,2018-07-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6471,2746,GO-20189021094,THEFT UNDER,2018-06-30,2018,June,Saturday,30,181,6,2018-07-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6472,2772,GO-20189021453,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,0,2018-07-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6473,2788,GO-20181254545,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,19,2018-07-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6474,2829,GO-20181280484,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,19,2018-07-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6475,2835,GO-20189022277,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,16,2018-07-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6476,2876,GO-20189022946,THEFT UNDER,2018-07-16,2018,July,Monday,16,197,3,2018-07-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6477,2925,GO-20189023475,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,23,2018-07-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6478,3044,GO-20189024746,B&E,2018-07-25,2018,July,Wednesday,25,206,9,2018-08-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6479,3214,GO-20189026501,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,19,2018-08-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6480,3336,GO-20181588743,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,5,2018-08-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6481,3432,GO-20189029800,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,19,2018-09-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6482,3453,GO-20189030190,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,7,2018-09-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6483,3581,GO-20189032454,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,18,2018-09-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6484,3609,GO-20189032784,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,11,2018-10-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6485,3628,GO-20181852675,THEFT UNDER,2018-10-07,2018,October,Sunday,7,280,9,2018-10-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6486,3629,GO-20181852675,THEFT UNDER,2018-10-07,2018,October,Sunday,7,280,9,2018-10-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6487,3630,GO-20181852675,THEFT UNDER,2018-10-07,2018,October,Sunday,7,280,9,2018-10-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6488,3631,GO-20181852675,THEFT UNDER,2018-10-07,2018,October,Sunday,7,280,9,2018-10-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6489,3672,GO-20189033740,THEFT UNDER - BICYCLE,2018-09-10,2018,September,Monday,10,253,21,2018-10-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6490,3673,GO-20189033740,THEFT UNDER - BICYCLE,2018-09-10,2018,September,Monday,10,253,21,2018-10-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6491,3689,GO-20181885781,THEFT OF EBIKE UNDER $5000,2018-10-11,2018,October,Thursday,11,284,17,2018-10-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6492,3711,GO-20189034400,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,17,2018-10-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6493,3712,GO-20189034402,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,16,2018-10-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6494,3734,GO-20189034837,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,20,2018-10-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6495,3751,GO-20189035294,THEFT UNDER,2018-10-23,2018,October,Tuesday,23,296,12,2018-10-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6496,3754,GO-20189035350,B&E,2018-10-23,2018,October,Tuesday,23,296,23,2018-10-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6497,3868,GO-20189038548,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,23,2018-11-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6498,3869,GO-20189038561,THEFT UNDER - BICYCLE,2018-11-13,2018,November,Tuesday,13,317,0,2018-11-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6499,3873,GO-20189038615,THEFT UNDER - BICYCLE,2018-11-17,2018,November,Saturday,17,321,13,2018-11-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6500,3882,GO-20189038918,THEFT UNDER - BICYCLE,2018-11-19,2018,November,Monday,19,323,19,2018-11-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6501,3894,GO-20189039576,THEFT UNDER - BICYCLE,2018-11-23,2018,November,Friday,23,327,23,2018-11-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6502,3895,GO-20189039576,THEFT UNDER - BICYCLE,2018-11-23,2018,November,Friday,23,327,23,2018-11-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6503,3918,GO-20182220665,B&E,2018-11-26,2018,November,Monday,26,330,12,2018-12-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6504,3919,GO-20182220665,B&E,2018-11-26,2018,November,Monday,26,330,12,2018-12-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6505,3921,GO-20189040709,THEFT UNDER - BICYCLE,2018-12-04,2018,December,Tuesday,4,338,10,2018-12-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6506,3937,GO-20182285125,B&E,2018-12-12,2018,December,Wednesday,12,346,23,2018-12-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6507,3938,GO-20182285125,B&E,2018-12-12,2018,December,Wednesday,12,346,23,2018-12-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6508,4032,GO-20199003720,THEFT UNDER - BICYCLE,2019-01-27,2019,January,Sunday,27,27,16,2019-01-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6509,4266,GO-20199014704,THEFT UNDER,2019-05-10,2019,May,Friday,10,130,16,2019-05-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6510,4330,GO-20199016055,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,14,2019-05-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6511,4358,GO-20199016522,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,16,2019-05-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6512,4384,GO-2019994415,B&E,2019-05-28,2019,May,Tuesday,28,148,22,2019-05-30,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6513,4385,GO-20199016971,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,8,2019-05-31,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6514,4508,GO-20199018818,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,0,2019-06-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6515,4703,GO-20199021432,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,17,2019-07-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6516,19010,GO-20161292149,B&E,2016-07-23,2016,July,Saturday,23,205,6,2016-07-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6517,14182,GO-20179013128,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,9,2017-08-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6518,19017,GO-20161407978,THEFT UNDER,2016-08-09,2016,August,Tuesday,9,222,18,2016-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6519,10993,GO-20169001456,THEFT UNDER,2016-02-15,2016,February,Monday,15,46,20,2016-02-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6520,22260,GO-20171693632,THEFT UNDER - BICYCLE,2017-09-09,2017,September,Saturday,9,252,17,2017-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6521,14188,GO-20179014312,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,0,2017-09-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6522,11041,GO-2016431529,THEFT UNDER,2016-03-12,2016,March,Saturday,12,72,12,2016-03-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6523,19028,GO-20161495696,B&E W'INTENT,2016-08-22,2016,August,Monday,22,235,18,2016-08-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6524,14196,GO-20171703924,B&E,2017-09-19,2017,September,Tuesday,19,262,22,2017-09-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6525,22261,GO-20179016304,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,10,2017-10-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6526,11076,GO-2016513331,THEFT OVER,2016-03-25,2016,March,Friday,25,85,23,2016-03-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6527,19029,GO-20169009486,THEFT UNDER,2016-08-25,2016,August,Thursday,25,238,9,2016-08-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6528,14201,GO-20179016094,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,9,2017-09-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6529,22270,GO-20172052167,B&E W'INTENT,2017-11-10,2017,November,Friday,10,314,14,2017-11-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6530,11112,GO-20169003132,THEFT UNDER,2016-04-05,2016,April,Tuesday,5,96,20,2016-04-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6531,19031,GO-20169009543,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,16,2016-08-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6532,19037,GO-20169010292,THEFT UNDER,2016-09-11,2016,September,Sunday,11,255,18,2016-09-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6533,19045,GO-20169011460,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,22,2016-10-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6534,19049,GO-20169012012,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,19,2016-10-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6535,19050,GO-20169012012,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,19,2016-10-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6536,19060,GO-20169013471,B&E,2016-11-14,2016,November,Monday,14,319,8,2016-11-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6537,19063,GO-20169014355,THEFT UNDER,2016-12-04,2016,December,Sunday,4,339,20,2016-12-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6538,19064,GO-20169014438,THEFT UNDER,2016-12-03,2016,December,Saturday,3,338,11,2016-12-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6539,19071,GO-20179002438,THEFT UNDER,2017-02-17,2017,February,Friday,17,48,16,2017-02-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6540,19079,GO-20179006247,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,19,2017-05-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6541,19083,GO-2017975096,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,0,2017-06-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6542,19097,GO-20179010038,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,13,2017-07-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6543,19099,GO-20179010416,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6544,19119,GO-20179015901,THEFT UNDER,2017-09-21,2017,September,Thursday,21,264,18,2017-09-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6545,19122,GO-20179016551,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,15,2017-10-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6546,19129,GO-20173032087,B&E,2017-11-15,2017,November,Wednesday,15,319,12,2017-11-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6547,16733,GO-20199003510,THEFT UNDER - BICYCLE,2019-01-17,2019,January,Thursday,17,17,22,2019-01-25,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6548,19131,GO-20179020292,THEFT UNDER - BICYCLE,2017-11-23,2017,November,Thursday,23,327,12,2017-11-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6549,19137,GO-20189001201,THEFT UNDER - BICYCLE,2018-01-14,2018,January,Sunday,14,14,17,2018-01-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6550,19144,GO-20189005242,THEFT UNDER,2018-02-15,2018,February,Thursday,15,46,6,2018-02-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6551,19165,GO-20189018063,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,13,2018-06-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6552,19168,GO-20189018876,THEFT UNDER,2018-06-15,2018,June,Friday,15,166,14,2018-06-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6553,19170,GO-20189020580,THEFT UNDER - BICYCLE,2018-03-01,2018,March,Thursday,1,60,0,2018-06-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6554,19188,GO-20181476945,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,11,2018-08-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6555,19193,GO-20181517208,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,12,2018-08-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6556,19198,GO-20189030147,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,9,2018-09-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6557,19206,GO-20189034117,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,10,2018-10-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6558,19211,GO-20189036812,THEFT UNDER - BICYCLE,2018-11-04,2018,November,Sunday,4,308,15,2018-11-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6559,19212,GO-20189036812,THEFT UNDER - BICYCLE,2018-11-04,2018,November,Sunday,4,308,15,2018-11-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6560,19213,GO-20182066225,THEFT UNDER - BICYCLE,2018-11-03,2018,November,Saturday,3,307,12,2018-11-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6561,19214,GO-20182066225,THEFT UNDER - BICYCLE,2018-11-03,2018,November,Saturday,3,307,12,2018-11-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6562,19230,GO-2019987769,THEFT UNDER - BICYCLE,2019-05-29,2019,May,Wednesday,29,149,16,2019-05-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6563,19232,GO-20199017326,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,21,2019-06-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6564,19237,GO-20199018086,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,10,2019-06-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6565,19240,GO-20199018244,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,4,2019-06-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6566,19247,GO-20199020861,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,6,2019-07-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6567,19259,GO-20199024818,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,0,2019-08-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6568,19260,GO-20199024893,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,9,2019-08-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6569,19261,GO-20191475414,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,22,2019-08-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6570,19270,GO-20191624388,THEFT UNDER - BICYCLE,2019-08-25,2019,August,Sunday,25,237,19,2019-08-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6571,19275,GO-20191683751,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,10,2019-09-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6572,19276,GO-20191683751,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,10,2019-09-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6573,19282,GO-20199029189,THEFT UNDER,2019-09-07,2019,September,Saturday,7,250,17,2019-09-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6574,19286,GO-20199029611,THEFT UNDER,2019-08-18,2019,August,Sunday,18,230,22,2019-09-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6575,19309,GO-20199033247,THEFT UNDER,2019-10-09,2019,October,Wednesday,9,282,15,2019-10-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6576,19316,GO-20199034155,THEFT UNDER,2019-10-16,2019,October,Wednesday,16,289,13,2019-10-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6577,19317,GO-20199034412,THEFT UNDER,2019-10-18,2019,October,Friday,18,291,9,2019-10-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6578,19349,GO-2020658934,B&E,2020-04-03,2020,April,Friday,3,94,15,2020-04-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6579,19350,GO-2020658934,B&E,2020-04-03,2020,April,Friday,3,94,15,2020-04-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6580,19351,GO-2020658934,B&E,2020-04-03,2020,April,Friday,3,94,15,2020-04-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6581,19361,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6582,19362,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6583,19363,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6584,19364,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6585,19365,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6586,19366,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6587,19367,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6588,19368,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6589,19369,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6590,19370,GO-20209013342,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,14,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6591,19373,GO-20209014296,THEFT UNDER,2020-05-29,2020,May,Friday,29,150,20,2020-05-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6592,19374,GO-20209014310,THEFT UNDER,2020-05-29,2020,May,Friday,29,150,20,2020-05-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6593,19383,GO-20201171094,B&E,2020-06-24,2020,June,Wednesday,24,176,18,2020-06-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6594,19623,GO-20149004025,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,9,2014-06-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6595,19641,GO-20149005196,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,23,2014-07-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6596,19642,GO-20149005196,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,23,2014-07-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6597,19643,GO-20149005196,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,23,2014-07-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6598,19644,GO-20149005196,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,23,2014-07-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6599,19650,GO-20149006390,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,11,2014-08-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6600,19656,GO-20142994929,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,22,2014-09-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6601,19661,GO-20143064729,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,18,2014-10-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6602,19664,GO-20149007826,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,11,2014-10-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6603,19672,GO-20159001046,THEFT UNDER,2015-02-28,2015,February,Saturday,28,59,11,2015-03-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6604,19673,GO-20159001046,THEFT UNDER,2015-02-28,2015,February,Saturday,28,59,11,2015-03-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6605,19683,GO-2015760310,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,12,2015-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6606,19694,GO-20159004047,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,9,2015-06-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6607,19699,GO-20151255901,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,10,2015-07-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6608,19710,GO-20151414532,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,23,2015-08-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6609,19722,GO-20151523112,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,20,2015-09-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6610,19730,GO-20159007350,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,19,2015-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6611,19739,GO-20159008535,THEFT UNDER,2015-10-08,2015,October,Thursday,8,281,20,2015-10-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6612,19743,GO-20159009606,THEFT UNDER,2015-11-10,2015,November,Tuesday,10,314,16,2015-11-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6613,19744,GO-20151963307,THEFT UNDER,2015-11-15,2015,November,Sunday,15,319,19,2015-11-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6614,19755,GO-2016648811,THEFT UNDER - BICYCLE,2016-04-16,2016,April,Saturday,16,107,14,2016-04-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6615,19763,GO-20169004520,THEFT UNDER,2016-05-14,2016,May,Saturday,14,135,16,2016-05-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6616,19776,GO-20169006268,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,2,2016-06-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6617,20412,GO-20151224130,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,19,2015-07-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6618,22167,GO-20169006983,THEFT UNDER,2016-07-10,2016,July,Sunday,10,192,8,2016-07-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6619,22168,GO-20169006983,THEFT UNDER,2016-07-10,2016,July,Sunday,10,192,8,2016-07-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6620,22172,GO-20161319317,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,2,2016-07-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6621,22193,GO-20169010027,B&E,2016-09-01,2016,September,Thursday,1,245,9,2016-09-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6622,22202,GO-20169011025,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,8,2016-09-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6623,22203,GO-20169011018,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,12,2016-09-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6624,22209,GO-20169012059,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,19,2016-10-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6625,22210,GO-20169012059,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,19,2016-10-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6626,22225,GO-2017927961,PROPERTY - FOUND,2017-05-24,2017,May,Wednesday,24,144,19,2017-05-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6627,14206,GO-20179016977,THEFT UNDER,2017-10-11,2017,October,Wednesday,11,284,8,2017-10-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6628,22271,GO-20172052167,B&E W'INTENT,2017-11-10,2017,November,Friday,10,314,14,2017-11-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6629,22272,GO-20179020040,THEFT UNDER - BICYCLE,2017-11-19,2017,November,Sunday,19,323,23,2017-11-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6630,22273,GO-20179020043,THEFT UNDER,2017-11-19,2017,November,Sunday,19,323,14,2017-11-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6631,22274,GO-20179020734,THEFT UNDER - BICYCLE,2017-11-05,2017,November,Sunday,5,309,6,2017-11-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6632,22286,GO-20189014071,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,1,2018-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6633,22287,GO-20189014071,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,1,2018-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6634,22298,GO-20189020082,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,10,2018-06-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6635,22299,GO-20189020468,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,11,2018-06-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6636,22300,GO-20189020940,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,16,2018-07-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6637,22302,GO-20189021337,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,7,2018-07-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6638,22310,GO-20189022396,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,13,2018-07-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6639,22330,GO-20189029537,THEFT UNDER,2018-09-07,2018,September,Friday,7,250,18,2018-09-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6640,22331,GO-20181689431,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,7,2018-09-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6641,22336,GO-20189030791,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,14,2018-09-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6642,22352,GO-20189035501,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,23,2018-10-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6643,22355,GO-20189035862,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,19,2018-10-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6644,16734,GO-20199003720,THEFT UNDER - BICYCLE,2019-01-27,2019,January,Sunday,27,27,16,2019-01-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6645,11228,GO-20169003957,THEFT UNDER - BICYCLE,2016-04-28,2016,April,Thursday,28,119,1,2016-04-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6646,22356,GO-20189036005,THEFT UNDER - BICYCLE,2018-10-28,2018,October,Sunday,28,301,17,2018-10-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6647,22359,GO-20189037627,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,13,2018-11-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6648,22361,GO-20189039144,THEFT UNDER - BICYCLE,2018-11-20,2018,November,Tuesday,20,324,18,2018-11-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6649,22362,GO-20189042435,THEFT UNDER - BICYCLE,2018-12-05,2018,December,Wednesday,5,339,9,2018-12-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6650,22366,GO-2019311238,THEFT UNDER,2019-02-12,2019,February,Tuesday,12,43,22,2019-02-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6651,22371,GO-20199013955,THEFT UNDER,2019-04-04,2019,April,Thursday,4,94,20,2019-05-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6652,22372,GO-20199013955,THEFT UNDER,2019-04-04,2019,April,Thursday,4,94,20,2019-05-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6653,22392,GO-20191272783,B&E,2019-07-08,2019,July,Monday,8,189,0,2019-07-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6654,22403,GO-20199025703,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,14,2019-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6655,22425,GO-20199032566,THEFT UNDER,2019-10-03,2019,October,Thursday,3,276,18,2019-10-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6656,22436,GO-2020214234,THEFT UNDER,2020-01-30,2020,January,Thursday,30,30,4,2020-01-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6657,22437,GO-20209004433,THEFT UNDER,2020-02-04,2020,February,Tuesday,4,35,17,2020-02-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6658,22464,GO-20209013347,THEFT UNDER,2020-05-12,2020,May,Tuesday,12,133,2,2020-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6659,22489,GO-20201189656,B&E,2020-06-27,2020,June,Saturday,27,179,21,2020-06-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6660,22490,GO-20201189656,B&E,2020-06-27,2020,June,Saturday,27,179,21,2020-06-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6661,22492,GO-20209016750,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,13,2020-07-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6662,22511,GO-20209018381,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,9,2020-07-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6663,22512,GO-20209018381,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,9,2020-07-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6664,22549,GO-20209022429,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,17,2020-09-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6665,22550,GO-20209022429,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,17,2020-09-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6666,22554,GO-20201704223,B&E,2020-09-08,2020,September,Tuesday,8,252,23,2020-09-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6667,22556,GO-20209022901,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,18,2020-09-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6668,22566,GO-20209023822,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,3,2020-09-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6669,22571,GO-20201856627,B&E,2020-09-29,2020,September,Tuesday,29,273,20,2020-09-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6670,22575,GO-20201866335,THEFT UNDER - BICYCLE,2020-09-28,2020,September,Monday,28,272,22,2020-10-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6671,22578,GO-20209025595,THEFT UNDER,2020-10-05,2020,October,Monday,5,279,21,2020-10-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6672,22596,GO-20202243957,THEFT UNDER - BICYCLE,2020-11-26,2020,November,Thursday,26,331,20,2020-11-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6673,22597,GO-20202243957,THEFT UNDER - BICYCLE,2020-11-26,2020,November,Thursday,26,331,20,2020-11-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6674,22600,GO-20202359137,B&E,2020-12-14,2020,December,Monday,14,349,23,2020-12-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6675,22601,GO-20202359137,B&E,2020-12-14,2020,December,Monday,14,349,23,2020-12-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6676,22603,GO-20209032760,THEFT UNDER,2020-12-23,2020,December,Wednesday,23,358,0,2020-12-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6677,22823,GO-20142080050,THEFT UNDER,2014-05-14,2014,May,Wednesday,14,134,7,2014-05-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6678,22825,GO-20149003459,THEFT UNDER,2014-05-17,2014,May,Saturday,17,137,0,2014-05-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6679,22841,GO-20149004121,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,17,2014-06-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6680,22843,GO-20149004261,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,3,2014-06-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6681,22860,GO-20149005733,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,12,2014-08-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6682,22876,GO-20143008954,THEFT UNDER,2014-09-29,2014,September,Monday,29,272,14,2014-09-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6683,22880,GO-20143071765,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,0,2014-10-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6684,22883,GO-20149007799,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,12,2014-10-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6685,22899,GO-20159002862,THEFT UNDER,2015-05-15,2015,May,Friday,15,135,20,2015-05-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6686,22905,GO-20159003523,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,12,2015-06-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6687,22920,GO-20151414061,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,21,2015-08-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6688,22921,GO-20159006158,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,20,2015-08-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6689,22922,GO-20159006333,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,22,2015-08-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6690,22931,GO-20159007159,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,14,2015-09-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6691,22953,GO-20159011254,THEFT UNDER,2015-12-23,2015,December,Wednesday,23,357,21,2015-12-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6692,22964,GO-2016466697,B&E,2016-03-17,2016,March,Thursday,17,77,14,2016-03-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6693,22968,GO-2016704074,ASSAULT,2016-04-25,2016,April,Monday,25,116,10,2016-04-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6694,22971,GO-2016784957,THEFT UNDER - BICYCLE,2016-05-07,2016,May,Saturday,7,128,12,2016-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6695,22977,GO-20161084036,B&E,2016-06-21,2016,June,Tuesday,21,173,5,2016-06-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6696,22988,GO-20161356186,THEFT UNDER - BICYCLE,2016-07-29,2016,July,Friday,29,211,13,2016-08-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6697,22993,GO-20161443549,B&E W'INTENT,2016-08-14,2016,August,Sunday,14,227,23,2016-08-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6698,23269,GO-20199019196,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,15,2019-06-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6699,23873,GO-20149003131,THEFT UNDER,2014-05-03,2014,May,Saturday,3,123,12,2014-05-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6700,25387,GO-20169010027,B&E,2016-09-01,2016,September,Thursday,1,245,9,2016-09-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6701,25403,GO-20161904167,FTC PROBATION ORDER,2016-10-26,2016,October,Wednesday,26,300,12,2016-10-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6702,25404,GO-20161904167,FTC PROBATION ORDER,2016-10-26,2016,October,Wednesday,26,300,12,2016-10-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6703,25413,GO-20162049063,THEFT UNDER - BICYCLE,2016-11-17,2016,November,Thursday,17,322,14,2016-11-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6704,25424,GO-20179001256,THEFT UNDER - BICYCLE,2017-01-23,2017,January,Monday,23,23,23,2017-01-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6705,25445,GO-2017956622,THEFT UNDER - BICYCLE,2017-05-29,2017,May,Monday,29,149,17,2017-05-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6706,25446,GO-20179007330,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,8,2017-06-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6707,25450,GO-20179008332,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,9,2017-06-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6708,25451,GO-20171081715,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,12,2017-06-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6709,25454,GO-20179009329,THEFT UNDER - BICYCLE,2017-05-26,2017,May,Friday,26,146,9,2017-07-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6710,25455,GO-20179009329,THEFT UNDER - BICYCLE,2017-05-26,2017,May,Friday,26,146,9,2017-07-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6711,25460,GO-20179010202,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,18,2017-07-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6712,25467,GO-20179010662,THEFT UNDER,2017-07-17,2017,July,Monday,17,198,14,2017-07-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6713,25485,GO-20179015332,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,12,2017-09-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6714,25494,GO-20179017683,THEFT UNDER,2017-10-19,2017,October,Thursday,19,292,9,2017-10-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6715,25501,GO-20179019173,THEFT UNDER,2017-11-07,2017,November,Tuesday,7,311,1,2017-11-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6716,25504,GO-20179020036,THEFT UNDER - BICYCLE,2017-11-19,2017,November,Sunday,19,323,23,2017-11-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6717,25505,GO-20179020210,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,18,2017-11-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6718,25506,GO-20179020210,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,18,2017-11-21,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6719,25513,GO-20179021224,THEFT UNDER - BICYCLE,2017-12-02,2017,December,Saturday,2,336,0,2017-12-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6720,25518,GO-20189002458,THEFT UNDER - BICYCLE,2018-01-25,2018,January,Thursday,25,25,0,2018-01-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6721,25520,GO-20189005043,FTC PROBATION ORDER,2018-02-16,2018,February,Friday,16,47,6,2018-02-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6722,25528,GO-20189012473,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,2,2018-04-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6723,25529,GO-20189012523,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,12,2018-04-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6724,14208,GO-20171886110,PROPERTY - FOUND,2017-10-18,2017,October,Wednesday,18,291,10,2017-10-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6725,11278,GO-20169004303,THEFT UNDER,2016-05-07,2016,May,Saturday,7,128,1,2016-05-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6726,16753,GO-20199015350,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,16,2019-05-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6727,11308,GO-20169004544,THEFT UNDER,2016-05-14,2016,May,Saturday,14,135,2,2016-05-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6728,11310,GO-20169004545,THEFT UNDER - BICYCLE,2016-05-14,2016,May,Saturday,14,135,1,2016-05-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6729,11322,GO-2016850224,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,13,2016-05-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6730,11326,GO-2016825332,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,18,2016-05-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6731,11375,GO-20169004956,THEFT OVER - BICYCLE,2016-04-28,2016,April,Thursday,28,119,16,2016-05-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6732,11424,GO-20169005220,THEFT UNDER,2016-05-26,2016,May,Thursday,26,147,23,2016-06-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6733,11483,GO-2016997405,THEFT UNDER,2016-06-08,2016,June,Wednesday,8,160,13,2016-06-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6734,11555,GO-20169005834,THEFT UNDER,2016-06-01,2016,June,Wednesday,1,153,14,2016-06-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6735,11562,GO-20161048947,THEFT OF EBIKE UNDER $5000,2016-06-13,2016,June,Monday,13,165,21,2016-06-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6736,11566,GO-20169005927,THEFT UNDER,2016-06-16,2016,June,Thursday,16,168,23,2016-06-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6737,11658,GO-20169006490,THEFT UNDER,2016-06-28,2016,June,Tuesday,28,180,16,2016-06-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6738,11660,GO-20169006501,THEFT UNDER,2016-06-28,2016,June,Tuesday,28,180,13,2016-06-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6739,11666,GO-20161140125,THEFT UNDER,2016-06-29,2016,June,Wednesday,29,181,16,2016-06-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6740,11727,GO-20169006800,THEFT UNDER - BICYCLE,2016-06-29,2016,June,Wednesday,29,181,22,2016-07-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6741,11768,GO-20169007031,THEFT UNDER,2016-06-27,2016,June,Monday,27,179,13,2016-07-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6742,11790,GO-20169007130,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,12,2016-07-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6743,11800,GO-20161213073,THEFT FROM MOTOR VEHICLE OVER,2016-07-10,2016,July,Sunday,10,192,17,2016-07-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6744,11886,GO-20169007669,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,23,2016-07-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6745,11929,GO-20161213073,THEFT FROM MOTOR VEHICLE OVER,2016-07-10,2016,July,Sunday,10,192,17,2016-07-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6746,12006,GO-20169008265,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,23,2016-08-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6747,12007,GO-20169008265,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,23,2016-08-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6748,5648,GO-20192076067,PROPERTY - FOUND,2019-10-27,2019,October,Sunday,27,300,15,2019-10-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6749,12026,GO-20169008399,THEFT UNDER,2016-08-06,2016,August,Saturday,6,219,16,2016-08-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6750,12094,GO-20169008759,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,14,2016-08-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6751,12175,GO-20169009254,B&E,2016-08-21,2016,August,Sunday,21,234,3,2016-08-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6752,12277,GO-20161586395,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6753,12333,GO-20161626585,B&E,2016-09-12,2016,September,Monday,12,256,10,2016-09-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6754,12337,GO-20169010404,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,20,2016-09-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6755,12375,GO-20169010622,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,10,2016-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6756,12376,GO-20169010622,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,10,2016-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6757,12394,GO-20169010622,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,10,2016-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6758,12395,GO-20169010622,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,10,2016-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6759,12408,GO-20169010781,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,1,2016-09-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6760,12409,GO-20169010781,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,1,2016-09-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6761,12445,GO-20169011025,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,8,2016-09-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6762,12453,GO-20169011097,THEFT UNDER,2016-09-25,2016,September,Sunday,25,269,18,2016-09-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6763,12457,GO-20169011111,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,10,2016-09-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6764,12528,GO-20169011435,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,7,2016-10-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6765,12566,GO-20169011662,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,3,2016-10-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6766,12575,GO-20169011704,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,18,2016-10-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6767,12627,GO-20161773982,B&E W'INTENT,2016-10-04,2016,October,Tuesday,4,278,23,2016-10-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6768,12632,GO-20169012196,THEFT UNDER,2016-10-17,2016,October,Monday,17,291,9,2016-10-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6769,12636,GO-20161854436,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,15,2016-10-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6770,12648,GO-20161864814,B&E,2016-10-20,2016,October,Thursday,20,294,1,2016-10-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6771,12689,GO-20161911484,THEFT OF EBIKE UNDER $5000,2016-10-23,2016,October,Sunday,23,297,23,2016-10-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6772,12767,GO-20169013458,THEFT UNDER,2016-11-14,2016,November,Monday,14,319,6,2016-11-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6773,12797,GO-20162061255,B&E,2016-11-20,2016,November,Sunday,20,325,0,2016-11-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6774,12823,GO-20169013832,THEFT UNDER - BICYCLE,2016-11-24,2016,November,Thursday,24,329,20,2016-11-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6775,12827,GO-20169013881,THEFT UNDER - BICYCLE,2016-11-24,2016,November,Thursday,24,329,23,2016-11-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6776,12842,GO-20162149409,B&E,2016-10-28,2016,October,Friday,28,302,23,2016-12-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6777,12846,GO-20169014191,THEFT UNDER,2016-12-02,2016,December,Friday,2,337,23,2016-12-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6778,12854,GO-20162181083,B&E W'INTENT,2016-12-08,2016,December,Thursday,8,343,16,2016-12-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6779,12855,GO-20162181083,B&E W'INTENT,2016-12-08,2016,December,Thursday,8,343,16,2016-12-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6780,12872,GO-20189025200,THEFT UNDER,2018-08-05,2018,August,Sunday,5,217,6,2018-08-05,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6781,12876,GO-20189025937,THEFT UNDER,2018-08-09,2018,August,Thursday,9,221,21,2018-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6782,12902,GO-20189035140,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,11,2018-10-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6783,12903,GO-20189035140,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,11,2018-10-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6784,12906,GO-20189036764,THEFT UNDER - BICYCLE,2018-11-02,2018,November,Friday,2,306,12,2018-11-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6785,12917,GO-20199000152,THEFT UNDER - BICYCLE,2018-12-20,2018,December,Thursday,20,354,16,2019-01-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6786,12952,GO-20199022891,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,3,2019-07-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6787,12962,GO-20199025209,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,9,2019-08-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6788,12963,GO-20199025254,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,0,2019-08-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6789,12968,GO-20191585322,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,19,2019-08-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6790,12969,GO-20199027648,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,19,2019-08-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6791,12974,GO-20199028088,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,6,2019-08-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6792,12982,GO-20199030502,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,23,2019-09-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6793,12984,GO-20199031214,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,17,2019-09-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6794,12986,GO-20199031744,INVALID GO - RMS ONLY,2019-09-25,2019,September,Wednesday,25,268,21,2019-09-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6795,12988,GO-20199032425,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,17,2019-10-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6796,12992,GO-20199033247,THEFT UNDER,2019-10-09,2019,October,Wednesday,9,282,15,2019-10-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6797,13005,GO-20192159186,THEFT UNDER,2019-11-02,2019,November,Saturday,2,306,2,2019-11-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6798,13020,GO-20209005806,THEFT UNDER,2020-02-17,2020,February,Monday,17,48,21,2020-02-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6799,13021,GO-20209005806,THEFT UNDER,2020-02-17,2020,February,Monday,17,48,21,2020-02-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6800,13046,GO-20201081158,THEFT OF EBIKE UNDER $5000,2020-06-11,2020,June,Thursday,11,163,20,2020-06-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6801,13056,GO-20209016420,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,10,2020-06-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6802,13469,GO-2019370588,THEFT OVER,2018-11-18,2018,November,Sunday,18,322,10,2019-02-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6803,13781,GO-20189021995,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,22,2018-07-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6804,14068,GO-20169005959,THEFT UNDER,2016-06-16,2016,June,Thursday,16,168,16,2016-06-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6805,14070,GO-20161060851,B&E,2016-06-17,2016,June,Friday,17,169,14,2016-06-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6806,14073,GO-20169006318,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,19,2016-06-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6807,14077,GO-20169007095,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,0,2016-07-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6808,14080,GO-20169007525,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,4,2016-07-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6809,14091,GO-20169008563,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,1,2016-08-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6810,14116,GO-20161856147,THEFT OF EBIKE UNDER $5000,2016-10-18,2016,October,Tuesday,18,292,18,2016-10-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6811,14119,GO-20169013156,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,19,2016-11-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6812,14132,GO-20162137499,THEFT UNDER - BICYCLE,2016-12-01,2016,December,Thursday,1,336,9,2016-12-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6813,14133,GO-20162137499,THEFT UNDER - BICYCLE,2016-12-01,2016,December,Thursday,1,336,9,2016-12-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6814,14134,GO-20169014143,THEFT UNDER,2016-11-13,2016,November,Sunday,13,318,15,2016-12-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6815,14151,GO-20179005510,THEFT UNDER - BICYCLE,2017-04-30,2017,April,Sunday,30,120,13,2017-05-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6816,14156,GO-20179006838,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,8,2017-05-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6817,14158,GO-20179006900,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,0,2017-05-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6818,14159,GO-20179007052,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,14,2017-05-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6819,14161,GO-20179007815,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,20,2017-06-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6820,14214,GO-20179019939,THEFT UNDER - BICYCLE,2017-11-17,2017,November,Friday,17,321,12,2017-11-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6821,14215,GO-20179019939,THEFT UNDER - BICYCLE,2017-11-17,2017,November,Friday,17,321,12,2017-11-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6822,14217,GO-20179020456,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,12,2017-11-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6823,14220,GO-2018455329,THEFT UNDER - BICYCLE,2018-03-12,2018,March,Monday,12,71,2,2018-03-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6824,14221,GO-2018507607,THEFT UNDER - BICYCLE,2018-03-20,2018,March,Tuesday,20,79,7,2018-03-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6825,14229,GO-20189012012,THEFT UNDER - BICYCLE,2018-04-16,2018,April,Monday,16,106,18,2018-04-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6826,14238,GO-20189016805,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,8,2018-05-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6827,14242,GO-20189018380,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,16,2018-06-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6828,14246,GO-20189020332,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,22,2018-06-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6829,15871,GO-20142247981,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,7,2014-06-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6830,15878,GO-20142373670,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,20,2014-06-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6831,15879,GO-20142365653,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,21,2014-06-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6832,15889,GO-20142535648,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,15,2014-07-20,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6833,15906,GO-20142926127,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,16,2014-09-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6834,15909,GO-20143003925,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,21,2014-09-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6835,15912,GO-20143097218,THEFT UNDER,2014-10-13,2014,October,Monday,13,286,16,2014-10-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6836,15917,GO-20149007873,THEFT UNDER,2014-10-26,2014,October,Sunday,26,299,0,2014-10-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6837,15923,GO-20143461703,THEFT UNDER,2014-12-08,2014,December,Monday,8,342,23,2014-12-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6838,15926,GO-20142807873,THEFT UNDER,2014-08-30,2014,August,Saturday,30,242,17,2014-09-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6839,15930,GO-20159002183,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,8,2015-04-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6840,15936,GO-20159002585,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,18,2015-05-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6841,15940,GO-20159002914,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,17,2015-05-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6842,15946,GO-2015979418,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,12,2015-06-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6843,15948,GO-20151003354,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,23,2015-06-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6844,15949,GO-20151047536,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,6,2015-06-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6845,15965,GO-20159005561,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,22,2015-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6846,15973,GO-20159006368,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,18,2015-08-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6847,15976,GO-20151512811,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,18,2015-09-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6848,15980,GO-20159007237,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,6,2015-09-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6849,15994,GO-20151930752,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,23,2015-11-11,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6850,15998,GO-20159010360,THEFT UNDER,2015-11-29,2015,November,Sunday,29,333,17,2015-11-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6851,16008,GO-2016466697,B&E,2016-03-17,2016,March,Thursday,17,77,14,2016-03-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6852,16009,GO-2016466697,B&E,2016-03-17,2016,March,Thursday,17,77,14,2016-03-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6853,16010,GO-2016466697,B&E,2016-03-17,2016,March,Thursday,17,77,14,2016-03-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6854,16015,GO-2016812634,THEFT UNDER - BICYCLE,2016-05-09,2016,May,Monday,9,130,19,2016-05-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6855,16017,GO-2016841367,MISCHIEF UNDER,2016-05-15,2016,May,Sunday,15,136,22,2016-05-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6856,16018,GO-2016841367,MISCHIEF UNDER,2016-05-15,2016,May,Sunday,15,136,22,2016-05-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6857,16032,GO-20201277275,B&E,2019-08-28,2019,August,Wednesday,28,240,6,2020-07-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6858,16033,GO-20201277275,B&E,2019-08-28,2019,August,Wednesday,28,240,6,2020-07-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6859,16044,GO-20209017855,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,23,2020-07-18,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6860,16048,GO-20201361305,THEFT FROM MOTOR VEHICLE UNDER,2020-07-21,2020,July,Tuesday,21,203,23,2020-07-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6861,16049,GO-20201361305,THEFT FROM MOTOR VEHICLE UNDER,2020-07-21,2020,July,Tuesday,21,203,23,2020-07-22,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6862,16053,GO-20209018698,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,22,2020-07-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6863,16057,GO-20209020223,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,17,2020-08-14,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6864,16101,GO-20209028235,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,15,2020-11-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6865,16109,GO-20202312487,THEFT UNDER - BICYCLE,2020-12-04,2020,December,Friday,4,339,7,2020-12-08,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6866,16113,GO-20202421582,THEFT UNDER - BICYCLE,2020-12-22,2020,December,Tuesday,22,357,11,2020-12-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6867,16114,GO-20202421582,THEFT UNDER - BICYCLE,2020-12-22,2020,December,Tuesday,22,357,11,2020-12-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6868,16115,GO-20202421582,THEFT UNDER - BICYCLE,2020-12-22,2020,December,Tuesday,22,357,11,2020-12-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6869,18706,GO-20201272967,THEFT UNDER,2020-07-08,2020,July,Wednesday,8,190,9,2020-07-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6870,18716,GO-20209018649,THEFT UNDER,2020-07-12,2020,July,Sunday,12,194,2,2020-07-27,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6871,18719,GO-20209018916,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,17,2020-07-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6872,18720,GO-20209018916,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,17,2020-07-29,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6873,18729,GO-20209019813,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,1,2020-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6874,18730,GO-20209019813,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,1,2020-08-10,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6875,18737,GO-20201539983,THEFT UNDER - BICYCLE,2020-08-16,2020,August,Sunday,16,229,18,2020-08-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6876,18745,GO-20209021195,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,22,2020-08-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6877,18746,GO-20201599836,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,19,2020-08-25,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6878,18752,GO-20209021839,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,21,2020-08-31,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6879,18755,GO-20201695140,THEFT OF EBIKE UNDER $5000,2020-09-07,2020,September,Monday,7,251,20,2020-09-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6880,18758,GO-20201726795,B&E W'INTENT,2020-09-08,2020,September,Tuesday,8,252,0,2020-09-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6881,18825,GO-20141298500,THEFT UNDER,2013-11-22,2013,November,Friday,22,326,8,2014-01-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6882,18843,GO-20149004614,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,10,2014-07-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6883,18857,GO-20142873214,B&E,2014-09-04,2014,September,Thursday,4,247,18,2014-09-09,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6884,18869,GO-20143100951,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,20,2014-09-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6885,18879,GO-2015493896,THEFT UNDER,2015-03-24,2015,March,Tuesday,24,83,13,2015-03-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6886,18885,GO-20159002527,THEFT UNDER,2015-01-26,2015,January,Monday,26,26,16,2015-05-07,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6887,18887,GO-20159002798,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,14,2015-05-16,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6888,18905,GO-20159004053,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,0,2015-06-30,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6889,18906,GO-20151135067,MISCHIEF UNDER,2015-07-05,2015,July,Sunday,5,186,19,2015-07-06,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6890,18924,GO-20151469351,THEFT OVER,2015-08-26,2015,August,Wednesday,26,238,12,2015-08-26,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6891,18927,GO-20151513805,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,11,2015-09-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6892,18932,GO-20159006604,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,19,2015-09-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6893,18944,GO-20151697302,THEFT UNDER,2015-10-01,2015,October,Thursday,1,274,7,2015-10-01,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6894,18952,GO-20159009372,THEFT UNDER,2015-11-04,2015,November,Wednesday,4,308,15,2015-11-04,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6895,18954,GO-20152070618,THEFT UNDER,2015-11-28,2015,November,Saturday,28,332,15,2015-12-03,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6896,18956,GO-20159010874,THEFT UNDER,2015-12-13,2015,December,Sunday,13,347,15,2015-12-13,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6897,18967,GO-20169003915,THEFT UNDER - BICYCLE,2016-04-28,2016,April,Thursday,28,119,15,2016-04-28,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6898,18970,GO-20169004058,THEFT UNDER - BICYCLE,2016-05-01,2016,May,Sunday,1,122,14,2016-05-02,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6899,18976,GO-2016811095,THEFT UNDER,2016-05-11,2016,May,Wednesday,11,132,12,2016-05-12,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6900,18978,GO-2016846218,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,8,2016-05-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6901,18979,GO-2016849844,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,15,2016-05-17,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6902,18980,GO-2016862375,B&E W'INTENT,2015-05-10,2015,May,Sunday,10,130,20,2016-05-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6903,18981,GO-2016862375,B&E W'INTENT,2015-05-10,2015,May,Sunday,10,130,20,2016-05-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6904,18982,GO-2016894661,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,22,2016-05-24,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6905,18989,GO-20169005834,THEFT UNDER,2016-06-01,2016,June,Wednesday,1,153,14,2016-06-15,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6906,18992,GO-20169006014,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,9,2016-06-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6907,19005,GO-20169007426,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,17,2016-07-19,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6908,19009,GO-20161292149,B&E,2016-07-23,2016,July,Saturday,23,205,6,2016-07-23,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)}",South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -6909,16769,GO-20199018586,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,13,2019-06-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6910,16914,GO-20179006205,THEFT UNDER,2017-05-12,2017,May,Friday,12,132,14,2017-05-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6911,16931,GO-20179008156,THEFT OF EBIKE UNDER $5000,2017-06-15,2017,June,Thursday,15,166,13,2017-06-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6912,16943,GO-20179009630,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,10,2017-07-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6913,16974,GO-20179014114,THEFT UNDER,2017-09-05,2017,September,Tuesday,5,248,17,2017-09-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6914,16978,GO-20179014372,THEFT UNDER,2017-09-09,2017,September,Saturday,9,252,21,2017-09-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6915,17014,GO-20179022305,THEFT UNDER - BICYCLE,2017-12-15,2017,December,Friday,15,349,17,2017-12-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6916,5858,GO-20209003455,THEFT UNDER,2020-01-28,2020,January,Tuesday,28,28,18,2020-01-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6917,17017,GO-20189003884,THEFT UNDER - BICYCLE,2018-02-07,2018,February,Wednesday,7,38,20,2018-02-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6918,17032,GO-20189015709,THEFT UNDER,2018-05-18,2018,May,Friday,18,138,17,2018-05-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6919,17042,GO-20181011032,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,16,2018-06-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6920,17060,GO-20181186069,PROPERTY - FOUND,2018-06-29,2018,June,Friday,29,180,22,2018-06-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6921,17073,GO-20189023601,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,15,2018-07-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6922,17081,GO-20189024668,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,22,2018-07-31,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6923,17089,GO-20189026479,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,3,2018-08-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6924,17091,GO-20181530737,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,8,2018-08-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6925,17104,GO-20181727700,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,5,2018-09-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6926,17109,GO-20181324153,B&E,2018-07-20,2018,July,Friday,20,201,0,2018-07-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6927,17113,GO-20181954152,PROPERTY - FOUND,2018-10-23,2018,October,Tuesday,23,296,7,2018-10-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6928,17114,GO-20181954152,PROPERTY - FOUND,2018-10-23,2018,October,Tuesday,23,296,7,2018-10-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6929,17117,GO-20159002206,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,16,2015-04-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6930,17121,GO-20159002439,THEFT UNDER,2015-04-27,2015,April,Monday,27,117,10,2015-05-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6931,9049,GO-20143096408,THEFT UNDER,2014-10-12,2014,October,Sunday,12,285,13,2014-10-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6932,17123,GO-2015759341,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,0,2015-05-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6933,17129,GO-20159002813,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,1,2015-05-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6934,17132,GO-20159003036,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,20,2015-05-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6935,17139,GO-20151014007,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,17,2015-06-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6936,17145,GO-20151142967,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,0,2015-07-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6937,17149,GO-20159004444,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,12,2015-07-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6938,17232,GO-20161047513,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,8,2016-06-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6939,9458,GO-20159002143,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,20,2015-04-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6940,17235,GO-20169006236,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,0,2016-06-23,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6941,17238,GO-20169006410,THEFT FROM MOTOR VEHICLE UNDER,2016-06-27,2016,June,Monday,27,179,10,2016-06-27,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6942,17246,GO-20169007076,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,23,2016-07-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6943,17254,GO-20161410168,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,10,2016-08-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6944,17264,GO-20169009805,THEFT UNDER,2016-09-01,2016,September,Thursday,1,245,1,2016-09-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6945,17268,GO-20169010351,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,1,2016-09-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6946,17277,GO-20169011406,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,8,2016-10-01,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6947,17306,GO-2017667768,ROBBERY - OTHER,2017-04-15,2017,April,Saturday,15,105,21,2017-04-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6948,17420,GO-20141404003,THEFT UNDER,2014-01-05,2014,January,Sunday,5,5,12,2014-01-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6949,17425,GO-20141828757,THEFT UNDER,2014-04-04,2014,April,Friday,4,94,6,2014-04-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6950,17437,GO-20142304450,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,18,2014-06-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6951,17439,GO-20149004180,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,18,2014-06-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6952,18803,GO-20209024982,THEFT UNDER - BICYCLE,2020-09-28,2020,September,Monday,28,272,8,2020-09-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6953,18817,GO-20201987921,THEFT UNDER - BICYCLE,2020-10-07,2020,October,Wednesday,7,281,5,2020-10-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6954,18818,GO-20209027247,THEFT UNDER - BICYCLE,2020-10-05,2020,October,Monday,5,279,17,2020-10-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6955,18821,GO-20209029465,THEFT UNDER,2020-11-12,2020,November,Thursday,12,317,19,2020-11-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6956,19607,GO-20209030181,THEFT UNDER,2020-11-20,2020,November,Friday,20,325,13,2020-11-20,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6957,19999,GO-20189038561,THEFT UNDER - BICYCLE,2018-11-13,2018,November,Tuesday,13,317,0,2018-11-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6958,20004,GO-20182315724,B&E,2018-12-18,2018,December,Tuesday,18,352,8,2018-12-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6959,20005,GO-20182315724,B&E,2018-12-18,2018,December,Tuesday,18,352,8,2018-12-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6960,20006,GO-20182315724,B&E,2018-12-18,2018,December,Tuesday,18,352,8,2018-12-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6961,6574,GO-20209017221,THEFT UNDER,2020-07-08,2020,July,Wednesday,8,190,18,2020-07-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6962,20008,GO-20199000817,THEFT UNDER - BICYCLE,2019-01-05,2019,January,Saturday,5,5,9,2019-01-08,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6963,20010,GO-20199001689,THEFT UNDER - BICYCLE,2018-12-02,2018,December,Sunday,2,336,10,2019-01-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6964,20019,GO-20199010525,THEFT UNDER,2019-03-27,2019,March,Wednesday,27,86,23,2019-04-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6965,20026,GO-20199014196,THEFT UNDER,2019-05-04,2019,May,Saturday,4,124,19,2019-05-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6966,20031,GO-20199016207,B&E,2019-05-17,2019,May,Friday,17,137,11,2019-05-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6967,20038,GO-20199018854,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,1,2019-06-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6968,20049,GO-20191243040,PROPERTY - FOUND,2019-06-27,2019,June,Thursday,27,178,0,2019-07-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6969,5638,GO-20199036319,THEFT UNDER,2019-11-03,2019,November,Sunday,3,307,14,2019-11-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6970,20182,GO-20179007960,THEFT UNDER,2017-06-09,2017,June,Friday,9,160,17,2017-06-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6971,20183,GO-20171044624,THEFT UNDER,2017-06-12,2017,June,Monday,12,163,1,2017-06-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6972,20198,GO-20179009598,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,22,2017-07-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6973,20215,GO-20179011820,THEFT UNDER,2017-08-06,2017,August,Sunday,6,218,19,2017-08-06,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6974,20227,GO-20179012794,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,21,2017-08-19,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6975,20241,GO-20179015380,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,22,2017-09-21,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6976,20247,GO-20179016005,THEFT UNDER,2017-09-28,2017,September,Thursday,28,271,1,2017-09-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6977,8689,GO-20149006081,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,16,2014-08-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -6978,20249,GO-20179016387,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,14,2017-10-03,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6979,20259,GO-20179017333,THEFT UNDER,2017-10-15,2017,October,Sunday,15,288,21,2017-10-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6980,20273,GO-20179019454,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,18,2017-11-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6981,20280,GO-20179021247,THEFT UNDER - BICYCLE,2017-12-03,2017,December,Sunday,3,337,13,2017-12-04,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6982,20324,GO-20189020635,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,21,2018-06-28,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6983,20327,GO-20189021862,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,11,2018-07-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6984,20328,GO-20189021947,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,13,2018-07-10,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6985,20330,GO-20189022149,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,17,2018-07-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6986,20341,GO-20181399614,B&E,2018-07-29,2018,July,Sunday,29,210,22,2018-07-31,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6987,20343,GO-20189025666,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,0,2018-08-09,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6988,20344,GO-20189026016,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,19,2018-08-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6989,20351,GO-20181509696,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6990,20352,GO-20181509696,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6991,20353,GO-20181509696,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-16,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6992,20399,GO-20151097029,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,10,2015-06-29,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6993,20405,GO-20159004440,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,12,2015-07-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6994,20445,GO-20151755955,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,16,2015-10-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6995,20446,GO-20159008468,THEFT UNDER,2015-10-12,2015,October,Monday,12,285,18,2015-10-12,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6996,20447,GO-20159008553,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,1,2015-10-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6997,20462,GO-20152006596,THEFT UNDER,2015-11-22,2015,November,Sunday,22,326,16,2015-11-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6998,20467,GO-20169000242,THEFT UNDER,2016-01-07,2016,January,Thursday,7,7,8,2016-01-07,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -6999,9043,GO-20149007527,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,8,2014-10-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7000,20468,GO-20169000582,THEFT UNDER,2016-01-15,2016,January,Friday,15,15,20,2016-01-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7001,20474,GO-20169001535,THEFT UNDER,2015-01-18,2015,January,Sunday,18,18,11,2016-02-18,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7002,20534,GO-20161635284,THEFT UNDER - BICYCLE,2016-09-14,2016,September,Wednesday,14,258,8,2016-09-14,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7003,20537,GO-20169010936,B&E,2016-09-15,2016,September,Thursday,15,259,18,2016-09-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7004,20553,GO-20169013435,B&E,2016-11-13,2016,November,Sunday,13,318,17,2016-11-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7005,20627,GO-20191600919,B&E,2019-08-20,2019,August,Tuesday,20,232,23,2019-08-22,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7006,20638,GO-20199029544,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,20,2019-09-11,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7007,20643,GO-20199030135,THEFT UNDER,2019-09-11,2019,September,Wednesday,11,254,8,2019-09-15,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7008,20644,GO-20199030319,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,0,2019-09-17,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7009,20665,GO-20199035104,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,0,2019-10-24,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7010,20690,GO-202086324,THEFT UNDER,2019-01-13,2019,January,Sunday,13,13,5,2020-01-13,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)}",Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -7011,8521,GO-20149005361,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,22,2014-07-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7012,8562,GO-20149005527,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,21,2014-08-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7013,8621,GO-20149005735,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,11,2014-08-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7014,8672,GO-20149005987,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,23,2014-08-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7015,8716,GO-20149006188,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,15,2014-08-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7016,8764,GO-20149006372,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,14,2014-08-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7017,8865,GO-20149006769,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,9,2014-09-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7018,8916,GO-20149007001,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,18,2014-09-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7019,9014,GO-20143035054,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,22,2014-10-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7020,9016,GO-20149007389,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,22,2014-10-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7021,9026,GO-20143055341,THEFT UNDER,2014-09-27,2014,September,Saturday,27,270,15,2014-10-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7022,9033,GO-20143060982,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,13,2014-10-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7023,9091,GO-20143134483,B&E,2014-10-18,2014,October,Saturday,18,291,14,2014-10-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7024,9092,GO-20143134483,B&E,2014-10-18,2014,October,Saturday,18,291,14,2014-10-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7025,9107,GO-20149007791,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,11,2014-10-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7026,9120,GO-20149007842,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,12,2014-10-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7027,9170,GO-20143282179,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,14,2014-11-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7028,9207,GO-20149008462,THEFT UNDER,2014-11-29,2014,November,Saturday,29,333,13,2014-11-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7029,9225,GO-20149008684,THEFT UNDER,2014-12-10,2014,December,Wednesday,10,344,17,2014-12-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7030,9234,GO-20149008804,THEFT UNDER,2014-12-16,2014,December,Tuesday,16,350,18,2014-12-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7031,9235,GO-20179003637,THEFT UNDER,2017-03-20,2017,March,Monday,20,79,23,2017-03-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7032,9288,GO-2015233526,THEFT UNDER,2015-02-04,2015,February,Wednesday,4,35,10,2015-02-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7033,9310,GO-20159001114,THEFT UNDER,2015-03-05,2015,March,Thursday,5,64,21,2015-03-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7034,9388,GO-2015593110,THEFT UNDER,2015-04-09,2015,April,Thursday,9,99,15,2015-04-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7035,17317,GO-2017834023,FIRE - DETERMINED,2017-05-12,2017,May,Friday,12,132,3,2017-05-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7036,9427,GO-2015642856,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,22,2015-04-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7037,9452,GO-2015664919,B&E,2015-04-22,2015,April,Wednesday,22,112,10,2015-04-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7038,9453,GO-2015664919,B&E,2015-04-22,2015,April,Wednesday,22,112,10,2015-04-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7039,9472,GO-2015684918,THEFT FROM MOTOR VEHICLE OVER,2015-04-25,2015,April,Saturday,25,115,9,2015-04-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7040,9475,GO-20159002260,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,17,2015-04-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7041,9496,GO-20159002354,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,4,2015-04-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7042,9503,GO-20159002375,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,16,2015-05-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7043,9668,GO-20159003143,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,12,2015-05-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7044,9671,GO-2015882542,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,23,2015-05-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7045,9672,GO-2015882542,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,23,2015-05-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7046,9677,GO-2015891343,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,17,2015-05-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7047,9696,GO-2015914867,B&E W'INTENT,2015-04-27,2015,April,Monday,27,117,23,2015-06-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7048,9715,GO-2015934272,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,10,2015-06-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7049,9785,GO-2015897862,PROPERTY - LOST,2015-05-29,2015,May,Friday,29,149,14,2015-06-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7050,9810,GO-20159003648,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,18,2015-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7051,9829,GO-20151018806,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,13,2015-06-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7052,9928,GO-20159004133,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,7,2015-07-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7053,9941,GO-20151133913,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,15,2015-07-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7054,9948,GO-20151040382,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,22,2015-06-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7055,9966,GO-20151156086,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,20,2015-07-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7056,9967,GO-20151156086,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,20,2015-07-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7057,9973,GO-20151168596,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,7,2015-07-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7058,10000,GO-20159004495,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,12,2015-07-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7059,10007,GO-20151188719,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,18,2015-07-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7060,10009,GO-20159004543,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,1,2015-07-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7061,10017,GO-20151196256,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,22,2015-07-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7062,10059,GO-20159004760,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,12,2015-07-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7063,10097,GO-20159004979,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,15,2015-07-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7064,10232,GO-20159005614,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,9,2015-08-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7065,10239,GO-20159005629,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,14,2015-08-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7066,10269,GO-20159005840,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,8,2015-08-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7067,10298,GO-20151413939,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,12,2015-08-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7068,10370,GO-20151494495,THEFT UNDER,2015-08-29,2015,August,Saturday,29,241,16,2015-08-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7069,10372,GO-20159006544,THEFT UNDER,2015-08-29,2015,August,Saturday,29,241,0,2015-08-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7070,10493,GO-20151623638,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,20,2015-09-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7071,10552,GO-20159007790,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,8,2015-09-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7072,10558,GO-20159007868,THEFT UNDER,2015-09-27,2015,September,Sunday,27,270,18,2015-09-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7073,10678,GO-20159008886,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,19,2015-10-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7074,10689,GO-20151842198,THEFT UNDER,2015-10-26,2015,October,Monday,26,299,11,2015-10-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7075,10694,GO-20159009077,THEFT UNDER,2015-10-26,2015,October,Monday,26,299,19,2015-10-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7076,10699,GO-20159009126,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,9,2015-10-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7077,10715,GO-20159009301,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,8,2015-11-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7078,10717,GO-20159009337,THEFT UNDER,2015-11-03,2015,November,Tuesday,3,307,9,2015-11-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7079,10730,GO-20151901210,THEFT UNDER,2015-11-03,2015,November,Tuesday,3,307,13,2015-11-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7080,10765,GO-20159009700,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,3,2015-11-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7081,10840,GO-20152102504,ROBBERY - HOME INVASION,2015-12-08,2015,December,Tuesday,8,342,5,2015-12-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7082,10863,GO-20159010817,THEFT UNDER,2015-12-11,2015,December,Friday,11,345,13,2015-12-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7083,10922,GO-201667978,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,0,2016-01-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7084,10994,GO-20169001459,B&E,2016-01-01,2016,January,Friday,1,1,16,2016-02-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7085,11050,GO-20169002392,THEFT UNDER,2016-03-15,2016,March,Tuesday,15,75,20,2016-03-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7086,11054,GO-20169002392,THEFT UNDER,2016-03-15,2016,March,Tuesday,15,75,20,2016-03-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7087,11224,GO-2016733735,THEFT UNDER,2016-04-29,2016,April,Friday,29,120,16,2016-04-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7088,11246,GO-2016753099,THEFT UNDER - BICYCLE,2016-05-02,2016,May,Monday,2,123,7,2016-05-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7089,11248,GO-2016751374,B&E,2016-04-25,2016,April,Monday,25,116,10,2016-05-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7090,11257,GO-20169004149,THEFT UNDER,2016-05-04,2016,May,Wednesday,4,125,11,2016-05-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7091,11366,GO-2016893938,THEFT UNDER,2016-05-07,2016,May,Saturday,7,128,0,2016-05-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7092,11510,GO-20169005676,THEFT UNDER,2016-06-06,2016,June,Monday,6,158,8,2016-06-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7093,11515,GO-20169005707,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,14,2016-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7094,11543,GO-20169005850,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,16,2016-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7095,11560,GO-20169005902,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,14,2016-06-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7096,11572,GO-20169005991,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,20,2016-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7097,11630,GO-20169006305,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,16,2016-06-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7098,11670,GO-20161135155,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,19,2016-06-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7099,11675,GO-20169006591,THEFT UNDER - BICYCLE,2016-06-30,2016,June,Thursday,30,182,9,2016-06-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7100,11685,GO-20169006652,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,10,2016-07-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7101,11698,GO-20161163163,THEFT OF EBIKE UNDER $5000,2016-07-01,2016,July,Friday,1,183,21,2016-07-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7102,11739,GO-20169006858,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,0,2016-07-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7103,11756,GO-20161208089,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,13,2016-07-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7104,11798,GO-20161233740,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,18,2016-07-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7105,11809,GO-20169007214,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,22,2016-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7106,11848,GO-20169007418,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,20,2016-07-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7107,11878,GO-20161292139,THEFT OF EBIKE UNDER $5000,2016-07-18,2016,July,Monday,18,200,16,2016-07-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7108,5161,GO-20191626680,THEFT UNDER - BICYCLE,2019-08-25,2019,August,Sunday,25,237,15,2019-08-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7109,5197,GO-20199028262,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,1,2019-08-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7110,5222,GO-20199028650,THEFT UNDER,2019-09-02,2019,September,Monday,2,245,23,2019-09-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7111,5291,GO-20191743455,B&E,2019-09-10,2019,September,Tuesday,10,253,18,2019-09-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7112,5363,GO-20199030610,THEFT UNDER,2019-09-18,2019,September,Wednesday,18,261,18,2019-09-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7113,5392,GO-20191832638,THEFT UNDER - BICYCLE,2019-09-23,2019,September,Monday,23,266,13,2019-09-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7114,5463,GO-20199032524,THEFT UNDER - BICYCLE,2019-10-03,2019,October,Thursday,3,276,19,2019-10-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7115,5479,GO-20199032835,THEFT UNDER,2019-10-05,2019,October,Saturday,5,278,17,2019-10-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7116,5480,GO-20199032852,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,8,2019-10-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7117,5526,GO-20191996236,THEFT UNDER - BICYCLE,2019-10-11,2019,October,Friday,11,284,17,2019-10-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7118,5539,GO-20199033967,THEFT UNDER - BICYCLE,2019-10-11,2019,October,Friday,11,284,20,2019-10-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7119,5649,GO-20192076128,PROPERTY - FOUND,2019-10-27,2019,October,Sunday,27,300,15,2019-10-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7120,5654,GO-20199036541,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,11,2019-11-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7121,5656,GO-20199036548,THEFT UNDER,2019-11-03,2019,November,Sunday,3,307,17,2019-11-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7122,5697,GO-20192225356,THEFT UNDER,2019-10-24,2019,October,Thursday,24,297,23,2019-10-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7123,5698,GO-20192205675,THEFT UNDER - BICYCLE,2019-11-14,2019,November,Thursday,14,318,20,2019-11-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7124,5701,GO-20192226123,B&E,2019-11-18,2019,November,Monday,18,322,4,2019-11-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7125,5702,GO-20192226123,B&E,2019-11-18,2019,November,Monday,18,322,4,2019-11-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7126,5710,GO-20192230929,B&E,2019-10-25,2019,October,Friday,25,298,17,2019-11-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7127,5735,GO-20192304446,THEFT OF EBIKE UNDER $5000,2019-11-28,2019,November,Thursday,28,332,17,2019-11-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7128,5763,GO-20199040877,THEFT UNDER,2019-12-12,2019,December,Thursday,12,346,18,2019-12-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7129,5771,GO-20199041382,THEFT UNDER,2019-12-12,2019,December,Thursday,12,346,17,2019-12-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7130,5772,GO-20199041424,THEFT UNDER,2019-12-18,2019,December,Wednesday,18,352,22,2019-12-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7131,5794,GO-20209000061,THEFT UNDER,2020-01-01,2020,January,Wednesday,1,1,20,2020-01-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7132,5807,GO-20209000465,THEFT UNDER,2020-01-03,2020,January,Friday,3,3,20,2020-01-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7133,5835,GO-2020106887,B&E,2020-01-15,2020,January,Wednesday,15,15,15,2020-01-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7134,5836,GO-2020106887,B&E,2020-01-15,2020,January,Wednesday,15,15,15,2020-01-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7135,5869,GO-2020226369,THEFT UNDER,2020-02-01,2020,February,Saturday,1,32,21,2020-02-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7136,6017,GO-2020656216,B&E,2020-04-01,2020,April,Wednesday,1,92,17,2020-04-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7137,6077,GO-2020731393,THEFT UNDER - BICYCLE,2020-04-10,2020,April,Friday,10,101,18,2020-04-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7138,6128,GO-20209012347,THEFT UNDER,2020-05-02,2020,May,Saturday,2,123,10,2020-05-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7139,6198,GO-2020920374,B&E W'INTENT,2020-05-17,2020,May,Sunday,17,138,0,2020-05-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7140,6199,GO-2020920374,B&E W'INTENT,2020-05-17,2020,May,Sunday,17,138,0,2020-05-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7141,6203,GO-2020912611,PROPERTY - FOUND,2020-05-17,2020,May,Sunday,17,138,4,2020-05-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7142,6204,GO-2020925190,B&E,2020-05-16,2020,May,Saturday,16,137,0,2020-05-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7143,6205,GO-2020925190,B&E,2020-05-16,2020,May,Saturday,16,137,0,2020-05-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7144,6230,GO-20209013737,THEFT UNDER,2020-05-22,2020,May,Friday,22,143,1,2020-05-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7145,6242,GO-20209013855,THEFT UNDER,2020-05-24,2020,May,Sunday,24,145,20,2020-05-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7146,6263,GO-2020980280,B&E,2020-05-26,2020,May,Tuesday,26,147,13,2020-05-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7147,6386,GO-20209015367,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,16,2020-06-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7148,6392,GO-20209015410,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,13,2020-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7149,6393,GO-20209015411,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,20,2020-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7150,6456,GO-20201145349,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,16,2020-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7151,6464,GO-20209016019,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,20,2020-06-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7152,6606,GO-20209017418,THEFT UNDER,2020-07-10,2020,July,Friday,10,192,18,2020-07-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7153,6902,GO-20201452483,THEFT UNDER,2020-03-03,2020,March,Tuesday,3,63,12,2020-08-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7154,6921,GO-20201497635,PROPERTY - FOUND,2020-08-10,2020,August,Monday,10,223,12,2020-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7155,6922,GO-20201497635,PROPERTY - FOUND,2020-08-10,2020,August,Monday,10,223,12,2020-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7156,6923,GO-20201497635,PROPERTY - FOUND,2020-08-10,2020,August,Monday,10,223,12,2020-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7157,6924,GO-20201497635,PROPERTY - FOUND,2020-08-10,2020,August,Monday,10,223,12,2020-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7158,6925,GO-20201497635,PROPERTY - FOUND,2020-08-10,2020,August,Monday,10,223,12,2020-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7159,6949,GO-20201490120,THEFT UNDER - BICYCLE,2020-08-08,2020,August,Saturday,8,221,3,2020-08-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7160,6989,GO-20209020539,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,17,2020-08-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7161,7014,GO-20209020809,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,18,2020-08-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7162,7080,GO-20209021353,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,19,2020-08-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7163,7113,GO-20209021652,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,16,2020-08-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7164,7162,GO-20209022159,THEFT UNDER - BICYCLE,2020-09-02,2020,September,Wednesday,2,246,19,2020-09-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7165,7290,GO-20209023784,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,2,2020-09-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7166,7298,GO-20209023838,MISCHIEF TO VEHICLE,2020-09-18,2020,September,Friday,18,262,21,2020-09-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7167,7328,GO-20201804948,THEFT UNDER - BICYCLE,2020-09-18,2020,September,Friday,18,262,16,2020-09-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7168,7340,GO-20209024309,THEFT UNDER - BICYCLE,2020-09-23,2020,September,Wednesday,23,267,23,2020-09-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7169,7354,GO-20209024309,THEFT UNDER - BICYCLE,2020-09-23,2020,September,Wednesday,23,267,23,2020-09-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7170,7366,GO-20209024652,THEFT UNDER - BICYCLE,2020-09-28,2020,September,Monday,28,272,11,2020-09-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7171,7391,GO-20209025045,THEFT UNDER - BICYCLE,2020-09-27,2020,September,Sunday,27,271,17,2020-09-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7172,7413,GO-20201866358,THEFT UNDER - BICYCLE,2020-09-18,2020,September,Friday,18,262,21,2020-10-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7173,7414,GO-20201866358,THEFT UNDER - BICYCLE,2020-09-18,2020,September,Friday,18,262,21,2020-10-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7174,7459,GO-20201950679,THEFT UNDER,2020-10-04,2020,October,Sunday,4,278,4,2020-10-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7175,7473,GO-20201956820,THEFT UNDER - BICYCLE,2020-10-08,2020,October,Thursday,8,282,14,2020-10-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7176,7481,GO-20201969604,THEFT OF EBIKE OVER $5000,2020-10-08,2020,October,Thursday,8,282,23,2020-10-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7177,7496,GO-20209026835,THEFT UNDER - BICYCLE,2020-10-16,2020,October,Friday,16,290,17,2020-10-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7178,7535,GO-20209027507,THEFT FROM MOTOR VEHICLE UNDER,2020-10-23,2020,October,Friday,23,297,19,2020-10-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7179,7556,GO-20209027814,THEFT OVER - BICYCLE,2020-10-23,2020,October,Friday,23,297,8,2020-10-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7180,7568,GO-20209028111,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,12,2020-10-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7181,7669,GO-20202247200,THEFT OVER - BICYCLE,2020-11-25,2020,November,Wednesday,25,330,13,2020-11-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7182,7678,GO-20209030907,THEFT UNDER - BICYCLE,2020-11-13,2020,November,Friday,13,318,5,2020-11-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7183,12508,GO-20169011313,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,2,2016-09-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7184,7679,GO-20202275953,THEFT UNDER - BICYCLE,2020-11-30,2020,November,Monday,30,335,17,2020-12-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7185,7706,GO-20209032212,THEFT UNDER - BICYCLE,2020-12-16,2020,December,Wednesday,16,351,9,2020-12-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7186,7724,GO-20209033144,THEFT UNDER - BICYCLE,2020-12-29,2020,December,Tuesday,29,364,3,2020-12-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7187,7740,GO-20149000241,THEFT UNDER - BICYCLE,2014-01-08,2014,January,Wednesday,8,8,20,2014-01-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7188,7775,GO-20141650747,THEFT UNDER,2014-03-06,2014,March,Thursday,6,65,9,2014-03-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7189,7779,GO-20141681258,THEFT UNDER,2014-03-10,2014,March,Monday,10,69,22,2014-03-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7190,7789,GO-20149001842,THEFT UNDER,2014-03-05,2014,March,Wednesday,5,64,10,2014-03-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7191,7821,GO-20141850531,THEFT UNDER,2014-04-07,2014,April,Monday,7,97,23,2014-04-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7192,7840,GO-20149002873,THEFT UNDER,2014-04-10,2014,April,Thursday,10,100,3,2014-04-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7193,7870,GO-20141971165,THEFT UNDER,2014-04-26,2014,April,Saturday,26,116,2,2014-04-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7194,7884,GO-20142020274,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,14,2014-05-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7195,7914,GO-20142068530,B&E,2014-05-13,2014,May,Tuesday,13,133,5,2014-05-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7196,7915,GO-20142068530,B&E,2014-05-13,2014,May,Tuesday,13,133,5,2014-05-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7197,7919,GO-20142065987,MISCHIEF UNDER,2014-05-08,2014,May,Thursday,8,128,22,2014-05-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7198,8125,GO-20149003954,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,17,2014-06-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7199,8135,GO-20149004060,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,11,2014-06-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7200,8136,GO-20149003991,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,17,2014-06-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7201,8250,GO-20149004437,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,21,2014-06-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7202,8266,GO-20149004496,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,12,2014-06-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7203,8321,GO-20142427986,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,20,2014-07-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7204,8364,GO-20142502460,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,14,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7205,23618,GO-20159003754,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,13,2015-06-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7206,17429,GO-20142199157,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,10,2014-06-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7207,12595,GO-20169011194,THEFT UNDER,2016-09-27,2016,September,Tuesday,27,271,15,2016-09-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7208,12739,GO-20161983202,THEFT UNDER - BICYCLE,2016-11-07,2016,November,Monday,7,312,20,2016-11-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7209,12747,GO-20162004320,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,22,2016-11-11,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7210,12748,GO-20162004320,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,22,2016-11-11,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7211,13479,GO-2019851997,THEFT UNDER,2019-04-10,2019,April,Wednesday,10,100,20,2019-04-11,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7212,13480,GO-20199012717,THEFT UNDER,2019-04-21,2019,April,Sunday,21,111,10,2019-04-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7213,13702,GO-20171410339,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,8,2017-08-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7214,13730,GO-20179018543,THEFT UNDER - BICYCLE,2017-10-30,2017,October,Monday,30,303,11,2017-10-30,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7215,13784,GO-20189022739,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,10,2018-07-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7216,13790,GO-20189024550,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,22,2018-07-30,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7217,13872,GO-2015875575,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,15,2015-05-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7218,13879,GO-20151003924,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,0,2015-06-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7219,13882,GO-20159004090,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,7,2015-07-01,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7220,13933,GO-20151956424,THEFT UNDER,2015-11-14,2015,November,Saturday,14,318,12,2015-11-14,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7221,13954,GO-2016568930,THEFT UNDER - BICYCLE,2016-03-12,2016,March,Saturday,12,72,8,2016-03-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7222,13978,GO-20169006283,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,17,2016-06-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7223,13986,GO-20169007133,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,21,2016-07-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7224,14029,GO-20161985170,THEFT UNDER - BICYCLE,2016-11-08,2016,November,Tuesday,8,313,6,2016-11-08,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7225,11887,GO-20169007689,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,21,2016-07-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7226,17434,GO-20142252913,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,19,2014-06-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7227,23621,GO-20159004202,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,2,2015-07-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7228,14063,GO-20179006374,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,8,2017-05-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7229,14362,GO-20149003547,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,19,2014-05-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7230,15700,GO-20191771414,THEFT UNDER - BICYCLE,2019-08-31,2019,August,Saturday,31,243,17,2019-09-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7231,15708,GO-20191837309,THEFT FROM MOTOR VEHICLE UNDER,2019-09-10,2019,September,Tuesday,10,253,17,2019-09-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7232,15759,GO-20209013694,THEFT UNDER,2020-05-16,2020,May,Saturday,16,137,21,2020-05-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7233,15771,GO-20201030075,THEFT UNDER,2020-06-04,2020,June,Thursday,4,156,17,2020-06-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7234,15774,GO-20201052908,THEFT UNDER - BICYCLE,2020-06-07,2020,June,Sunday,7,159,22,2020-06-08,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7235,15776,GO-20209015360,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,19,2020-06-14,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7236,15829,GO-20209023602,THEFT UNDER,2020-09-08,2020,September,Tuesday,8,252,20,2020-09-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7237,16339,GO-20191356244,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,20,2019-07-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7238,16363,GO-20199026864,THEFT UNDER,2019-08-19,2019,August,Monday,19,231,20,2019-08-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7239,16376,GO-20199029771,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,18,2019-09-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7240,20745,GO-20209019851,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,13,2020-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7241,16414,GO-20199038252,THEFT UNDER,2019-11-20,2019,November,Wednesday,20,324,10,2019-11-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7242,16418,GO-20192320439,B&E W'INTENT,2019-11-21,2019,November,Thursday,21,325,5,2019-11-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7243,16425,GO-20199041750,THEFT UNDER,2019-12-15,2019,December,Sunday,15,349,6,2019-12-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7244,16426,GO-20199041750,THEFT UNDER,2019-12-15,2019,December,Sunday,15,349,6,2019-12-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7245,16427,GO-20199041750,THEFT UNDER,2019-12-15,2019,December,Sunday,15,349,6,2019-12-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7246,20754,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7247,16743,GO-2019726171,B&E,2019-02-20,2019,February,Wednesday,20,51,0,2019-04-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7248,16756,GO-20199015652,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,1,2019-05-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7249,2418,GO-2018959425,B&E,2018-05-21,2018,May,Monday,21,141,6,2018-05-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7250,16759,GO-20199016492,B&E,2019-05-24,2019,May,Friday,24,144,8,2019-05-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7251,16916,GO-20179006970,THEFT UNDER,2017-05-24,2017,May,Wednesday,24,144,14,2017-05-25,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7252,16956,GO-20179010872,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,20,2017-07-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7253,16993,GO-20179017061,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,8,2017-10-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7254,17021,GO-2018654124,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,9,2018-04-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7255,17024,GO-20189012776,THEFT UNDER - BICYCLE,2018-04-22,2018,April,Sunday,22,112,11,2018-04-25,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7256,17035,GO-20189016479,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,12,2018-05-28,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7257,17045,GO-20189017989,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,17,2018-06-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7258,17058,GO-20181180846,B&E,2018-06-11,2018,June,Monday,11,162,0,2018-06-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7259,17059,GO-20181180846,B&E,2018-06-11,2018,June,Monday,11,162,0,2018-06-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7260,17082,GO-20189024780,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,18,2018-08-01,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7261,17115,GO-20181967945,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,7,2018-10-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7262,17134,GO-20159003120,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,11,2015-05-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7263,17150,GO-20151187004,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,14,2015-07-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7264,17164,GO-20159006656,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,23,2015-09-02,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7265,17169,GO-20159006968,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,5,2015-09-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7266,17181,GO-20151805124,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,20,2015-10-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7267,17199,GO-20169000418,THEFT UNDER,2016-01-12,2016,January,Tuesday,12,12,16,2016-01-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7268,17200,GO-20169000418,THEFT UNDER,2016-01-12,2016,January,Tuesday,12,12,16,2016-01-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7269,17241,GO-20169006574,THEFT UNDER - BICYCLE,2016-06-27,2016,June,Monday,27,179,22,2016-06-30,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7270,17245,GO-20161182496,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,10,2016-07-06,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7271,17263,GO-20169009784,THEFT UNDER - BICYCLE,2016-08-31,2016,August,Wednesday,31,244,21,2016-09-01,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7272,17280,GO-20161822332,THEFT UNDER - BICYCLE,2016-10-08,2016,October,Saturday,8,282,11,2016-10-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7273,17422,GO-20141634799,THEFT UNDER,2014-03-03,2014,March,Monday,3,62,20,2014-03-03,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7274,17444,GO-20142421080,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,14,2014-07-03,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7275,17477,GO-20149006687,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,13,2014-09-08,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7276,17506,GO-2015434908,THEFT UNDER,2015-03-13,2015,March,Friday,13,72,10,2015-03-14,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7277,17508,GO-20159001825,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,9,2015-04-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7278,18805,GO-20209025115,THEFT UNDER,2020-09-30,2020,September,Wednesday,30,274,22,2020-10-01,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7279,19589,GO-20201805687,B&E,2020-09-23,2020,September,Wednesday,23,267,1,2020-09-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7280,19590,GO-20201832948,THEFT OF EBIKE UNDER $5000,2020-09-26,2020,September,Saturday,26,270,23,2020-09-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7281,19600,GO-20209027081,THEFT UNDER,2020-10-20,2020,October,Tuesday,20,294,15,2020-10-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7282,19984,GO-20181885005,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,22,2018-10-11,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7283,19994,GO-20181984127,B&E W'INTENT,2018-10-24,2018,October,Wednesday,24,297,2,2018-10-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7284,19995,GO-20181984127,B&E W'INTENT,2018-10-24,2018,October,Wednesday,24,297,2,2018-10-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7285,20012,GO-2019243279,POSSESSION PROPERTY OBC UNDER,2019-02-07,2019,February,Thursday,7,38,19,2019-02-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7286,20029,GO-2019882914,B&E,2019-04-29,2019,April,Monday,29,119,9,2019-05-15,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7287,20252,GO-20171806093,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,17,2017-10-05,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7288,20276,GO-20173073945,THEFT UNDER - BICYCLE,2017-11-26,2017,November,Sunday,26,330,9,2017-11-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7289,20312,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,18,2018-06-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7290,20313,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,18,2018-06-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7291,20355,GO-20181535928,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,23,2018-08-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7292,20361,GO-20181596405,THEFT OF EBIKE UNDER $5000,2018-08-04,2018,August,Saturday,4,216,3,2018-08-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7293,20384,GO-2015866961,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,9,2015-05-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7294,20430,GO-20159006535,THEFT UNDER,2015-08-29,2015,August,Saturday,29,241,3,2015-08-30,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7295,20440,GO-20159007608,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,16,2015-09-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7296,20454,GO-20159009194,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,19,2015-10-30,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7297,20470,GO-2016131442,THEFT UNDER,2016-01-21,2016,January,Thursday,21,21,2,2016-01-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7298,20472,GO-2016280475,THEFT UNDER,2015-12-25,2015,December,Friday,25,359,12,2016-02-16,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7299,20509,GO-20169007238,THEFT UNDER,2016-07-14,2016,July,Thursday,14,196,22,2016-07-14,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7300,20536,GO-20169010866,B&E,2016-09-17,2016,September,Saturday,17,261,1,2016-09-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7301,20574,GO-20179006020,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,18,2017-05-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7302,20616,GO-20191525005,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,0,2019-08-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7303,20619,GO-20199026562,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,2,2019-08-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7304,20739,GO-20201410768,B&E,2020-07-29,2020,July,Wednesday,29,211,2,2020-07-29,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7305,20767,GO-20209021420,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,7,2020-08-26,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7306,20870,GO-20149004245,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,17,2014-06-19,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7307,20872,GO-20149004306,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,12,2014-06-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7308,20891,GO-20149005122,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,8,2014-07-18,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7309,20919,GO-20142897235,THEFT FROM MOTOR VEHICLE UNDER,2014-08-13,2014,August,Wednesday,13,225,23,2014-09-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7310,1791,GO-20172000478,THEFT UNDER - BICYCLE,2017-11-04,2017,November,Saturday,4,308,12,2017-11-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7311,15681,GO-20199027765,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,13,2019-08-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7312,17436,GO-20149003944,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,19,2014-06-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7313,15688,GO-20199028691,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,1,2019-09-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7314,11900,GO-20161305951,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,13,2016-07-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7315,20755,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7316,20756,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7317,20757,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7318,20758,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7319,20759,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7320,20760,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7321,20761,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7322,20775,GO-20209023159,THEFT UNDER,2020-09-13,2020,September,Sunday,13,257,19,2020-09-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7323,20777,GO-20209023399,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,10,2020-09-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7324,20844,GO-20141351368,THEFT UNDER,2014-01-15,2014,January,Wednesday,15,15,21,2014-01-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7325,20845,GO-20141455227,THEFT UNDER,2014-02-01,2014,February,Saturday,1,32,15,2014-02-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7326,20846,GO-20141488887,THEFT UNDER,2014-02-07,2014,February,Friday,7,38,17,2014-02-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7327,20861,GO-20142047547,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,17,2014-05-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7328,20863,GO-20142137455,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,15,2014-05-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7329,20871,GO-20149004284,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,13,2014-06-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7330,20880,GO-20149004663,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,21,2014-07-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7331,20888,GO-20149004980,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,0,2014-07-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7332,20897,GO-20149005333,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,12,2014-07-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7333,23636,GO-20159005467,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,4,2015-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7334,17440,GO-20142330954,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,0,2014-06-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7335,20920,GO-20142897235,THEFT FROM MOTOR VEHICLE UNDER,2014-08-13,2014,August,Wednesday,13,225,23,2014-09-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7336,15689,GO-20199028691,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,1,2019-09-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7337,11911,GO-20169007753,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,18,2016-07-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7338,1822,GO-20172037438,B&E,2017-11-10,2017,November,Friday,10,314,0,2017-11-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7339,20898,GO-20149005711,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,23,2014-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7340,20899,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7341,20900,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7342,20901,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7343,20902,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7344,20903,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7345,20904,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7346,20905,GO-20142688606,POSSESSION PROPERTY OBC UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7347,20929,GO-20142969372,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,18,2014-09-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7348,20931,GO-20149007431,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,19,2014-10-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7349,20938,GO-20143139908,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,21,2014-10-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7350,20939,GO-20142943717,PROPERTY - FOUND,2014-09-19,2014,September,Friday,19,262,19,2014-09-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7351,20944,GO-20143241946,THEFT UNDER,2014-11-04,2014,November,Tuesday,4,308,21,2014-11-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7352,20963,GO-2015710807,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,12,2015-04-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7353,20964,GO-20159002474,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,18,2015-05-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7354,22612,GO-20199024490,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,20,2019-07-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7355,22657,GO-20199033120,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,19,2019-10-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7356,22672,GO-20199035173,THEFT UNDER,2019-10-24,2019,October,Thursday,24,297,11,2019-10-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7357,22680,GO-20192235660,PROPERTY - FOUND,2019-11-17,2019,November,Sunday,17,321,18,2019-11-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7358,22684,GO-20199038637,THEFT UNDER,2019-11-22,2019,November,Friday,22,326,23,2019-11-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7359,22701,GO-2020629437,PROPERTY - RECOVERED,2020-03-30,2020,March,Monday,30,90,14,2020-03-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7360,22706,GO-20209010441,THEFT UNDER,2020-03-22,2020,March,Sunday,22,82,12,2020-04-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7361,22708,GO-20209010827,THEFT UNDER,2020-04-10,2020,April,Friday,10,101,8,2020-04-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7362,22730,GO-20209015669,THEFT UNDER,2020-06-18,2020,June,Thursday,18,170,4,2020-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7363,22743,GO-20209017147,THEFT UNDER,2020-07-08,2020,July,Wednesday,8,190,15,2020-07-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7364,22757,GO-20209019477,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,11,2020-08-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7365,22760,GO-20201529258,PROPERTY - FOUND,2020-08-17,2020,August,Monday,17,230,6,2020-08-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7366,22770,GO-20201656813,THEFT OVER,2020-09-01,2020,September,Tuesday,1,245,21,2020-09-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7367,22792,GO-20209026835,THEFT UNDER - BICYCLE,2020-10-16,2020,October,Friday,16,290,17,2020-10-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7368,23197,GO-20199023455,THEFT UNDER,2019-07-23,2019,July,Tuesday,23,204,2,2019-07-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7369,23198,GO-20181636868,PROPERTY - FOUND,2018-08-31,2018,August,Friday,31,243,20,2018-09-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7370,23202,GO-20189029581,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,12,2018-09-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7371,23209,GO-20189032025,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,14,2018-09-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7372,23212,GO-20181801529,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,22,2018-09-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7373,23214,GO-20189033159,THEFT UNDER - BICYCLE,2018-10-07,2018,October,Sunday,7,280,3,2018-10-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7374,23219,GO-20189034508,THEFT UNDER - BICYCLE,2018-10-15,2018,October,Monday,15,288,2,2018-10-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7375,23223,GO-20189035935,THEFT UNDER - BICYCLE,2018-10-27,2018,October,Saturday,27,300,18,2018-10-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7376,23225,GO-20182061702,THEFT OF EBIKE UNDER $5000,2018-10-18,2018,October,Thursday,18,291,17,2018-11-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7377,23234,GO-20199001466,THEFT UNDER - BICYCLE,2019-01-08,2019,January,Tuesday,8,8,18,2019-01-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7378,23235,GO-20199001551,THEFT UNDER - BICYCLE,2019-01-09,2019,January,Wednesday,9,9,8,2019-01-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7379,23237,GO-20199005756,THEFT UNDER,2019-02-16,2019,February,Saturday,16,47,15,2019-02-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7380,23242,GO-20199006824,THEFT UNDER,2019-02-11,2019,February,Monday,11,42,0,2019-02-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7381,23249,GO-2019761341,B&E,2019-03-15,2019,March,Friday,15,74,0,2019-04-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7382,23258,GO-20199017057,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,8,2019-05-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7383,23261,GO-20199017847,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,14,2019-06-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7384,23266,GO-20199019010,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,10,2019-06-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7385,23268,GO-20191126288,THEFT UNDER - BICYCLE,2019-06-02,2019,June,Sunday,2,153,16,2019-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7386,23401,GO-2017673894,PROPERTY - FOUND,2017-04-16,2017,April,Sunday,16,106,22,2017-04-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7387,23405,GO-20179005745,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,9,2017-05-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7388,23415,GO-20179007237,THEFT UNDER - BICYCLE,2017-05-01,2017,May,Monday,1,121,12,2017-05-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7389,23417,GO-20179007427,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,18,2017-06-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7390,23424,GO-20179008472,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,15,2017-06-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7391,23427,GO-20179008891,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,12,2017-06-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7392,23436,GO-20179009768,THEFT FROM MOTOR VEHICLE UNDER,2017-07-08,2017,July,Saturday,8,189,13,2017-07-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7393,23437,GO-20179009808,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,10,2017-07-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7394,23441,GO-20179010280,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,21,2017-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7395,23453,GO-20179011427,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,6,2017-07-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7396,23460,GO-20179012441,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,9,2017-08-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7397,23476,GO-20179015984,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,14,2017-09-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7398,23481,GO-20179016579,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,7,2017-10-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7399,23484,GO-20179017096,THEFT UNDER,2017-10-06,2017,October,Friday,6,279,7,2017-10-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7400,23488,GO-20171898438,B&E,2017-10-20,2017,October,Friday,20,293,7,2017-10-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7401,23491,GO-20171925585,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,15,2017-10-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7402,23496,GO-20173000152,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,20,2017-11-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7403,23497,GO-20173000152,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,20,2017-11-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7404,23505,GO-20179021975,THEFT UNDER,2017-11-06,2017,November,Monday,6,310,15,2017-12-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7405,23509,GO-20189009118,THEFT UNDER - BICYCLE,2018-03-22,2018,March,Thursday,22,81,17,2018-03-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7406,23534,GO-20189018106,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,16,2018-06-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7407,23537,GO-20181066885,THEFT OF EBIKE UNDER $5000,2018-06-10,2018,June,Sunday,10,161,12,2018-06-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7408,23545,GO-20189020725,THEFT UNDER - BICYCLE,2018-05-28,2018,May,Monday,28,148,11,2018-06-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7409,23549,GO-20189021667,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,9,2018-07-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7410,23567,GO-20189024176,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,10,2018-07-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7411,23577,GO-20189026296,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,0,2018-08-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7412,23578,GO-20181509423,THEFT OF MOTOR VEHICLE,2018-08-15,2018,August,Wednesday,15,227,22,2018-08-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7413,23581,GO-20189027054,B&E,2018-08-13,2018,August,Monday,13,225,19,2018-08-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7414,23582,GO-20189027051,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,0,2018-08-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7415,23584,GO-20181557743,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,10,2018-08-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7416,23589,GO-20189028115,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,23,2018-08-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7417,23597,GO-20159002793,THEFT UNDER,2015-05-16,2015,May,Saturday,16,136,14,2015-05-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7418,23616,GO-20159003720,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,21,2015-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7419,23617,GO-20159003720,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,21,2015-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7420,11925,GO-20169007787,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,17,2016-07-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7421,11946,GO-20161314278,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,13,2016-07-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7422,11989,GO-20161370811,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,10,2016-08-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7423,12016,GO-20169008341,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,22,2016-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7424,12030,GO-20169008410,THEFT UNDER,2016-08-03,2016,August,Wednesday,3,216,18,2016-08-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7425,12050,GO-20169008519,THEFT UNDER,2016-08-07,2016,August,Sunday,7,220,14,2016-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7426,12055,GO-20161405302,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,10,2016-08-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7427,12068,GO-20161369358,SUSPICIOUS INCIDENT,2016-08-04,2016,August,Thursday,4,217,10,2016-08-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7428,12129,GO-20161388684,B&E,2016-08-07,2016,August,Sunday,7,220,9,2016-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7429,12201,GO-20169009499,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,0,2016-08-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7430,12205,GO-20161511609,B&E,2016-08-24,2016,August,Wednesday,24,237,10,2016-08-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7431,12265,GO-20169010001,THEFT UNDER,2016-09-05,2016,September,Monday,5,249,21,2016-09-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7432,12323,GO-20169010332,THEFT UNDER,2016-09-03,2016,September,Saturday,3,247,13,2016-09-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7433,12339,GO-20169010407,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,19,2016-09-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7434,12344,GO-20169010461,THEFT UNDER,2016-09-10,2016,September,Saturday,10,254,17,2016-09-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7435,12367,GO-20161652816,THEFT OF EBIKE UNDER $5000,2016-09-17,2016,September,Saturday,17,261,0,2016-09-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7436,12397,GO-20169010694,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,20,2016-09-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7437,17446,GO-20142474870,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,10,2014-07-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7438,23637,GO-20159005467,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,4,2015-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7439,12404,GO-20169010768,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,22,2016-09-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7440,12466,GO-20161716734,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,21,2016-09-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7441,12517,GO-20169011384,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,10,2016-09-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7442,12557,GO-20169011591,THEFT UNDER,2016-10-05,2016,October,Wednesday,5,279,9,2016-10-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7443,12630,GO-20161848130,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,15,2016-10-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7444,12668,GO-20169012475,THEFT UNDER,2016-10-23,2016,October,Sunday,23,297,10,2016-10-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7445,12673,GO-20161885091,THEFT FROM MOTOR VEHICLE OVER,2016-10-22,2016,October,Saturday,22,296,23,2016-10-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7446,12674,GO-20161885091,THEFT FROM MOTOR VEHICLE OVER,2016-10-22,2016,October,Saturday,22,296,23,2016-10-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7447,12680,GO-20161905370,THEFT UNDER,2016-10-25,2016,October,Tuesday,25,299,19,2016-10-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7448,12752,GO-20162002860,THEFT UNDER,2016-11-10,2016,November,Thursday,10,315,18,2016-11-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7449,12761,GO-20169013387,THEFT UNDER,2016-11-11,2016,November,Friday,11,316,16,2016-11-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7450,12833,GO-20169014072,THEFT UNDER - BICYCLE,2016-11-28,2016,November,Monday,28,333,19,2016-12-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7451,12834,GO-20162128146,THEFT OVER - BICYCLE,2016-11-20,2016,November,Sunday,20,325,12,2016-11-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7452,13473,GO-20199010270,THEFT UNDER - BICYCLE,2019-03-31,2019,March,Sunday,31,90,12,2019-04-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7453,13478,GO-2019685319,B&E,2019-04-15,2019,April,Monday,15,105,22,2019-04-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7454,13494,GO-20191044933,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,21,2019-06-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7455,15705,GO-20199030876,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,11,2019-09-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7456,20924,GO-20142929141,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,8,2014-09-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7457,13496,GO-20199017922,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,5,2019-06-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7458,13503,GO-20191185759,THEFT OF EBIKE UNDER $5000,2019-06-06,2019,June,Thursday,6,157,12,2019-06-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7459,13678,GO-20179008702,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,17,2017-06-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7460,13680,GO-20179008903,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,22,2017-06-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7461,13693,GO-20179010146,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,9,2017-07-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7462,13705,GO-20179012322,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,14,2017-08-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7463,13706,GO-20179012381,THEFT UNDER,2017-08-13,2017,August,Sunday,13,225,15,2017-08-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7464,13721,GO-20179016830,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,23,2017-10-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7465,13725,GO-20179017830,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,21,2017-10-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7466,13735,GO-20172001753,THEFT UNDER,2017-11-04,2017,November,Saturday,4,308,2,2017-11-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7467,13741,GO-2018313102,B&E,2018-02-18,2018,February,Sunday,18,49,19,2018-02-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7468,13743,GO-20189007414,THEFT UNDER - BICYCLE,2018-03-09,2018,March,Friday,9,68,14,2018-03-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7469,13755,GO-20189015127,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,20,2018-05-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7470,13764,GO-20189018340,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,1,2018-06-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7471,13767,GO-20189018575,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,16,2018-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7472,13769,GO-20189018830,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,2,2018-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7473,13791,GO-20189024622,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,7,2018-07-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7474,1869,GO-20179020323,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,17,2017-11-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7475,13799,GO-20189026689,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,23,2018-08-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7476,13807,GO-20189028225,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,11,2018-08-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7477,13812,GO-20181630599,THEFT OF EBIKE UNDER $5000,2018-09-03,2018,September,Monday,3,246,10,2018-09-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7478,13814,GO-20189029642,THEFT UNDER,2018-09-04,2018,September,Tuesday,4,247,16,2018-09-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7479,13843,GO-20189036246,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,21,2018-10-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7480,13844,GO-20182027008,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,7,2018-11-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7481,13858,GO-20199004607,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,10,2019-02-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7482,13865,GO-20159002850,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,19,2015-05-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7483,13867,GO-2015848663,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,7,2015-05-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7484,13873,GO-20159003091,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,10,2015-05-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7485,13874,GO-2015884996,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,17,2015-05-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7486,13875,GO-2015884996,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,17,2015-05-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7487,13877,GO-2015940251,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,22,2015-06-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7488,13890,GO-20151315397,B&E,2015-08-01,2015,August,Saturday,1,213,10,2015-08-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7489,13891,GO-20151315397,B&E,2015-08-01,2015,August,Saturday,1,213,10,2015-08-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7490,13900,GO-20151435281,THEFT UNDER,2015-08-20,2015,August,Thursday,20,232,14,2015-08-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7491,13906,GO-20151555920,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,9,2015-09-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7492,13917,GO-20159007862,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,13,2015-09-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7493,13926,GO-20159008590,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,9,2015-10-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7494,13930,GO-20159009539,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,9,2015-11-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7495,13942,GO-201667978,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,0,2016-01-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7496,13951,GO-20169002303,THEFT UNDER - BICYCLE,2016-03-10,2016,March,Thursday,10,70,9,2016-03-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7497,13968,GO-20169004845,THEFT UNDER,2016-05-19,2016,May,Thursday,19,140,12,2016-05-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7498,13970,GO-2016925768,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,0,2016-05-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7499,13971,GO-20169005119,THEFT UNDER,2016-05-29,2016,May,Sunday,29,150,22,2016-05-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7500,13977,GO-20169006095,THEFT UNDER,2016-06-20,2016,June,Monday,20,172,12,2016-06-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7501,13984,GO-20161209172,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,22,2016-07-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7502,13989,GO-20169007600,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,11,2016-07-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7503,13994,GO-20169008599,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,14,2016-08-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7504,13996,GO-20169008893,THEFT UNDER,2016-07-27,2016,July,Wednesday,27,209,19,2016-08-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7505,14014,GO-20161615685,THEFT OF EBIKE UNDER $5000,2016-09-10,2016,September,Saturday,10,254,14,2016-09-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7506,14031,GO-20162029157,B&E,2016-11-13,2016,November,Sunday,13,318,7,2016-11-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7507,14033,GO-20162072619,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,14,2016-11-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7508,14049,GO-2017652659,THEFT OF EBIKE UNDER $5000,2017-04-09,2017,April,Sunday,9,99,8,2017-04-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7509,14061,GO-20179006392,THEFT UNDER,2017-05-14,2017,May,Sunday,14,134,14,2017-05-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7510,14364,GO-20149003786,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,7,2014-06-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7511,14368,GO-20142246825,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,18,2014-06-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7512,14379,GO-20149004399,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,0,2014-06-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7513,14382,GO-20149004552,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,16,2014-06-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7514,14386,GO-20149004728,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,10,2014-07-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7515,14406,GO-20149006368,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,22,2014-08-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7516,14409,GO-20149006770,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,15,2014-09-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7517,14424,GO-20149007809,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,21,2014-10-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7518,14438,GO-2015489554,THEFT UNDER,2015-03-23,2015,March,Monday,23,82,11,2015-03-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7519,15662,GO-20199024772,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,20,2019-08-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7520,15667,GO-20191506349,ROBBERY - OTHER,2019-08-09,2019,August,Friday,9,221,14,2019-08-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7521,15707,GO-20191817999,THEFT UNDER - BICYCLE,2019-09-19,2019,September,Thursday,19,262,13,2019-09-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7522,15714,GO-20199033006,THEFT UNDER,2019-10-07,2019,October,Monday,7,280,14,2019-10-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7523,15719,GO-20199033906,THEFT UNDER,2019-10-12,2019,October,Saturday,12,285,9,2019-10-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7524,15723,GO-20199035153,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,11,2019-10-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7525,15752,GO-20209011802,THEFT UNDER,2020-04-22,2020,April,Wednesday,22,113,13,2020-04-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7526,15768,GO-20209014199,THEFT UNDER,2020-05-28,2020,May,Thursday,28,149,0,2020-05-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7527,15772,GO-20209014780,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,20,2020-06-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7528,15787,GO-20201217146,B&E,2020-05-01,2020,May,Friday,1,122,0,2020-07-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7529,15799,GO-20209018924,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,16,2020-07-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7530,15813,GO-20201579165,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,23,2020-08-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7531,15826,GO-20209023399,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,10,2020-09-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7532,15848,GO-20202390697,THEFT UNDER - BICYCLE,2020-12-15,2020,December,Tuesday,15,350,9,2020-12-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7533,15849,GO-20209032614,THEFT UNDER - BICYCLE,2020-12-13,2020,December,Sunday,13,348,17,2020-12-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7534,16334,GO-20191321179,ROBBERY WITH WEAPON,2019-07-14,2019,July,Sunday,14,195,23,2019-07-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7535,16361,GO-20199026572,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,20,2019-08-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7536,16378,GO-20191776455,ROBBERY - OTHER,2019-09-16,2019,September,Monday,16,259,0,2019-09-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7537,16383,GO-20199030876,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,11,2019-09-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7538,16387,GO-20199031677,THEFT UNDER,2019-03-01,2019,March,Friday,1,60,16,2019-09-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7539,16397,GO-20199033546,THEFT UNDER - BICYCLE,2019-10-11,2019,October,Friday,11,284,3,2019-10-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7540,16424,GO-20192468760,THEFT UNDER,2019-12-06,2019,December,Friday,6,340,0,2019-12-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7541,20948,GO-20143337986,THEFT UNDER,2014-11-20,2014,November,Thursday,20,324,9,2014-11-20,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7542,16435,GO-2020226369,THEFT UNDER,2020-02-01,2020,February,Saturday,1,32,21,2020-02-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7543,16455,GO-20209013545,THEFT UNDER,2020-05-19,2020,May,Tuesday,19,140,20,2020-05-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7544,16457,GO-20209014186,THEFT UNDER,2020-05-26,2020,May,Tuesday,26,147,0,2020-05-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7545,16464,GO-20201144145,B&E,2020-06-21,2020,June,Sunday,21,173,5,2020-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7546,16465,GO-20201123513,THEFT FROM MOTOR VEHICLE UNDER,2020-06-17,2020,June,Wednesday,17,169,19,2020-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7547,16468,GO-20209016019,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,20,2020-06-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7548,16481,GO-20201356614,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,10,2020-07-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7549,16508,GO-20209021968,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,15,2020-09-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7550,16721,GO-20182019972,THEFT UNDER - BICYCLE,2018-10-27,2018,October,Saturday,27,300,20,2018-11-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7551,16731,GO-201925964,B&E,2019-01-05,2019,January,Saturday,5,5,9,2019-01-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7552,16732,GO-201925964,B&E,2019-01-05,2019,January,Saturday,5,5,9,2019-01-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7553,16735,GO-20199006791,B&E,2019-02-26,2019,February,Tuesday,26,57,23,2019-02-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7554,16747,GO-2019803158,THEFT UNDER,2019-05-02,2019,May,Thursday,2,122,9,2019-05-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7555,16748,GO-2019803158,THEFT UNDER,2019-05-02,2019,May,Thursday,2,122,9,2019-05-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7556,16762,GO-20199017740,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,0,2019-06-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7557,16773,GO-20199019736,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,17,2019-06-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7558,16915,GO-20179006597,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,10,2017-05-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7559,17460,GO-20142584735,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,11,2014-07-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7560,2025,GO-20189004317,THEFT UNDER,2018-02-11,2018,February,Sunday,11,42,17,2018-02-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7561,23640,GO-20151381237,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,6,2015-08-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7562,16918,GO-2017948181,THEFT OF EBIKE UNDER $5000,2017-05-27,2017,May,Saturday,27,147,12,2017-05-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7563,16923,GO-20171043883,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,18,2017-06-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7564,16925,GO-20179008018,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,9,2017-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7565,16926,GO-20179008032,THEFT UNDER,2017-06-11,2017,June,Sunday,11,162,0,2017-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7566,16927,GO-20179008032,THEFT UNDER,2017-06-11,2017,June,Sunday,11,162,0,2017-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7567,16938,GO-20179009240,THEFT UNDER - BICYCLE,2017-07-01,2017,July,Saturday,1,182,1,2017-07-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7568,16947,GO-20179010139,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,8,2017-07-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7569,16958,GO-20179011190,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,13,2017-07-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7570,16959,GO-20179011461,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,23,2017-08-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7571,16963,GO-20179012164,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,13,2017-08-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7572,16966,GO-20179012435,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,0,2017-08-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7573,16980,GO-20179014673,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,0,2017-09-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7574,16985,GO-20179016022,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,18,2017-09-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7575,16992,GO-20179016954,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,14,2017-10-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7576,17006,GO-20179019777,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,17,2017-11-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7577,17008,GO-20179020455,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,12,2017-11-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7578,17009,GO-20179020455,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,12,2017-11-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7579,17015,GO-20173233051,THEFT OF EBIKE UNDER $5000,2017-12-08,2017,December,Friday,8,342,17,2017-12-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7580,17020,GO-20189010903,THEFT UNDER - BICYCLE,2018-03-26,2018,March,Monday,26,85,13,2018-04-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7581,17025,GO-20189013698,THEFT UNDER,2018-05-02,2018,May,Wednesday,2,122,7,2018-05-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7582,17031,GO-20189015679,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,17,2018-05-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7583,17033,GO-20189015910,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,17,2018-05-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7584,17056,GO-20189019955,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,21,2018-06-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7585,17057,GO-20181173489,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,2,2018-06-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7586,17062,GO-20189021087,THEFT UNDER - BICYCLE,2018-05-18,2018,May,Friday,18,138,8,2018-07-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7587,17064,GO-20189021253,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,22,2018-07-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7588,17068,GO-20189022242,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,19,2018-07-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7589,17077,GO-20189023978,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,9,2018-07-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7590,17090,GO-20189026926,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,8,2018-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7591,17111,GO-20189033900,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,22,2018-10-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7592,17126,GO-20159002672,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,2,2015-05-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7593,17137,GO-20159003328,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,9,2015-06-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7594,17146,GO-20159004293,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,14,2015-07-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7595,17152,GO-20151210452,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,23,2015-07-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7596,17182,GO-20151815081,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,18,2015-10-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7597,17185,GO-20159009195,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,1,2015-10-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7598,17195,GO-20159010514,B&E,2015-11-23,2015,November,Monday,23,327,11,2015-12-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7599,17214,GO-20169003928,THEFT UNDER - BICYCLE,2016-04-27,2016,April,Wednesday,27,118,18,2016-04-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7600,17222,GO-20169004926,THEFT UNDER,2016-05-20,2016,May,Friday,20,141,17,2016-05-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7601,17226,GO-20169005492,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,9,2016-06-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7602,17230,GO-20169005801,THEFT UNDER - BICYCLE,2016-06-11,2016,June,Saturday,11,163,16,2016-06-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7603,17234,GO-20169006198,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,23,2016-06-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7604,17236,GO-20169006330,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,17,2016-06-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7605,17248,GO-20169007155,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,16,2016-07-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7606,17250,GO-20169007256,THEFT UNDER - BICYCLE,2016-07-14,2016,July,Thursday,14,196,14,2016-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7607,17253,GO-20161406315,ROBBERY - OTHER,2016-08-10,2016,August,Wednesday,10,223,1,2016-08-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7608,17262,GO-20169009666,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,16,2016-08-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7609,17266,GO-20169010318,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,0,2016-09-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7610,17267,GO-20169010318,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,0,2016-09-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7611,17270,GO-20169010516,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,0,2016-09-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7612,17278,GO-20169011665,THEFT UNDER,2016-10-05,2016,October,Wednesday,5,279,16,2016-10-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7613,17279,GO-20169011705,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,23,2016-10-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7614,17284,GO-20169012624,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,0,2016-10-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7615,17287,GO-20161935532,THEFT UNDER - BICYCLE,2016-10-31,2016,October,Monday,31,305,9,2016-10-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7616,17290,GO-20169013534,THEFT UNDER - BICYCLE,2016-11-17,2016,November,Thursday,17,322,8,2016-11-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7617,17291,GO-20169013828,THEFT UNDER,2016-11-23,2016,November,Wednesday,23,328,21,2016-11-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7618,17293,GO-20162074286,THEFT OVER - BICYCLE,2016-11-22,2016,November,Tuesday,22,327,12,2016-12-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7619,17297,GO-2017297203,THEFT UNDER - BICYCLE,2017-02-16,2017,February,Thursday,16,47,23,2017-02-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7620,17315,GO-20179005788,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,17,2017-05-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7621,17467,GO-20142693804,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,9,2014-08-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7622,17478,GO-20149006778,PROPERTY - LOST,2014-09-08,2014,September,Monday,8,251,8,2014-09-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7623,17487,GO-20149007439,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,15,2014-10-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7624,17491,GO-20143229667,THEFT UNDER,2014-10-31,2014,October,Friday,31,304,22,2014-11-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7625,17492,GO-20143229667,THEFT UNDER,2014-10-31,2014,October,Friday,31,304,22,2014-11-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7626,17495,GO-20143309349,THEFT UNDER,2014-11-15,2014,November,Saturday,15,319,19,2014-11-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7627,17497,GO-20143355394,THEFT UNDER,2014-11-13,2014,November,Thursday,13,317,9,2014-11-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7628,17501,GO-20159000512,THEFT UNDER,2015-01-24,2015,January,Saturday,24,24,17,2015-01-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7629,17502,GO-20159000579,THEFT UNDER,2015-01-26,2015,January,Monday,26,26,8,2015-02-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7630,18823,GO-20202247200,THEFT OVER - BICYCLE,2020-11-25,2020,November,Wednesday,25,330,13,2020-11-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7631,19604,GO-20209028111,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,12,2020-10-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7632,19605,GO-20209028111,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,12,2020-10-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7633,19976,GO-20189031332,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,9,2018-09-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7634,19980,GO-20189032554,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,15,2018-10-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7635,19987,GO-20189033985,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,9,2018-10-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7636,19988,GO-20189034056,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,12,2018-10-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7637,19993,GO-20189034997,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,20,2018-10-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7638,19996,GO-20189035724,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,16,2018-10-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7639,20003,GO-20189041906,THEFT UNDER,2018-12-06,2018,December,Thursday,6,340,9,2018-12-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7640,20014,GO-20199006824,THEFT UNDER,2019-02-11,2019,February,Monday,11,42,0,2019-02-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7641,20023,GO-2019720270,THEFT UNDER,2019-04-21,2019,April,Sunday,21,111,20,2019-04-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7642,20032,GO-2019984205,B&E,2019-05-15,2019,May,Wednesday,15,135,10,2019-05-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7643,20033,GO-20199017794,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,9,2019-06-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7644,20192,GO-20179008600,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,20,2017-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7645,20223,GO-20171459781,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,13,2017-08-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7646,20231,GO-20179013382,THEFT UNDER,2017-08-23,2017,August,Wednesday,23,235,17,2017-08-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7647,20239,GO-20171680458,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,11,2017-09-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7648,20240,GO-20171717224,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,10,2017-09-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7649,20262,GO-20179017844,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,15,2017-10-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7650,20265,GO-20179018188,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,12,2017-10-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7651,20268,GO-20179018708,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,1,2017-11-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7652,20274,GO-20173014822,THEFT UNDER - BICYCLE,2017-10-23,2017,October,Monday,23,296,11,2017-11-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7653,20282,GO-20179022429,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,6,2017-12-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7654,20289,GO-20189005878,THEFT UNDER - BICYCLE,2018-02-23,2018,February,Friday,23,54,14,2018-02-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7655,20293,GO-20189013378,THEFT UNDER - BICYCLE,2018-04-25,2018,April,Wednesday,25,115,12,2018-04-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7656,20296,GO-20189014445,THEFT UNDER,2018-04-30,2018,April,Monday,30,120,15,2018-05-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7657,20298,GO-20189014880,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,9,2018-05-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7658,20300,GO-20189015359,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,16,2018-05-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7659,20301,GO-20189015936,THEFT UNDER - BICYCLE,2018-05-19,2018,May,Saturday,19,139,23,2018-05-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7660,20316,GO-20189019190,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,7,2018-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7661,20318,GO-20189019607,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,17,2018-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7662,20321,GO-20181166381,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,5,2018-06-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7663,20332,GO-20189022521,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,17,2018-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7664,20340,GO-20181373319,THEFT OF EBIKE UNDER $5000,2018-07-24,2018,July,Tuesday,24,205,18,2018-07-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7665,20342,GO-20189025472,THEFT UNDER,2018-08-07,2018,August,Tuesday,7,219,0,2018-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7666,20346,GO-20189026220,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,14,2018-08-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7667,20349,GO-20189026446,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,15,2018-08-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7668,20362,GO-20189028515,THEFT FROM MOTOR VEHICLE UNDER,2018-08-23,2018,August,Thursday,23,235,23,2018-08-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7669,20377,GO-20189031165,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,13,2018-09-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7670,20392,GO-2015947587,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,11,2015-06-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7671,20396,GO-20159003735,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,13,2015-06-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7672,20400,GO-20151148841,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,23,2015-07-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7673,20401,GO-20151148841,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,23,2015-07-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7674,20406,GO-20159004610,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,7,2015-07-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7675,20407,GO-20159004631,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,15,2015-07-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7676,20411,GO-20151221966,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,17,2015-07-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7677,20418,GO-20151262131,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,9,2015-07-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7678,20424,GO-20159005432,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,23,2015-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7679,20431,GO-20159006579,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,10,2015-09-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7680,20434,GO-20159006829,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,17,2015-09-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7681,20435,GO-20159006829,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,17,2015-09-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7682,20449,GO-20159009095,THEFT UNDER,2015-10-22,2015,October,Thursday,22,295,21,2015-10-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7683,20480,GO-20169003351,THEFT UNDER - BICYCLE,2016-04-11,2016,April,Monday,11,102,20,2016-04-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7684,20486,GO-2016751374,B&E,2016-04-25,2016,April,Monday,25,116,10,2016-05-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7685,20491,GO-2016815415,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,12,2016-05-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7686,20498,GO-20161044951,THEFT OF EBIKE UNDER $5000,2016-06-15,2016,June,Wednesday,15,167,18,2016-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7687,20499,GO-20161044951,THEFT OF EBIKE UNDER $5000,2016-06-15,2016,June,Wednesday,15,167,18,2016-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7688,20513,GO-20169007795,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,22,2016-07-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7689,20516,GO-20169008139,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,13,2016-08-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7690,20524,GO-20169009558,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,23,2016-08-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7691,20525,GO-20169009558,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,23,2016-08-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7692,20559,GO-20169014440,THEFT UNDER - BICYCLE,2016-12-09,2016,December,Friday,9,344,12,2016-12-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7693,20560,GO-201752572,THEFT UNDER - BICYCLE,2017-01-08,2017,January,Sunday,8,8,13,2017-01-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7694,20561,GO-2017199854,THEFT UNDER - BICYCLE,2016-11-12,2016,November,Saturday,12,317,9,2017-02-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7695,20563,GO-20179002227,THEFT UNDER,2017-02-20,2017,February,Monday,20,51,0,2017-02-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7696,20565,GO-20179003883,THEFT UNDER - BICYCLE,2017-03-25,2017,March,Saturday,25,84,17,2017-03-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7697,20612,GO-20199025346,THEFT UNDER - BICYCLE,2019-08-03,2019,August,Saturday,3,215,9,2019-08-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7698,20637,GO-20191684686,THEFT OF EBIKE UNDER $5000,2019-08-21,2019,August,Wednesday,21,233,0,2019-09-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7699,20640,GO-20191759399,THEFT OF EBIKE UNDER $5000,2019-09-13,2019,September,Friday,13,256,9,2019-09-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7700,20666,GO-20192075903,PROPERTY - FOUND,2019-10-27,2019,October,Sunday,27,300,15,2019-10-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7701,20688,GO-20209000637,THEFT UNDER,2019-12-01,2019,December,Sunday,1,335,0,2020-01-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7702,20700,GO-20209010759,THEFT UNDER,2020-04-08,2020,April,Wednesday,8,99,19,2020-04-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7703,20706,GO-2020902829,THEFT UNDER - BICYCLE,2020-05-13,2020,May,Wednesday,13,134,20,2020-05-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7704,20707,GO-20209013297,THEFT UNDER,2020-05-16,2020,May,Saturday,16,137,19,2020-05-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7705,20720,GO-20209016303,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,19,2020-06-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7706,20748,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7707,20749,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7708,20750,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7709,20751,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7710,20752,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7711,20753,GO-20201550944,B&E,2020-08-14,2020,August,Friday,14,227,15,2020-08-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7712,23650,GO-20159007058,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,18,2015-09-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7713,2048,GO-2018364268,DRUG - TRAF OTHER (SCHD I),2018-02-26,2018,February,Monday,26,57,17,2018-02-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7714,22621,GO-20199026524,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,11,2019-08-16,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7715,2145,GO-2018635658,THEFT UNDER - BICYCLE,2018-02-21,2018,February,Wednesday,21,52,12,2018-04-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7716,2147,GO-20189011176,THEFT UNDER - BICYCLE,2018-04-10,2018,April,Tuesday,10,100,7,2018-04-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7717,2174,GO-2018702990,THEFT UNDER - BICYCLE,2018-04-19,2018,April,Thursday,19,109,16,2018-04-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7718,2192,GO-20189012607,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,18,2018-04-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7719,2235,GO-20189013481,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,9,2018-05-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7720,2240,GO-20189013600,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,15,2018-05-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7721,2241,GO-20189013617,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,20,2018-05-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7722,2242,GO-20189013623,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,20,2018-05-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7723,2257,GO-2018809095,B&E,2018-04-26,2018,April,Thursday,26,116,0,2018-05-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7724,2258,GO-2018809095,B&E,2018-04-26,2018,April,Thursday,26,116,0,2018-05-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7725,2259,GO-2018809095,B&E,2018-04-26,2018,April,Thursday,26,116,0,2018-05-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7726,2310,GO-20189014880,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,9,2018-05-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7727,2327,GO-20189015217,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,17,2018-05-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7728,2355,GO-20189015638,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,18,2018-05-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7729,2417,GO-2018959425,B&E,2018-05-21,2018,May,Monday,21,141,6,2018-05-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7730,2442,GO-20189017127,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,18,2018-06-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7731,2448,GO-20189017251,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,9,2018-06-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7732,2451,GO-20189017127,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,18,2018-06-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7733,2457,GO-20189017355,THEFT UNDER - BICYCLE,2018-05-26,2018,May,Saturday,26,146,17,2018-06-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7734,2484,GO-20189017686,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,16,2018-06-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7735,2552,GO-20181051556,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,21,2018-06-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7736,2557,GO-20189018575,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,16,2018-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7737,2576,GO-20189018804,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,12,2018-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7738,2614,GO-20181114971,THEFT OF EBIKE UNDER $5000,2018-06-19,2018,June,Tuesday,19,170,14,2018-06-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7739,2642,GO-20189019671,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,11,2018-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7740,2681,GO-20189020230,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,9,2018-06-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7741,2698,GO-20189020415,THEFT UNDER,2018-06-23,2018,June,Saturday,23,174,23,2018-06-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7742,2758,GO-20189021321,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,11,2018-07-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7743,22644,GO-20199029771,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,18,2019-09-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7744,23652,GO-20159007228,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,9,2015-09-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7745,2844,GO-20189022426,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,16,2018-07-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7746,2886,GO-20189023072,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,2,2018-07-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7747,2893,GO-20189023137,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,19,2018-07-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7748,2920,GO-20181343608,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,16,2018-07-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7749,2933,GO-20189023631,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,19,2018-07-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7750,2935,GO-20189023682,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,17,2018-07-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7751,2945,GO-20189023631,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,19,2018-07-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7752,3042,GO-20189024734,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,18,2018-08-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7753,3104,GO-20189025411,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,13,2018-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7754,3185,GO-20181495377,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,19,2018-08-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7755,3212,GO-20189026550,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,8,2018-08-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7756,3259,GO-20189027128,THEFT UNDER,2018-07-24,2018,July,Tuesday,24,205,20,2018-08-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7757,3284,GO-20181549703,THEFT FROM MOTOR VEHICLE OVER,2018-07-30,2018,July,Monday,30,211,19,2018-08-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7758,3301,GO-20181564535,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,12,2018-08-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7759,3331,GO-20189028115,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,23,2018-08-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7760,3333,GO-20189028111,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,12,2018-08-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7761,3334,GO-20189028111,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,12,2018-08-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7762,3343,GO-20189028313,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,3,2018-08-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7763,3438,GO-20189029880,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,21,2018-09-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7764,3480,GO-20189030540,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,23,2018-09-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7765,3549,GO-20189031757,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,16,2018-09-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7766,3595,GO-20189032630,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,23,2018-10-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7767,3617,GO-20189032965,THEFT UNDER - BICYCLE,2018-10-04,2018,October,Thursday,4,277,17,2018-10-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7768,3675,GO-20189033757,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,22,2018-10-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7769,3676,GO-20189033757,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,22,2018-10-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7770,3705,GO-20189034213,THEFT UNDER - BICYCLE,2018-10-15,2018,October,Monday,15,288,17,2018-10-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7771,3713,GO-20189034403,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,1,2018-10-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7772,3737,GO-20189034911,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,20,2018-10-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7773,3776,GO-20189035935,THEFT UNDER - BICYCLE,2018-10-27,2018,October,Saturday,27,300,18,2018-10-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7774,3841,GO-20189037796,THEFT UNDER - BICYCLE,2018-11-11,2018,November,Sunday,11,315,17,2018-11-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7775,3914,GO-20189040579,THEFT UNDER - BICYCLE,2018-11-28,2018,November,Wednesday,28,332,19,2018-12-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7776,3928,GO-20189041051,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,14,2018-12-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7777,3952,GO-20182337367,B&E W'INTENT,2018-12-20,2018,December,Thursday,20,354,15,2018-12-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7778,3976,GO-20198269,THEFT OF EBIKE UNDER $5000,2019-01-02,2019,January,Wednesday,2,2,4,2019-01-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7779,4003,GO-20199001569,THEFT UNDER - BICYCLE,2019-01-12,2019,January,Saturday,12,12,22,2019-01-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7780,4069,GO-2019361411,B&E,2019-02-23,2019,February,Saturday,23,54,23,2019-02-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7781,4070,GO-20199006791,B&E,2019-02-26,2019,February,Tuesday,26,57,23,2019-02-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7782,4095,GO-20199008518,THEFT UNDER - BICYCLE,2019-03-16,2019,March,Saturday,16,75,10,2019-03-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7783,4144,GO-20199011141,B&E,2019-03-13,2019,March,Wednesday,13,72,20,2019-04-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7784,4172,GO-20199012156,THEFT UNDER,2019-04-08,2019,April,Monday,8,98,19,2019-04-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7785,4177,GO-2019694101,B&E,2019-04-11,2019,April,Thursday,11,101,15,2019-04-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7786,4178,GO-2019694101,B&E,2019-04-11,2019,April,Thursday,11,101,15,2019-04-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7787,4190,GO-2019720664,PROPERTY - FOUND,2019-04-21,2019,April,Sunday,21,111,22,2019-04-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7788,4198,GO-20199012952,THEFT UNDER,2019-04-23,2019,April,Tuesday,23,113,19,2019-04-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7789,4269,GO-2019869124,B&E,2019-02-11,2019,February,Monday,11,42,0,2019-05-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7790,4282,GO-20199015157,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,9,2019-05-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7791,4302,GO-2019914076,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,0,2019-05-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7792,4383,GO-2019994714,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,16,2019-05-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7793,4389,GO-20199017044,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,15,2019-05-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7794,1073,GO-20179011897,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,9,2017-08-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7795,4392,GO-2019995215,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,20,2019-05-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7796,4412,GO-20199017447,THEFT UNDER,2019-06-04,2019,June,Tuesday,4,155,10,2019-06-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7797,4429,GO-20199017819,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,18,2019-06-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7798,4432,GO-20191044933,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,21,2019-06-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7799,4444,GO-20199018029,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,11,2019-06-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7800,4462,GO-20199018265,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,10,2019-06-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7801,4502,GO-20199018773,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,8,2019-06-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7802,4549,GO-2019962089,PROPERTY - FOUND,2019-05-26,2019,May,Sunday,26,146,13,2019-05-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7803,4560,GO-20199019435,THEFT UNDER,2018-10-20,2018,October,Saturday,20,293,19,2019-06-20,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7804,4645,GO-20199020610,THEFT UNDER,2019-06-29,2019,June,Saturday,29,180,14,2019-06-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7805,4690,GO-20191268380,THEFT UNDER - BICYCLE,2019-07-05,2019,July,Friday,5,186,9,2019-07-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7806,4848,GO-20191382706,B&E,2019-07-17,2019,July,Wednesday,17,198,0,2019-07-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7807,4879,GO-20199023682,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,11,2019-07-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7808,4937,GO-20199024490,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,20,2019-07-31,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7809,5065,GO-20199026187,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,18,2019-08-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7810,5079,GO-20199026312,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,22,2019-08-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7811,5138,GO-20199027328,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,15,2019-08-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7812,23676,GO-2016254774,THEFT UNDER,2016-02-11,2016,February,Thursday,11,42,22,2016-02-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7813,23690,GO-2016765305,B&E,2016-04-20,2016,April,Wednesday,20,111,0,2016-05-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7814,23694,GO-20169004507,THEFT UNDER - BICYCLE,2016-05-12,2016,May,Thursday,12,133,13,2016-05-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7815,23702,GO-20169005492,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,9,2016-06-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7816,23710,GO-20161052278,THEFT OF EBIKE UNDER $5000,2016-06-16,2016,June,Thursday,16,168,15,2016-06-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7817,23715,GO-20169006404,THEFT UNDER,2016-06-26,2016,June,Sunday,26,178,18,2016-06-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7818,23732,GO-20169008846,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,9,2016-08-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7819,23734,GO-20161484650,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,23,2016-08-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7820,23739,GO-20161494523,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,15,2016-08-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7821,23756,GO-20169011555,B&E,2016-09-27,2016,September,Tuesday,27,271,16,2016-10-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7822,23760,GO-20169012217,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,9,2016-10-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7823,23766,GO-20169012787,THEFT FROM MOTOR VEHICLE UNDER,2016-10-30,2016,October,Sunday,30,304,15,2016-10-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7824,23767,GO-20169013069,B&E,2016-09-16,2016,September,Friday,16,260,9,2016-11-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7825,23773,GO-20162123327,THEFT UNDER - BICYCLE,2016-11-29,2016,November,Tuesday,29,334,23,2016-11-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7826,23778,GO-20179000341,THEFT UNDER,2017-01-07,2017,January,Saturday,7,7,11,2017-01-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7827,23779,GO-20179001246,B&E,2017-01-21,2017,January,Saturday,21,21,22,2017-01-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7828,23780,GO-20179001687,THEFT UNDER,2017-01-02,2017,January,Monday,2,2,22,2017-02-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7829,23782,GO-20169011581,B&E,2016-09-26,2016,September,Monday,26,270,7,2016-10-05,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7830,23883,GO-20149003759,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,19,2014-06-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7831,23893,GO-20149003976,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,12,2014-06-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7832,23895,GO-20149004048,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,17,2014-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7833,23901,GO-20149004258,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,18,2014-06-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7834,23915,GO-20149004850,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,13,2014-07-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7835,23924,GO-20149005068,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,23,2014-07-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7836,23934,GO-20149005677,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,9,2014-08-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7837,23935,GO-20142680463,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,12,2014-08-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7838,23938,GO-20142720064,PROPERTY - LOST,2014-08-17,2014,August,Sunday,17,229,12,2014-08-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7839,23952,GO-20149006973,PROPERTY - LOST,2014-09-14,2014,September,Sunday,14,257,21,2014-09-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7840,23955,GO-20149007012,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,9,2014-09-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7841,23983,GO-2015768658,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,19,2015-05-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7842,23984,GO-20159002568,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,20,2015-05-09,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7843,137,GO-2017415007,THEFT UNDER - BICYCLE,2017-03-06,2017,March,Monday,6,65,21,2017-03-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7844,142,GO-20179002895,THEFT UNDER - BICYCLE,2017-03-06,2017,March,Monday,6,65,18,2017-03-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7845,275,GO-2017720839,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,13,2017-04-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7846,298,GO-20179005447,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,0,2017-04-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7847,367,GO-2017830811,B&E,2017-05-10,2017,May,Wednesday,10,130,17,2017-05-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7848,398,GO-20179006390,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,11,2017-05-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7849,421,GO-20179006624,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,21,2017-05-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7850,538,GO-20179007507,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,21,2017-06-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7851,569,GO-20179007801,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,19,2017-06-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7852,582,GO-20171027313,THEFT OF EBIKE OVER $5000,2017-06-09,2017,June,Friday,9,160,20,2017-06-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7853,737,GO-20179009133,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,17,2017-06-28,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7854,745,GO-20171144702,THEFT UNDER,2017-06-26,2017,June,Monday,26,177,22,2017-06-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7855,828,GO-20179009905,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,16,2017-07-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7856,885,GO-20179010137,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,9,2017-07-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7857,903,GO-20179010503,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,14,2017-07-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7858,929,GO-20171316619,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,20,2017-07-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7859,1019,GO-20179011369,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,19,2017-07-31,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7860,1031,GO-20179011468,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,20,2017-08-01,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7861,1100,GO-20179012019,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,2,2017-08-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7862,1102,GO-20179012065,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,1,2017-08-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7863,1151,GO-20179012445,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,11,2017-08-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7864,1154,GO-20179012486,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,17,2017-08-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7865,1387,GO-20171665848,B&E,2017-09-14,2017,September,Thursday,14,257,11,2017-09-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7866,1388,GO-20171665848,B&E,2017-09-14,2017,September,Thursday,14,257,11,2017-09-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7867,1428,GO-20179014944,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,13,2017-09-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7868,1448,GO-20179015085,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,10,2017-09-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7869,1673,GO-20179017411,THEFT UNDER - BICYCLE,2017-10-16,2017,October,Monday,16,289,9,2017-10-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7870,1699,GO-20179017552,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,19,2017-10-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7871,1855,GO-20173006578,THEFT OF EBIKE UNDER $5000,2017-11-15,2017,November,Wednesday,15,319,21,2017-11-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7872,1860,GO-20179019960,THEFT UNDER - BICYCLE,2017-11-18,2017,November,Saturday,18,322,15,2017-11-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7873,1873,GO-20179020399,THEFT UNDER - BICYCLE,2017-11-19,2017,November,Sunday,19,323,23,2017-11-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7874,1884,GO-20173082243,B&E,2017-11-20,2017,November,Monday,20,324,16,2017-11-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7875,1885,GO-20173082243,B&E,2017-11-20,2017,November,Monday,20,324,16,2017-11-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7876,2068,GO-20189007063,THEFT UNDER - BICYCLE,2018-03-06,2018,March,Tuesday,6,65,9,2018-03-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7877,2073,GO-20189007645,THEFT UNDER - BICYCLE,2018-03-06,2018,March,Tuesday,6,65,17,2018-03-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7878,2264,GO-20189014003,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,20,2018-05-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7879,2281,GO-20189014343,THEFT UNDER - BICYCLE,2018-05-07,2018,May,Monday,7,127,9,2018-05-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7880,2357,GO-20189015653,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,15,2018-05-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7881,2366,GO-20189015653,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,15,2018-05-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7882,2473,GO-20189017531,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,10,2018-06-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7883,2523,GO-20189018147,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,21,2018-06-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7884,2713,GO-20181180825,B&E,2016-06-28,2016,June,Tuesday,28,180,11,2018-06-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7885,2975,GO-20189024047,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,18,2018-07-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7886,3005,GO-20189024287,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,22,2018-07-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7887,3174,GO-20189026087,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,17,2018-08-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7888,3182,GO-20189026159,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,15,2018-08-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7889,3385,GO-20181592652,THEFT OF EBIKE UNDER $5000,2018-08-28,2018,August,Tuesday,28,240,7,2018-08-28,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7890,3417,GO-20189029525,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,16,2018-09-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7891,3484,GO-20189030562,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,9,2018-09-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7892,3489,GO-20189030742,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,22,2018-09-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7893,3537,GO-20189031590,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,19,2018-09-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7894,3614,GO-20189032859,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,8,2018-10-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7895,3757,GO-20189035451,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,20,2018-10-24,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7896,3758,GO-20189035451,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,20,2018-10-24,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7897,4124,GO-20199010445,B&E,2019-03-28,2019,March,Thursday,28,87,20,2019-04-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7898,4129,GO-2019600645,THEFT UNDER - BICYCLE,2019-04-03,2019,April,Wednesday,3,93,15,2019-04-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7899,4131,GO-20199010722,B&E,2019-04-03,2019,April,Wednesday,3,93,14,2019-04-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7900,4230,GO-20199013837,THEFT UNDER,2019-04-25,2019,April,Thursday,25,115,1,2019-05-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7901,4249,GO-2019829852,THEFT UNDER - BICYCLE,2019-05-07,2019,May,Tuesday,7,127,14,2019-05-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7902,4259,GO-2019841851,THEFT UNDER,2019-05-09,2019,May,Thursday,9,129,10,2019-05-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7903,4284,GO-20199015234,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,5,2019-05-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7904,4336,GO-20199016150,THEFT UNDER,2019-05-24,2019,May,Friday,24,144,12,2019-05-24,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -7905,22681,GO-20192227836,THEFT UNDER - BICYCLE,2019-11-17,2019,November,Sunday,17,321,23,2019-11-18,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7906,22694,GO-2020391521,THEFT UNDER,2020-02-14,2020,February,Friday,14,45,3,2020-02-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7907,22716,GO-20209012780,THEFT UNDER,2020-05-08,2020,May,Friday,8,129,17,2020-05-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7908,22801,GO-20209029008,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,18,2020-11-08,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7909,22805,GO-20209031791,THEFT UNDER,2020-12-06,2020,December,Sunday,6,341,12,2020-12-12,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7910,23218,GO-20181917942,B&E,2018-10-06,2018,October,Saturday,6,279,16,2018-10-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7911,23230,GO-20182157928,THEFT UNDER,2018-11-09,2018,November,Friday,9,313,11,2018-11-27,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7912,23252,GO-2019826413,THEFT UNDER,2019-01-07,2019,January,Monday,7,7,12,2019-05-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7913,23267,GO-20191125915,ASSAULT WITH WEAPON,2019-06-18,2019,June,Tuesday,18,169,8,2019-06-18,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7914,23271,GO-20199019803,THEFT UNDER,2019-06-23,2019,June,Sunday,23,174,16,2019-06-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7915,23434,GO-20171194313,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,9,2017-07-04,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7916,23443,GO-20171310301,THEFT OF EBIKE UNDER $5000,2017-07-21,2017,July,Friday,21,202,14,2017-07-21,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7917,23446,GO-20171327046,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,2,2017-07-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7918,23449,GO-20171328905,THEFT UNDER,2017-07-24,2017,July,Monday,24,205,5,2017-07-24,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7919,23486,GO-20179017374,THEFT UNDER,2017-10-16,2017,October,Monday,16,289,19,2017-10-16,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7920,23510,GO-20189009218,THEFT UNDER - BICYCLE,2018-03-21,2018,March,Wednesday,21,80,18,2018-03-23,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7921,23515,GO-2018655710,B&E,2017-11-25,2017,November,Saturday,25,329,5,2018-04-13,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7922,23532,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,18,2018-06-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7923,23533,GO-20189017756,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,18,2018-06-07,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7924,23639,GO-20159005544,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,16,2015-08-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7925,23660,GO-20151795325,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,17,2015-10-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7926,23667,GO-20159009572,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,9,2015-11-09,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7927,23674,GO-20169001091,THEFT UNDER,2016-02-03,2016,February,Wednesday,3,34,17,2016-02-03,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7928,23700,GO-20169005256,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,21,2016-06-02,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7929,23704,GO-20169005552,THEFT UNDER,2016-06-07,2016,June,Tuesday,7,159,8,2016-06-10,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7930,23723,GO-20169008377,B&E,2016-08-08,2016,August,Monday,8,221,10,2016-08-08,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7931,23770,GO-20162031823,THEFT OF EBIKE UNDER $5000,2016-11-08,2016,November,Tuesday,8,313,14,2016-11-17,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7932,23896,GO-20149004061,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,11,2014-06-14,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7933,23933,GO-20142630812,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,10,2014-08-03,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7934,23957,GO-20149007126,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,20,2014-09-22,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7935,23959,GO-20142982401,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,11,2014-09-25,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7936,23960,GO-20142982401,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,11,2014-09-25,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)}",Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -7937,22,GO-20169014792,THEFT UNDER - BICYCLE,2016-12-17,2016,December,Saturday,17,352,16,2016-12-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7938,31,GO-20162281027,THEFT UNDER - BICYCLE,2016-12-24,2016,December,Saturday,24,359,15,2016-12-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7939,36,GO-201710432,B&E,2016-12-22,2016,December,Thursday,22,357,12,2017-01-02,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7940,38,GO-20179000174,THEFT UNDER - BICYCLE,2017-01-04,2017,January,Wednesday,4,4,12,2017-01-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7941,47,GO-20179000516,THEFT UNDER,2017-01-10,2017,January,Tuesday,10,10,20,2017-01-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7942,50,GO-20179000676,THEFT UNDER,2017-01-15,2017,January,Sunday,15,15,14,2017-01-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7943,84,GO-20179001675,THEFT UNDER - BICYCLE,2017-02-07,2017,February,Tuesday,7,38,7,2017-02-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7944,118,GO-20179002566,THEFT UNDER - BICYCLE,2017-02-26,2017,February,Sunday,26,57,18,2017-02-27,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7945,144,GO-2017410888,B&E,2017-02-24,2017,February,Friday,24,55,0,2017-03-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7946,210,GO-20179004553,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,8,2017-04-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7947,224,GO-20179004721,THEFT UNDER - BICYCLE,2017-04-15,2017,April,Saturday,15,105,9,2017-04-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7948,235,GO-20179004790,THEFT UNDER - BICYCLE,2017-04-09,2017,April,Sunday,9,99,0,2017-04-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7949,247,GO-20179004721,THEFT UNDER - BICYCLE,2017-04-15,2017,April,Saturday,15,105,9,2017-04-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7950,248,GO-20179004955,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,9,2017-04-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7951,266,GO-20179005125,THEFT UNDER,2017-04-08,2017,April,Saturday,8,98,15,2017-04-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7952,365,GO-2017830225,THEFT OF EBIKE UNDER $5000,2017-05-10,2017,May,Wednesday,10,130,15,2017-05-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7953,370,GO-20179006154,THEFT UNDER,2017-05-10,2017,May,Wednesday,10,130,15,2017-05-11,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7954,447,GO-20179006597,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,10,2017-05-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7955,544,GO-20179007596,THEFT UNDER - BICYCLE,2017-06-04,2017,June,Sunday,4,155,9,2017-06-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7956,603,GO-20179007993,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,22,2017-06-12,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7957,605,GO-20179007999,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,19,2017-06-13,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7958,609,GO-20171011533,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,18,2017-06-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7959,614,GO-20179008108,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,9,2017-06-14,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7960,628,GO-20171073249,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,9,2017-06-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7961,651,GO-20179008426,THEFT UNDER,2017-06-19,2017,June,Monday,19,170,1,2017-06-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7962,678,GO-20179008604,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,12,2017-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7963,680,GO-20171110474,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,5,2017-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7964,682,GO-20179008640,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,7,2017-06-21,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7965,718,GO-20179008913,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,12,2017-06-26,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7966,771,GO-20179009383,THEFT UNDER,2017-07-02,2017,July,Sunday,2,183,23,2017-07-04,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7967,808,GO-20179009737,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,23,2017-07-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7968,824,GO-20179009863,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,14,2017-07-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7969,825,GO-20179009863,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,14,2017-07-10,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7970,869,GO-20179010275,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,12,2017-07-15,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7971,871,GO-20179010289,THEFT UNDER - BICYCLE,2017-07-17,2017,July,Monday,17,198,2,2017-07-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7972,876,GO-20179010346,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,19,2017-07-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7973,920,GO-20179010563,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,10,2017-07-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7974,949,GO-20179010848,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,0,2017-07-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7975,974,GO-20179011025,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,9,2017-07-25,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7976,1033,GO-20179011500,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,13,2017-08-01,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7977,1044,GO-20171368216,THEFT FROM MOTOR VEHICLE OVER,2017-07-29,2017,July,Saturday,29,210,7,2017-07-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7978,1071,GO-20179010875,MISCHIEF TO VEHICLE,2017-07-22,2017,July,Saturday,22,203,12,2017-07-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7979,1087,GO-20179011963,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,7,2017-08-08,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7980,1159,GO-20179012524,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,23,2017-08-16,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7981,1170,GO-20171421497,B&E,2017-08-04,2017,August,Friday,4,216,10,2017-08-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7982,1215,GO-20171526126,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,0,2017-08-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7983,1216,GO-20171526126,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,0,2017-08-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7984,1260,GO-20179013506,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,17,2017-08-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7985,1333,GO-20179014187,THEFT UNDER,2017-09-07,2017,September,Thursday,7,250,9,2017-09-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7986,1338,GO-20179014183,THEFT UNDER,2017-09-06,2017,September,Wednesday,6,249,22,2017-09-07,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7987,1425,GO-20171688135,THEFT OF EBIKE UNDER $5000,2017-09-17,2017,September,Sunday,17,260,7,2017-09-17,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7988,1440,GO-20179015045,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,11,2017-09-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7989,1456,GO-20179015182,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,12,2017-09-19,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7990,1544,GO-20179015994,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,17,2017-09-28,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7991,1581,GO-20179016370,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,13,2017-10-03,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7992,1600,GO-20179016613,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,12,2017-10-06,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7993,1676,GO-20171885967,B&E W'INTENT,2017-10-13,2017,October,Friday,13,286,18,2017-10-18,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7994,1715,GO-20179017830,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,21,2017-10-22,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7995,1728,GO-20179017989,B&E,2017-10-23,2017,October,Monday,23,296,11,2017-10-23,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7996,1734,GO-20179018051,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,14,2017-10-24,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7997,1758,GO-20171957432,THEFT UNDER,2017-10-28,2017,October,Saturday,28,301,1,2017-10-29,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7998,1768,GO-20171964819,THEFT OVER - BICYCLE,2017-10-28,2017,October,Saturday,28,301,15,2017-10-30,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)}",Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -7999,9356,GO-20159001611,THEFT UNDER,2015-03-28,2015,March,Saturday,28,87,12,2015-03-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8000,9362,GO-2015548522,THEFT UNDER,2015-04-01,2015,April,Wednesday,1,91,23,2015-04-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8001,9395,GO-2015612404,B&E,2015-04-13,2015,April,Monday,13,103,18,2015-04-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8002,9396,GO-2015612404,B&E,2015-04-13,2015,April,Monday,13,103,18,2015-04-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8003,9399,GO-20159001885,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,9,2015-04-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8004,9418,GO-20159001990,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,10,2015-04-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8005,9423,GO-20159002008,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,8,2015-04-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8006,9486,GO-20159002303,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,7,2015-04-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8007,9508,GO-2015731478,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,0,2015-05-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8008,9529,GO-2015747870,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,13,2015-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8009,9538,GO-20159002499,THEFT UNDER,2015-04-02,2015,April,Thursday,2,92,12,2015-05-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8010,9539,GO-20159002499,THEFT UNDER,2015-04-02,2015,April,Thursday,2,92,12,2015-05-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8011,9569,GO-2015800092,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,18,2015-05-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8012,9595,GO-2015820063,THEFT UNDER,2015-05-16,2015,May,Saturday,16,136,21,2015-05-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8013,23557,GO-20189022581,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,19,2018-07-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8014,9608,GO-20159002896,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,16,2015-05-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8015,9627,GO-20159002979,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,19,2015-05-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8016,9674,GO-20159003159,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,4,2015-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8017,9680,GO-20159003178,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,17,2015-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8018,9685,GO-2015892409,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,12,2015-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8019,9689,GO-2015906281,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,20,2015-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8020,9712,GO-20159003279,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,9,2015-06-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8021,9720,GO-20159003309,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,14,2015-06-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8022,9753,GO-2015959886,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,17,2015-06-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8023,9763,GO-2015966212,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,22,2015-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8024,9774,GO-2015974356,B&E,2015-05-21,2015,May,Thursday,21,141,13,2015-06-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8025,9780,GO-20159003527,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,15,2015-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8026,9783,GO-20159003534,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,22,2015-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8027,9794,GO-2015968223,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,12,2015-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8028,9820,GO-20151009369,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,9,2015-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8029,9827,GO-20159003728,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,11,2015-06-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8030,9843,GO-20159003801,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,15,2015-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8031,9867,GO-20151065983,INCIDENT,2015-06-23,2015,June,Tuesday,23,174,19,2015-06-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8032,9886,GO-20151077570,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,11,2015-06-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8033,9907,GO-20159004032,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,15,2015-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8034,9910,GO-20159004048,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,19,2015-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8035,9933,GO-20159004158,THEFT UNDER,2015-06-27,2015,June,Saturday,27,178,20,2015-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8036,9963,GO-20159004304,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,17,2015-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8037,9968,GO-20159004315,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,8,2015-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8038,9993,GO-20151185183,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,21,2015-07-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8039,10025,GO-20159004604,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,15,2015-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8040,10029,GO-20159004609,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,8,2015-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8041,10072,GO-20151237139,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,16,2015-07-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8042,10077,GO-20151261342,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,19,2015-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8043,10095,GO-20159004961,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,12,2015-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8044,10096,GO-20159004980,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,12,2015-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8045,10116,GO-20151276950,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,14,2015-07-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8046,10132,GO-20151286630,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,16,2015-07-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8047,10144,GO-20159005151,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,2,2015-07-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8048,10187,GO-20151353861,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,13,2015-08-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8049,10231,GO-20159005593,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,14,2015-08-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8050,10258,GO-20159005737,B&E,2015-07-21,2015,July,Tuesday,21,202,10,2015-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8051,10304,GO-20159005995,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,19,2015-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8052,10311,GO-20159006068,THEFT UNDER,2015-08-20,2015,August,Thursday,20,232,10,2015-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8053,10315,GO-20159006102,THEFT UNDER,2015-08-20,2015,August,Thursday,20,232,14,2015-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8054,10329,GO-20151468213,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,9,2015-08-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8055,10333,GO-20151478704,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,14,2015-08-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8056,10343,GO-20159006344,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,21,2015-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8057,10349,GO-20159006408,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,17,2015-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8058,10350,GO-20159006418,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,10,2015-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8059,10369,GO-20151511916,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,16,2015-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8060,10379,GO-20151511947,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,17,2015-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8061,10383,GO-20159006606,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,8,2015-09-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8062,10400,GO-20159006742,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,10,2015-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8063,10405,GO-20159006763,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,23,2015-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8064,10408,GO-20159006778,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,21,2015-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8065,10413,GO-20159006816,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,13,2015-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8066,10566,GO-20159007931,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,17,2015-09-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8067,10436,GO-20159006922,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,16,2015-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8068,10449,GO-20151562567,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,9,2015-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8069,10466,GO-20159007193,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,16,2015-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8070,10471,GO-20159007205,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,18,2015-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8071,10482,GO-20151615181,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,22,2015-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8072,10508,GO-20159007489,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,22,2015-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8073,10536,GO-20159007662,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,11,2015-09-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8074,6641,GO-20209017751,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,17,2020-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8075,10594,GO-20159008193,THEFT UNDER,2015-10-02,2015,October,Friday,2,275,14,2015-10-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8076,10595,GO-20159008193,THEFT UNDER,2015-10-02,2015,October,Friday,2,275,14,2015-10-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8077,10601,GO-20151726291,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,17,2015-10-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8078,10611,GO-20151742974,THEFT UNDER,2015-10-08,2015,October,Thursday,8,281,17,2015-10-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8079,10618,GO-20159008461,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,11,2015-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8080,10625,GO-20159008505,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,2,2015-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8081,10628,GO-20159008522,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,9,2015-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8082,10633,GO-20151778468,B&E,2015-10-14,2015,October,Wednesday,14,287,0,2015-10-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8083,10635,GO-20151780154,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,16,2015-10-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8084,10636,GO-20159008594,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,15,2015-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8085,10666,GO-20159008852,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,17,2015-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8086,10680,GO-20159008904,THEFT UNDER,2015-10-20,2015,October,Tuesday,20,293,19,2015-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8087,10693,GO-20151848396,B&E,2015-10-20,2015,October,Tuesday,20,293,0,2015-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8088,10704,GO-20159009155,THEFT UNDER,2015-10-29,2015,October,Thursday,29,302,13,2015-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8089,10722,GO-20151889720,B&E,2015-10-14,2015,October,Wednesday,14,287,9,2015-11-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8090,10746,GO-20159009614,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,6,2015-11-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8091,10767,GO-20159009708,THEFT UNDER,2015-10-23,2015,October,Friday,23,296,12,2015-11-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8092,10780,GO-20151973485,THEFT OF MOTOR VEHICLE,2015-11-17,2015,November,Tuesday,17,321,12,2015-11-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8093,10788,GO-20151972368,THEFT UNDER,2015-11-17,2015,November,Tuesday,17,321,10,2015-11-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8094,10791,GO-20159009918,THEFT UNDER,2015-11-17,2015,November,Tuesday,17,321,16,2015-11-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8095,10806,GO-20159010123,THEFT UNDER,2015-11-23,2015,November,Monday,23,327,18,2015-11-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8096,10819,GO-20152033300,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,17,2015-11-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8097,10843,GO-20159010596,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,11,2015-12-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8098,10848,GO-20159010675,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,14,2015-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8099,10854,GO-20142449314,THEFT OVER,2014-07-07,2014,July,Monday,7,188,12,2014-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8100,10868,GO-20152120942,THEFT OVER,2015-12-10,2015,December,Thursday,10,344,18,2015-12-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8101,7820,GO-20141856259,THEFT UNDER,2014-04-09,2014,April,Wednesday,9,99,10,2014-04-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8102,3113,GO-20189025493,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,23,2018-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8103,5821,GO-20209001261,THEFT UNDER,2019-10-20,2019,October,Sunday,20,293,0,2020-01-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8104,16988,GO-20179016465,THEFT UNDER,2017-10-02,2017,October,Monday,2,275,19,2017-10-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8105,4520,GO-20199019040,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,21,2019-06-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8106,1318,GO-20179014033,THEFT UNDER,2017-09-05,2017,September,Tuesday,5,248,9,2017-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8107,23604,GO-2015906689,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,21,2015-05-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8108,23624,GO-20159004303,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,13,2015-07-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8109,23628,GO-20151238360,B&E,2015-07-20,2015,July,Monday,20,201,2,2015-07-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8110,23634,GO-20159005316,THEFT UNDER,2015-04-27,2015,April,Monday,27,117,21,2015-08-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8111,23656,GO-20151702268,THEFT UNDER,2015-10-02,2015,October,Friday,2,275,12,2015-10-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8112,23658,GO-20151707447,THEFT UNDER,2015-10-03,2015,October,Saturday,3,276,13,2015-10-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8113,23662,GO-20159008901,THEFT UNDER,2015-10-22,2015,October,Thursday,22,295,19,2015-10-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8114,1319,GO-20179014033,THEFT UNDER,2017-09-05,2017,September,Tuesday,5,248,9,2017-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8115,7822,GO-20141852381,THEFT UNDER,2014-04-08,2014,April,Tuesday,8,98,15,2014-04-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8116,23665,GO-20159009535,B&E,2015-10-18,2015,October,Sunday,18,291,14,2015-11-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8117,3129,GO-20181466020,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,15,2018-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8118,5837,GO-2020100914,THEFT UNDER,2019-12-31,2019,December,Tuesday,31,365,15,2020-01-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8119,1327,GO-20171615311,THEFT OVER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,12,2017-09-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8120,7853,GO-20149002958,THEFT UNDER,2014-02-27,2014,February,Thursday,27,58,21,2014-04-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8121,23672,GO-20152113918,B&E,2015-12-10,2015,December,Thursday,10,344,0,2015-12-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8122,3131,GO-20181466306,B&E,2018-08-08,2018,August,Wednesday,8,220,10,2018-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8123,5846,GO-20209002528,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,0,2020-01-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8124,5849,GO-20209003005,THEFT UNDER,2020-01-20,2020,January,Monday,20,20,14,2020-01-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8125,5871,GO-2020235203,THEFT UNDER,2020-01-12,2020,January,Sunday,12,12,16,2020-02-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8126,5905,GO-20209005905,THEFT UNDER,2020-02-12,2020,February,Wednesday,12,43,18,2020-02-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8127,5911,GO-20209005905,THEFT UNDER,2020-02-12,2020,February,Wednesday,12,43,18,2020-02-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8128,5913,GO-20209005905,THEFT UNDER,2020-02-12,2020,February,Wednesday,12,43,18,2020-02-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8129,5922,GO-2020387852,THEFT UNDER,2020-02-23,2020,February,Sunday,23,54,0,2020-02-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8130,5947,GO-20209008109,THEFT UNDER,2020-03-07,2020,March,Saturday,7,67,16,2020-03-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8131,5961,GO-20209008934,THEFT UNDER,2020-03-14,2020,March,Saturday,14,74,15,2020-03-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8132,5963,GO-20209008958,THEFT UNDER,2020-03-08,2020,March,Sunday,8,68,23,2020-03-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8133,6004,GO-20209010169,THEFT UNDER,2020-03-27,2020,March,Friday,27,87,17,2020-03-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8134,6008,GO-20209010245,THEFT UNDER,2020-03-24,2020,March,Tuesday,24,84,1,2020-04-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8135,6016,GO-2020646680,THEFT OVER,2020-03-31,2020,March,Tuesday,31,91,15,2020-04-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8136,6047,GO-20209010895,THEFT UNDER,2020-04-08,2020,April,Wednesday,8,99,20,2020-04-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8137,6076,GO-20209011437,THEFT UNDER,2020-04-17,2020,April,Friday,17,108,23,2020-04-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8138,6080,GO-20209011514,THEFT UNDER - BICYCLE,2020-04-18,2020,April,Saturday,18,109,16,2020-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8139,4351,GO-20199016380,THEFT UNDER,2019-05-26,2019,May,Sunday,26,146,3,2019-05-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8140,6103,GO-20209011920,THEFT UNDER - BICYCLE,2020-04-22,2020,April,Wednesday,22,113,0,2020-04-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8141,6157,GO-20209012722,THEFT UNDER,2020-05-08,2020,May,Friday,8,129,12,2020-05-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8142,6172,GO-20209013011,THEFT UNDER,2020-05-13,2020,May,Wednesday,13,134,6,2020-05-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8143,6173,GO-20209013011,THEFT UNDER,2020-05-13,2020,May,Wednesday,13,134,6,2020-05-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8144,6200,GO-20209013353,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,10,2020-05-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8145,6308,GO-2020988521,THEFT OF EBIKE UNDER $5000,2020-05-28,2020,May,Thursday,28,149,21,2020-05-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8146,6334,GO-20209014859,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,2,2020-06-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8147,6348,GO-20201074169,THEFT UNDER - BICYCLE,2020-06-10,2020,June,Wednesday,10,162,19,2020-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8148,6374,GO-20209015298,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,18,2020-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8149,6384,GO-20209015328,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,20,2020-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8150,6396,GO-20209015436,THEFT UNDER,2020-06-15,2020,June,Monday,15,167,19,2020-06-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8151,6403,GO-20209015483,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,18,2020-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8152,6445,GO-20201153624,THEFT UNDER - BICYCLE,2020-06-22,2020,June,Monday,22,174,23,2020-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8153,6462,GO-20201168913,THEFT OF EBIKE UNDER $5000,2020-06-25,2020,June,Thursday,25,177,11,2020-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8154,6489,GO-20201168639,THEFT OF EBIKE UNDER $5000,2020-06-25,2020,June,Thursday,25,177,11,2020-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8155,6491,GO-20209016414,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,22,2020-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8156,4521,GO-20199019040,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,21,2019-06-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8157,6506,GO-20209016488,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,18,2020-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8158,6507,GO-20209016488,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,18,2020-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8159,6533,GO-20209016844,THEFT UNDER,2020-07-04,2020,July,Saturday,4,186,13,2020-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8160,6558,GO-20201258583,B&E,2020-06-09,2020,June,Tuesday,9,161,16,2020-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8161,6586,GO-20201284559,THEFT UNDER - BICYCLE,2020-07-09,2020,July,Thursday,9,191,17,2020-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8162,6637,GO-20201322559,THEFT OF EBIKE UNDER $5000,2020-07-15,2020,July,Wednesday,15,197,18,2020-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8163,6662,GO-20209017942,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,13,2020-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8164,6698,GO-20209018178,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,8,2020-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8165,6789,GO-20201412424,THEFT OF EBIKE UNDER $5000,2020-07-29,2020,July,Wednesday,29,211,10,2020-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8166,6791,GO-20201407824,THEFT UNDER - BICYCLE,2020-07-24,2020,July,Friday,24,206,19,2020-07-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8167,6805,GO-20209018917,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,15,2020-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8168,6810,GO-20209018860,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,19,2020-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8169,6833,GO-20209019116,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,21,2020-07-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8170,6838,GO-20209019140,THEFT UNDER,2020-07-31,2020,July,Friday,31,213,22,2020-08-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8171,6935,GO-20209019907,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,2,2020-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8172,10316,GO-20159006110,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,11,2015-08-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8173,16994,GO-20179017552,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,19,2017-10-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8174,6947,GO-20209020042,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,9,2020-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8175,6970,GO-20201547352,THEFT UNDER - BICYCLE,2020-08-16,2020,August,Sunday,16,229,19,2020-08-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8176,6986,GO-20209020526,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,18,2020-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8177,7004,GO-20209020712,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,11,2020-08-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8178,7029,GO-20209020931,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,14,2020-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8179,7035,GO-20209020960,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,23,2020-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8180,7047,GO-20209020931,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,14,2020-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8181,7054,GO-20209021095,THEFT UNDER - BICYCLE,2020-08-24,2020,August,Monday,24,237,0,2020-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8182,7067,GO-20209021210,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,16,2020-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8183,7097,GO-20209021541,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,1,2020-08-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8184,7110,GO-20209020526,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,18,2020-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8185,7137,GO-20209021837,THEFT UNDER - BICYCLE,2020-08-30,2020,August,Sunday,30,243,19,2020-08-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8186,7149,GO-20209021998,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,20,2020-09-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8187,7158,GO-20209022096,THEFT UNDER,2020-08-29,2020,August,Saturday,29,242,5,2020-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8188,7160,GO-20209022119,THEFT UNDER,2020-09-02,2020,September,Wednesday,2,246,13,2020-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8189,7183,GO-20201678540,THEFT OF EBIKE UNDER $5000,2020-08-30,2020,August,Sunday,30,243,18,2020-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8190,7184,GO-20209022440,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,18,2020-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8191,7198,GO-20209022549,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,14,2020-09-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8192,7205,GO-20209022652,THEFT FROM MOTOR VEHICLE UNDER,2020-09-07,2020,September,Monday,7,251,10,2020-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8193,7209,GO-20201705252,B&E,2020-09-08,2020,September,Tuesday,8,252,17,2020-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8194,7213,GO-20209022719,THEFT UNDER,2020-09-08,2020,September,Tuesday,8,252,20,2020-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8195,7222,GO-20209022851,THEFT UNDER - BICYCLE,2020-09-10,2020,September,Thursday,10,254,13,2020-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8196,7223,GO-20209022833,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,21,2020-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8197,7257,GO-20209023372,THEFT UNDER - BICYCLE,2020-09-03,2020,September,Thursday,3,247,22,2020-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8198,7282,GO-20209023691,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,9,2020-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8199,7314,GO-20209023979,THEFT UNDER - BICYCLE,2020-09-16,2020,September,Wednesday,16,260,12,2020-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8200,7343,GO-20201804484,THEFT OF EBIKE UNDER $5000,2020-09-15,2020,September,Tuesday,15,259,21,2020-09-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8201,7355,GO-20209024460,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,11,2020-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8202,7739,GO-20141305317,THEFT UNDER,2014-01-05,2014,January,Sunday,5,5,23,2014-01-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8203,7426,GO-20201907652,THEFT OF EBIKE UNDER $5000,2020-10-07,2020,October,Wednesday,7,281,19,2020-10-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8204,7502,GO-20209022631,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,1,2020-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8205,7509,GO-20209026970,THEFT UNDER,2020-10-09,2020,October,Friday,9,283,10,2020-10-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8206,7524,GO-20209027327,THEFT UNDER,2020-10-21,2020,October,Wednesday,21,295,18,2020-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8207,7527,GO-20209027370,THEFT UNDER - BICYCLE,2020-10-22,2020,October,Thursday,22,296,19,2020-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8208,7567,GO-20202051253,THEFT UNDER - BICYCLE,2020-10-19,2020,October,Monday,19,293,7,2020-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8209,7586,GO-20209028406,THEFT UNDER - BICYCLE,2020-10-30,2020,October,Friday,30,304,10,2020-11-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8210,7660,GO-20209030511,THEFT UNDER - BICYCLE,2020-11-24,2020,November,Tuesday,24,329,20,2020-11-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8211,7682,GO-20209031078,THEFT UNDER,2020-12-02,2020,December,Wednesday,2,337,18,2020-12-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8212,7694,GO-20202310658,THEFT UNDER - BICYCLE,2020-12-07,2020,December,Monday,7,342,10,2020-12-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8213,7725,GO-20202448376,THEFT OF EBIKE UNDER $5000,2020-12-29,2020,December,Tuesday,29,364,15,2020-12-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8214,7729,GO-20149000074,THEFT UNDER,2013-12-25,2013,December,Wednesday,25,359,16,2014-01-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8215,7730,GO-20141281947,THEFT UNDER,2014-01-04,2014,January,Saturday,4,4,18,2014-01-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8216,7731,GO-20141285125,THEFT UNDER,2013-12-23,2013,December,Monday,23,357,9,2014-01-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8217,7735,GO-20149000113,THEFT UNDER,2013-12-31,2013,December,Tuesday,31,365,0,2014-01-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8218,7736,GO-20149000113,THEFT UNDER,2013-12-31,2013,December,Tuesday,31,365,0,2014-01-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8219,7785,GO-20141743873,THEFT UNDER,2014-03-14,2014,March,Friday,14,73,19,2014-03-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8220,7797,GO-20149002410,THEFT UNDER,2014-03-28,2014,March,Friday,28,87,15,2014-03-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8221,7799,GO-20149002440,THEFT UNDER,2014-03-30,2014,March,Sunday,30,89,12,2014-03-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8222,7802,GO-20141809196,THEFT UNDER,2014-01-31,2014,January,Friday,31,31,21,2014-04-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8223,7819,GO-20149002617,THEFT UNDER,2014-04-08,2014,April,Tuesday,8,98,13,2014-04-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8224,3167,GO-20189025958,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,8,2018-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8225,3198,GO-20189026345,THEFT UNDER,2018-08-10,2018,August,Friday,10,222,18,2018-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8226,3230,GO-20189026677,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,7,2018-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8227,3244,GO-20189026907,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,0,2018-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8228,3271,GO-20189027200,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,16,2018-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8229,3274,GO-20181525974,THEFT OF EBIKE UNDER $5000,2018-08-14,2018,August,Tuesday,14,226,13,2018-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8230,23688,GO-20169004132,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,12,2016-05-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8231,3278,GO-20189027271,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,2,2018-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8232,1345,GO-20179014308,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,18,2017-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8233,7860,GO-20149002998,THEFT UNDER,2014-04-12,2014,April,Saturday,12,102,17,2014-04-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8234,23705,GO-20169005592,THEFT UNDER,2016-06-04,2016,June,Saturday,4,156,19,2016-06-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8235,3288,GO-20189027482,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,15,2018-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8236,4436,GO-20199017886,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,15,2019-06-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8237,10328,GO-20159006189,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,22,2015-08-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8238,1354,GO-20179014397,THEFT UNDER,2017-09-09,2017,September,Saturday,9,252,19,2017-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8239,4459,GO-20191081987,THEFT UNDER,2019-06-04,2019,June,Tuesday,4,155,0,2019-06-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8240,23716,GO-20169006737,THEFT UNDER,2016-07-02,2016,July,Saturday,2,184,8,2016-07-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8241,7871,GO-20141982447,THEFT UNDER,2014-04-28,2014,April,Monday,28,118,17,2014-04-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8242,4522,GO-20199019033,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,17,2019-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8243,17043,GO-20189017531,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,10,2018-06-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8244,17048,GO-20189018385,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,13,2018-06-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8245,3289,GO-20189027271,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,2,2018-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8246,17096,GO-20189029102,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,14,2018-09-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8247,10374,GO-20159006560,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,1,2015-08-31,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8248,4488,GO-20191105288,PROPERTY - FOUND,2019-06-14,2019,June,Friday,14,165,22,2019-06-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8249,1380,GO-20179014555,THEFT UNDER,2017-09-11,2017,September,Monday,11,254,20,2017-09-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8250,8063,GO-20149003845,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,20,2014-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8251,23718,GO-20169007157,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,12,2016-07-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8252,4546,GO-20191139528,THEFT OF EBIKE UNDER $5000,2019-06-19,2019,June,Wednesday,19,170,22,2019-06-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8253,7877,GO-20141995643,THEFT UNDER,2014-04-26,2014,April,Saturday,26,116,13,2014-05-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8254,7886,GO-20141740213,THEFT UNDER,2014-03-18,2014,March,Tuesday,18,77,17,2014-03-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8255,7899,GO-20142047200,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,10,2014-05-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8256,7920,GO-20142064711,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,2,2014-05-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8257,7934,GO-20149003367,THEFT UNDER,2014-05-14,2014,May,Wednesday,14,134,16,2014-05-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8258,7937,GO-20149003393,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,16,2014-05-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8259,7941,GO-20149003409,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,7,2014-05-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8260,7944,GO-20149003423,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,14,2014-05-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8261,7950,GO-20142115665,THEFT UNDER,2014-05-20,2014,May,Tuesday,20,140,12,2014-05-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8262,7988,GO-20142154575,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,1,2014-05-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8263,8014,GO-20149003720,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,17,2014-05-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8264,8047,GO-20149003802,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,0,2014-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8265,8058,GO-20142222175,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,7,2014-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8266,8062,GO-20142226651,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,9,2014-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8267,8069,GO-20149003853,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,13,2014-06-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8268,8083,GO-20149003928,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,19,2014-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8269,8102,GO-20142270662,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,9,2014-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8270,8131,GO-20149004040,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,8,2014-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8271,8146,GO-20149004063,THEFT UNDER,2014-05-02,2014,May,Friday,2,122,12,2014-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8272,8158,GO-20149004150,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,19,2014-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8273,8177,GO-20142309006,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,14,2014-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8274,8180,GO-20149004199,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,16,2014-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8275,8195,GO-20149004271,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,8,2014-06-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8276,8218,GO-20142344452,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,23,2014-06-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8277,8239,GO-20149004409,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,19,2014-06-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8278,8244,GO-20149004422,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,18,2014-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8279,8246,GO-20142358066,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,18,2014-06-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8280,23736,GO-20161491822,THEFT OF EBIKE UNDER $5000,2016-07-26,2016,July,Tuesday,26,208,19,2016-08-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8281,1433,GO-20179014971,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,14,2017-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8282,4505,GO-20199018797,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,18,2019-06-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8283,10389,GO-20159006657,B&E,2015-08-21,2015,August,Friday,21,233,22,2015-09-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8284,3297,GO-20189027584,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,10,2018-08-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8285,17103,GO-20189030742,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,22,2018-09-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8286,4562,GO-20191133879,B&E,2019-06-19,2019,June,Wednesday,19,170,0,2019-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8287,8249,GO-20149004436,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,11,2014-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8288,8258,GO-20149004472,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,0,2014-06-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8289,8261,GO-20149004487,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,1,2014-06-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8290,8290,GO-20142421096,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,17,2014-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8291,8304,GO-20149004603,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,21,2014-07-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8292,8305,GO-20149004608,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,18,2014-07-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8293,8329,GO-20149004665,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,14,2014-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8294,8340,GO-20149004684,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,17,2014-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8295,8344,GO-20149004693,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,0,2014-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8296,8347,GO-20149004705,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,22,2014-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8297,8351,GO-20149004732,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,17,2014-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8298,8367,GO-20149004810,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,9,2014-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8299,8393,GO-20149004907,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,18,2014-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8300,8405,GO-20149004936,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,10,2014-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8301,8427,GO-20149005005,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,10,2014-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8302,8428,GO-20149005014,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,23,2014-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8303,8451,GO-20142514424,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,20,2014-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8304,8479,GO-20149005210,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,18,2014-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8305,8489,GO-20149005246,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,18,2014-07-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8306,8500,GO-20149005259,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,23,2014-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8307,8568,GO-20149005559,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,15,2014-08-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8308,8583,GO-20142660478,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,12,2014-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8309,8624,GO-20149005749,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,10,2014-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8310,8645,GO-20149005853,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,17,2014-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8311,8662,GO-20149005956,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,19,2014-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8312,8709,GO-20142753975,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,16,2014-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8313,8725,GO-20149006274,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,19,2014-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8314,8726,GO-20149006274,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,19,2014-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8315,8729,GO-20149006282,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,19,2014-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8316,8731,GO-20149006291,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,19,2014-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8317,8743,GO-20149006233,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,10,2014-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8318,8754,GO-20149006234,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,11,2014-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8319,8780,GO-20149006458,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,15,2014-09-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8320,8790,GO-20149006498,THEFT UNDER,2013-09-28,2013,September,Saturday,28,271,19,2014-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8321,8795,GO-20149006511,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,22,2014-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8322,8796,GO-20149006511,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,22,2014-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8323,8818,GO-20149006589,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,8,2014-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8324,8842,GO-20142876399,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,14,2014-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8325,8860,GO-20149006745,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,9,2014-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8326,8876,GO-20142878601,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,19,2014-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8327,8888,GO-20149006890,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,18,2014-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8328,8906,GO-20142916387,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,10,2014-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8329,8915,GO-20149007000,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,23,2014-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8330,8927,GO-20149007038,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,17,2014-09-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8331,8951,GO-20142968832,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,15,2014-09-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8332,9027,GO-20143057853,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,6,2014-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8333,9031,GO-20149007473,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,9,2014-10-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8334,9036,GO-20143075724,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,18,2014-10-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8335,9073,GO-20143115332,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,11,2014-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8336,9086,GO-20143146028,THEFT UNDER,2014-10-20,2014,October,Monday,20,293,14,2014-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8337,9173,GO-20149008132,THEFT UNDER,2014-11-07,2014,November,Friday,7,311,12,2014-11-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8338,9189,GO-20143303182,THEFT UNDER,2014-11-14,2014,November,Friday,14,318,22,2014-11-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8339,9203,GO-20149008441,THEFT UNDER,2014-11-16,2014,November,Sunday,16,320,16,2014-11-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8340,9217,GO-20143437133,THEFT UNDER,2014-12-06,2014,December,Saturday,6,340,15,2014-12-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8341,9218,GO-20149008597,THEFT UNDER,2014-12-06,2014,December,Saturday,6,340,9,2014-12-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8342,9224,GO-20149008645,THEFT UNDER,2014-12-06,2014,December,Saturday,6,340,8,2014-12-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8343,9226,GO-20149008688,THEFT UNDER,2014-12-03,2014,December,Wednesday,3,337,20,2014-12-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8344,9233,GO-20143501329,THEFT UNDER,2014-12-11,2014,December,Thursday,11,345,12,2014-12-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8345,9236,GO-20149008885,THEFT UNDER,2014-12-20,2014,December,Saturday,20,354,23,2014-12-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8346,23737,GO-20169009232,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,0,2016-08-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8347,9239,GO-20143547673,THEFT UNDER,2014-12-25,2014,December,Thursday,25,359,0,2014-12-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8348,9243,GO-20143569982,THEFT UNDER,2014-12-29,2014,December,Monday,29,363,19,2014-12-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8349,9253,GO-20159000137,THEFT UNDER,2014-12-21,2014,December,Sunday,21,355,1,2015-01-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8350,9258,GO-20159000250,THEFT UNDER,2015-01-11,2015,January,Sunday,11,11,13,2015-01-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8351,9279,GO-20159000498,B&E,2015-01-11,2015,January,Sunday,11,11,12,2015-01-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8352,9280,GO-20159000498,B&E,2015-01-11,2015,January,Sunday,11,11,12,2015-01-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8353,9289,GO-2015242716,THEFT OVER,2015-02-10,2015,February,Tuesday,10,41,15,2015-02-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8354,9322,GO-2015445726,THEFT UNDER,2015-02-01,2015,February,Sunday,1,32,12,2015-03-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8355,23775,GO-20169015221,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,13,2016-12-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8356,23892,GO-20149004017,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,9,2014-06-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8357,23953,GO-20149006988,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,17,2014-09-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8358,23973,GO-2015311491,THEFT FROM MOTOR VEHICLE UNDER,2015-02-21,2015,February,Saturday,21,52,16,2015-02-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8359,19,GO-20169014745,THEFT UNDER,2016-11-09,2016,November,Wednesday,9,314,16,2016-12-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8360,26,GO-20162240423,THEFT UNDER - BICYCLE,2016-12-18,2016,December,Sunday,18,353,16,2016-12-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8361,56,GO-20179000898,THEFT UNDER,2017-01-17,2017,January,Tuesday,17,17,7,2017-01-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8362,62,GO-2017143313,THEFT UNDER - BICYCLE,2016-12-29,2016,December,Thursday,29,364,20,2017-01-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8363,82,GO-20179001628,THEFT UNDER,2017-02-06,2017,February,Monday,6,37,12,2017-02-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8364,112,GO-20179002520,THEFT UNDER,2017-02-26,2017,February,Sunday,26,57,5,2017-02-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8365,115,GO-20179002555,THEFT UNDER - BICYCLE,2017-02-27,2017,February,Monday,27,58,8,2017-02-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8366,123,GO-20179002647,THEFT UNDER,2017-03-01,2017,March,Wednesday,1,60,10,2017-03-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8367,203,GO-20179004446,THEFT UNDER - BICYCLE,2017-04-08,2017,April,Saturday,8,98,17,2017-04-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8368,1449,GO-20179015112,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,21,2017-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8369,214,GO-20179004611,THEFT UNDER,2017-04-12,2017,April,Wednesday,12,102,15,2017-04-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8370,217,GO-20179004663,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,15,2017-04-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8371,278,GO-20179005231,THEFT UNDER,2017-04-24,2017,April,Monday,24,114,20,2017-04-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8372,313,GO-20179005554,THEFT UNDER - BICYCLE,2017-05-01,2017,May,Monday,1,121,9,2017-05-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8373,327,GO-20179005719,THEFT UNDER,2017-05-04,2017,May,Thursday,4,124,9,2017-05-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8374,4540,GO-20191134186,THEFT UNDER,2019-05-26,2019,May,Sunday,26,146,12,2019-06-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8375,364,GO-2017812233,THEFT OF EBIKE UNDER $5000,2017-05-08,2017,May,Monday,8,128,18,2017-05-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8376,390,GO-20179006315,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,18,2017-05-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8377,412,GO-20179006535,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,7,2017-05-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8378,428,GO-20179006665,THEFT UNDER,2017-05-16,2017,May,Tuesday,16,136,22,2017-05-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8379,446,GO-20179006796,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,7,2017-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8380,460,GO-20179006893,THEFT UNDER - BICYCLE,2017-05-22,2017,May,Monday,22,142,20,2017-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8381,3335,GO-20181587291,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,21,2018-08-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8382,461,GO-20179006893,THEFT UNDER - BICYCLE,2017-05-22,2017,May,Monday,22,142,20,2017-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8383,488,GO-20179007083,THEFT UNDER,2017-05-12,2017,May,Friday,12,132,17,2017-05-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8384,495,GO-2017941246,THEFT UNDER - BICYCLE,2017-05-27,2017,May,Saturday,27,147,17,2017-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8385,497,GO-2017950312,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,20,2017-05-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8386,498,GO-20179007142,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,17,2017-05-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8387,506,GO-20179007220,THEFT UNDER,2017-05-29,2017,May,Monday,29,149,17,2017-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8388,520,GO-20179006535,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,7,2017-05-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8389,525,GO-20179007434,THEFT UNDER,2017-06-01,2017,June,Thursday,1,152,2,2017-06-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8390,533,GO-20179007477,THEFT UNDER,2017-06-04,2017,June,Sunday,4,155,1,2017-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8391,540,GO-20179007529,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,17,2017-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8392,549,GO-20179007626,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,8,2017-06-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8393,611,GO-20179008065,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,8,2017-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8394,618,GO-20179008077,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,7,2017-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8395,643,GO-20179008314,THEFT UNDER - BICYCLE,2017-06-15,2017,June,Thursday,15,166,9,2017-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8396,645,GO-20179008321,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,19,2017-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8397,672,GO-20171110260,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,19,2017-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8398,674,GO-20179008531,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,13,2017-06-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8399,681,GO-20179008623,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,14,2017-06-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8400,726,GO-20179008973,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,21,2017-06-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8401,759,GO-20179009279,THEFT UNDER,2017-07-01,2017,July,Saturday,1,182,22,2017-07-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8402,997,GO-20179011197,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,20,2017-07-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8403,761,GO-20179009306,THEFT UNDER - BICYCLE,2017-07-01,2017,July,Saturday,1,182,23,2017-07-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8404,762,GO-20179009306,THEFT UNDER - BICYCLE,2017-07-01,2017,July,Saturday,1,182,23,2017-07-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8405,784,GO-20179009527,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,23,2017-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8406,786,GO-20179009546,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,9,2017-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8407,788,GO-20179009533,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,9,2017-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8408,818,GO-20179009811,THEFT UNDER - BICYCLE,2017-06-04,2017,June,Sunday,4,155,1,2017-07-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8409,822,GO-20179009736,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,16,2017-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8410,826,GO-20179009875,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,18,2017-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8411,852,GO-20171249273,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,13,2017-07-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8412,867,GO-20179010249,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,14,2017-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8413,886,GO-20179010371,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,21,2017-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8414,899,GO-20179010446,THEFT UNDER,2017-07-17,2017,July,Monday,17,198,22,2017-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8415,900,GO-20179010446,THEFT UNDER,2017-07-17,2017,July,Monday,17,198,22,2017-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8416,922,GO-20179010564,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,1,2017-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8417,941,GO-20179010749,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,14,2017-07-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8418,971,GO-20179010994,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,10,2017-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8419,1013,GO-20171350351,THEFT FROM MOTOR VEHICLE UNDER,2017-07-28,2017,July,Friday,28,209,10,2017-07-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8420,1014,GO-20171350351,THEFT FROM MOTOR VEHICLE UNDER,2017-07-28,2017,July,Friday,28,209,10,2017-07-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8421,1021,GO-20179011409,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,23,2017-07-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8422,1138,GO-20179012301,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,11,2017-08-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8423,1140,GO-20179012318,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,18,2017-08-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8424,1148,GO-20179012411,THEFT UNDER,2017-08-12,2017,August,Saturday,12,224,15,2017-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8425,1150,GO-20179012434,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,23,2017-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8426,1156,GO-20179012510,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,10,2017-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8427,1173,GO-20179012699,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,7,2017-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8428,1175,GO-20171495774,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,13,2017-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8429,1198,GO-20179012907,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,8,2017-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8430,1199,GO-20179012925,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,17,2017-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8431,1209,GO-20179012997,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,23,2017-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8432,1210,GO-20179012997,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,23,2017-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8433,3497,GO-20189030872,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,18,2018-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8434,1221,GO-20179013084,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,9,2017-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8435,1234,GO-20179013193,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,21,2017-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8436,1238,GO-20179013084,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,9,2017-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8437,1266,GO-20179013586,THEFT UNDER - BICYCLE,2017-08-27,2017,August,Sunday,27,239,18,2017-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8438,1278,GO-20179013789,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,17,2017-09-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8439,1280,GO-20179013797,B&E,2017-08-07,2017,August,Monday,7,219,23,2017-08-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8440,1285,GO-20171585501,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,20,2017-09-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8441,4438,GO-20199017917,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,22,2019-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8442,1292,GO-20179013894,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,15,2017-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8443,1300,GO-20179013937,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,17,2017-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8444,10390,GO-20159006657,B&E,2015-08-21,2015,August,Friday,21,233,22,2015-09-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8445,4563,GO-20191133879,B&E,2019-06-19,2019,June,Wednesday,19,170,0,2019-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8446,17105,GO-20189031183,THEFT UNDER,2018-09-17,2018,September,Monday,17,260,17,2018-09-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8447,3337,GO-20189028153,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,0,2018-08-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8448,3341,GO-20189028222,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,21,2018-08-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8449,3347,GO-20189028416,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,19,2018-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8450,3351,GO-20189028432,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,10,2018-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8451,3381,GO-20181629579,PROPERTY - FOUND,2018-09-02,2018,September,Sunday,2,245,0,2018-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8452,3393,GO-20181637253,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,13,2018-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8453,3396,GO-20189029226,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,12,2018-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8454,3404,GO-20189029354,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,7,2018-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8455,3408,GO-20189029413,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,23,2018-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8456,3412,GO-20189029400,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,20,2018-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8457,3416,GO-20189029491,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,16,2018-09-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8458,3513,GO-20181736381,THEFT OF EBIKE UNDER $5000,2018-09-09,2018,September,Sunday,9,252,21,2018-09-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8459,3535,GO-20189031456,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,12,2018-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8460,3554,GO-20189031925,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,17,2018-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8461,3566,GO-20189032119,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,16,2018-09-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8462,3572,GO-20189032284,THEFT UNDER - BICYCLE,2018-09-28,2018,September,Friday,28,271,13,2018-09-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8463,3577,GO-20189032374,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,21,2018-09-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8464,3582,GO-20189032456,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,7,2018-09-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8465,3600,GO-20189032682,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,12,2018-10-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8466,3610,GO-20189032771,THEFT UNDER - BICYCLE,2018-10-02,2018,October,Tuesday,2,275,19,2018-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8467,3613,GO-20189032850,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,8,2018-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8468,3625,GO-20189033080,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,20,2018-10-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8469,3651,GO-20189033468,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,13,2018-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8470,3659,GO-20189033578,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,16,2018-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8471,3690,GO-20189033886,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,16,2018-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8472,3698,GO-20181888687,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,2,2018-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8473,3699,GO-20189034005,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,13,2018-10-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8474,3709,GO-20189034363,THEFT UNDER - BICYCLE,2018-09-28,2018,September,Friday,28,271,21,2018-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8475,3715,GO-20189034427,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,21,2018-10-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8476,3725,GO-20189034535,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,8,2018-10-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8477,3732,GO-20189034784,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,11,2018-10-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8478,3738,GO-20189034971,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,16,2018-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8479,3763,GO-20181957230,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,16,2018-10-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8480,3769,GO-20189035795,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,17,2018-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8481,3791,GO-20189036321,THEFT UNDER - BICYCLE,2018-10-30,2018,October,Tuesday,30,303,22,2018-10-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8482,3805,GO-20181998498,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,18,2018-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8483,3812,GO-20189036949,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,16,2018-11-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8484,3896,GO-20189039702,THEFT UNDER - BICYCLE,2018-11-24,2018,November,Saturday,24,328,20,2018-11-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8485,3905,GO-20189040115,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,12,2018-11-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8486,3934,GO-20189041701,THEFT UNDER - BICYCLE,2018-12-11,2018,December,Tuesday,11,345,15,2018-12-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8487,3947,GO-20189042609,B&E,2018-11-16,2018,November,Friday,16,320,20,2018-12-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8488,3958,GO-20182329351,THEFT UNDER - BICYCLE,2018-12-18,2018,December,Tuesday,18,352,18,2018-12-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8489,3989,GO-20199000794,THEFT UNDER - BICYCLE,2019-01-07,2019,January,Monday,7,7,22,2019-01-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8490,4027,GO-20199003933,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,15,2019-01-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8491,4046,GO-20199005194,THEFT UNDER - BICYCLE,2019-01-12,2019,January,Saturday,12,12,11,2019-02-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8492,4047,GO-20199005265,THEFT UNDER - BICYCLE,2019-02-12,2019,February,Tuesday,12,43,16,2019-02-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8493,4048,GO-20199005265,THEFT UNDER - BICYCLE,2019-02-12,2019,February,Tuesday,12,43,16,2019-02-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8494,4054,GO-2019303897,THEFT UNDER - BICYCLE,2019-02-16,2019,February,Saturday,16,47,21,2019-02-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8495,4074,GO-20199007095,THEFT UNDER - BICYCLE,2019-03-02,2019,March,Saturday,2,61,20,2019-03-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8496,4111,GO-20199009765,THEFT UNDER,2019-03-23,2019,March,Saturday,23,82,19,2019-03-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8497,4112,GO-20199009775,THEFT UNDER,2019-03-26,2019,March,Tuesday,26,85,18,2019-03-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8498,4128,GO-20199010553,THEFT UNDER,2019-03-31,2019,March,Sunday,31,90,18,2019-04-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8499,4156,GO-2019657141,THEFT UNDER,2019-04-11,2019,April,Thursday,11,101,18,2019-04-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8500,4164,GO-20199011750,THEFT UNDER,2019-04-13,2019,April,Saturday,13,103,10,2019-04-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8501,4201,GO-20199013059,THEFT UNDER,2019-04-25,2019,April,Thursday,25,115,8,2019-04-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8502,4202,GO-20199013086,THEFT UNDER,2019-04-25,2019,April,Thursday,25,115,20,2019-04-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8503,4203,GO-20199013161,THEFT UNDER,2019-04-26,2019,April,Friday,26,116,1,2019-04-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8504,4243,GO-2019822450,THEFT UNDER - BICYCLE,2019-05-06,2019,May,Monday,6,126,7,2019-05-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8505,4288,GO-20199015329,THEFT UNDER,2019-05-10,2019,May,Friday,10,130,17,2019-05-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8506,4298,GO-20199015512,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,17,2019-05-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8507,4304,GO-20199015684,THEFT UNDER,2019-05-19,2019,May,Sunday,19,139,0,2019-05-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8508,4308,GO-20199015728,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,12,2019-05-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8509,4314,GO-20199015772,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,11,2019-05-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8510,4315,GO-20199015789,THEFT UNDER,2019-05-14,2019,May,Tuesday,14,134,18,2019-05-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8511,4322,GO-20199015882,THEFT UNDER,2019-05-22,2019,May,Wednesday,22,142,12,2019-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8512,4323,GO-20199015948,THEFT UNDER,2019-05-22,2019,May,Wednesday,22,142,17,2019-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8513,4362,GO-20199016554,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,18,2019-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8514,4377,GO-2019990047,B&E,2019-05-30,2019,May,Thursday,30,150,3,2019-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8515,4394,GO-20199017118,THEFT UNDER,2019-05-26,2019,May,Sunday,26,146,14,2019-06-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8516,4398,GO-20199017159,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,20,2019-06-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8517,4399,GO-20191015028,THEFT OF EBIKE UNDER $5000,2019-06-02,2019,June,Sunday,2,153,11,2019-06-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8518,4409,GO-20199017434,THEFT UNDER,2019-06-04,2019,June,Tuesday,4,155,18,2019-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8519,4426,GO-20199017790,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,15,2019-06-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8520,4430,GO-20191047522,B&E,2019-06-07,2019,June,Friday,7,158,4,2019-06-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8521,4445,GO-20199018018,THEFT UNDER,2019-05-11,2019,May,Saturday,11,131,10,2019-06-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8522,4454,GO-20199018154,THEFT UNDER,2019-05-18,2019,May,Saturday,18,138,9,2019-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8523,4465,GO-20191065023,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,18,2019-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8524,4470,GO-20199018395,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,18,2019-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8525,4475,GO-20199018442,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,17,2019-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8526,4485,GO-20191102219,THEFT OF EBIKE UNDER $5000,2019-06-14,2019,June,Friday,14,165,20,2019-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8527,4490,GO-20199018652,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,17,2019-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8528,4495,GO-20199018695,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,22,2019-06-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8529,4509,GO-20199018850,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,17,2019-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8530,4511,GO-20191118639,THEFT OF EBIKE OVER $5000,2019-06-16,2019,June,Sunday,16,167,19,2019-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8531,4586,GO-20191174286,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,23,2019-06-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8532,17136,GO-20159003291,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,8,2015-06-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8533,4541,GO-20191122960,THEFT UNDER - BICYCLE,2019-06-17,2019,June,Monday,17,168,19,2019-06-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8534,1450,GO-20179015109,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,15,2017-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8535,10752,GO-20151927626,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,9,2015-11-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8536,17142,GO-20159003933,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,9,2015-06-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8537,4568,GO-20191156645,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,21,2019-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8538,1475,GO-20179015341,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,12,2017-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8539,10798,GO-20159010013,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,21,2015-11-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8540,4588,GO-20199019883,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,17,2019-06-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8541,17148,GO-20159004410,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,20,2015-07-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8542,4569,GO-20191156645,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,21,2019-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8543,1477,GO-20171631131,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,23,2017-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8544,10821,GO-20152036206,THEFT UNDER,2015-11-27,2015,November,Friday,27,331,19,2015-11-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8545,4606,GO-20199020087,THEFT UNDER,2019-06-25,2019,June,Tuesday,25,176,15,2019-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8546,17154,GO-20151234751,POSSESSION PROPERTY OBC UNDER,2015-07-25,2015,July,Saturday,25,206,21,2015-07-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8547,4675,GO-20191238814,THEFT OF EBIKE UNDER $5000,2019-07-03,2019,July,Wednesday,3,184,18,2019-07-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8548,1506,GO-20179015587,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,18,2017-09-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8549,1537,GO-20171736506,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,15,2017-09-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8550,1549,GO-20171769761,THEFT OF EBIKE UNDER $5000,2017-09-29,2017,September,Friday,29,272,9,2017-09-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8551,1558,GO-20179016145,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,19,2017-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8552,20479,GO-20169003349,THEFT UNDER,2016-04-12,2016,April,Tuesday,12,103,1,2016-04-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8553,1559,GO-20179016145,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,19,2017-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8554,1578,GO-20171791564,B&E,2017-10-03,2017,October,Tuesday,3,276,9,2017-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8555,1594,GO-20179016564,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,6,2017-10-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8556,1611,GO-20171801450,THEFT UNDER - BICYCLE,2017-09-30,2017,September,Saturday,30,273,15,2017-10-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8557,1625,GO-20179016847,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,20,2017-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8558,1685,GO-20179017553,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,20,2017-10-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8559,1695,GO-20171898555,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,6,2017-10-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8560,7099,GO-20201618686,THEFT UNDER - BICYCLE,2020-08-27,2020,August,Thursday,27,240,21,2020-08-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8561,1710,GO-20179017798,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,8,2017-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8562,1717,GO-20171905801,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,2,2017-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8563,1726,GO-20179017972,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,21,2017-10-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8564,1755,GO-20179018327,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,19,2017-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8565,1772,GO-20179018554,THEFT UNDER - BICYCLE,2017-09-07,2017,September,Thursday,7,250,15,2017-10-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8566,1823,GO-20179019372,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,13,2017-11-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8567,1824,GO-20179019390,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,12,2017-11-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8568,1834,GO-20179019512,THEFT UNDER,2017-11-10,2017,November,Friday,10,314,19,2017-11-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8569,1845,GO-20179019620,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,5,2017-11-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8570,1857,GO-20179019853,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,8,2017-11-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8571,1879,GO-20179020483,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,17,2017-11-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8572,1881,GO-20179020587,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,19,2017-11-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8573,1882,GO-20179020596,THEFT UNDER - BICYCLE,2017-11-26,2017,November,Sunday,26,330,23,2017-11-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8574,1886,GO-20173084281,POSSESSION PROPERTY OBC UNDER,2017-11-27,2017,November,Monday,27,331,20,2017-11-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8575,1908,GO-20179021234,THEFT UNDER - BICYCLE,2017-12-03,2017,December,Sunday,3,337,21,2017-12-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8576,2507,GO-20189017952,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,18,2018-06-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8577,1915,GO-20179021379,THEFT UNDER - BICYCLE,2017-11-29,2017,November,Wednesday,29,333,21,2017-12-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8578,1929,GO-20179021696,THEFT UNDER - BICYCLE,2017-12-08,2017,December,Friday,8,342,20,2017-12-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8579,1951,GO-20179022676,THEFT UNDER - BICYCLE,2017-12-19,2017,December,Tuesday,19,353,23,2017-12-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8580,1961,GO-20189000055,THEFT UNDER - BICYCLE,2017-12-30,2017,December,Saturday,30,364,10,2018-01-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8581,2003,GO-20189002632,THEFT UNDER - BICYCLE,2018-01-25,2018,January,Thursday,25,25,13,2018-01-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8582,2024,GO-20189004165,THEFT UNDER - BICYCLE,2018-02-08,2018,February,Thursday,8,39,14,2018-02-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8583,2035,GO-20189005182,THEFT UNDER,2018-02-17,2018,February,Saturday,17,48,13,2018-02-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8584,2053,GO-20189006270,THEFT UNDER - BICYCLE,2018-02-27,2018,February,Tuesday,27,58,10,2018-02-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8585,2079,GO-20189008326,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,16,2018-03-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8586,2090,GO-20189008661,THEFT UNDER - BICYCLE,2018-03-12,2018,March,Monday,12,71,12,2018-03-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8587,2099,GO-20189008790,THEFT UNDER,2018-03-21,2018,March,Wednesday,21,80,1,2018-03-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8588,2100,GO-20189009084,THEFT UNDER - BICYCLE,2018-03-22,2018,March,Thursday,22,81,7,2018-03-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8589,2111,GO-20189009695,THEFT OF EBIKE UNDER $5000,2017-02-28,2017,February,Tuesday,28,59,0,2018-03-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8590,2112,GO-20189009757,THEFT UNDER - BICYCLE,2018-03-27,2018,March,Tuesday,27,86,9,2018-03-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8591,2114,GO-20189009726,THEFT UNDER - BICYCLE,2018-03-27,2018,March,Tuesday,27,86,9,2018-03-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8592,2702,GO-20189020490,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,10,2018-06-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8593,2143,GO-2018631502,THEFT UNDER - BICYCLE,2018-04-08,2018,April,Sunday,8,98,11,2018-04-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8594,2175,GO-20189012130,THEFT UNDER - BICYCLE,2018-04-11,2018,April,Wednesday,11,101,22,2018-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8595,2176,GO-20189012150,THEFT UNDER - BICYCLE,2018-04-19,2018,April,Thursday,19,109,11,2018-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8596,2184,GO-20189012384,THEFT UNDER - BICYCLE,2018-04-20,2018,April,Friday,20,110,4,2018-04-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8597,2223,GO-20189013259,THEFT UNDER - BICYCLE,2018-04-29,2018,April,Sunday,29,119,18,2018-04-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8598,2232,GO-20189013458,THEFT UNDER - BICYCLE,2018-04-26,2018,April,Thursday,26,116,9,2018-05-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8599,2287,GO-20189014455,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,23,2018-05-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8600,5196,GO-20199028253,THEFT UNDER,2019-08-30,2019,August,Friday,30,242,11,2019-08-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8601,2306,GO-20189014786,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,12,2018-05-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8602,2378,GO-20189015921,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,1,2018-05-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8603,2412,GO-20189016352,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,20,2018-05-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8604,2430,GO-20189016438,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,18,2018-05-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8605,2460,GO-20189017406,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,23,2018-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8606,2475,GO-20189017552,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,20,2018-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8607,2485,GO-20181029282,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,23,2018-05-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8608,2504,GO-20189017887,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,9,2018-06-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8609,2508,GO-20189017967,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,19,2018-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8610,2509,GO-20189017967,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,19,2018-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8611,2531,GO-20189018265,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,2,2018-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8612,2534,GO-20189018298,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,18,2018-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8613,2546,GO-20189018460,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,7,2018-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8614,2547,GO-20189018449,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,10,2018-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8615,2551,GO-20189018471,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,18,2018-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8616,2559,GO-20189018653,THEFT UNDER,2018-06-08,2018,June,Friday,8,159,11,2018-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8617,2580,GO-20189018908,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,22,2018-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8618,2581,GO-20189018897,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,20,2018-06-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8619,2582,GO-20189018301,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,12,2018-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8620,2583,GO-20189018907,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,22,2018-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8621,2592,GO-20189019005,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,23,2018-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8622,2605,GO-20189019005,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,23,2018-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8623,2617,GO-20189019326,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,9,2018-06-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8624,2633,GO-20189019538,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,16,2018-06-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8625,2736,GO-20189020968,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,21,2018-07-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8626,2756,GO-20189021206,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,20,2018-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8627,2763,GO-20189021285,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,23,2018-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8628,2778,GO-20189021560,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,0,2018-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8629,2804,GO-20189021913,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8630,2839,GO-20189022319,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,19,2018-07-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8631,2898,GO-20189023142,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,21,2018-07-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8632,2939,GO-20189023690,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,14,2018-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8633,2965,GO-20181368600,THEFT OF EBIKE UNDER $5000,2018-07-25,2018,July,Wednesday,25,206,21,2018-07-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8634,2974,GO-20189024021,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,13,2018-07-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8635,3001,GO-20189024243,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,9,2018-07-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8636,3041,GO-20181406606,THEFT OF EBIKE UNDER $5000,2018-08-01,2018,August,Wednesday,1,213,9,2018-08-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8637,3045,GO-20189024777,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,10,2018-08-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8638,3049,GO-20189024822,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,18,2018-08-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8639,3067,GO-20189025059,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,19,2018-08-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8640,7022,GO-20201572738,THEFT OVER,2019-03-01,2019,March,Friday,1,60,0,2020-08-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8641,4789,GO-20199022658,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,18,2019-07-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8642,4912,GO-20191404441,THEFT UNDER - BICYCLE,2019-06-30,2019,June,Sunday,30,181,12,2019-07-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8643,4934,GO-20199024440,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,16,2019-07-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8644,4976,GO-20199025068,THEFT UNDER,2019-08-06,2019,August,Tuesday,6,218,18,2019-08-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8645,5091,GO-20199026553,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,13,2019-08-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8646,5095,GO-20199026675,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,3,2019-08-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8647,5107,GO-20199026854,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,20,2019-08-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8648,5189,GO-20199028118,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,22,2019-08-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8649,5219,GO-20191665846,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,19,2019-08-31,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8650,5257,GO-20191703758,THEFT UNDER - BICYCLE,2019-09-05,2019,September,Thursday,5,248,21,2019-09-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8651,5324,GO-20199030065,THEFT UNDER,2019-09-14,2019,September,Saturday,14,257,0,2019-09-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8652,5419,GO-20191862741,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,0,2019-09-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8653,5420,GO-20191862741,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,0,2019-09-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8654,5423,GO-20199031837,THEFT UNDER - BICYCLE,2019-09-26,2019,September,Thursday,26,269,8,2019-09-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8655,5569,GO-20192040465,THEFT UNDER - BICYCLE,2019-10-22,2019,October,Tuesday,22,295,16,2019-10-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8656,6026,GO-20209010551,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,11,2020-04-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8657,6084,GO-2020754565,THEFT UNDER - BICYCLE,2020-04-16,2020,April,Thursday,16,107,19,2020-04-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8658,6098,GO-20209011872,THEFT UNDER,2020-04-24,2020,April,Friday,24,115,10,2020-04-24,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8659,6106,GO-20209011991,THEFT UNDER,2020-04-27,2020,April,Monday,27,118,4,2020-04-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8660,6197,GO-20209013323,THEFT UNDER,2020-05-09,2020,May,Saturday,9,130,14,2020-05-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8661,6201,GO-20209013360,THEFT UNDER,2020-04-22,2020,April,Wednesday,22,113,12,2020-05-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8662,6311,GO-20209014729,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,13,2020-06-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8663,6373,GO-20209015293,THEFT UNDER,2020-06-12,2020,June,Friday,12,164,15,2020-06-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8664,6415,GO-20209015568,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,20,2020-06-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8665,21121,GO-2020627625,B&E,2020-03-27,2020,March,Friday,27,87,14,2020-03-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -8666,6458,GO-20209016074,THEFT UNDER,2020-04-02,2020,April,Thursday,2,93,12,2020-06-24,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8667,6669,GO-20209017986,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,3,2020-07-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8668,6690,GO-20209018127,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,2,2020-07-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8669,6928,GO-20209019837,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,14,2020-08-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8670,6993,GO-20209017986,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,3,2020-07-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8671,6997,GO-20201557911,THEFT OF EBIKE UNDER $5000,2020-08-18,2020,August,Tuesday,18,231,23,2020-08-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8672,7020,GO-20201572738,THEFT OVER,2019-03-01,2019,March,Friday,1,60,0,2020-08-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8673,7021,GO-20201572738,THEFT OVER,2019-03-01,2019,March,Friday,1,60,0,2020-08-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8674,7124,GO-20209021774,THEFT UNDER,2020-08-23,2020,August,Sunday,23,236,16,2020-08-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8675,7164,GO-20201630013,THEFT UNDER - BICYCLE,2020-08-29,2020,August,Saturday,29,242,0,2020-09-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8676,7271,GO-20201763656,PROPERTY - FOUND,2020-09-17,2020,September,Thursday,17,261,14,2020-09-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8677,7278,GO-20201778987,THEFT OF EBIKE UNDER $5000,2020-09-19,2020,September,Saturday,19,263,14,2020-09-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8678,7288,GO-20201787518,THEFT OF EBIKE UNDER $5000,2020-09-20,2020,September,Sunday,20,264,19,2020-09-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8679,7315,GO-20209023981,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,17,2020-09-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8680,4633,GO-20199020401,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,20,2019-06-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8681,7332,GO-20201800122,PROPERTY - FOUND,2020-09-22,2020,September,Tuesday,22,266,18,2020-09-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8682,7532,GO-20209027488,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,18,2020-10-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8683,7589,GO-20202091197,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,5,2020-11-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8684,7647,GO-20202193363,THEFT OF EBIKE UNDER $5000,2020-11-12,2020,November,Thursday,12,317,19,2020-11-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8685,7713,GO-20209032618,THEFT UNDER - BICYCLE,2020-12-22,2020,December,Tuesday,22,357,23,2020-12-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8686,7776,GO-20141677268,THEFT UNDER,2014-03-10,2014,March,Monday,10,69,19,2014-03-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8687,7781,GO-20141711138,THEFT UNDER,2014-03-16,2014,March,Sunday,16,75,0,2014-03-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8688,7883,GO-20149003159,THEFT UNDER,2014-04-28,2014,April,Monday,28,118,10,2014-05-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8689,8039,GO-20149003789,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,16,2014-06-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8690,8123,GO-20149003958,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,8,2014-06-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8691,8282,GO-20142420896,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,10,2014-07-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8692,8422,GO-20149004991,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,15,2014-07-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8693,8434,GO-20149005027,THEFT FROM MOTOR VEHICLE UNDER,2014-07-15,2014,July,Tuesday,15,196,9,2014-07-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8694,8435,GO-20149005027,THEFT FROM MOTOR VEHICLE UNDER,2014-07-15,2014,July,Tuesday,15,196,9,2014-07-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8695,8529,GO-20142600874,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,12,2014-07-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8696,8540,GO-20149005428,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,22,2014-07-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8697,8566,GO-20149005551,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,14,2014-08-01,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8698,8576,GO-20142654851,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,19,2014-08-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8699,8600,GO-20149005687,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,19,2014-08-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8700,8640,GO-20142707849,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,14,2014-08-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8701,8856,GO-20149006734,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,12,2014-09-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8702,8874,GO-20142910453,B&E,2014-09-14,2014,September,Sunday,14,257,20,2014-09-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8703,8899,GO-20142922426,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,22,2014-09-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8704,9038,GO-20143074073,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,11,2014-10-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8705,9044,GO-20143090689,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,11,2014-10-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8706,9105,GO-20149007782,B&E,2014-10-21,2014,October,Tuesday,21,294,17,2014-10-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8707,9184,GO-20149008151,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,8,2014-11-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8708,9185,GO-20149008178,THEFT UNDER,2014-11-12,2014,November,Wednesday,12,316,14,2014-11-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8709,17155,GO-20151234751,POSSESSION PROPERTY OBC UNDER,2015-07-25,2015,July,Saturday,25,206,21,2015-07-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8710,10891,GO-20152228309,THEFT UNDER,2015-12-24,2015,December,Thursday,24,358,22,2015-12-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8711,9231,GO-20149008790,THEFT UNDER,2014-12-15,2014,December,Monday,15,349,20,2014-12-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8712,9232,GO-20149008790,THEFT UNDER,2014-12-15,2014,December,Monday,15,349,20,2014-12-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8713,9241,GO-20149008982,THEFT UNDER,2014-12-18,2014,December,Thursday,18,352,21,2014-12-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8714,9249,GO-20151781,THEFT UNDER,2014-12-31,2014,December,Wednesday,31,365,18,2015-01-01,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8715,9259,GO-201578319,THEFT UNDER,2015-01-13,2015,January,Tuesday,13,13,13,2015-01-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8716,9315,GO-20159001189,THEFT UNDER,2015-03-05,2015,March,Thursday,5,64,13,2015-03-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8717,9317,GO-20159001230,THEFT UNDER,2015-03-08,2015,March,Sunday,8,67,12,2015-03-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8718,9373,GO-2015571938,THEFT UNDER,2015-04-07,2015,April,Tuesday,7,97,4,2015-04-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8719,9456,GO-20159002127,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,17,2015-04-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8720,9476,GO-2015685297,PROPERTY - FOUND,2015-04-18,2015,April,Saturday,18,108,14,2015-04-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8721,9499,GO-20159002371,THEFT UNDER,2015-04-22,2015,April,Wednesday,22,112,18,2015-04-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8722,9728,GO-20159003349,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,9,2015-06-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8723,9779,GO-2015974784,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,21,2015-06-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8724,9787,GO-2015979614,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,14,2015-06-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8725,9848,GO-20151049549,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,15,2015-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8726,9852,GO-20159003838,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,8,2015-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8727,9883,GO-20159003932,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,14,2015-06-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8728,9965,GO-20159004317,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,8,2015-07-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8729,10172,GO-20151341963,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,21,2015-08-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8730,10210,GO-20159005497,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,20,2015-08-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8731,10314,GO-20159006084,B&E,2015-08-10,2015,August,Monday,10,222,17,2015-08-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8732,10950,GO-20169000808,THEFT UNDER,2016-01-24,2016,January,Sunday,24,24,19,2016-01-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8733,10970,GO-2016212153,THEFT UNDER,2016-02-03,2016,February,Wednesday,3,34,19,2016-02-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8734,11084,GO-2016540530,THEFT UNDER - BICYCLE,2016-03-30,2016,March,Wednesday,30,90,2,2016-03-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8735,11107,GO-20169003104,THEFT UNDER,2016-04-03,2016,April,Sunday,3,94,8,2016-04-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8736,11229,GO-20169003977,THEFT UNDER - BICYCLE,2016-04-28,2016,April,Thursday,28,119,12,2016-04-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8737,11245,GO-2016748571,THEFT UNDER,2016-04-30,2016,April,Saturday,30,121,17,2016-05-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8738,11276,GO-2016791154,THEFT UNDER - BICYCLE,2016-05-08,2016,May,Sunday,8,129,8,2016-05-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8739,11277,GO-2016791154,THEFT UNDER - BICYCLE,2016-05-08,2016,May,Sunday,8,129,8,2016-05-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8740,11397,GO-2016928088,THEFT UNDER,2016-05-28,2016,May,Saturday,28,149,22,2016-05-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8741,11406,GO-20169005127,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,19,2016-05-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8742,11408,GO-20169005139,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,0,2016-05-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8743,11449,GO-20169005373,THEFT UNDER - BICYCLE,2016-06-05,2016,June,Sunday,5,157,0,2016-06-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8744,11490,GO-20169005580,THEFT UNDER,2016-06-10,2016,June,Friday,10,162,8,2016-06-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8745,11565,GO-20169005922,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,0,2016-06-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8746,11595,GO-20161077459,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,21,2016-06-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8747,11689,GO-20161154877,THEFT UNDER - BICYCLE,2016-07-01,2016,July,Friday,1,183,14,2016-07-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8748,11865,GO-20169007548,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,0,2016-07-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8749,11996,GO-20169008215,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,21,2016-08-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8750,12039,GO-20169008450,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,15,2016-08-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8751,12101,GO-20169008794,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,23,2016-08-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8752,12271,GO-20161582762,THEFT UNDER,2016-08-09,2016,August,Tuesday,9,222,17,2016-09-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8753,10113,GO-20151255139,B&E,2015-07-23,2015,July,Thursday,23,204,1,2015-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -8754,12398,GO-20169010721,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,15,2016-09-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8755,12492,GO-20169011279,THEFT UNDER,2016-09-28,2016,September,Wednesday,28,272,22,2016-09-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8756,12646,GO-20169012322,THEFT UNDER,2016-10-01,2016,October,Saturday,1,275,0,2016-10-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8757,12734,GO-20169013094,THEFT OF EBIKE UNDER $5000,2016-11-07,2016,November,Monday,7,312,18,2016-11-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8758,12735,GO-20169013094,THEFT OF EBIKE UNDER $5000,2016-11-07,2016,November,Monday,7,312,18,2016-11-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8759,12832,GO-20162122700,B&E,2016-11-30,2016,November,Wednesday,30,335,4,2016-11-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8760,12851,GO-20169014319,THEFT UNDER,2016-11-30,2016,November,Wednesday,30,335,23,2016-12-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8761,13485,GO-20199014698,THEFT UNDER,2019-05-10,2019,May,Friday,10,130,22,2019-05-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8762,13664,GO-20179006677,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,21,2017-05-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8763,13673,GO-20179008675,THEFT UNDER,2017-03-31,2017,March,Friday,31,90,10,2017-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8764,13674,GO-20179008675,THEFT UNDER,2017-03-31,2017,March,Friday,31,90,10,2017-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8765,13675,GO-20179008675,THEFT UNDER,2017-03-31,2017,March,Friday,31,90,10,2017-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8766,13676,GO-20179008675,THEFT UNDER,2017-03-31,2017,March,Friday,31,90,10,2017-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8767,13677,GO-20179008675,THEFT UNDER,2017-03-31,2017,March,Friday,31,90,10,2017-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8768,13679,GO-20171123966,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,17,2017-06-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8769,13863,GO-2015822632,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,14,2015-05-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8770,13704,GO-20179012262,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,0,2017-08-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8771,13720,GO-20171793469,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,8,2017-10-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8772,13726,GO-20179018042,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,8,2017-10-24,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8773,13745,GO-2018610081,THEFT UNDER,2018-03-01,2018,March,Thursday,1,60,0,2018-04-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8774,13760,GO-20189016871,THEFT UNDER - BICYCLE,2018-05-28,2018,May,Monday,28,148,0,2018-05-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8775,13817,GO-20181708230,THEFT OF EBIKE UNDER $5000,2018-09-14,2018,September,Friday,14,257,23,2018-09-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8776,13827,GO-20189031590,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,19,2018-09-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8777,13839,GO-20189034953,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,13,2018-10-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8778,13864,GO-2015822632,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,14,2015-05-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8779,13892,GO-20151341972,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,17,2015-08-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8780,13936,GO-20159010526,THEFT UNDER,2015-12-05,2015,December,Saturday,5,339,9,2015-12-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8781,13940,GO-20159011172,THEFT UNDER,2015-12-23,2015,December,Wednesday,23,357,13,2015-12-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8782,13958,GO-2016666133,THEFT UNDER,2016-04-15,2016,April,Friday,15,106,14,2016-04-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8783,13959,GO-2016666296,THEFT UNDER - BICYCLE,2016-04-18,2016,April,Monday,18,109,22,2016-04-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8784,13960,GO-2016666296,THEFT UNDER - BICYCLE,2016-04-18,2016,April,Monday,18,109,22,2016-04-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8785,13962,GO-2016762238,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,5,2016-05-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8786,13975,GO-20169005854,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,20,2016-06-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8787,13981,GO-20161158462,THEFT UNDER - BICYCLE,2016-07-02,2016,July,Saturday,2,184,19,2016-07-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8788,13982,GO-20169006817,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,15,2016-07-06,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8789,14000,GO-20169009265,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,21,2016-08-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8790,14005,GO-20169009774,THEFT UNDER,2016-08-25,2016,August,Thursday,25,238,7,2016-08-31,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8791,14010,GO-20161588831,THEFT UNDER - BICYCLE,2016-09-05,2016,September,Monday,5,249,10,2016-09-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8792,14016,GO-20161671512,OTHER FEDERAL STATUTE OFFENCES,2016-09-20,2016,September,Tuesday,20,264,3,2016-09-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8793,14023,GO-20169011934,THEFT UNDER,2016-10-12,2016,October,Wednesday,12,286,8,2016-10-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8794,14025,GO-20161830076,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,8,2016-10-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8795,14370,GO-20142308806,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,12,2014-06-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8796,14413,GO-20142919744,PROPERTY - FOUND,2014-09-16,2014,September,Tuesday,16,259,9,2014-09-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8797,14422,GO-20143111031,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,12,2014-10-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8798,14426,GO-20143257735,THEFT UNDER,2014-10-10,2014,October,Friday,10,283,17,2014-11-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8799,14428,GO-20143410718,THEFT UNDER,2014-11-28,2014,November,Friday,28,332,19,2014-12-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8800,14429,GO-20149008696,THEFT UNDER,2014-12-10,2014,December,Wednesday,10,344,8,2014-12-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8801,14432,GO-201567608,THEFT UNDER,2015-01-09,2015,January,Friday,9,9,21,2015-01-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8802,14437,GO-20159001252,THEFT UNDER,2015-03-11,2015,March,Wednesday,11,70,7,2015-03-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8803,14441,GO-2015654847,B&E,2015-04-17,2015,April,Friday,17,107,17,2015-04-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8804,15656,GO-20199023643,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,12,2019-07-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8805,15674,GO-20199026553,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,13,2019-08-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8806,15725,GO-20199035338,THEFT UNDER - BICYCLE,2019-10-25,2019,October,Friday,25,298,20,2019-10-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8807,15741,GO-20209003120,THEFT UNDER,2020-01-26,2020,January,Sunday,26,26,16,2020-01-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8808,15761,GO-20209013720,THEFT UNDER,2019-11-01,2019,November,Friday,1,305,16,2020-05-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8809,15762,GO-20209013720,THEFT UNDER,2019-11-01,2019,November,Friday,1,305,16,2020-05-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8810,15834,GO-20209025077,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,18,2020-09-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8811,16345,GO-20199023856,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,10,2019-07-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8812,16364,GO-20199026866,THEFT UNDER,2019-08-18,2019,August,Sunday,18,230,1,2019-08-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8813,16407,GO-20192062765,THEFT OF EBIKE UNDER $5000,2019-10-25,2019,October,Friday,25,298,9,2019-10-28,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8814,16448,GO-20209011513,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,17,2020-04-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8815,16466,GO-20209015872,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,21,2020-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8816,16507,GO-20201604857,THEFT OF EBIKE UNDER $5000,2020-08-25,2020,August,Tuesday,25,238,8,2020-08-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8817,16745,GO-20199013417,THEFT UNDER,2019-04-28,2019,April,Sunday,28,118,18,2019-04-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8818,16775,GO-20199020185,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,16,2019-06-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8819,16777,GO-20199021030,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,19,2019-07-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8820,16944,GO-20179009661,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,7,2017-07-07,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8821,16946,GO-20179010137,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,9,2017-07-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8822,16957,GO-20179011125,THEFT UNDER - BICYCLE,2017-05-26,2017,May,Friday,26,146,9,2017-07-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8823,16987,GO-20171787978,B&E,2017-10-02,2017,October,Monday,2,275,3,2017-10-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8824,4648,GO-20191223636,THEFT UNDER - BICYCLE,2019-07-01,2019,July,Monday,1,182,15,2019-07-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8825,17170,GO-20159006994,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,13,2015-09-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8826,4655,GO-20199020803,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,22,2019-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8827,4678,GO-20199021182,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,23,2019-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8828,4688,GO-20199021298,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,14,2019-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8829,4701,GO-20191273396,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,0,2019-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8830,4733,GO-20199021705,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,17,2019-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8831,4743,GO-20199021847,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,9,2019-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8832,4744,GO-20199021847,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,9,2019-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8833,4756,GO-20199021958,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,12,2019-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8834,4759,GO-20199022046,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,8,2019-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8835,4811,GO-20199022967,THEFT UNDER - BICYCLE,2019-07-19,2019,July,Friday,19,200,7,2019-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8836,4839,GO-20199023290,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,12,2019-07-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8837,4855,GO-20199023473,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,20,2019-07-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8838,4870,GO-20199023606,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,16,2019-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8839,4877,GO-20191370633,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,14,2019-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8840,4878,GO-20199023673,THEFT UNDER - BICYCLE,2019-07-19,2019,July,Friday,19,200,13,2019-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8841,4896,GO-20191403136,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,4,2019-07-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8842,4900,GO-20199024009,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,18,2019-07-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8843,4903,GO-20199024068,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,0,2019-07-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8844,4904,GO-20199024060,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,7,2019-07-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8845,4913,GO-20191408383,THEFT OF EBIKE UNDER $5000,2019-07-25,2019,July,Thursday,25,206,10,2019-07-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8846,4961,GO-20199024891,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,6,2019-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8847,4962,GO-20199024898,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,16,2019-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8848,4965,GO-20199024919,THEFT UNDER,2018-06-01,2018,June,Friday,1,152,13,2019-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8849,4966,GO-20199024935,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,19,2019-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8850,4967,GO-20199024938,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,1,2019-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8851,4975,GO-20199025058,THEFT UNDER,2019-08-05,2019,August,Monday,5,217,18,2019-08-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8852,4985,GO-20199025235,THEFT UNDER - BICYCLE,2019-08-05,2019,August,Monday,5,217,16,2019-08-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8853,5011,GO-20199025563,THEFT UNDER - BICYCLE,2019-08-09,2019,August,Friday,9,221,8,2019-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8854,5028,GO-20199025733,THEFT UNDER,2019-03-25,2019,March,Monday,25,84,11,2019-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8855,5029,GO-20199025733,THEFT UNDER,2019-03-25,2019,March,Monday,25,84,11,2019-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8856,5042,GO-20199025883,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,12,2019-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8857,5072,GO-20199026253,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,17,2019-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8858,5076,GO-20199026293,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,9,2019-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8859,5090,GO-20199026514,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,7,2019-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8860,5096,GO-20199026514,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,7,2019-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8861,5097,GO-20191570848,THEFT UNDER - BICYCLE,2019-07-16,2019,July,Tuesday,16,197,22,2019-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8862,5101,GO-20199026739,THEFT UNDER,2019-08-18,2019,August,Sunday,18,230,15,2019-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8863,5137,GO-20199027295,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,20,2019-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8864,5145,GO-20199027385,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,13,2019-08-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8865,5156,GO-20199027626,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,9,2019-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8866,5172,GO-20199027772,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,17,2019-08-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8867,5186,GO-20199028101,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,13,2019-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8868,5217,GO-20191666652,THEFT OF EBIKE UNDER $5000,2019-08-31,2019,August,Saturday,31,243,15,2019-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8869,5268,GO-20191714006,PROPERTY - FOUND,2019-09-07,2019,September,Saturday,7,250,11,2019-09-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8870,5271,GO-20199029096,THEFT UNDER,2019-09-07,2019,September,Saturday,7,250,13,2019-09-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8871,5277,GO-20199029239,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,15,2019-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8872,5285,GO-20199029341,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,15,2019-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8873,5307,GO-20199029774,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,18,2019-09-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8874,5326,GO-20199030075,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,7,2019-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8875,5342,GO-20199030131,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,13,2019-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8876,5355,GO-20199030407,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,16,2019-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8877,5362,GO-20199030540,THEFT UNDER,2019-09-18,2019,September,Wednesday,18,261,9,2019-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8878,5373,GO-20199030960,THEFT UNDER - BICYCLE,2019-09-20,2019,September,Friday,20,263,21,2019-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8879,5383,GO-20199031177,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,20,2019-09-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8880,5402,GO-20199031499,THEFT UNDER,2019-09-24,2019,September,Tuesday,24,267,20,2019-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8881,5411,GO-20191845915,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,3,2019-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8882,5418,GO-20191851292,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,14,2019-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8883,5432,GO-20191863812,THEFT OF EBIKE UNDER $5000,2019-09-27,2019,September,Friday,27,270,13,2019-09-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8884,5442,GO-20199032108,THEFT UNDER - SHOPLIFTING,2019-09-21,2019,September,Saturday,21,264,9,2019-09-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8885,5443,GO-20199032142,THEFT UNDER - BICYCLE,2019-09-30,2019,September,Monday,30,273,18,2019-09-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8886,5449,GO-20199032202,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,19,2019-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8887,5457,GO-20199032382,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,21,2019-10-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8888,5477,GO-20191928819,FTC WITH CONDITIONS,2019-10-06,2019,October,Sunday,6,279,18,2019-10-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8889,5484,GO-20199032937,THEFT UNDER,2019-10-05,2019,October,Saturday,5,278,14,2019-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8890,5488,GO-20191929218,THEFT UNDER - BICYCLE,2019-10-06,2019,October,Sunday,6,279,1,2019-10-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8891,5490,GO-20199032851,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,18,2019-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8892,5495,GO-20199033291,THEFT UNDER,2019-10-09,2019,October,Wednesday,9,282,9,2019-10-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8893,5514,GO-20199033642,THEFT UNDER,2019-10-07,2019,October,Monday,7,280,6,2019-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8894,5520,GO-20199033784,THEFT UNDER,2019-10-12,2019,October,Saturday,12,285,19,2019-10-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8895,5525,GO-20191977911,THEFT UNDER - BICYCLE,2019-10-13,2019,October,Sunday,13,286,11,2019-10-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8896,5531,GO-20191998219,THEFT OF EBIKE UNDER $5000,2019-10-11,2019,October,Friday,11,284,5,2019-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8897,5532,GO-20199034091,THEFT UNDER,2019-10-15,2019,October,Tuesday,15,288,17,2019-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8898,5535,GO-20199034133,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,14,2019-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8899,5562,GO-20199034701,THEFT UNDER - BICYCLE,2019-10-19,2019,October,Saturday,19,292,10,2019-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8900,5564,GO-20199034738,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,18,2019-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8901,5593,GO-20199035165,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,20,2019-10-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8902,5597,GO-20199035286,THEFT UNDER - BICYCLE,2019-10-21,2019,October,Monday,21,294,19,2019-10-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8903,5616,GO-20199035733,THEFT UNDER - BICYCLE,2019-10-01,2019,October,Tuesday,1,274,0,2019-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8904,8496,GO-20149005255,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,18,2014-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -8905,5619,GO-20192095948,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,21,2019-10-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8906,5621,GO-20192088618,THEFT FROM MOTOR VEHICLE OVER,2019-10-28,2019,October,Monday,28,301,20,2019-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8907,5622,GO-20199035865,THEFT UNDER - BICYCLE,2019-10-30,2019,October,Wednesday,30,303,12,2019-10-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8908,5634,GO-20199036214,THEFT UNDER,2019-11-02,2019,November,Saturday,2,306,11,2019-11-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8909,5642,GO-20199036215,THEFT UNDER - BICYCLE,2019-10-25,2019,October,Friday,25,298,0,2019-11-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8910,5650,GO-20199036497,THEFT UNDER,2019-11-01,2019,November,Friday,1,305,9,2019-11-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8911,5685,GO-20199037340,THEFT UNDER - BICYCLE,2019-11-12,2019,November,Tuesday,12,316,12,2019-11-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8912,17210,GO-2016531998,THEFT UNDER - BICYCLE,2016-03-29,2016,March,Tuesday,29,89,1,2016-03-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8913,5714,GO-20199038151,THEFT UNDER,2019-09-28,2019,September,Saturday,28,271,10,2019-11-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8914,5744,GO-20192340695,THEFT OF EBIKE UNDER $5000,2019-12-02,2019,December,Monday,2,336,19,2019-12-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8915,5752,GO-20192368313,THEFT UNDER - BICYCLE,2019-12-08,2019,December,Sunday,8,342,18,2019-12-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8916,5816,GO-202048954,THEFT OVER - BICYCLE,2019-07-31,2019,July,Wednesday,31,212,7,2020-01-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -8917,17180,GO-20151751233,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,7,2015-10-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8918,17193,GO-20151983564,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,23,2015-11-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8919,17194,GO-20159010355,THEFT UNDER,2015-11-28,2015,November,Saturday,28,332,12,2015-11-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8920,20457,GO-20159009568,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,9,2015-11-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8921,17215,GO-20169004132,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,12,2016-05-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8922,17224,GO-20169005083,THEFT UNDER,2016-05-28,2016,May,Saturday,28,149,21,2016-05-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8923,17228,GO-20169005561,THEFT FROM MOTOR VEHICLE UNDER,2016-06-07,2016,June,Tuesday,7,159,15,2016-06-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8924,17243,GO-20169006737,THEFT UNDER,2016-07-02,2016,July,Saturday,2,184,8,2016-07-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8925,17249,GO-20169007157,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,12,2016-07-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8926,17276,GO-20169011392,B&E,2016-08-30,2016,August,Tuesday,30,243,9,2016-10-01,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8927,17283,GO-20169012601,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,5,2016-10-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8928,17286,GO-20161922324,B&E,2016-10-29,2016,October,Saturday,29,303,11,2016-10-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8929,17288,GO-20169013178,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,16,2016-11-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8930,17294,GO-20169014271,THEFT UNDER,2016-11-29,2016,November,Tuesday,29,334,16,2016-12-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8931,17427,GO-20149002918,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,20,2014-04-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8932,17448,GO-20149004881,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,20,2014-07-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8933,17464,GO-20142682183,ROBBERY - OTHER,2014-08-04,2014,August,Monday,4,216,15,2014-08-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8934,17466,GO-20149005754,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,23,2014-08-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8935,17494,GO-20143287574,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,17,2014-11-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8936,17499,GO-20143471059,B&E,2014-12-09,2014,December,Tuesday,9,343,8,2014-12-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8937,18802,GO-20209024946,THEFT UNDER - BICYCLE,2020-09-27,2020,September,Sunday,27,271,19,2020-09-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8938,18808,GO-20209025861,THEFT UNDER - BICYCLE,2020-10-08,2020,October,Thursday,8,282,8,2020-10-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8939,19602,GO-20209027824,THEFT UNDER,2020-10-27,2020,October,Tuesday,27,301,12,2020-10-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8940,19977,GO-20189031590,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,19,2018-09-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8941,20045,GO-20191184943,THEFT OF EBIKE UNDER $5000,2019-06-26,2019,June,Wednesday,26,177,8,2019-06-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8942,20202,GO-20171234187,THEFT OVER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,21,2017-07-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8943,20209,GO-20179010593,THEFT UNDER,2017-07-19,2017,July,Wednesday,19,200,11,2017-07-19,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8944,20253,GO-20179016823,THEFT UNDER,2017-10-03,2017,October,Tuesday,3,276,10,2017-10-10,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8945,20271,GO-20172042421,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,13,2017-11-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8946,20275,GO-20173007465,THEFT OF EBIKE UNDER $5000,2017-11-15,2017,November,Wednesday,15,319,21,2017-11-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8947,20302,GO-20189015986,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,18,2018-05-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8948,20315,GO-20181069929,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,9,2018-06-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8949,20427,GO-20159005793,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,8,2015-08-14,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8950,20442,GO-20159007863,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,1,2015-09-28,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8951,20448,GO-20159009045,THEFT UNDER,2015-10-26,2015,October,Monday,26,299,10,2015-10-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8952,20451,GO-20151855412,B&E,2015-10-28,2015,October,Wednesday,28,301,20,2015-10-28,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8953,20487,GO-20169004203,B&E W'INTENT,2016-05-01,2016,May,Sunday,1,122,11,2016-05-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8954,20490,GO-20169004405,THEFT UNDER - BICYCLE,2016-05-11,2016,May,Wednesday,11,132,12,2016-05-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8955,20515,GO-20161356057,THEFT OF EBIKE UNDER $5000,2016-07-26,2016,July,Tuesday,26,208,19,2016-08-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8956,20555,GO-20169013623,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,12,2016-11-20,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8957,20571,GO-2017724940,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,8,2017-04-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8958,20604,GO-20191427686,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,19,2019-07-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8959,20617,GO-20199026294,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,17,2019-08-15,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8960,20630,GO-20199027526,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,7,2019-08-24,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8961,20654,GO-20199031697,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,12,2019-09-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8962,20673,GO-20199036260,THEFT UNDER - BICYCLE,2019-11-02,2019,November,Saturday,2,306,0,2019-11-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8963,20687,GO-20209000134,THEFT UNDER - BICYCLE,2019-11-30,2019,November,Saturday,30,334,9,2020-01-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8964,20721,GO-20209016349,THEFT UNDER - BICYCLE,2020-06-27,2020,June,Saturday,27,179,20,2020-06-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8965,20766,GO-20201604857,THEFT OF EBIKE UNDER $5000,2020-08-25,2020,August,Tuesday,25,238,8,2020-08-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8966,20859,GO-20149003168,THEFT UNDER,2013-10-01,2013,October,Tuesday,1,274,16,2014-05-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8967,20876,GO-20142403381,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,20,2014-06-30,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8968,20877,GO-20142415327,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,15,2014-07-02,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8969,20907,GO-20142694390,THEFT FROM MOTOR VEHICLE UNDER,2014-07-25,2014,July,Friday,25,206,23,2014-08-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8970,20926,GO-20142952972,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,23,2014-09-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8971,20928,GO-20149007144,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,18,2014-09-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8972,20956,GO-201542494,B&E,2014-12-15,2014,December,Monday,15,349,0,2015-01-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8973,20957,GO-201542494,B&E,2014-12-15,2014,December,Monday,15,349,0,2015-01-08,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8974,22663,GO-20199033743,THEFT UNDER,2019-10-11,2019,October,Friday,11,284,14,2019-10-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8975,22688,GO-20192450174,B&E,2019-12-19,2019,December,Thursday,19,353,15,2019-12-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8976,23226,GO-20189037901,THEFT UNDER - BICYCLE,2018-11-11,2018,November,Sunday,11,315,12,2018-11-12,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8977,22689,GO-20192502901,B&E,2019-12-28,2019,December,Saturday,28,362,16,2019-12-29,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8978,22693,GO-2020362592,THEFT UNDER - BICYCLE,2020-01-01,2020,January,Wednesday,1,1,9,2020-02-21,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8979,22712,GO-2020745891,B&E W'INTENT,2020-01-01,2020,January,Wednesday,1,1,0,2020-04-18,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8980,22720,GO-20209013712,THEFT UNDER,2020-05-23,2020,May,Saturday,23,144,0,2020-05-23,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8981,22729,GO-20209015568,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,20,2020-06-17,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8982,22731,GO-20209015872,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,21,2020-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8983,22802,GO-20202157086,THEFT OF EBIKE UNDER $5000,2020-11-08,2020,November,Sunday,8,313,21,2020-11-13,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8984,23200,GO-20189029102,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,14,2018-09-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8985,23273,GO-20191159482,THEFT UNDER - BICYCLE,2019-06-22,2019,June,Saturday,22,173,17,2019-06-22,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8986,23282,GO-20199021141,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,15,2019-07-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8987,23403,GO-2017724343,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,20,2017-04-25,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8988,23406,GO-20179005964,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,23,2017-05-09,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8989,23418,GO-2017996460,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,12,2017-06-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8990,23428,GO-20179008901,THEFT UNDER - BICYCLE,2017-06-25,2017,June,Sunday,25,176,19,2017-06-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8991,23429,GO-20179008901,THEFT UNDER - BICYCLE,2017-06-25,2017,June,Sunday,25,176,19,2017-06-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8992,23459,GO-20171448010,ROBBERY WITH WEAPON,2017-08-11,2017,August,Friday,11,223,15,2017-08-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8993,23466,GO-20171602376,B&E,2017-08-31,2017,August,Thursday,31,243,0,2017-09-04,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8994,23472,GO-20179015854,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,22,2017-09-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8995,23473,GO-20179015854,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,22,2017-09-26,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8996,23480,GO-20179016412,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,8,2017-10-03,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8997,23498,GO-20179019800,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,13,2017-11-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8998,23499,GO-20179019800,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,13,2017-11-16,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -8999,23512,GO-20189009758,THEFT UNDER - BICYCLE,2018-03-17,2018,March,Saturday,17,76,19,2018-03-27,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -9000,23529,GO-20181017688,THEFT OF EBIKE UNDER $5000,2018-06-04,2018,June,Monday,4,155,23,2018-06-05,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -9001,23536,GO-20181058134,B&E,2018-06-10,2018,June,Sunday,10,161,3,2018-06-11,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)}",North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -9002,15711,GO-20199032128,THEFT UNDER - BICYCLE,2019-09-27,2019,September,Friday,27,270,17,2019-09-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9003,15712,GO-20199032681,THEFT UNDER - BICYCLE,2019-10-02,2019,October,Wednesday,2,275,22,2019-10-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9004,15713,GO-20199032851,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,18,2019-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9005,15717,GO-20199033447,THEFT UNDER - BICYCLE,2019-10-10,2019,October,Thursday,10,283,11,2019-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9006,15718,GO-20199033815,THEFT UNDER - BICYCLE,2019-10-13,2019,October,Sunday,13,286,16,2019-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9007,15721,GO-20199034869,THEFT UNDER - BICYCLE,2019-10-21,2019,October,Monday,21,294,20,2019-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9008,15745,GO-20209010237,THEFT UNDER,2020-03-31,2020,March,Tuesday,31,91,13,2020-03-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9009,15727,GO-20199037186,THEFT UNDER - BICYCLE,2019-11-11,2019,November,Monday,11,315,10,2019-11-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9010,15729,GO-20192226279,B&E,2019-11-17,2019,November,Sunday,17,321,7,2019-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9011,15730,GO-20192226279,B&E,2019-11-17,2019,November,Sunday,17,321,7,2019-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9012,15731,GO-20192226279,B&E,2019-11-17,2019,November,Sunday,17,321,7,2019-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9013,10872,GO-20159010894,THEFT UNDER,2015-12-13,2015,December,Sunday,13,347,1,2015-12-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9014,15732,GO-20192226279,B&E,2019-11-17,2019,November,Sunday,17,321,7,2019-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9015,15733,GO-20192226279,B&E,2019-11-17,2019,November,Sunday,17,321,7,2019-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9016,15742,GO-20209008245,THEFT UNDER,2020-03-07,2020,March,Saturday,7,67,18,2020-03-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9017,15754,GO-2020831390,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,21,2020-05-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9018,15757,GO-2020868250,THEFT UNDER - BICYCLE,2020-05-09,2020,May,Saturday,9,130,17,2020-05-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9019,15765,GO-20209013884,THEFT UNDER,2020-05-23,2020,May,Saturday,23,144,17,2020-05-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9020,15766,GO-20209014154,THEFT UNDER,2020-05-13,2020,May,Wednesday,13,134,22,2020-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9021,15769,GO-20209014363,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,6,2020-06-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9022,15778,GO-20209015473,THEFT UNDER,2020-06-15,2020,June,Monday,15,167,21,2020-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9023,15779,GO-20209015519,THEFT UNDER,2020-06-16,2020,June,Tuesday,16,168,20,2020-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9024,15780,GO-20209015648,THEFT UNDER,2020-06-18,2020,June,Thursday,18,170,9,2020-06-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9025,15781,GO-20209015925,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,16,2020-06-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9026,15789,GO-20209016889,MISCHIEF UNDER,2020-07-03,2020,July,Friday,3,185,21,2020-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9027,15792,GO-20201256255,THEFT OF EBIKE UNDER $5000,2020-07-07,2020,July,Tuesday,7,189,15,2020-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9028,15793,GO-20209017962,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,22,2020-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9029,15805,GO-20209020000,THEFT UNDER,2020-08-09,2020,August,Sunday,9,222,21,2020-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9030,15806,GO-20201515871,PROPERTY - FOUND,2020-08-12,2020,August,Wednesday,12,225,11,2020-08-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9031,15811,GO-20201559595,THEFT OF EBIKE UNDER $5000,2020-08-19,2020,August,Wednesday,19,232,14,2020-08-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9032,15814,GO-20201594805,ASSAULT WITH WEAPON,2020-08-24,2020,August,Monday,24,237,13,2020-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9033,15818,GO-20209022129,THEFT UNDER - BICYCLE,2020-09-02,2020,September,Wednesday,2,246,12,2020-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9034,15821,GO-20209022631,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,1,2020-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9035,15823,GO-20209023092,THEFT UNDER - BICYCLE,2020-09-12,2020,September,Saturday,12,256,15,2020-09-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9036,15831,GO-20209024025,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,12,2020-09-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9037,15833,GO-20209024821,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,21,2020-09-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9038,15841,GO-20209026892,THEFT UNDER - BICYCLE,2020-10-15,2020,October,Thursday,15,289,21,2020-10-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9039,15844,GO-20202210957,THEFT OF EBIKE UNDER $5000,2020-11-21,2020,November,Saturday,21,326,12,2020-11-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9040,15846,GO-20202245611,PROPERTY - FOUND,2020-11-27,2020,November,Friday,27,332,0,2020-11-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9041,15847,GO-20209031078,THEFT UNDER,2020-12-02,2020,December,Wednesday,2,337,18,2020-12-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9042,15850,GO-20209032653,THEFT UNDER - BICYCLE,2020-12-21,2020,December,Monday,21,356,17,2020-12-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9043,16011,GO-2016538901,THEFT UNDER - BICYCLE,2016-03-29,2016,March,Tuesday,29,89,16,2016-03-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9044,16235,GO-20189014863,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,18,2018-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9045,16347,GO-20199024319,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,18,2019-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9046,16351,GO-20199024846,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,23,2019-08-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9047,16354,GO-20199025766,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,16,2019-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9048,16356,GO-20199026293,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,9,2019-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9049,16357,GO-20199026414,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,23,2019-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9050,16358,GO-20199026414,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,23,2019-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9051,16366,GO-20199027292,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,14,2019-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9052,16369,GO-20199028140,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,12,2019-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9053,16373,GO-20199029396,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,11,2019-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9054,16381,GO-20199030283,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,19,2019-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9055,16382,GO-20199030283,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,19,2019-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9056,16388,GO-20199031826,THEFT UNDER - BICYCLE,2019-09-13,2019,September,Friday,13,256,0,2019-09-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9057,16390,GO-20191864069,THEFT UNDER - BICYCLE,2019-09-27,2019,September,Friday,27,270,15,2019-09-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9058,16391,GO-20199032176,THEFT UNDER,2019-09-18,2019,September,Wednesday,18,261,6,2019-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9059,22788,GO-20209026035,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,18,2020-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9060,16393,GO-20199032290,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,7,2019-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9061,16398,GO-20199033850,THEFT UNDER - BICYCLE,2019-10-13,2019,October,Sunday,13,286,13,2019-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9062,16412,GO-20199037604,THEFT UNDER,2019-11-13,2019,November,Wednesday,13,317,19,2019-11-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9063,16415,GO-20199038485,THEFT UNDER,2019-11-21,2019,November,Thursday,21,325,22,2019-11-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9064,16433,GO-20209001772,THEFT UNDER,2020-01-14,2020,January,Tuesday,14,14,14,2020-01-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9065,16441,GO-2020521333,THEFT OF EBIKE UNDER $5000,2020-03-12,2020,March,Thursday,12,72,19,2020-03-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9066,16445,GO-20209009375,THEFT UNDER,2020-03-17,2020,March,Tuesday,17,77,23,2020-03-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9067,16452,GO-20209012253,THEFT UNDER,2020-04-30,2020,April,Thursday,30,121,17,2020-04-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9068,16456,GO-20209013935,THEFT UNDER,2020-05-25,2020,May,Monday,25,146,22,2020-05-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9069,16460,GO-20209015047,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,10,2020-06-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9070,16461,GO-20209015124,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,14,2020-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9071,16467,GO-20209015925,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,16,2020-06-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9072,16470,GO-20209016373,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,3,2020-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9073,16472,GO-20209016912,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,10,2020-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9074,16475,GO-20201239524,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,10,2020-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9075,16486,GO-20209018860,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,19,2020-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9076,16487,GO-20209019052,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,2,2020-07-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9077,16492,GO-20209019682,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,8,2020-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9078,13849,GO-20189038758,B&E,2018-11-08,2018,November,Thursday,8,312,10,2018-11-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9079,23579,GO-20189026856,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,18,2018-08-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9080,16498,GO-20209019881,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,20,2020-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9081,16499,GO-20209019881,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,20,2020-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9082,16500,GO-20209019881,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,20,2020-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9083,16510,GO-20209022265,THEFT UNDER - BICYCLE,2020-09-03,2020,September,Thursday,3,247,23,2020-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9084,16513,GO-20209022485,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,22,2020-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9085,16534,GO-20143001211,THEFT UNDER,2014-09-27,2014,September,Saturday,27,270,13,2014-09-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9086,16720,GO-20189036662,THEFT UNDER - BICYCLE,2018-11-02,2018,November,Friday,2,306,22,2018-11-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9087,16722,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,13,2018-11-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9088,16723,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,13,2018-11-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9089,16726,GO-20182108875,THEFT OF EBIKE UNDER $5000,2018-11-11,2018,November,Sunday,11,315,15,2018-11-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9090,16727,GO-20182170335,THEFT UNDER - BICYCLE,2018-11-21,2018,November,Wednesday,21,325,16,2018-11-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9091,16728,GO-20189042618,THEFT UNDER - BICYCLE,2018-12-18,2018,December,Tuesday,18,352,18,2018-12-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9092,16746,GO-20199013725,B&E,2019-04-30,2019,April,Tuesday,30,120,21,2019-05-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9093,16749,GO-20199014386,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,9,2019-05-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9094,16751,GO-20199015196,THEFT UNDER,2019-05-05,2019,May,Sunday,5,125,10,2019-05-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9095,16752,GO-20199015196,THEFT UNDER,2019-05-05,2019,May,Sunday,5,125,10,2019-05-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9096,16754,GO-2019910912,THEFT OF EBIKE UNDER $5000,2019-05-19,2019,May,Sunday,19,139,2,2019-05-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9097,16755,GO-2019910912,THEFT OF EBIKE UNDER $5000,2019-05-19,2019,May,Sunday,19,139,2,2019-05-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9098,16758,GO-2019934731,THEFT UNDER - BICYCLE,2019-05-19,2019,May,Sunday,19,139,19,2019-05-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9099,16761,GO-20199017689,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,20,2019-06-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9100,16767,GO-20191074426,THEFT UNDER - BICYCLE,2019-06-11,2019,June,Tuesday,11,162,5,2019-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9101,16779,GO-20199021286,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,8,2019-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9102,16780,GO-20199021302,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,15,2019-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9103,16782,GO-20191275830,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,0,2019-07-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9104,16919,GO-20179007130,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,19,2017-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9105,16921,GO-20179007367,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,22,2017-06-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9106,20290,GO-20189008790,THEFT UNDER,2018-03-21,2018,March,Wednesday,21,80,1,2018-03-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9107,12586,GO-20161807064,POSSESSION PROPERTY OBC UNDER,2016-10-11,2016,October,Tuesday,11,285,11,2016-10-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9108,20292,GO-2018734899,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,17,2018-04-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9109,10873,GO-20159010920,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,9,2015-12-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9110,20295,GO-20189014201,THEFT UNDER - BICYCLE,2018-05-07,2018,May,Monday,7,127,14,2018-05-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9111,13853,GO-20199000258,THEFT UNDER - BICYCLE,2018-12-18,2018,December,Tuesday,18,352,0,2019-01-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9112,10876,GO-20159010961,THEFT UNDER,2015-12-15,2015,December,Tuesday,15,349,8,2015-12-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9113,20297,GO-2018864995,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,20,2018-05-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9114,17296,GO-2017143313,THEFT UNDER - BICYCLE,2016-12-29,2016,December,Thursday,29,364,20,2017-01-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9115,12604,GO-20169011957,THEFT UNDER - BICYCLE,2016-10-07,2016,October,Friday,7,281,16,2016-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9116,22789,GO-20209026264,THEFT UNDER,2020-10-11,2020,October,Sunday,11,285,18,2020-10-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9117,23592,GO-20189028356,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,21,2018-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9118,20698,GO-20209010065,THEFT UNDER,2020-03-23,2020,March,Monday,23,83,11,2020-03-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9119,13861,GO-20199006516,THEFT UNDER - BICYCLE,2019-02-09,2019,February,Saturday,9,40,0,2019-02-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9120,17302,GO-20179003203,THEFT UNDER,2017-03-10,2017,March,Friday,10,69,23,2017-03-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9121,10877,GO-20159010966,THEFT UNDER,2015-12-12,2015,December,Saturday,12,346,3,2015-12-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9122,23595,GO-20189028891,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,14,2018-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9123,13870,GO-2015853845,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,22,2015-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9124,17303,GO-20179003654,THEFT UNDER - BICYCLE,2017-03-22,2017,March,Wednesday,22,81,7,2017-03-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9125,20699,GO-2020686596,B&E,2020-04-07,2020,April,Tuesday,7,98,17,2020-04-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9126,22793,GO-20209027103,THEFT UNDER - BICYCLE,2020-10-15,2020,October,Thursday,15,289,14,2020-10-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9127,20306,GO-2018977223,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,18,2018-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9128,13909,GO-20151590902,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,8,2015-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9129,12619,GO-20161835196,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,4,2016-10-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9130,10879,GO-20159011008,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,16,2015-12-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9131,22794,GO-20209027100,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,13,2020-10-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9132,17309,GO-20179004907,THEFT UNDER,2017-04-18,2017,April,Tuesday,18,108,10,2017-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9133,20307,GO-20189016959,THEFT UNDER - BICYCLE,2017-12-03,2017,December,Sunday,3,337,16,2018-05-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9134,13871,GO-2015853845,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,22,2015-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9135,23598,GO-2015842388,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,18,2015-05-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9136,16924,GO-20171045138,THEFT UNDER,2017-04-01,2017,April,Saturday,1,91,9,2017-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9137,12623,GO-20169012092,THEFT UNDER - BICYCLE,2016-10-09,2016,October,Sunday,9,283,21,2016-10-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9138,20713,GO-20209014453,THEFT UNDER,2020-05-31,2020,May,Sunday,31,152,10,2020-06-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9139,10880,GO-20159011008,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,16,2015-12-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9140,22795,GO-20209027486,THEFT UNDER,2020-10-23,2020,October,Friday,23,297,18,2020-10-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9141,17311,GO-2017690342,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,23,2017-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9142,20309,GO-20189017697,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,15,2018-06-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9143,13876,GO-2015906126,B&E,2015-05-22,2015,May,Friday,22,142,11,2015-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9144,16975,GO-20179014169,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,22,2017-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9145,23600,GO-2015865740,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,20,2015-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9146,13880,GO-20159003722,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,9,2015-06-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9147,13885,GO-20151213472,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,10,2015-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9148,13889,GO-20159005040,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,4,2015-07-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9149,13893,GO-20159005306,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,19,2015-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9150,13894,GO-20159005336,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,17,2015-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9151,13902,GO-20159006144,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,10,2015-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9152,13905,GO-20159006545,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,10,2015-08-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9153,13918,GO-20151681152,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,18,2015-09-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9154,13922,GO-20159008318,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,18,2015-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9155,13923,GO-20151767212,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,14,2015-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9156,13924,GO-20151767212,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,14,2015-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9157,13932,GO-20159009712,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,9,2015-11-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9158,13935,GO-20159009827,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,15,2015-11-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9159,13938,GO-20152101314,THEFT UNDER,2015-12-04,2015,December,Friday,4,338,22,2015-12-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9160,13939,GO-20159010977,THEFT UNDER,2015-12-15,2015,December,Tuesday,15,349,15,2015-12-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9161,13945,GO-20169001673,THEFT UNDER - BICYCLE,2016-02-14,2016,February,Sunday,14,45,12,2016-02-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9162,13950,GO-20169002150,THEFT UNDER - BICYCLE,2016-02-12,2016,February,Friday,12,43,8,2016-03-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9163,13952,GO-2016457286,THEFT UNDER,2016-03-16,2016,March,Wednesday,16,76,16,2016-03-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9164,13953,GO-20169003004,THEFT UNDER,2016-04-01,2016,April,Friday,1,92,17,2016-04-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9165,13961,GO-2016716481,THEFT UNDER,2016-04-27,2016,April,Wednesday,27,118,8,2016-04-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9166,13963,GO-2016771440,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,14,2016-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9167,13967,GO-2016802493,THEFT UNDER,2016-03-01,2016,March,Tuesday,1,61,11,2016-05-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9168,17005,GO-20179019498,THEFT UNDER,2017-11-12,2017,November,Sunday,12,316,13,2017-11-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9169,13973,GO-20169005626,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,19,2016-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9170,13974,GO-20169005697,THEFT UNDER,2016-06-13,2016,June,Monday,13,165,9,2016-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9171,13976,GO-20169006011,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,9,2016-06-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9172,13980,GO-20169006497,THEFT OF EBIKE UNDER $5000,2016-06-28,2016,June,Tuesday,28,180,1,2016-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9173,13987,GO-20161213407,THEFT OF EBIKE UNDER $5000,2016-06-29,2016,June,Wednesday,29,181,13,2016-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9174,13995,GO-20169008680,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,23,2016-08-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9175,14009,GO-20169010048,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,11,2016-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9176,14015,GO-20169010427,THEFT UNDER,2016-09-11,2016,September,Sunday,11,255,2,2016-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9177,14019,GO-20161719297,THEFT OF EBIKE UNDER $5000,2016-09-27,2016,September,Tuesday,27,271,13,2016-09-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9178,14022,GO-20169011378,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,17,2016-09-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9179,14024,GO-20169012019,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,16,2016-10-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9180,14028,GO-20169012940,THEFT UNDER - BICYCLE,2016-10-30,2016,October,Sunday,30,304,1,2016-11-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9181,14034,GO-20162078868,THEFT UNDER - BICYCLE,2016-11-22,2016,November,Tuesday,22,327,17,2016-11-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9182,14038,GO-20162174000,THEFT UNDER - BICYCLE,2016-12-08,2016,December,Thursday,8,343,5,2016-12-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9183,14039,GO-20169014604,THEFT UNDER - BICYCLE,2016-12-08,2016,December,Thursday,8,343,5,2016-12-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9184,14044,GO-20179001034,THEFT UNDER - BICYCLE,2017-01-20,2017,January,Friday,20,20,8,2017-01-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9185,14045,GO-20179001850,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,11,2017-02-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9186,14046,GO-20179001850,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,11,2017-02-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9187,14057,GO-20179005598,THEFT UNDER - BICYCLE,2017-05-02,2017,May,Tuesday,2,122,10,2017-05-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9188,14058,GO-20179005695,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,8,2017-05-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9189,14060,GO-20179006315,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,18,2017-05-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9190,14350,GO-20149002783,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,17,2014-04-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9191,14352,GO-20141926054,THEFT UNDER,2014-04-20,2014,April,Sunday,20,110,3,2014-04-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9192,14354,GO-20142020530,THEFT UNDER,2014-05-04,2014,May,Sunday,4,124,22,2014-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9193,14355,GO-20142020530,THEFT UNDER,2014-05-04,2014,May,Sunday,4,124,22,2014-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9194,14356,GO-20149003193,THEFT UNDER,2014-05-06,2014,May,Tuesday,6,126,8,2014-05-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9195,14359,GO-20142072716,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,18,2014-05-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9196,14360,GO-20149003375,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,16,2014-05-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9197,14361,GO-20149003425,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,8,2014-05-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9198,14363,GO-20142165022,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,18,2014-05-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9199,14365,GO-20142225737,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,9,2014-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9200,23726,GO-20169008452,THEFT UNDER,2016-08-08,2016,August,Monday,8,221,2,2016-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9201,14366,GO-20149003843,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,20,2014-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9202,14367,GO-20149003844,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,7,2014-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9203,14376,GO-20149004332,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,6,2014-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9204,14378,GO-20149004359,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,11,2014-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9205,14381,GO-20149004543,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,18,2014-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9206,14385,GO-20149004694,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,18,2014-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9207,14387,GO-20149004730,PROPERTY - LOST,2014-07-10,2014,July,Thursday,10,191,8,2014-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9208,14388,GO-20149004733,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,12,2014-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9209,14391,GO-20142527517,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,18,2014-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9210,14393,GO-20149005264,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,9,2014-07-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9211,14395,GO-20142560124,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,9,2014-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9212,14400,GO-20149005632,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,13,2014-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9213,14402,GO-20149005732,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,20,2014-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9214,14405,GO-20149006059,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,8,2014-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9215,14408,GO-20149006671,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,23,2014-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9216,14410,GO-20149006816,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,19,2014-09-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9217,14415,GO-20142910672,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,18,2014-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9218,14423,GO-20149007645,THEFT UNDER,2014-10-13,2014,October,Monday,13,286,13,2014-10-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9219,14425,GO-20149007941,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,14,2014-11-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9220,14431,GO-20159000070,THEFT UNDER,2015-01-04,2015,January,Sunday,4,4,18,2015-01-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9221,14440,GO-20159002026,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,17,2015-04-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9222,14442,GO-20159002136,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,15,2015-04-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9223,14444,GO-2015683688,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,17,2015-04-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9224,14445,GO-20159002368,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,16,2015-05-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9225,14446,GO-2015728767,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,15,2015-05-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9226,14447,GO-20159002571,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,8,2015-05-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9227,15648,GO-20199022887,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,18,2019-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9228,15653,GO-20199023152,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,19,2019-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9229,15654,GO-20199023159,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,18,2019-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9230,15655,GO-20199023601,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,13,2019-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9231,15665,GO-20191473313,THEFT UNDER - BICYCLE,2019-08-04,2019,August,Sunday,4,216,21,2019-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9232,15666,GO-20199025387,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,6,2019-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9233,15668,GO-20199025708,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,13,2019-08-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9234,15669,GO-20199025789,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,14,2019-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9235,15671,GO-20199026277,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,22,2019-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9236,15676,GO-20191586871,B&E,2019-08-13,2019,August,Tuesday,13,225,17,2019-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9237,15680,GO-20199027688,THEFT FROM MOTOR VEHICLE UNDER,2019-08-24,2019,August,Saturday,24,236,8,2019-08-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9238,15690,GO-20199028686,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,19,2019-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9239,15695,GO-20199029409,THEFT UNDER,2019-09-06,2019,September,Friday,6,249,9,2019-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9240,15704,GO-20191795897,THEFT OF EBIKE UNDER $5000,2019-09-18,2019,September,Wednesday,18,261,9,2019-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9241,16928,GO-20179008077,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,7,2017-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9242,22796,GO-20202032948,B&E,2020-10-13,2020,October,Tuesday,13,287,18,2020-10-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9243,10909,GO-20169000118,THEFT UNDER,2015-12-01,2015,December,Tuesday,1,335,15,2016-01-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9244,17312,GO-20179005103,THEFT UNDER,2017-04-22,2017,April,Saturday,22,112,19,2017-04-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9245,16933,GO-20179008844,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,18,2017-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9246,16934,GO-20179008893,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,0,2017-06-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9247,20319,GO-20189019676,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,17,2018-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9248,16935,GO-20179009056,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,8,2017-06-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9249,16951,GO-20179010335,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,22,2017-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9250,16952,GO-20179010380,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,18,2017-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9251,16954,GO-20171307949,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,23,2017-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9252,16955,GO-20179010859,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,9,2017-07-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9253,16970,GO-20179012961,THEFT UNDER,2017-08-21,2017,August,Monday,21,233,12,2017-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9254,16971,GO-20179013370,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,18,2017-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9255,16972,GO-20179013393,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,14,2017-08-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9256,16973,GO-20179013730,THEFT UNDER,2017-08-28,2017,August,Monday,28,240,10,2017-08-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9257,16976,GO-20171627066,THEFT UNDER - BICYCLE,2017-08-26,2017,August,Saturday,26,238,13,2017-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9258,16979,GO-20179014421,THEFT UNDER - BICYCLE,2017-09-09,2017,September,Saturday,9,252,9,2017-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9259,16986,GO-20171759722,THEFT OF EBIKE UNDER $5000,2017-09-20,2017,September,Wednesday,20,263,18,2017-09-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9260,23601,GO-2015870053,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,12,2015-05-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9261,16991,GO-20179016858,THEFT UNDER,2017-10-09,2017,October,Monday,9,282,22,2017-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9262,16998,GO-20179017804,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,13,2017-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9263,17004,GO-20172047670,THEFT UNDER - BICYCLE,2017-11-12,2017,November,Sunday,12,316,10,2017-11-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9264,8914,GO-20149006998,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,13,2014-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9265,17007,GO-20179019989,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,15,2017-11-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9266,17010,GO-20179020768,THEFT UNDER - BICYCLE,2017-11-26,2017,November,Sunday,26,330,13,2017-11-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9267,17011,GO-20179020868,THEFT UNDER - BICYCLE,2017-11-27,2017,November,Monday,27,331,12,2017-11-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9268,17012,GO-20179020903,THEFT UNDER - BICYCLE,2017-11-29,2017,November,Wednesday,29,333,5,2017-11-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9269,17013,GO-20179021179,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,18,2017-12-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9270,17016,GO-20173266012,B&E,2017-12-16,2017,December,Saturday,16,350,23,2017-12-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9271,17019,GO-2018528020,B&E,2018-03-22,2018,March,Thursday,22,81,1,2018-03-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9272,23731,GO-20161423574,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,16,2016-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9273,17023,GO-20189012496,THEFT UNDER - BICYCLE,2018-04-22,2018,April,Sunday,22,112,10,2018-04-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9274,17026,GO-20189014282,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,19,2018-05-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9275,17029,GO-20189015164,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,0,2018-05-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9276,17034,GO-20189016438,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,18,2018-05-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9277,17039,GO-20189016707,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,22,2018-05-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9278,17040,GO-20189016955,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,21,2018-05-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9279,17041,GO-20189017260,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,13,2018-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9280,12531,GO-20161755063,B&E,2016-10-03,2016,October,Monday,3,277,3,2016-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9281,17046,GO-20189018255,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,12,2018-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9282,17047,GO-20189018301,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,12,2018-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9283,17052,GO-20189019670,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,8,2018-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9284,17053,GO-20189019695,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,10,2018-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9285,17055,GO-20189019939,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,8,2018-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9286,17061,GO-20189021022,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,14,2018-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9287,17063,GO-20189021083,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,16,2018-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9288,17065,GO-20181203144,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,15,2018-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9289,17069,GO-20189022830,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,19,2018-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9290,17071,GO-20189022995,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,23,2018-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9291,17074,GO-20189023713,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,13,2018-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9292,17076,GO-20189023937,THEFT OVER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,20,2018-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9293,17083,GO-20189025277,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,10,2018-08-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9294,17085,GO-20189025978,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,15,2018-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9295,17088,GO-20189026477,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,10,2018-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9296,17092,GO-20189027007,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,15,2018-08-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9297,17093,GO-20189027199,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,16,2018-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9298,17097,GO-20189029228,THEFT UNDER - BICYCLE,2018-09-02,2018,September,Sunday,2,245,20,2018-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9299,17116,GO-20189035638,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,18,2018-10-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9300,17118,GO-2015697798,THEFT UNDER,2015-01-01,2015,January,Thursday,1,1,1,2015-04-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9301,17119,GO-2015697798,THEFT UNDER,2015-01-01,2015,January,Thursday,1,1,1,2015-04-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9302,17120,GO-2015702588,THEFT UNDER,2015-04-27,2015,April,Monday,27,117,14,2015-04-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9303,21122,GO-2020627625,B&E,2020-03-27,2020,March,Friday,27,87,14,2020-03-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -9304,17122,GO-20159002452,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,21,2015-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9305,17124,GO-2015760469,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,14,2015-05-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9306,17127,GO-20159002751,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,18,2015-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9307,17140,GO-20159003745,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,19,2015-06-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9308,17144,GO-20159004033,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,14,2015-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9309,17147,GO-20159004297,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,13,2015-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9310,17156,GO-20159005012,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,16,2015-07-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9311,17157,GO-20159005325,B&E,2015-07-31,2015,July,Friday,31,212,16,2015-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9312,17158,GO-20151341634,B&E,2015-07-07,2015,July,Tuesday,7,188,11,2015-08-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9313,17162,GO-20159006272,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,15,2015-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9314,17166,GO-20159006752,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,8,2015-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9315,17173,GO-20159007348,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,10,2015-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9316,17174,GO-20151612342,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,1,2015-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9317,17175,GO-20151612342,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,1,2015-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9318,17176,GO-20151659302,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,16,2015-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9319,17184,GO-20151862136,THEFT UNDER,2015-10-29,2015,October,Thursday,29,302,14,2015-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9320,17187,GO-20151882354,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,23,2015-11-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9321,17188,GO-20159009318,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,10,2015-11-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9322,17189,GO-20159009357,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,9,2015-11-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9323,17190,GO-20159009410,THEFT UNDER,2015-10-24,2015,October,Saturday,24,297,18,2015-11-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9324,17191,GO-20159009477,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,13,2015-11-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9325,17196,GO-20159010935,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,9,2015-12-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9326,17201,GO-2016257485,THEFT UNDER,2016-02-07,2016,February,Sunday,7,38,12,2016-02-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9327,12532,GO-20161755063,B&E,2016-10-03,2016,October,Monday,3,277,3,2016-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9328,17206,GO-2016356414,THEFT UNDER,2016-02-29,2016,February,Monday,29,60,8,2016-02-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9329,17207,GO-20169002044,THEFT UNDER - BICYCLE,2016-02-15,2016,February,Monday,15,46,10,2016-03-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9330,17211,GO-20169002910,THEFT UNDER - BICYCLE,2016-03-30,2016,March,Wednesday,30,90,5,2016-03-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9331,17212,GO-20169003746,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,19,2016-04-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9332,17218,GO-2016807383,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,18,2016-05-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9333,17221,GO-20169004743,THEFT UNDER - BICYCLE,2016-05-19,2016,May,Thursday,19,140,17,2016-05-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9334,17225,GO-2016952655,THEFT UNDER - BICYCLE,2016-06-01,2016,June,Wednesday,1,153,9,2016-06-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9335,17227,GO-20169005550,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,21,2016-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9336,17233,GO-20161075545,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,15,2016-06-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9337,17237,GO-20161103362,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,12,2016-06-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9338,17240,GO-20169006540,THEFT UNDER - BICYCLE,2016-06-29,2016,June,Wednesday,29,181,16,2016-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9339,12624,GO-20169012092,THEFT UNDER - BICYCLE,2016-10-09,2016,October,Sunday,9,283,21,2016-10-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9340,17244,GO-20169006752,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,22,2016-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9341,17260,GO-20169009452,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,20,2016-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9342,17261,GO-20169009478,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,3,2016-08-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9343,12533,GO-20161755063,B&E,2016-10-03,2016,October,Monday,3,277,3,2016-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9344,17269,GO-20161634185,THEFT OF MOTOR VEHICLE,2016-08-30,2016,August,Tuesday,30,243,5,2016-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9345,20716,GO-20209015415,THEFT UNDER,2020-03-10,2020,March,Tuesday,10,70,15,2020-06-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9346,17273,GO-20161711752,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,15,2016-09-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9347,17281,GO-20169012270,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,18,2016-10-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9348,17282,GO-20161858485,THEFT UNDER - BICYCLE,2016-10-18,2016,October,Tuesday,18,292,18,2016-10-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9349,17292,GO-20169014022,THEFT UNDER,2016-11-23,2016,November,Wednesday,23,328,8,2016-11-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9350,17295,GO-20169015240,THEFT UNDER - BICYCLE,2016-12-30,2016,December,Friday,30,365,7,2016-12-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9351,12534,GO-20161755063,B&E,2016-10-03,2016,October,Monday,3,277,3,2016-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9352,20719,GO-20201150918,THEFT UNDER - BICYCLE,2020-06-22,2020,June,Monday,22,174,16,2020-06-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9353,17314,GO-20179005522,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,18,2017-05-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9354,20727,GO-20201233367,THEFT UNDER - BICYCLE,2020-07-04,2020,July,Saturday,4,186,12,2020-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9355,10942,GO-2016132911,B&E,2016-01-22,2016,January,Friday,22,22,18,2016-01-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9356,10952,GO-2016153877,THEFT UNDER,2016-01-26,2016,January,Tuesday,26,26,16,2016-01-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9357,10958,GO-2016178196,THEFT UNDER,2016-01-30,2016,January,Saturday,30,30,15,2016-01-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9358,10959,GO-20169000983,THEFT UNDER,2016-01-29,2016,January,Friday,29,29,19,2016-01-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9359,10990,GO-20169001384,THEFT UNDER,2016-02-13,2016,February,Saturday,13,44,11,2016-02-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9360,10997,GO-2016282015,THEFT UNDER,2016-02-16,2016,February,Tuesday,16,47,18,2016-02-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9361,11023,GO-20169002124,THEFT UNDER - BICYCLE,2016-03-07,2016,March,Monday,7,67,19,2016-03-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9362,11039,GO-20169002234,THEFT UNDER,2016-03-11,2016,March,Friday,11,71,12,2016-03-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9363,17421,GO-20141600543,THEFT UNDER,2014-02-25,2014,February,Tuesday,25,56,8,2014-02-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9364,11043,GO-20169002276,THEFT UNDER,2016-03-12,2016,March,Saturday,12,72,15,2016-03-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9365,17423,GO-20149002177,THEFT UNDER,2014-03-19,2014,March,Wednesday,19,78,17,2014-03-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9366,12661,GO-20161877711,THEFT UNDER - BICYCLE,2016-10-22,2016,October,Saturday,22,296,7,2016-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9367,20729,GO-20201212958,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,0,2020-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9368,20735,GO-20209018524,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,12,2020-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9369,22797,GO-20202032948,B&E,2020-10-13,2020,October,Tuesday,13,287,18,2020-10-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9370,11097,GO-2016570091,THEFT UNDER,2015-12-04,2015,December,Friday,4,338,12,2016-04-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9371,17424,GO-20141822324,THEFT UNDER,2014-01-27,2014,January,Monday,27,27,18,2014-04-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9372,20322,GO-20189020539,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,7,2018-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9373,20762,GO-20209020675,THEFT UNDER - BICYCLE,2020-08-12,2020,August,Wednesday,12,225,21,2020-08-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9374,12662,GO-20161873128,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,6,2016-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9375,23607,GO-20159003331,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,15,2015-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9376,22798,GO-20202024796,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,15,2020-10-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9377,11123,GO-2016611345,THEFT UNDER - BICYCLE,2016-03-26,2016,March,Saturday,26,86,15,2016-04-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9378,17426,GO-20149002771,THEFT UNDER,2014-04-10,2014,April,Thursday,10,100,15,2014-04-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9379,20323,GO-20189020644,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,12,2018-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9380,11155,GO-2016659494,B&E,2016-04-18,2016,April,Monday,18,109,0,2016-04-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9381,22800,GO-20209028804,THEFT UNDER,2020-11-05,2020,November,Thursday,5,310,19,2020-11-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9382,23615,GO-20159003726,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,20,2015-06-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9383,12665,GO-20169012426,THEFT UNDER,2016-10-16,2016,October,Sunday,16,290,9,2016-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9384,20764,GO-20209021025,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,19,2020-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9385,17428,GO-20149003014,THEFT UNDER,2014-04-25,2014,April,Friday,25,115,18,2014-04-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9386,20765,GO-20209021025,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,19,2020-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9387,12681,GO-20169012647,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,18,2016-10-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9388,23626,GO-20159004568,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,19,2015-07-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9389,11170,GO-20169003654,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,11,2016-04-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9390,22803,GO-20209031655,THEFT UNDER - BICYCLE,2020-12-08,2020,December,Tuesday,8,343,17,2020-12-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9391,20325,GO-20189021514,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,18,2018-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9392,17433,GO-20142251420,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,23,2014-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9393,20768,GO-20209021470,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,12,2020-08-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9394,12682,GO-20161909469,THEFT UNDER - BICYCLE,2016-10-20,2016,October,Thursday,20,294,0,2016-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9395,23627,GO-20151203788,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,18,2015-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9396,23630,GO-20159005075,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,16,2015-07-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9397,23632,GO-20151305228,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,11,2015-07-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9398,23633,GO-20159005306,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,19,2015-08-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9399,23635,GO-20151339498,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,16,2015-08-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9400,23638,GO-20151369729,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,18,2015-08-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9401,23642,GO-20159005749,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,9,2015-08-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9402,23643,GO-20159005787,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,8,2015-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9403,23646,GO-20151464979,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,15,2015-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9404,23648,GO-20151534899,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,1,2015-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9405,23651,GO-20151584432,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,14,2015-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9406,23659,GO-20151735565,B&E,2015-09-27,2015,September,Sunday,27,270,15,2015-10-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9407,172,GO-20179003810,THEFT UNDER,2017-03-26,2017,March,Sunday,26,85,15,2017-03-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9408,23663,GO-20159009332,THEFT UNDER,2015-11-03,2015,November,Tuesday,3,307,9,2015-11-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9409,23664,GO-20159009357,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,9,2015-11-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9410,23666,GO-20159009554,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,17,2015-11-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9411,23668,GO-20151968706,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,18,2015-11-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9412,23671,GO-20152042384,THEFT UNDER,2015-11-12,2015,November,Thursday,12,316,17,2015-11-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9413,23673,GO-20159011177,THEFT UNDER,2015-12-21,2015,December,Monday,21,355,18,2015-12-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9414,23678,GO-2016359977,THEFT OVER,2016-02-29,2016,February,Monday,29,60,19,2016-02-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9415,23679,GO-20169002481,THEFT UNDER,2016-03-18,2016,March,Friday,18,78,11,2016-03-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9416,23681,GO-20169002992,THEFT UNDER,2016-04-01,2016,April,Friday,1,92,20,2016-04-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9417,23683,GO-2016622845,THEFT UNDER,2016-04-06,2016,April,Wednesday,6,97,18,2016-04-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9418,23686,GO-20169003978,THEFT UNDER - BICYCLE,2016-04-27,2016,April,Wednesday,27,118,18,2016-04-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9419,23696,GO-20169004786,THEFT UNDER,2016-05-16,2016,May,Monday,16,137,23,2016-05-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9420,23701,GO-20169005383,THEFT UNDER - BICYCLE,2016-05-25,2016,May,Wednesday,25,146,12,2016-06-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9421,23703,GO-20169005514,THEFT UNDER,2016-06-07,2016,June,Tuesday,7,159,7,2016-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9422,23713,GO-20169006260,THEFT UNDER,2016-06-22,2016,June,Wednesday,22,174,8,2016-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9423,23721,GO-20169007640,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,18,2016-07-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9424,23733,GO-20169009029,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,15,2016-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9425,23750,GO-20169010628,THEFT UNDER - BICYCLE,2016-09-17,2016,September,Saturday,17,261,11,2016-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9426,23751,GO-20169010816,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,22,2016-09-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9427,23755,GO-20169011494,B&E,2016-10-02,2016,October,Sunday,2,276,12,2016-10-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9428,23761,GO-20169012220,THEFT UNDER - BICYCLE,2016-10-18,2016,October,Tuesday,18,292,8,2016-10-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9429,23762,GO-20169012247,THEFT UNDER,2016-10-18,2016,October,Tuesday,18,292,13,2016-10-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9430,23764,GO-20169012451,THEFT UNDER,2016-10-15,2016,October,Saturday,15,289,0,2016-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9431,23769,GO-20169013413,THEFT UNDER,2016-11-14,2016,November,Monday,14,319,9,2016-11-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9432,23771,GO-20169013537,THEFT UNDER,2016-10-31,2016,October,Monday,31,305,18,2016-11-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9433,23774,GO-20162254345,THEFT OF EBIKE UNDER $5000,2016-12-20,2016,December,Tuesday,20,355,22,2016-12-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9434,23776,GO-20169015232,THEFT UNDER,2016-12-25,2016,December,Sunday,25,360,17,2016-12-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9435,23777,GO-201728393,THEFT UNDER - BICYCLE,2017-01-05,2017,January,Thursday,5,5,8,2017-01-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9436,23781,GO-20179002646,THEFT UNDER,2017-02-28,2017,February,Tuesday,28,59,9,2017-03-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9437,23869,GO-20149002631,THEFT UNDER,2014-03-06,2014,March,Thursday,6,65,14,2014-04-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9438,23870,GO-20149002636,THEFT UNDER,2014-04-08,2014,April,Tuesday,8,98,10,2014-04-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9439,7518,GO-20209027095,THEFT UNDER,2020-10-20,2020,October,Tuesday,20,294,7,2020-10-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -9440,23871,GO-20141908304,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,10,2014-04-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9441,23872,GO-20141988123,THEFT UNDER,2014-04-30,2014,April,Wednesday,30,120,12,2014-04-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9442,23874,GO-20149003144,THEFT UNDER,2014-05-04,2014,May,Sunday,4,124,9,2014-05-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9443,23875,GO-20149003173,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,18,2014-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9444,23876,GO-20142046987,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,13,2014-05-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9445,23879,GO-20142109010,THEFT UNDER,2014-05-18,2014,May,Sunday,18,138,21,2014-05-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9446,23881,GO-20142196711,PROPERTY - FOUND,2014-06-01,2014,June,Sunday,1,152,7,2014-06-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9447,23882,GO-20149003736,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,21,2014-06-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9448,23887,GO-20142213287,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,10,2014-06-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9449,23890,GO-20142275000,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,12,2014-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9450,23891,GO-20142271203,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,19,2014-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9451,23894,GO-20149004028,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,19,2014-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9452,23897,GO-20142309875,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,15,2014-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9453,23904,GO-20149004373,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,21,2014-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9454,23906,GO-20142366884,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,18,2014-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9455,23909,GO-20149004559,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,11,2014-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9456,23910,GO-20142431626,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,15,2014-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9457,23911,GO-20142454207,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,21,2014-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9458,23912,GO-20149004795,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,12,2014-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9459,23917,GO-20149004928,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,0,2014-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9460,23918,GO-20149004943,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,9,2014-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9461,23919,GO-20142518964,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,20,2014-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9462,23920,GO-20142491577,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,19,2014-07-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9463,23922,GO-20149004966,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,20,2014-07-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9464,23923,GO-20149005042,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,21,2014-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9465,23930,GO-20142568385,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,7,2014-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9466,23931,GO-20142568385,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,7,2014-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9467,23936,GO-20149005718,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,17,2014-08-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9468,23940,GO-20142740246,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,14,2014-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9469,23944,GO-20149006181,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,16,2014-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9470,23954,GO-20142929431,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,14,2014-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9471,23958,GO-20149007153,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,22,2014-09-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9472,23961,GO-20149007241,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,8,2014-09-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9473,23963,GO-20149007522,THEFT UNDER,2014-10-10,2014,October,Friday,10,283,7,2014-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9474,23966,GO-20143315393,THEFT UNDER,2014-11-17,2014,November,Monday,17,321,0,2014-11-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9475,23969,GO-20143483971,THEFT UNDER,2014-12-14,2014,December,Sunday,14,348,13,2014-12-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9476,23972,GO-2015205735,THEFT UNDER,2015-01-02,2015,January,Friday,2,2,6,2015-02-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9477,23976,GO-20159001999,THEFT UNDER,2015-03-08,2015,March,Sunday,8,67,17,2015-04-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9478,23979,GO-20159002117,THEFT UNDER,2015-04-03,2015,April,Friday,3,93,19,2015-04-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9479,23982,GO-2015746010,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,11,2015-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9480,24792,GO-20149004335,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,18,2014-06-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9481,24815,GO-20149005883,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,18,2014-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9482,3,GO-20162182674,THEFT UNDER - BICYCLE,2016-12-09,2016,December,Friday,9,344,9,2016-12-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9483,5,GO-20169014547,THEFT UNDER - BICYCLE,2016-12-09,2016,December,Friday,9,344,9,2016-12-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9484,7,GO-20169014563,THEFT UNDER - BICYCLE,2016-12-08,2016,December,Thursday,8,343,17,2016-12-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9485,28,GO-20169014946,THEFT UNDER - BICYCLE,2016-12-18,2016,December,Sunday,18,353,2,2016-12-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9486,17438,GO-20149004067,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,18,2014-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9487,11196,GO-20169003791,THEFT UNDER,2016-04-24,2016,April,Sunday,24,115,20,2016-04-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9488,12687,GO-20169012677,THEFT UNDER,2016-10-26,2016,October,Wednesday,26,300,19,2016-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9489,20769,GO-20201661228,THEFT UNDER - BICYCLE,2020-08-29,2020,August,Saturday,29,242,18,2020-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9490,20326,GO-20181245691,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,18,2018-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9491,22804,GO-20209031655,THEFT UNDER - BICYCLE,2020-12-08,2020,December,Tuesday,8,343,17,2020-12-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9492,11247,GO-20169004094,THEFT UNDER,2016-05-02,2016,May,Monday,2,123,9,2016-05-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9493,20770,GO-20209022243,THEFT UNDER,2020-08-29,2020,August,Saturday,29,242,15,2020-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9494,12714,GO-20169012927,THEFT UNDER - BICYCLE,2016-11-03,2016,November,Thursday,3,308,2,2016-11-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9495,22806,GO-20202448376,THEFT OF EBIKE UNDER $5000,2020-12-29,2020,December,Tuesday,29,364,15,2020-12-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9496,20334,GO-20181286429,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,5,2018-07-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9497,11261,GO-20169004188,THEFT UNDER,2016-05-05,2016,May,Thursday,5,126,9,2016-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9498,20774,GO-20201700725,B&E,2020-07-07,2020,July,Tuesday,7,189,0,2020-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9499,12742,GO-20169013151,THEFT UNDER - BICYCLE,2016-11-08,2016,November,Tuesday,8,313,16,2016-11-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9500,12754,GO-20169013298,THEFT UNDER,2016-11-09,2016,November,Wednesday,9,314,1,2016-11-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9501,17443,GO-20149004518,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,22,2014-06-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9502,20335,GO-20189023100,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,16,2018-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9503,20776,GO-20209023395,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,19,2020-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9504,20336,GO-20181337142,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,13,2018-07-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9505,22807,GO-20202330705,THEFT UNDER,2020-12-10,2020,December,Thursday,10,345,11,2020-12-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9506,12788,GO-20169013587,THEFT UNDER,2016-11-18,2016,November,Friday,18,323,9,2016-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9507,17445,GO-20142448762,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,12,2014-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9508,17447,GO-20142505767,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,22,2014-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9509,11328,GO-2016840972,B&E,2016-05-16,2016,May,Monday,16,137,0,2016-05-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9510,12828,GO-20169013928,THEFT UNDER - BICYCLE,2016-11-25,2016,November,Friday,25,330,10,2016-11-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9511,23193,GO-20199022267,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,19,2019-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9512,17450,GO-20149005020,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,7,2014-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9513,20337,GO-20189023491,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,17,2018-07-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9514,13315,GO-20151058209,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,15,2015-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9515,11350,GO-20169004808,THEFT UNDER,2016-05-21,2016,May,Saturday,21,142,22,2016-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9516,20780,GO-20209024025,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,12,2020-09-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9517,23205,GO-20189030885,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,8,2018-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9518,17451,GO-20149005099,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,13,2014-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9519,20339,GO-20181368600,THEFT OF EBIKE UNDER $5000,2018-07-25,2018,July,Wednesday,25,206,21,2018-07-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9520,13420,GO-20169010537,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,9,2016-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9521,11365,GO-2016897643,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,19,2016-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9522,11372,GO-20169004930,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,10,2016-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9523,11373,GO-20169004928,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,9,2016-05-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9524,11384,GO-20169004991,THEFT UNDER,2016-05-26,2016,May,Thursday,26,147,12,2016-05-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9525,11388,GO-20169005024,THEFT UNDER - BICYCLE,2016-05-26,2016,May,Thursday,26,147,12,2016-05-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9526,11419,GO-20169005182,THEFT UNDER,2016-05-31,2016,May,Tuesday,31,152,16,2016-05-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9527,11443,GO-20169005311,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,13,2016-06-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9528,11444,GO-2016979860,POSSESSION PROPERTY OBC UNDER,2016-06-06,2016,June,Monday,6,158,5,2016-06-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9529,11463,GO-2016982500,THEFT OF EBIKE UNDER $5000,2016-06-06,2016,June,Monday,6,158,11,2016-06-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9530,11481,GO-20169005522,THEFT UNDER,2016-06-08,2016,June,Wednesday,8,160,23,2016-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9531,11488,GO-20169005571,THEFT UNDER,2016-06-10,2016,June,Friday,10,162,8,2016-06-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9532,11496,GO-20169005591,THEFT UNDER - BICYCLE,2016-06-06,2016,June,Monday,6,158,11,2016-06-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9533,11508,GO-20161018855,THEFT OF EBIKE UNDER $5000,2016-06-10,2016,June,Friday,10,162,19,2016-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9534,11512,GO-20161018051,THEFT UNDER,2016-06-11,2016,June,Saturday,11,163,15,2016-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9535,12554,GO-20169011564,B&E,2016-10-03,2016,October,Monday,3,277,3,2016-10-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9536,11544,GO-20169005843,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,17,2016-06-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9537,11559,GO-20169005900,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,15,2016-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9538,11679,GO-20161144186,THEFT UNDER - BICYCLE,2016-06-26,2016,June,Sunday,26,178,14,2016-06-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9539,11706,GO-20169006720,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,17,2016-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9540,11715,GO-20161169144,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,18,2016-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9541,11722,GO-20169006777,THEFT UNDER,2016-07-03,2016,July,Sunday,3,185,0,2016-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9542,11724,GO-20169006790,THEFT UNDER,2016-06-29,2016,June,Wednesday,29,181,17,2016-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9543,22691,GO-20209001112,THEFT UNDER,2019-11-10,2019,November,Sunday,10,314,12,2020-01-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9544,11732,GO-20161195660,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,0,2016-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9545,11733,GO-20161195660,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,0,2016-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9546,11777,GO-20169007098,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,7,2016-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9547,11784,GO-20169007112,THEFT UNDER,2016-07-09,2016,July,Saturday,9,191,15,2016-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9548,11805,GO-20169007197,THEFT UNDER,2016-07-13,2016,July,Wednesday,13,195,22,2016-07-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9549,11820,GO-20169007280,THEFT UNDER,2016-07-16,2016,July,Saturday,16,198,1,2016-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9550,11840,GO-20169007374,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,0,2016-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9551,11855,GO-20169007464,THEFT UNDER,2016-07-01,2016,July,Friday,1,183,9,2016-07-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9552,11859,GO-20169007521,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,21,2016-07-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9553,11861,GO-20169007537,THEFT UNDER,2016-07-20,2016,July,Wednesday,20,202,18,2016-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9554,11862,GO-20169007539,THEFT UNDER,2016-07-18,2016,July,Monday,18,200,16,2016-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9555,11872,GO-20169007591,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,9,2016-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9556,11902,GO-20169007713,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,8,2016-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9557,11908,GO-20169007743,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,9,2016-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9558,11945,GO-20169007911,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,13,2016-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9559,11966,GO-20169008010,THEFT UNDER,2016-07-28,2016,July,Thursday,28,210,18,2016-07-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9560,11967,GO-20169008007,THEFT UNDER,2016-07-26,2016,July,Tuesday,26,208,14,2016-07-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9561,11975,GO-20169008087,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,13,2016-08-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9562,11978,GO-20169008119,B&E,2016-07-28,2016,July,Thursday,28,210,9,2016-08-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9563,11985,GO-20169008151,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,18,2016-08-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9564,11987,GO-20161356170,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,23,2016-08-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9565,12027,GO-20169008401,THEFT UNDER,2016-08-07,2016,August,Sunday,7,220,21,2016-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9566,12072,GO-20161406256,THEFT OF EBIKE OVER $5000,2016-08-09,2016,August,Tuesday,9,222,20,2016-08-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9567,5823,GO-20209001412,THEFT UNDER,2020-01-13,2020,January,Monday,13,13,15,2020-01-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9568,12087,GO-20169008680,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,23,2016-08-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9569,12093,GO-20161441140,B&E,2016-08-15,2016,August,Monday,15,228,3,2016-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9570,12130,GO-20169008993,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,8,2016-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9571,12148,GO-20161481300,THEFT OVER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,15,2016-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9572,12156,GO-20169009138,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,19,2016-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9573,12169,GO-20169009178,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,13,2016-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9574,12170,GO-20169009211,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,8,2016-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9575,12183,GO-20169009328,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,17,2016-08-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9576,12223,GO-20169009623,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,15,2016-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9577,12233,GO-20161537842,B&E,2016-08-24,2016,August,Wednesday,24,237,17,2016-08-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9578,12240,GO-20161533559,THEFT UNDER,2016-08-29,2016,August,Monday,29,242,17,2016-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9579,12241,GO-20161536739,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,15,2016-08-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9580,12246,GO-20169009872,THEFT UNDER,2016-09-01,2016,September,Thursday,1,245,17,2016-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9581,12247,GO-20169009878,THEFT UNDER,2016-09-02,2016,September,Friday,2,246,14,2016-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9582,12291,GO-20169010128,THEFT UNDER,2016-09-07,2016,September,Wednesday,7,251,16,2016-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9583,12382,GO-20169010631,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,11,2016-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9584,12383,GO-20161656344,THEFT UNDER - BICYCLE,2016-09-17,2016,September,Saturday,17,261,16,2016-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9585,12403,GO-20169010765,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,7,2016-09-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9586,12407,GO-20161673181,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,9,2016-09-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9587,12422,GO-20169010882,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,17,2016-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9588,12426,GO-20169010882,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,17,2016-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9589,12429,GO-20169010928,THEFT UNDER,2016-09-22,2016,September,Thursday,22,266,9,2016-09-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9590,12447,GO-20169011062,THEFT FROM MOTOR VEHICLE UNDER,2016-09-25,2016,September,Sunday,25,269,0,2016-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9591,12490,GO-20169011276,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,21,2016-09-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9592,12567,GO-20169011669,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,17,2016-10-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9593,12572,GO-20169011687,THEFT UNDER,2016-09-07,2016,September,Wednesday,7,251,12,2016-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9594,20347,GO-20189026314,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,17,2018-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9595,13470,GO-2019436744,THEFT UNDER,2019-03-09,2019,March,Saturday,9,68,21,2019-03-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9596,20849,GO-20149001765,THEFT UNDER,2014-03-03,2014,March,Monday,3,62,19,2014-03-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9597,17454,GO-20149005206,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,20,2014-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9598,20350,GO-20189026460,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,16,2018-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9599,20850,GO-20141649320,THEFT UNDER,2014-03-05,2014,March,Wednesday,5,64,20,2014-03-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9600,23206,GO-20181756666,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,11,2018-09-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9601,13475,GO-2019647542,THEFT OF EBIKE UNDER $5000,2019-04-10,2019,April,Wednesday,10,100,13,2019-04-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9602,17459,GO-20149005306,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,22,2014-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9603,20852,GO-20141778734,THEFT UNDER,2014-03-27,2014,March,Thursday,27,86,4,2014-03-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9604,23207,GO-20189031746,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,12,2018-09-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9605,13481,GO-2019713702,THEFT UNDER,2019-04-17,2019,April,Wednesday,17,107,20,2019-04-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9606,20354,GO-20189026713,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,13,2018-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9607,17465,GO-20149005736,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,8,2014-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9608,13487,GO-2019926063,B&E,2019-05-18,2019,May,Saturday,18,138,22,2019-05-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9609,20853,GO-20141837662,THEFT UNDER,2014-04-05,2014,April,Saturday,5,95,19,2014-04-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9610,20356,GO-20189027197,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,15,2018-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9611,23208,GO-20181782449,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,15,2018-09-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9612,17470,GO-20149005990,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,15,2014-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9613,13488,GO-20199015976,THEFT UNDER,2019-05-22,2019,May,Wednesday,22,142,12,2019-05-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9614,20854,GO-20149002850,THEFT UNDER,2014-04-14,2014,April,Monday,14,104,12,2014-04-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9615,19608,GO-20209031987,THEFT UNDER,2020-12-13,2020,December,Sunday,13,348,6,2020-12-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9616,20855,GO-20141922632,THEFT UNDER,2014-04-19,2014,April,Saturday,19,109,20,2014-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9617,20857,GO-20142015829,THEFT UNDER,2014-05-04,2014,May,Sunday,4,124,8,2014-05-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9618,20873,GO-20149004315,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,15,2014-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9619,20882,GO-20149004743,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,20,2014-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9620,20887,GO-20149004875,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,14,2014-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9621,20890,GO-20149005102,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,19,2014-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9622,20896,GO-20142560173,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,19,2014-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9623,20911,GO-20149005891,THEFT UNDER,2014-08-16,2014,August,Saturday,16,228,23,2014-08-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9624,20912,GO-20149005901,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,9,2014-08-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9625,20915,GO-20149006186,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,19,2014-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9626,20921,GO-20149006793,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,22,2014-09-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9627,20922,GO-20149006922,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,9,2014-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9628,20923,GO-20149006971,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,16,2014-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9629,20925,GO-20142948130,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,14,2014-09-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9630,20927,GO-20149007114,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,18,2014-09-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9631,20934,GO-20143074549,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,14,2014-10-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9632,20935,GO-20143081968,THEFT UNDER,2014-10-10,2014,October,Friday,10,283,14,2014-10-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9633,20936,GO-20143088743,PROPERTY - FOUND,2014-10-12,2014,October,Sunday,12,285,0,2014-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9634,20940,GO-20143179755,THEFT UNDER,2014-10-26,2014,October,Sunday,26,299,13,2014-10-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9635,20942,GO-20143220566,THEFT UNDER,2014-11-01,2014,November,Saturday,1,305,16,2014-11-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9636,20946,GO-20143253012,THEFT UNDER,2014-11-06,2014,November,Thursday,6,310,16,2014-11-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9637,20947,GO-20149008125,THEFT UNDER,2014-11-10,2014,November,Monday,10,314,19,2014-11-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9638,20949,GO-20143373975,THEFT UNDER,2014-11-25,2014,November,Tuesday,25,329,12,2014-11-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9639,22645,GO-20199029789,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,10,2019-09-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9640,20951,GO-20149008651,THEFT UNDER,2014-12-08,2014,December,Monday,8,342,9,2014-12-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9641,20952,GO-20143521700,THEFT UNDER,2014-12-03,2014,December,Wednesday,3,337,11,2014-12-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9642,20953,GO-20149008933,THEFT UNDER,2014-12-17,2014,December,Wednesday,17,351,0,2014-12-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9643,20962,GO-2015701171,B&E,2015-04-27,2015,April,Monday,27,117,9,2015-04-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9644,20965,GO-20159002534,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,18,2015-05-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9645,22607,GO-20199023625,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,10,2019-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9646,22610,GO-20191433137,PROPERTY - FOUND,2019-07-30,2019,July,Tuesday,30,211,9,2019-07-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9647,22690,GO-202036484,B&E,2019-12-28,2019,December,Saturday,28,362,0,2020-01-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9648,22619,GO-20199025888,THEFT UNDER - BICYCLE,2019-08-09,2019,August,Friday,9,221,14,2019-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9649,22620,GO-20191529334,THEFT UNDER - BICYCLE,2019-08-08,2019,August,Thursday,8,220,12,2019-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9650,22623,GO-20199026552,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,22,2019-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9651,22629,GO-20199027329,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,18,2019-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9652,22633,GO-20191600353,THEFT OF EBIKE UNDER $5000,2019-08-22,2019,August,Thursday,22,234,4,2019-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9653,22635,GO-20199027757,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,9,2019-08-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9654,22642,GO-20199029396,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,11,2019-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9655,22643,GO-20199029678,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,11,2019-09-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9656,22646,GO-20199030074,THEFT UNDER,2019-09-14,2019,September,Saturday,14,257,20,2019-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9657,22648,GO-20199030282,THEFT UNDER,2019-08-27,2019,August,Tuesday,27,239,17,2019-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9658,22652,GO-20199031955,THEFT UNDER - BICYCLE,2019-09-28,2019,September,Saturday,28,271,8,2019-09-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9659,22654,GO-20199032180,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,19,2019-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9660,22658,GO-20191963600,B&E W'INTENT,2019-10-08,2019,October,Tuesday,8,281,9,2019-10-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9661,22659,GO-20191963600,B&E W'INTENT,2019-10-08,2019,October,Tuesday,8,281,9,2019-10-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9662,22661,GO-20199033680,THEFT UNDER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,12,2019-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9663,22666,GO-20199034557,THEFT UNDER,2019-09-14,2019,September,Saturday,14,257,17,2019-10-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9664,22669,GO-20192034370,THEFT UNDER - BICYCLE,2019-09-02,2019,September,Monday,2,245,9,2019-10-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9665,22671,GO-20192049696,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,21,2019-10-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9666,22673,GO-20199035165,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,20,2019-10-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9667,22674,GO-20192051831,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,13,2019-10-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9668,22676,GO-20199036005,THEFT UNDER - BICYCLE,2019-10-25,2019,October,Friday,25,298,23,2019-10-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9669,22677,GO-20192109331,THEFT OF EBIKE UNDER $5000,2019-10-18,2019,October,Friday,18,291,3,2019-11-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9670,22682,GO-20199038135,THEFT UNDER,2019-11-19,2019,November,Tuesday,19,323,13,2019-11-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9671,22698,GO-20209009112,THEFT UNDER,2020-03-15,2020,March,Sunday,15,75,12,2020-03-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9672,22700,GO-2020574736,THEFT OVER - BICYCLE,2020-03-20,2020,March,Friday,20,80,18,2020-03-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9673,22713,GO-20209011533,THEFT UNDER,2020-04-19,2020,April,Sunday,19,110,8,2020-04-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9674,22714,GO-20209011690,THEFT UNDER - BICYCLE,2020-04-20,2020,April,Monday,20,111,9,2020-04-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9675,22717,GO-20209013141,THEFT UNDER,2020-05-14,2020,May,Thursday,14,135,13,2020-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9676,22719,GO-2020946800,THEFT OF EBIKE UNDER $5000,2020-05-21,2020,May,Thursday,21,142,20,2020-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9677,22722,GO-20209014154,THEFT UNDER,2020-05-13,2020,May,Wednesday,13,134,22,2020-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9678,22764,GO-20209021038,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,17,2020-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9679,22723,GO-2020988521,THEFT OF EBIKE UNDER $5000,2020-05-28,2020,May,Thursday,28,149,21,2020-05-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9680,22728,GO-20209015272,THEFT FROM MOTOR VEHICLE UNDER,2020-06-12,2020,June,Friday,12,164,19,2020-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9681,22732,GO-20209016100,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,20,2020-06-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9682,22734,GO-20209016274,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,17,2020-06-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9683,22736,GO-20209016488,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,18,2020-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9684,22737,GO-20209016488,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,18,2020-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9685,22739,GO-20209016767,THEFT UNDER,2020-07-02,2020,July,Thursday,2,184,18,2020-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9686,22762,GO-20209020432,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,17,2020-08-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9687,22767,GO-20201616608,THEFT UNDER - BICYCLE,2020-08-27,2020,August,Thursday,27,240,14,2020-08-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9688,22768,GO-20209021804,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,7,2020-08-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9689,22771,GO-20201665735,THEFT OF EBIKE UNDER $5000,2020-09-03,2020,September,Thursday,3,247,13,2020-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9690,22774,GO-20201697636,THEFT UNDER - BICYCLE,2020-08-30,2020,August,Sunday,30,243,19,2020-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9691,22775,GO-20209022807,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,21,2020-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9692,22779,GO-20201804476,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,20,2020-09-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9693,23211,GO-20189032417,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,9,2018-09-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9694,18812,GO-20201934323,THEFT OF EBIKE UNDER $5000,2020-10-11,2020,October,Sunday,11,285,18,2020-10-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9695,23216,GO-20189034041,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,5,2018-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9696,17471,GO-20142768468,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,9,2014-08-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9697,17479,GO-20149006897,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,13,2014-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9698,20357,GO-20181539174,THEFT FROM MOTOR VEHICLE OVER,2018-08-16,2018,August,Thursday,16,228,17,2018-08-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9699,17482,GO-20142731179,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,13,2014-08-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9700,20363,GO-20189028522,B&E,2018-08-12,2018,August,Sunday,12,224,19,2018-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9701,23220,GO-20189034838,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,9,2018-10-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9702,17484,GO-20142993683,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,23,2014-09-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9703,20364,GO-20181615654,THEFT UNDER - BICYCLE,2018-08-31,2018,August,Friday,31,243,20,2018-08-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9704,20365,GO-20189028963,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,15,2018-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9705,13490,GO-2019982816,THEFT UNDER - BICYCLE,2019-03-15,2019,March,Friday,15,74,11,2019-05-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9706,17488,GO-20143093105,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,21,2014-10-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9707,20366,GO-20189029059,THEFT UNDER - BICYCLE,2018-09-02,2018,September,Sunday,2,245,9,2018-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9708,23221,GO-20189035175,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,7,2018-10-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9709,8768,GO-20149006382,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,10,2014-08-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -9710,13491,GO-20191004337,THEFT UNDER - BICYCLE,2019-05-28,2019,May,Tuesday,28,148,19,2019-06-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9711,17489,GO-20143115722,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,5,2014-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9712,20367,GO-20189029218,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,18,2018-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9713,23222,GO-20189035815,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,22,2018-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9714,23224,GO-20189037380,THEFT UNDER - BICYCLE,2018-11-08,2018,November,Thursday,8,312,2,2018-11-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9715,23227,GO-20182125408,THEFT UNDER - BICYCLE,2018-11-13,2018,November,Tuesday,13,317,11,2018-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9716,23229,GO-20182180623,THEFT OF MOTOR VEHICLE,2018-11-26,2018,November,Monday,26,330,22,2018-11-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9717,5200,GO-20199028322,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,22,2019-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9718,23236,GO-2019283820,THEFT UNDER - BICYCLE,2018-12-19,2018,December,Wednesday,19,353,12,2019-02-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9719,23241,GO-20199006369,THEFT UNDER - BICYCLE,2019-02-22,2019,February,Friday,22,53,19,2019-02-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9720,23247,GO-20199012513,THEFT UNDER,2019-04-20,2019,April,Saturday,20,110,8,2019-04-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9721,23248,GO-20199013075,B&E,2019-04-25,2019,April,Thursday,25,115,16,2019-04-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9722,23251,GO-20199013863,THEFT UNDER,2019-05-02,2019,May,Thursday,2,122,8,2019-05-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9723,23255,GO-20199015948,THEFT UNDER,2019-05-22,2019,May,Wednesday,22,142,17,2019-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9724,23257,GO-20199016554,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,18,2019-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9725,23260,GO-20199017562,THEFT UNDER - BICYCLE,2019-06-05,2019,June,Wednesday,5,156,9,2019-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9726,23275,GO-20191198245,THEFT UNDER - BICYCLE,2019-06-23,2019,June,Sunday,23,174,10,2019-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9727,23283,GO-20199021368,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,17,2019-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9728,23396,GO-20179006568,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,19,2017-05-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9729,23402,GO-20179004907,THEFT UNDER,2017-04-18,2017,April,Tuesday,18,108,10,2017-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9730,23407,GO-20179006089,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,20,2017-05-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9731,23408,GO-20179006089,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,20,2017-05-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9732,23409,GO-20179006189,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,18,2017-05-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9733,23410,GO-2017850108,THEFT UNDER - BICYCLE,2017-05-14,2017,May,Sunday,14,134,7,2017-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9734,23412,GO-20179006820,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,15,2017-05-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9735,23413,GO-20179006814,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,18,2017-05-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9736,23419,GO-20179007905,THEFT UNDER,2017-06-03,2017,June,Saturday,3,154,6,2017-06-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9737,23421,GO-20179008077,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,7,2017-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9738,23423,GO-20179008200,THEFT UNDER - BICYCLE,2017-06-15,2017,June,Thursday,15,166,20,2017-06-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9739,23426,GO-20179008775,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,23,2017-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9740,23430,GO-20171151591,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,21,2017-06-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9741,23432,GO-20179009375,THEFT UNDER,2017-06-26,2017,June,Monday,26,177,0,2017-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9742,23433,GO-20179009445,THEFT UNDER,2017-07-04,2017,July,Tuesday,4,185,21,2017-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9743,23435,GO-20179009736,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,16,2017-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9744,23440,GO-20179010035,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,18,2017-07-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9745,23442,GO-20179010335,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,22,2017-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9746,23455,GO-20179011527,THEFT UNDER,2017-07-31,2017,July,Monday,31,212,17,2017-08-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9747,23457,GO-20179011893,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,8,2017-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9748,23461,GO-20179012458,THEFT UNDER,2017-08-15,2017,August,Tuesday,15,227,12,2017-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9749,23462,GO-20171452723,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,14,2017-08-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9750,23463,GO-20179012727,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,7,2017-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9751,23467,GO-20179013979,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,13,2017-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9752,23468,GO-20179014108,THEFT UNDER,2017-08-31,2017,August,Thursday,31,243,21,2017-09-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9753,23469,GO-20179014872,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,11,2017-09-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9754,23482,GO-20179016699,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,4,2017-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9755,23489,GO-20179018105,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,23,2017-10-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9756,23493,GO-20179018326,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,17,2017-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9757,23494,GO-20179019611,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,16,2017-11-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9758,23500,GO-20179019955,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,12,2017-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9759,23502,GO-20179021375,THEFT UNDER - BICYCLE,2017-12-06,2017,December,Wednesday,6,340,0,2017-12-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9760,23503,GO-20173137612,THEFT OF EBIKE UNDER $5000,2017-12-01,2017,December,Friday,1,335,17,2017-12-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9761,23504,GO-20179021954,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,8,2017-12-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9762,23506,GO-20179023116,THEFT UNDER - BICYCLE,2017-12-21,2017,December,Thursday,21,355,13,2017-12-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9763,23507,GO-20189002092,THEFT UNDER - BICYCLE,2018-01-19,2018,January,Friday,19,19,23,2018-01-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9764,23508,GO-20189002629,THEFT UNDER,2018-01-26,2018,January,Friday,26,26,18,2018-01-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9765,23518,GO-20189014388,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,18,2018-05-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9766,23519,GO-20189014587,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,16,2018-05-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9767,23520,GO-20189014862,THEFT UNDER,2018-05-14,2018,May,Monday,14,134,9,2018-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9768,23521,GO-20189014962,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,13,2018-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9769,23522,GO-20189014965,THEFT UNDER,2018-05-13,2018,May,Sunday,13,133,7,2018-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9770,23523,GO-20189015333,THEFT UNDER,2018-05-17,2018,May,Thursday,17,137,9,2018-05-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9771,23524,GO-20189015618,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,14,2018-05-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9772,23526,GO-20189016029,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,1,2018-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9773,23527,GO-20189016352,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,20,2018-05-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9774,23528,GO-20189016827,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,15,2018-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9775,23530,GO-20181023537,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,19,2018-06-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9776,23531,GO-20189017887,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,9,2018-06-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9777,23538,GO-20181075038,THEFT OF EBIKE UNDER $5000,2018-06-13,2018,June,Wednesday,13,164,19,2018-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9778,23539,GO-20189018582,THEFT UNDER,2018-06-10,2018,June,Sunday,10,161,18,2018-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9779,23544,GO-20189019684,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,18,2018-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9780,23546,GO-20189020750,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,11,2018-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9781,23547,GO-20189020852,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,13,2018-07-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9782,23550,GO-20189021892,THEFT OF EBIKE UNDER $5000,2018-07-10,2018,July,Tuesday,10,191,20,2018-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9783,23551,GO-20189021955,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,18,2018-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9784,23559,GO-20189022852,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,20,2018-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9785,23561,GO-20189023058,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,20,2018-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9786,23564,GO-20189023593,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,10,2018-07-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9787,23565,GO-20189024102,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,20,2018-07-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9788,23569,GO-20189024389,B&E,2018-07-16,2018,July,Monday,16,197,17,2018-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9789,23570,GO-20189024679,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,18,2018-07-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9790,23572,GO-20189024828,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,21,2018-08-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9791,23575,GO-20189025978,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,15,2018-08-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9792,17493,GO-20143074539,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,15,2014-10-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9793,13492,GO-20191023331,THEFT OF EBIKE UNDER $5000,2019-06-03,2019,June,Monday,3,154,21,2019-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9794,17496,GO-20143340688,THEFT UNDER,2014-11-21,2014,November,Friday,21,325,9,2014-11-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9795,13506,GO-20191199755,THEFT OF EBIKE UNDER $5000,2019-06-27,2019,June,Thursday,27,178,23,2019-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9796,5824,GO-20209001454,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,16,2020-01-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -9797,17503,GO-20159000811,THEFT UNDER,2015-02-11,2015,February,Wednesday,11,42,15,2015-02-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9798,13507,GO-20199020978,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,13,2019-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9799,17510,GO-20159001895,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,18,2015-04-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9800,20368,GO-20189029240,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,15,2018-09-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9801,13620,GO-20142311115,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,7,2014-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9802,17511,GO-2015634936,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,15,2015-04-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9803,20371,GO-20189030352,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,23,2018-09-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9804,13663,GO-20179006541,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,20,2017-05-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9805,18800,GO-20209024689,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,12,2020-09-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9806,20372,GO-20189030367,THEFT UNDER,2018-09-13,2018,September,Thursday,13,256,22,2018-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9807,13665,GO-20179006796,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,7,2017-05-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9808,18804,GO-20201856658,THEFT OF EBIKE UNDER $5000,2020-09-18,2020,September,Friday,18,262,13,2020-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9809,20374,GO-20181722071,THEFT UNDER,2018-09-16,2018,September,Sunday,16,259,17,2018-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9810,13666,GO-20179007130,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,19,2017-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9811,18811,GO-20209026427,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,1,2020-10-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9812,18819,GO-20202081332,B&E,2020-10-16,2020,October,Friday,16,290,12,2020-11-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9813,18820,GO-20202081332,B&E,2020-10-16,2020,October,Friday,16,290,12,2020-11-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9814,18824,GO-20209031929,THEFT UNDER - BICYCLE,2020-11-26,2020,November,Thursday,26,331,20,2020-12-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9815,19404,GO-20179007127,THEFT UNDER,2017-05-14,2017,May,Sunday,14,134,18,2017-05-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9816,19483,GO-20189014863,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,18,2018-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9817,19531,GO-20189026801,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,19,2018-08-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9818,19603,GO-20202051253,THEFT UNDER - BICYCLE,2020-10-19,2020,October,Monday,19,293,7,2020-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9819,19606,GO-20209030108,THEFT UNDER - BICYCLE,2020-10-25,2020,October,Sunday,25,299,11,2020-11-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9820,19777,GO-20149005012,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,17,2014-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9821,19983,GO-20189033438,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,3,2018-10-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9822,19997,GO-20189037302,THEFT UNDER - BICYCLE,2018-11-06,2018,November,Tuesday,6,310,21,2018-11-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9823,20001,GO-20189041690,THEFT UNDER - BICYCLE,2018-12-11,2018,December,Tuesday,11,345,16,2018-12-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9824,20009,GO-20199001095,THEFT OF EBIKE UNDER $5000,2019-01-08,2019,January,Tuesday,8,8,18,2019-01-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9825,20022,GO-20199012417,THEFT UNDER,2019-04-18,2019,April,Thursday,18,108,22,2019-04-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9826,20025,GO-20199013300,THEFT UNDER,2019-04-04,2019,April,Thursday,4,94,18,2019-04-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9827,20041,GO-20191147027,THEFT UNDER - BICYCLE,2019-06-20,2019,June,Thursday,20,171,21,2019-06-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9828,20042,GO-20191161189,THEFT UNDER - BICYCLE,2019-06-22,2019,June,Saturday,22,173,14,2019-06-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9829,20046,GO-20199020469,THEFT UNDER,2019-06-26,2019,June,Wednesday,26,177,23,2019-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9830,20048,GO-20199020803,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,22,2019-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9831,20050,GO-20199021124,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,18,2019-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9832,20051,GO-20191260898,THEFT UNDER - BICYCLE,2019-07-06,2019,July,Saturday,6,187,14,2019-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9833,20052,GO-20199021253,THEFT UNDER - BICYCLE,2019-07-06,2019,July,Saturday,6,187,17,2019-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9834,20179,GO-20179007484,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,21,2017-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9835,20180,GO-20179007484,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,21,2017-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9836,20181,GO-20179007748,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,10,2017-06-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9837,20184,GO-20179008041,THEFT UNDER,2017-06-13,2017,June,Tuesday,13,164,8,2017-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9838,20186,GO-20171054901,THEFT OF EBIKE UNDER $5000,2017-06-12,2017,June,Monday,12,163,17,2017-06-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9839,20187,GO-20171058362,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,8,2017-06-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9840,20188,GO-20179008206,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,16,2017-06-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9841,20189,GO-20179008369,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,16,2017-06-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9842,20190,GO-20179008369,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,16,2017-06-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9843,13804,GO-20189027338,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,13,2018-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9844,20193,GO-20179008729,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,11,2017-06-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9845,20194,GO-20179008767,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,20,2017-06-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9846,20195,GO-20179008844,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,18,2017-06-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9847,20196,GO-20179009129,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,17,2017-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9848,20197,GO-20171143869,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,8,2017-06-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9849,20199,GO-20179009690,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,4,2017-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9850,20200,GO-20179009817,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,18,2017-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9851,20441,GO-20159007762,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,14,2015-09-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9852,20204,GO-20171275299,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,22,2017-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9853,20206,GO-20179010418,THEFT UNDER,2017-07-16,2017,July,Sunday,16,197,18,2017-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9854,20208,GO-20179010516,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,7,2017-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9855,20210,GO-20171296773,THEFT UNDER,2017-05-01,2017,May,Monday,1,121,12,2017-07-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9856,20212,GO-20171330819,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,22,2017-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9857,20214,GO-20179011261,THEFT UNDER,2017-07-27,2017,July,Thursday,27,208,15,2017-07-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9858,20217,GO-20179011965,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,8,2017-08-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9859,20219,GO-20179012040,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,8,2017-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9860,20220,GO-20179012040,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,8,2017-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9861,20225,GO-20179012549,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,8,2017-08-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9862,20226,GO-20171495774,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,13,2017-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9863,20228,GO-20179012806,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,11,2017-08-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9864,20232,GO-20179013450,THEFT UNDER,2017-08-26,2017,August,Saturday,26,238,10,2017-08-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9865,20233,GO-20179013621,THEFT UNDER,2017-08-29,2017,August,Tuesday,29,241,15,2017-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9866,20234,GO-20179013658,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,8,2017-08-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9867,20238,GO-20179014552,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,7,2017-09-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9868,20245,GO-20179015833,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,9,2017-09-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9869,20248,GO-20179016331,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,18,2017-10-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9870,20251,GO-20179016655,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,9,2017-10-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9871,20264,GO-20179018105,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,23,2017-10-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9872,20266,GO-20179018298,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,18,2017-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9873,20278,GO-20179021063,THEFT UNDER - BICYCLE,2017-12-01,2017,December,Friday,1,335,18,2017-12-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9874,20284,GO-20189000122,THEFT UNDER - BICYCLE,2017-12-30,2017,December,Saturday,30,364,23,2018-01-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9875,20375,GO-20189030755,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,17,2018-09-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9876,13667,GO-20179007244,THEFT UNDER,2017-05-30,2017,May,Tuesday,30,150,9,2017-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9877,20376,GO-20189031147,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,9,2018-09-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9878,20378,GO-20189031323,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,19,2018-09-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9879,13668,GO-2017994048,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,6,2017-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9880,20379,GO-20159002616,THEFT FROM MOTOR VEHICLE UNDER,2015-05-07,2015,May,Thursday,7,127,22,2015-05-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9881,13670,GO-20179007807,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,9,2017-06-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9882,20381,GO-20159002747,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,16,2015-05-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9883,13672,GO-20171073577,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,8,2017-06-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9884,20382,GO-20159002875,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,11,2015-05-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9885,13683,GO-20179009123,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,16,2017-06-28,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9886,20383,GO-2015864614,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,0,2015-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9887,13685,GO-20171166553,THEFT OF EBIKE UNDER $5000,2017-06-29,2017,June,Thursday,29,180,18,2017-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9888,20386,GO-2015870000,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,4,2015-05-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9889,13686,GO-20179009348,THEFT UNDER,2017-07-02,2017,July,Sunday,2,183,20,2017-07-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9890,12550,GO-20169011545,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,14,2016-10-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -9891,13687,GO-20179009370,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,8,2017-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9892,13688,GO-20179009375,THEFT UNDER,2017-06-26,2017,June,Monday,26,177,0,2017-07-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9893,13689,GO-20179009452,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,20,2017-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9894,13690,GO-20179009493,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,15,2017-07-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9895,13691,GO-20179009632,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,17,2017-07-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9896,13692,GO-20171208956,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,20,2017-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9897,13694,GO-20171263033,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,18,2017-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9898,13695,GO-20179010278,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,13,2017-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9899,13696,GO-20179010554,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,8,2017-07-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9900,13697,GO-20179010758,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,21,2017-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9901,13700,GO-20179011871,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,0,2017-08-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9902,13701,GO-20179011871,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,0,2017-08-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9903,13703,GO-20179011988,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,21,2017-08-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9904,13707,GO-20179012468,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,3,2017-08-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9905,13710,GO-20179013815,THEFT UNDER - BICYCLE,2017-08-28,2017,August,Monday,28,240,7,2017-09-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9906,13711,GO-20179014235,THEFT OF EBIKE UNDER $5000,2017-09-07,2017,September,Thursday,7,250,17,2017-09-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9907,13712,GO-20179014387,THEFT UNDER,2017-09-08,2017,September,Friday,8,251,19,2017-09-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9908,13713,GO-20179014499,B&E,2017-08-15,2017,August,Tuesday,15,227,19,2017-09-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9909,13723,GO-20179017639,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,9,2017-10-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9910,13727,GO-20179018337,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,23,2017-10-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9911,13729,GO-20179018517,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,10,2017-10-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9912,13731,GO-20179018871,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,11,2017-11-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9913,13732,GO-20179018896,THEFT UNDER - BICYCLE,2017-11-04,2017,November,Saturday,4,308,11,2017-11-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9914,13733,GO-20179018978,THEFT UNDER - BICYCLE,2017-11-06,2017,November,Monday,6,310,9,2017-11-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9915,13736,GO-20172044474,B&E,2017-11-11,2017,November,Saturday,11,315,3,2017-11-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9916,13737,GO-20179019504,THEFT UNDER,2017-11-13,2017,November,Monday,13,317,2,2017-11-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9917,13738,GO-20179020606,THEFT UNDER - BICYCLE,2017-11-23,2017,November,Thursday,23,327,15,2017-11-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9918,13739,GO-20179021314,THEFT UNDER - BICYCLE,2017-12-04,2017,December,Monday,4,338,23,2017-12-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9919,4804,GO-20199022876,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,0,2019-07-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -9920,13748,GO-20189014008,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,21,2018-05-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9921,13750,GO-20189014379,THEFT UNDER - BICYCLE,2018-02-01,2018,February,Thursday,1,32,18,2018-05-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9922,13754,GO-2018862298,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,12,2018-05-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9923,13757,GO-2018931582,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,14,2018-05-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9924,13759,GO-20189016827,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,15,2018-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9925,13768,GO-20181060994,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,8,2018-06-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9926,13776,GO-20189019722,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,13,2018-06-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9927,13779,GO-20189021455,THEFT FROM MOTOR VEHICLE UNDER,2018-07-05,2018,July,Thursday,5,186,23,2018-07-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9928,13780,GO-20189021555,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,22,2018-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9929,13782,GO-20189022121,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,20,2018-07-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9930,13783,GO-20189022509,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,18,2018-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9931,13786,GO-20189023700,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,7,2018-07-24,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9932,13789,GO-20189024198,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,10,2018-07-27,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9933,13795,GO-20189025397,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,13,2018-08-07,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9934,13801,GO-20181512274,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9935,13802,GO-20181512274,THEFT FROM MOTOR VEHICLE UNDER,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9936,13805,GO-20189027622,THEFT UNDER,2018-08-23,2018,August,Thursday,23,235,14,2018-08-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9937,13808,GO-20181552907,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,1,2018-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9938,13809,GO-20189028402,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,11,2018-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9939,13810,GO-20189028891,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,14,2018-09-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9940,13813,GO-20189029623,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,16,2018-09-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9941,13820,GO-20189030994,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,18,2018-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9942,13821,GO-20189030994,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,18,2018-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9943,20576,GO-20179006603,THEFT UNDER,2017-05-18,2017,May,Thursday,18,138,8,2017-05-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9944,13823,GO-20189031112,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,6,2018-09-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9945,13835,GO-20181882731,PROPERTY - FOUND,2018-10-11,2018,October,Thursday,11,284,23,2018-10-11,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9946,13837,GO-20189034162,THEFT FROM MOTOR VEHICLE UNDER,2018-10-14,2018,October,Sunday,14,287,20,2018-10-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9947,13840,GO-20189035166,THEFT UNDER,2018-10-20,2018,October,Saturday,20,293,21,2018-10-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9948,13841,GO-20189035166,THEFT UNDER,2018-10-20,2018,October,Saturday,20,293,21,2018-10-23,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9949,13845,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,13,2018-11-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9950,13846,GO-20189037928,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,13,2018-11-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9951,13847,GO-20189038203,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,16,2018-11-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9952,13848,GO-20189038702,THEFT UNDER - BICYCLE,2018-11-17,2018,November,Saturday,17,321,13,2018-11-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9953,20387,GO-20159003204,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,23,2015-05-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9954,20389,GO-20159003337,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,22,2015-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9955,20390,GO-2015934059,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,18,2015-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9956,20391,GO-2015934059,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,18,2015-06-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9957,20393,GO-20151002903,THEFT UNDER,2015-01-11,2015,January,Sunday,11,11,0,2015-06-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9958,20402,GO-20159004292,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,20,2015-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9959,20592,GO-20199022373,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,17,2019-07-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9960,20403,GO-20151153161,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,17,2015-07-08,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9961,20404,GO-20159004374,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,7,2015-07-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9962,20409,GO-20159004648,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,12,2015-07-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9963,20428,GO-20159005795,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,10,2015-08-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9964,20432,GO-20159006712,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,15,2015-09-03,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9965,20433,GO-20151556482,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,3,2015-09-09,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9966,20438,GO-20159007286,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,12,2015-09-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9967,20439,GO-20151630490,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,12,2015-09-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9968,20453,GO-20159009181,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,9,2015-10-30,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9969,20455,GO-20159009274,THEFT UNDER,2015-11-01,2015,November,Sunday,1,305,22,2015-11-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9970,20460,GO-20151968706,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,18,2015-11-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9971,20463,GO-20159010237,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,20,2015-11-26,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9972,20464,GO-20159010978,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,22,2015-12-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9973,20465,GO-20159011009,THEFT UNDER,2015-12-16,2015,December,Wednesday,16,350,13,2015-12-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9974,20477,GO-2016396267,THEFT UNDER,2016-03-06,2016,March,Sunday,6,66,19,2016-03-06,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9975,20488,GO-2016773528,THEFT UNDER,2016-05-04,2016,May,Wednesday,4,125,18,2016-05-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9976,20492,GO-2016816584,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,12,2016-05-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9977,20494,GO-2016964601,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,15,2016-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9978,20495,GO-20169005356,THEFT UNDER - BICYCLE,2016-05-23,2016,May,Monday,23,144,21,2016-06-05,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9979,20504,GO-20161140494,THEFT UNDER - BICYCLE,2016-06-29,2016,June,Wednesday,29,181,16,2016-06-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9980,20511,GO-20169007559,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,18,2016-07-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9981,20521,GO-20169009017,THEFT UNDER,2016-08-18,2016,August,Thursday,18,231,11,2016-08-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9982,20523,GO-20169009450,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,22,2016-08-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9983,21816,GO-20142680310,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,6,2014-08-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -9984,20526,GO-20161530817,B&E,2016-08-23,2016,August,Tuesday,23,236,0,2016-08-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9985,20527,GO-20169009788,THEFT UNDER,2016-08-31,2016,August,Wednesday,31,244,22,2016-09-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9986,20528,GO-20161569972,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,12,2016-09-04,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9987,20531,GO-20169010299,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,2,2016-09-12,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9988,20532,GO-20169010364,THEFT UNDER,2016-09-10,2016,September,Saturday,10,254,17,2016-09-13,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9989,20533,GO-20161633858,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,22,2016-09-14,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9990,20541,GO-20169011389,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,9,2016-10-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9991,20594,GO-20199022516,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,23,2019-07-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9992,20546,GO-20161847063,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,15,2016-10-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9993,20548,GO-20161859894,ROBBERY WITH WEAPON,2016-10-19,2016,October,Wednesday,19,293,12,2016-10-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9994,20549,GO-20169012451,THEFT UNDER,2016-10-15,2016,October,Saturday,15,289,0,2016-10-22,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9995,20554,GO-20169013506,THEFT UNDER - BICYCLE,2016-11-15,2016,November,Tuesday,15,320,12,2016-11-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9996,20562,GO-20179002059,THEFT UNDER - BICYCLE,2017-02-16,2017,February,Thursday,16,47,18,2017-02-17,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9997,20568,GO-2017634156,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,14,2017-04-10,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9998,20569,GO-2017662788,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,20,2017-04-15,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -9999,20572,GO-2017764732,THEFT OF EBIKE UNDER $5000,2017-05-01,2017,May,Monday,1,121,10,2017-05-01,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10000,20597,GO-20199023686,THEFT UNDER,2019-07-23,2019,July,Tuesday,23,204,16,2019-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10001,20599,GO-20199023731,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,13,2019-07-25,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10002,20603,GO-20199024226,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,13,2019-07-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10003,20626,GO-20191590839,THEFT UNDER,2019-08-20,2019,August,Tuesday,20,232,22,2019-08-21,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10004,20646,GO-20199030512,THEFT UNDER,2019-09-18,2019,September,Wednesday,18,261,13,2019-09-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10005,20647,GO-20199030733,THEFT UNDER - BICYCLE,2019-09-17,2019,September,Tuesday,17,260,20,2019-09-19,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10006,20660,GO-20199034134,THEFT UNDER - BICYCLE,2019-10-14,2019,October,Monday,14,287,18,2019-10-16,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10007,20661,GO-20199034524,THEFT UNDER,2019-10-18,2019,October,Friday,18,291,9,2019-10-20,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10008,20668,GO-20199035731,THEFT UNDER - BICYCLE,2019-10-22,2019,October,Tuesday,22,295,11,2019-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10009,20669,GO-20199035783,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,8,2019-10-29,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10010,20672,GO-20199036005,THEFT UNDER - BICYCLE,2019-10-25,2019,October,Friday,25,298,23,2019-10-31,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10011,20683,GO-20192300746,PROPERTY - FOUND,2019-11-29,2019,November,Friday,29,333,0,2019-12-02,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10012,20686,GO-20199041347,THEFT UNDER,2019-12-17,2019,December,Tuesday,17,351,19,2019-12-18,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)}",Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -10013,5623,GO-20199035882,THEFT UNDER,2019-10-28,2019,October,Monday,28,301,19,2019-10-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10014,1335,GO-20179014208,THEFT UNDER,2017-09-07,2017,September,Thursday,7,250,13,2017-09-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10015,5635,GO-20192125859,THEFT OF EBIKE UNDER $5000,2019-11-03,2019,November,Sunday,3,307,13,2019-11-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10016,5651,GO-20192138842,B&E,2019-10-26,2019,October,Saturday,26,299,21,2019-11-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10017,5659,GO-20192156634,THEFT OF EBIKE UNDER $5000,2019-11-07,2019,November,Thursday,7,311,22,2019-11-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10018,5660,GO-20192156634,THEFT OF EBIKE UNDER $5000,2019-11-07,2019,November,Thursday,7,311,22,2019-11-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10019,5674,GO-20192169286,THEFT UNDER,2019-11-09,2019,November,Saturday,9,313,18,2019-11-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10020,5692,GO-20199037537,THEFT UNDER,2019-11-04,2019,November,Monday,4,308,22,2019-11-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10021,5709,GO-20199038054,THEFT UNDER,2019-11-18,2019,November,Monday,18,322,9,2019-11-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10022,5715,GO-20192230617,THEFT UNDER,2019-11-18,2019,November,Monday,18,322,14,2019-11-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10023,5813,GO-20209000806,THEFT UNDER,2020-01-07,2020,January,Tuesday,7,7,0,2020-01-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10024,5716,GO-20192243742,THEFT OF EBIKE UNDER $5000,2019-11-20,2019,November,Wednesday,20,324,10,2019-11-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10025,5720,GO-20199038529,THEFT UNDER,2019-11-21,2019,November,Thursday,21,325,9,2019-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10026,5766,GO-20199040972,THEFT UNDER,2019-12-14,2019,December,Saturday,14,348,10,2019-12-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10027,5788,GO-20199042073,THEFT UNDER,2019-12-26,2019,December,Thursday,26,360,21,2019-12-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10028,9358,GO-20159001633,THEFT UNDER,2015-03-25,2015,March,Wednesday,25,84,18,2015-03-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10029,5803,GO-20209000332,THEFT UNDER,2020-01-02,2020,January,Thursday,2,2,18,2020-01-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10030,5804,GO-20209000344,THEFT UNDER,2020-01-03,2020,January,Friday,3,3,19,2020-01-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10031,5812,GO-202035851,THEFT UNDER,2019-12-30,2019,December,Monday,30,364,17,2020-01-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10032,5830,GO-20209001650,THEFT UNDER,2020-01-10,2020,January,Friday,10,10,8,2020-01-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10033,5844,GO-20209001830,THEFT UNDER,2020-01-16,2020,January,Thursday,16,16,8,2020-01-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10034,5848,GO-2020163401,THEFT OVER,2020-01-24,2020,January,Friday,24,24,8,2020-01-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10035,5859,GO-20209003543,THEFT UNDER,2020-01-29,2020,January,Wednesday,29,29,12,2020-01-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10036,5872,GO-20209004010,THEFT UNDER,2020-02-02,2020,February,Sunday,2,33,22,2020-02-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10037,5895,GO-20209005490,THEFT UNDER,2020-02-14,2020,February,Friday,14,45,8,2020-02-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10038,5899,GO-20209005730,THEFT UNDER,2020-02-16,2020,February,Sunday,16,47,20,2020-02-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10039,5901,GO-2020332678,B&E,2020-01-12,2020,January,Sunday,12,12,19,2020-02-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10040,5902,GO-2020332678,B&E,2020-01-12,2020,January,Sunday,12,12,19,2020-02-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10041,5916,GO-20209006387,THEFT UNDER,2020-02-21,2020,February,Friday,21,52,19,2020-02-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10042,5949,GO-20209008180,THEFT UNDER,2020-03-05,2020,March,Thursday,5,65,16,2020-03-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10043,5968,GO-2020567140,THEFT UNDER - BICYCLE,2020-03-19,2020,March,Thursday,19,79,14,2020-03-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10044,5989,GO-20209009015,THEFT UNDER,2019-12-01,2019,December,Sunday,1,335,0,2020-03-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10045,6003,GO-20209010166,THEFT UNDER,2020-03-21,2020,March,Saturday,21,81,17,2020-03-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10046,6007,GO-20209010238,THEFT UNDER - BICYCLE,2020-03-30,2020,March,Monday,30,90,9,2020-03-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10047,6024,GO-20209010544,THEFT UNDER,2020-04-05,2020,April,Sunday,5,96,13,2020-04-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10048,6033,GO-20209010655,THEFT UNDER,2020-04-07,2020,April,Tuesday,7,98,14,2020-04-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10049,6081,GO-20209011519,THEFT UNDER,2020-03-27,2020,March,Friday,27,87,18,2020-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10050,6152,GO-20209012625,THEFT UNDER,2020-03-16,2020,March,Monday,16,76,6,2020-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10051,6257,GO-20209013989,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,18,2020-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10052,6265,GO-20209014104,THEFT UNDER,2020-05-26,2020,May,Tuesday,26,147,11,2020-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10053,6270,GO-20209014226,THEFT UNDER,2020-05-29,2020,May,Friday,29,150,19,2020-05-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10054,6284,GO-20209012528,THEFT UNDER,2020-03-15,2020,March,Sunday,15,75,12,2020-05-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10055,6285,GO-20201016400,THEFT UNDER - BICYCLE,2020-06-02,2020,June,Tuesday,2,154,16,2020-06-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10056,6333,GO-20209014847,THEFT UNDER,2020-06-08,2020,June,Monday,8,160,1,2020-06-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10057,6390,GO-20209015390,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,12,2020-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10058,6409,GO-20201100556,THEFT UNDER - BICYCLE,2020-06-15,2020,June,Monday,15,167,13,2020-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10059,6413,GO-20209015390,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,12,2020-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10060,6423,GO-20209015643,THEFT UNDER,2020-05-24,2020,May,Sunday,24,145,17,2020-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10061,6427,GO-20209015710,THEFT UNDER,2020-06-15,2020,June,Monday,15,167,14,2020-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10062,6479,GO-20209016268,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,7,2020-06-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10063,6556,GO-20209017058,THEFT UNDER,2020-07-07,2020,July,Tuesday,7,189,17,2020-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10064,7285,GO-20201786029,THEFT OF EBIKE UNDER $5000,2020-09-20,2020,September,Sunday,20,264,15,2020-09-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10065,6559,GO-20201238069,THEFT UNDER - BICYCLE,2020-07-04,2020,July,Saturday,4,186,18,2020-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10066,6561,GO-20209017137,PROPERTY - RECOVERED,2020-07-06,2020,July,Monday,6,188,19,2020-07-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10067,6598,GO-20209017378,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,16,2020-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10068,6599,GO-20209017395,THEFT UNDER,2020-07-12,2020,July,Sunday,12,194,19,2020-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10069,6630,GO-20209017667,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,18,2020-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10070,6632,GO-2020935180,B&E,2020-05-21,2020,May,Thursday,21,142,0,2020-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10071,6645,GO-20209017772,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,6,2020-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10072,6666,GO-20209017976,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,14,2020-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10073,3371,GO-20181594484,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,19,2018-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10074,6705,GO-20209018251,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,17,2020-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10075,6715,GO-20209018352,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,17,2020-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10076,6716,GO-20209018352,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,17,2020-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10077,6722,GO-20201380284,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,21,2020-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10078,6731,GO-20201363684,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,14,2020-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10079,6733,GO-20201385802,THEFT OF EBIKE UNDER $5000,2020-07-25,2020,July,Saturday,25,207,14,2020-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10080,6736,GO-20209018543,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,14,2020-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10081,6737,GO-20209018539,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,14,2020-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10082,6756,GO-20209018665,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,14,2020-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10083,6799,GO-20209018850,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,7,2020-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10084,6825,GO-20209019079,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,10,2020-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10085,6831,GO-20209019109,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,17,2020-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10086,6832,GO-20209019109,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,17,2020-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10087,6867,GO-20201459426,THEFT UNDER - BICYCLE,2020-08-03,2020,August,Monday,3,216,22,2020-08-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10088,6892,GO-20209019600,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,16,2020-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10089,6893,GO-20209019599,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,12,2020-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10090,6894,GO-20209019625,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,7,2020-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10091,6897,GO-20209019600,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,16,2020-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10092,6904,GO-20209019707,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,23,2020-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10093,6926,GO-20201473407,THEFT OF EBIKE UNDER $5000,2020-08-06,2020,August,Thursday,6,219,22,2020-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10094,6929,GO-20209019835,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,11,2020-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10095,6959,GO-20209020263,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,11,2020-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10096,6985,GO-20209020520,THEFT UNDER,2020-08-17,2020,August,Monday,17,230,17,2020-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10097,7008,GO-20209020734,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,17,2020-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10098,7033,GO-20209020956,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,18,2020-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10099,7036,GO-20209020969,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,18,2020-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10100,7045,GO-20209021005,THEFT UNDER,2020-08-13,2020,August,Thursday,13,226,14,2020-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10101,7056,GO-20209020952,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,15,2020-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10102,7061,GO-20209021175,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,9,2020-08-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10103,7073,GO-20209021314,THEFT UNDER,2020-08-25,2020,August,Tuesday,25,238,14,2020-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10104,7094,GO-20201596543,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,18,2020-08-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10105,7096,GO-20201597355,THEFT UNDER - BICYCLE,2020-08-24,2020,August,Monday,24,237,18,2020-08-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10106,7140,GO-20209021898,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,15,2020-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10107,7146,GO-20209021983,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,9,2020-09-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10108,7167,GO-20209022224,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,14,2020-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10109,7168,GO-20209022232,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,17,2020-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10110,7177,GO-20201669086,THEFT OF EBIKE UNDER $5000,2020-08-31,2020,August,Monday,31,244,0,2020-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10111,7187,GO-20209022453,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,20,2020-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10112,7201,GO-20209022562,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,11,2020-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10113,7202,GO-20201685937,THEFT UNDER - BICYCLE,2020-09-02,2020,September,Wednesday,2,246,17,2020-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10114,7249,GO-20209023267,THEFT FROM MOTOR VEHICLE UNDER,2020-09-15,2020,September,Tuesday,15,259,2,2020-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10115,8189,GO-20149004238,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,19,2014-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10116,1365,GO-20179014471,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,13,2017-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10117,1370,GO-20179014495,THEFT UNDER,2017-09-11,2017,September,Monday,11,254,16,2017-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10118,9360,GO-2015541036,THEFT UNDER,2015-03-31,2015,March,Tuesday,31,90,15,2015-04-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10119,8202,GO-20149004286,THEFT OVER,2014-06-20,2014,June,Friday,20,171,10,2014-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10120,3373,GO-20181620870,PROPERTY - FOUND,2018-09-01,2018,September,Saturday,1,244,20,2018-09-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10121,9379,GO-20159001769,THEFT UNDER,2015-04-07,2015,April,Tuesday,7,97,5,2015-04-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10122,1371,GO-20179014494,THEFT UNDER,2017-09-10,2017,September,Sunday,10,253,18,2017-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10123,8207,GO-20149004304,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,15,2014-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10124,1374,GO-20179014510,THEFT UNDER,2017-09-07,2017,September,Thursday,7,250,13,2017-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10125,7286,GO-20209023769,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,13,2020-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10126,8209,GO-20149004317,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,15,2014-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10127,9385,GO-2015593814,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,16,2015-04-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10128,3376,GO-20189028832,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,12,2018-09-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10129,1379,GO-20179014517,THEFT UNDER,2017-09-08,2017,September,Friday,8,251,22,2017-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10130,7318,GO-20201801799,THEFT OF EBIKE UNDER $5000,2020-09-22,2020,September,Tuesday,22,266,19,2020-09-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10131,7356,GO-20209024483,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,12,2020-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10132,7364,GO-20209024612,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,15,2020-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10133,7365,GO-20209024619,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,20,2020-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10134,7367,GO-20209024671,THEFT UNDER,2020-09-13,2020,September,Sunday,13,257,9,2020-09-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10135,7383,GO-20201856460,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,12,2020-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10136,7392,GO-20209025052,THEFT UNDER,2020-09-30,2020,September,Wednesday,30,274,12,2020-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10137,7397,GO-20209025184,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,8,2020-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10138,7401,GO-20201871338,PROPERTY - FOUND,2020-10-02,2020,October,Friday,2,276,14,2020-10-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10139,7436,GO-20201913219,THEFT UNDER - BICYCLE,2020-10-04,2020,October,Sunday,4,278,21,2020-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10140,7438,GO-20209026013,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,12,2020-10-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10141,7446,GO-20209026150,THEFT UNDER,2020-10-11,2020,October,Sunday,11,285,19,2020-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10142,7448,GO-20209026013,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,12,2020-10-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10143,7470,GO-20209026452,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,13,2020-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10144,7476,GO-20209026567,THEFT UNDER,2020-10-15,2020,October,Thursday,15,289,15,2020-10-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10145,7479,GO-20201963168,THEFT UNDER - BICYCLE,2020-10-09,2020,October,Friday,9,283,17,2020-10-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10146,7503,GO-20209026897,THEFT UNDER,2020-10-16,2020,October,Friday,16,290,15,2020-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10147,7512,GO-20209026997,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,16,2020-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10148,7515,GO-20209026997,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,16,2020-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10149,7517,GO-20209027066,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,9,2020-10-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10150,7545,GO-202012019323,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,13,2020-10-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10151,7558,GO-20202018434,THEFT OF EBIKE UNDER $5000,2020-10-20,2020,October,Tuesday,20,294,9,2020-10-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10152,7582,GO-20209028338,THEFT UNDER,2020-10-30,2020,October,Friday,30,304,14,2020-11-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10153,7602,GO-20209028964,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,20,2020-11-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10154,7603,GO-20202122378,B&E,2020-11-08,2020,November,Sunday,8,313,17,2020-11-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10155,7610,GO-20209029137,THEFT UNDER,2020-11-05,2020,November,Thursday,5,310,8,2020-11-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10156,7611,GO-20209029145,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,10,2020-11-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10157,7617,GO-20209029227,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,14,2020-11-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10158,7629,GO-20209029491,THEFT UNDER - BICYCLE,2020-11-13,2020,November,Friday,13,318,10,2020-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10159,7632,GO-20209029551,THEFT UNDER,2020-11-14,2020,November,Saturday,14,319,13,2020-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10160,7662,GO-20209030536,THEFT UNDER,2020-11-25,2020,November,Wednesday,25,330,11,2020-11-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10161,7674,GO-20209030824,THEFT UNDER,2020-11-28,2020,November,Saturday,28,333,9,2020-11-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10162,7675,GO-20202258058,THEFT UNDER - BICYCLE,2020-11-28,2020,November,Saturday,28,333,23,2020-11-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10163,7705,GO-20202365991,B&E,2020-12-14,2020,December,Monday,14,349,0,2020-12-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10164,7721,GO-20209033092,THEFT UNDER,2020-12-29,2020,December,Tuesday,29,364,15,2020-12-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10165,7722,GO-20209033093,THEFT UNDER,2020-12-26,2020,December,Saturday,26,361,12,2020-12-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10166,7723,GO-20202454712,THEFT UNDER - BICYCLE,2020-12-30,2020,December,Wednesday,30,365,20,2020-12-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10167,7773,GO-20149001820,THEFT UNDER,2014-03-05,2014,March,Wednesday,5,64,8,2014-03-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10168,7774,GO-20149001820,THEFT UNDER,2014-03-05,2014,March,Wednesday,5,64,8,2014-03-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10169,7784,GO-20141742378,THEFT UNDER,2014-03-19,2014,March,Wednesday,19,78,10,2014-03-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10170,7791,GO-20149001884,THEFT UNDER,2014-03-08,2014,March,Saturday,8,67,16,2014-03-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10171,7792,GO-20149002347,THEFT UNDER,2014-03-25,2014,March,Tuesday,25,84,6,2014-03-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10172,7793,GO-20149001917,THEFT UNDER,2014-03-07,2014,March,Friday,7,66,15,2014-03-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10173,7831,GO-20149002787,THEFT UNDER,2014-04-06,2014,April,Sunday,6,96,10,2014-04-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10174,7832,GO-20149002796,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,8,2014-04-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10175,7848,GO-20141943305,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,15,2014-04-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10176,7849,GO-20141936846,THEFT UNDER,2014-04-21,2014,April,Monday,21,111,14,2014-04-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10177,7858,GO-20141945055,THEFT UNDER,2014-04-23,2014,April,Wednesday,23,113,13,2014-04-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10178,7873,GO-20141987552,THEFT UNDER,2014-04-27,2014,April,Sunday,27,117,9,2014-04-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10179,7878,GO-20149003119,THEFT UNDER,2014-05-02,2014,May,Friday,2,122,16,2014-05-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10180,7890,GO-20149003212,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,19,2014-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10181,7891,GO-20149003214,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,10,2014-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10182,7896,GO-20149003224,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,9,2014-05-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10183,7900,GO-20142047643,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,15,2014-05-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10184,7902,GO-20149003270,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,15,2014-05-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10185,7906,GO-20149003276,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,11,2014-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10186,7907,GO-20149003284,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,1,2014-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10187,7912,GO-20142065788,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,12,2014-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10188,7913,GO-20142066244,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,8,2014-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10189,7916,GO-20149003307,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,7,2014-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10190,7930,GO-20142079726,THEFT UNDER,2014-05-14,2014,May,Wednesday,14,134,11,2014-05-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10191,7936,GO-20149003386,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,7,2014-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10192,7942,GO-20142104453,THEFT UNDER,2014-05-18,2014,May,Sunday,18,138,13,2014-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10193,7955,GO-20149003516,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,8,2014-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10194,7956,GO-20149003518,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,19,2014-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10195,7959,GO-20142152098,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,16,2014-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10196,7968,GO-20149003545,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,11,2014-05-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10197,7973,GO-20142138896,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,20,2014-05-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10198,7983,GO-20142149862,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,12,2014-05-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10199,7985,GO-20149003608,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,12,2014-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10200,7989,GO-20142155053,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,16,2014-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10201,7991,GO-20142155928,B&E,2014-05-12,2014,May,Monday,12,132,5,2014-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10202,7998,GO-20149003671,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,22,2014-05-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10203,8015,GO-20142179744,THEFT UNDER,2014-05-29,2014,May,Thursday,29,149,18,2014-06-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10204,8021,GO-20142191279,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,13,2014-05-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10205,8025,GO-20149003769,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,20,2014-06-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10206,8031,GO-20142213856,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,13,2014-06-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10207,8040,GO-20149003788,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,14,2014-06-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10208,8053,GO-20149003824,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,3,2014-06-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10209,8055,GO-20149003831,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,21,2014-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10210,8056,GO-20149003834,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,16,2014-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10211,8066,GO-20142228259,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,11,2014-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10212,8067,GO-20142228373,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,9,2014-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10213,8091,GO-20149003972,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,23,2014-06-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10214,8093,GO-20142274984,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,19,2014-06-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10215,8100,GO-20142266974,THEFT UNDER,2014-04-27,2014,April,Sunday,27,117,15,2014-06-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10216,8105,GO-20142294366,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,9,2014-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10217,8117,GO-20149003935,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,8,2014-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10218,8124,GO-20149003968,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,8,2014-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10219,8129,GO-20149004024,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,15,2014-06-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10220,8133,GO-20149003997,THEFT UNDER,2013-09-18,2013,September,Wednesday,18,261,15,2014-06-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10221,8142,GO-20142296318,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,15,2014-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10222,8150,GO-20149004128,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,20,2014-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10223,9489,GO-2015703184,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,16,2015-04-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10224,8151,GO-20142304396,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,20,2014-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10225,8156,GO-20149004141,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,9,2014-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10226,8164,GO-20149004151,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,11,2014-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10227,8169,GO-20142302230,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,20,2014-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10228,8172,GO-20149004183,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,9,2014-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10229,8228,GO-20149004363,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,14,2014-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10230,9403,GO-2015618490,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,12,2015-04-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10231,1383,GO-20179014609,THEFT UNDER,2017-09-12,2017,September,Tuesday,12,255,19,2017-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10232,3383,GO-20189028960,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,8,2018-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10233,8229,GO-20149004361,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,8,2014-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10234,1384,GO-20179014611,THEFT UNDER,2017-09-11,2017,September,Monday,11,254,19,2017-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10235,9422,GO-20159002019,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,10,2015-04-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10236,3387,GO-20189028998,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,8,2018-09-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10237,8235,GO-20142352227,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,11,2014-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10238,1394,GO-20179014679,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,11,2017-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10239,9425,GO-20159002020,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,10,2015-04-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10240,3409,GO-20189029384,THEFT UNDER,2018-09-06,2018,September,Thursday,6,249,13,2018-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10241,8255,GO-20149004468,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,7,2014-06-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10242,1399,GO-20179014722,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,17,2017-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10243,9430,GO-2015647867,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,6,2015-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10244,9437,GO-20159002058,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,13,2015-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10245,9438,GO-20159002058,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,13,2015-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10246,9440,GO-2015649337,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,14,2015-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10247,9465,GO-20159002185,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,16,2015-04-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10248,9506,GO-20159002385,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,12,2015-05-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10249,9513,GO-20159002413,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,22,2015-05-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10250,9522,GO-20159002440,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,13,2015-05-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10251,9528,GO-20159002472,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,6,2015-05-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10252,9541,GO-2015754828,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,12,2015-05-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10253,9543,GO-20159002511,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,15,2015-05-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10254,9546,GO-20159002520,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,16,2015-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10255,9556,GO-20159002548,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,20,2015-05-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10256,9564,GO-20159002622,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,17,2015-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10257,9576,GO-20159002674,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,9,2015-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10258,9582,GO-2015792847,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,15,2015-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10259,9588,GO-20159002755,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,23,2015-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10260,9591,GO-2015806203,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,9,2015-05-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10261,9610,GO-2015839374,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,9,2015-05-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10262,9618,GO-20159002966,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,16,2015-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10263,9643,GO-2015860705,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,6,2015-05-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10264,9653,GO-20159003094,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,9,2015-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10265,9661,GO-2015884097,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,12,2015-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10266,9731,GO-2015937869,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,17,2015-06-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10267,9757,GO-2015961825,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,8,2015-06-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10268,9775,GO-20159003513,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,16,2015-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10269,9818,GO-20151006124,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,6,2015-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10270,9835,GO-20159003760,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,15,2015-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10271,9836,GO-20159003773,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,10,2015-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10272,9872,GO-20159003915,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,16,2015-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10273,9879,GO-20159003923,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,6,2015-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10274,9885,GO-20159003937,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,9,2015-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10275,9921,GO-20159004093,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,14,2015-07-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10276,9938,GO-20159004167,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,14,2015-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10277,9952,GO-20159004228,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,7,2015-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10278,9960,GO-20151148160,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,18,2015-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10279,10016,GO-20151195789,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,12,2015-07-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10280,10018,GO-20151196504,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,16,2015-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10281,10036,GO-20159004638,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,20,2015-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10282,10039,GO-20151209637,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,21,2015-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10283,10045,GO-20159004660,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,9,2015-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10284,10055,GO-20159004735,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,13,2015-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10285,10058,GO-20159004748,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,0,2015-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10286,10087,GO-20159004916,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,17,2015-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10287,10112,GO-20151287664,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,17,2015-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10288,10115,GO-20159005064,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,11,2015-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10289,10121,GO-20159005084,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,21,2015-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10290,10125,GO-20151276931,THEFT UNDER,2015-07-25,2015,July,Saturday,25,206,12,2015-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10291,10131,GO-20159005105,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,8,2015-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10292,10134,GO-20151287777,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,7,2015-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10293,10162,GO-20159005245,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,9,2015-08-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10294,10170,GO-20159005296,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,16,2015-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10295,10188,GO-20159005415,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,8,2015-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10296,10229,GO-20151381986,PROPERTY - FOUND,2015-08-12,2015,August,Wednesday,12,224,9,2015-08-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10297,10237,GO-20159005620,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,9,2015-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10298,10262,GO-20159005767,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,15,2015-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10299,10270,GO-20159005845,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,10,2015-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10300,10275,GO-20159005875,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,23,2015-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10301,10284,GO-20159005922,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,9,2015-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10302,10313,GO-20159006077,THEFT UNDER,2015-08-20,2015,August,Thursday,20,232,9,2015-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10303,10331,GO-20159006250,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,11,2015-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10304,10375,GO-20159006565,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,12,2015-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10305,10387,GO-20151522473,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,22,2015-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10306,10456,GO-20159007126,THEFT UNDER,2015-09-13,2015,September,Sunday,13,256,16,2015-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10307,10457,GO-20159007103,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,8,2015-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10308,10468,GO-20151596078,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,0,2015-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10309,10472,GO-20151603416,THEFT UNDER,2015-09-13,2015,September,Sunday,13,256,22,2015-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10310,10485,GO-20159007320,THEFT UNDER,2015-09-12,2015,September,Saturday,12,255,20,2015-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10311,10486,GO-20159007336,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,8,2015-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10312,10499,GO-20159007433,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,12,2015-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10313,10500,GO-20159007432,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,12,2015-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10314,10526,GO-20151649874,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,17,2015-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10315,10544,GO-20151659545,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,13,2015-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10316,10587,GO-20151712793,THEFT UNDER,2015-10-02,2015,October,Friday,2,275,20,2015-10-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10317,10589,GO-20159008164,THEFT UNDER,2015-10-04,2015,October,Sunday,4,277,14,2015-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10318,10596,GO-20159008213,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,21,2015-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10319,10619,GO-20159008465,THEFT UNDER,2015-10-12,2015,October,Monday,12,285,12,2015-10-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10320,10621,GO-20159008467,THEFT UNDER,2015-10-12,2015,October,Monday,12,285,21,2015-10-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10321,10630,GO-20151777391,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,9,2015-10-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10322,10637,GO-20159008596,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,19,2015-10-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10323,10648,GO-20159008677,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,8,2015-10-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10324,10673,GO-20151819164,THEFT UNDER,2015-10-22,2015,October,Thursday,22,295,14,2015-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10325,10711,GO-20151889455,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,19,2015-11-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10326,10719,GO-20151901450,THEFT UNDER,2015-11-04,2015,November,Wednesday,4,308,11,2015-11-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10327,10723,GO-20151906843,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,11,2015-11-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10328,10749,GO-20151939911,THEFT UNDER,2015-11-04,2015,November,Wednesday,4,308,14,2015-11-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10329,10762,GO-20151937310,THEFT UNDER,2015-11-10,2015,November,Tuesday,10,314,14,2015-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10330,10770,GO-20151949861,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,2,2015-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10331,10771,GO-20151957399,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,16,2015-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10332,10784,GO-20159009886,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,8,2015-11-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10333,10789,GO-20151984896,THEFT UNDER,2015-11-17,2015,November,Tuesday,17,321,7,2015-11-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10334,3428,GO-20189029646,POSSESSION PROPERTY OBC UNDER,2018-09-08,2018,September,Saturday,8,251,16,2018-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10335,8272,GO-20142416000,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,14,2014-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10336,1401,GO-20171648555,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,15,2017-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10337,8274,GO-20142422741,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,13,2014-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10338,8277,GO-20149004550,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,12,2014-06-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10339,8279,GO-20149004531,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,19,2014-06-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10340,8280,GO-20142430889,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,13,2014-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10341,8296,GO-20142447826,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,13,2014-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10342,8299,GO-20149004590,THEFT UNDER,2013-07-25,2013,July,Thursday,25,206,10,2014-07-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10343,8309,GO-20142420499,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,9,2014-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10344,8310,GO-20142422454,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,17,2014-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10345,8313,GO-20149004625,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,14,2014-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10346,8343,GO-20149004697,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,13,2014-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10347,8365,GO-20149004801,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,23,2014-07-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10348,8368,GO-20149004802,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,19,2014-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10349,8369,GO-20149004802,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,19,2014-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10350,8375,GO-20149004845,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,12,2014-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10351,8388,GO-20149004877,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,12,2014-07-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10352,8397,GO-20149004915,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,8,2014-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10353,8402,GO-20149004929,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,0,2014-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10354,8420,GO-20149004981,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,10,2014-07-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10355,8436,GO-20149005030,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,17,2014-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10356,8439,GO-20142518570,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,13,2014-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10357,8450,GO-20142514116,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,8,2014-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10358,8462,GO-20149005146,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,7,2014-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10359,8475,GO-20149005188,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,0,2014-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10360,8506,GO-20149005312,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,7,2014-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10361,8507,GO-20149005325,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,16,2014-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10362,8512,GO-20149005334,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,16,2014-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10363,8516,GO-20142589541,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,19,2014-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10364,8520,GO-20149005352,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,22,2014-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10365,8531,GO-20149005390,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,17,2014-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10366,8533,GO-20142605940,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,20,2014-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10367,8537,GO-20149005410,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,7,2014-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10368,8601,GO-20149005694,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,19,2014-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10369,8635,GO-20149005783,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,11,2014-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10370,8657,GO-20149005924,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,15,2014-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10371,8685,GO-20149006062,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,10,2014-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10372,8698,GO-20149006120,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,8,2014-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10373,8722,GO-20142763159,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,12,2014-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10374,8737,GO-20149006313,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,7,2014-08-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10375,8752,GO-20149006199,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,9,2014-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10376,8770,GO-20149006397,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,14,2014-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10377,8774,GO-20142800780,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,10,2014-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10378,8778,GO-20149006432,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,18,2014-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10379,8779,GO-20149006454,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,22,2014-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10380,8828,GO-20149006634,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,17,2014-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10381,8831,GO-20149006646,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,7,2014-09-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10382,8832,GO-20149006649,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,19,2014-09-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10383,8908,GO-20149006970,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,12,2014-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10384,8840,GO-20149006678,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,8,2014-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10385,8843,GO-20149006698,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,18,2014-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10386,8880,GO-20149006848,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,15,2014-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10387,8883,GO-20149006873,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,23,2014-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10388,8884,GO-20142519359,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,17,2014-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10389,8887,GO-20149006885,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,16,2014-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10390,8897,GO-20149006913,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,9,2014-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10391,8902,GO-20149006950,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,8,2014-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10392,8918,GO-20149007005,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,11,2014-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10393,8919,GO-20149007014,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,10,2014-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10394,8937,GO-20142952422,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,16,2014-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10395,8950,GO-20149007133,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,22,2014-09-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10396,8959,GO-20142972558,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,19,2014-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10397,8964,GO-20149007172,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,10,2014-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10398,8981,GO-20142987051,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,8,2014-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10399,8982,GO-20142986984,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,10,2014-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10400,8990,GO-20143001192,THEFT UNDER,2014-09-27,2014,September,Saturday,27,270,12,2014-09-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10401,9003,GO-20149007334,THEFT UNDER,2014-10-01,2014,October,Wednesday,1,274,13,2014-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10402,9034,GO-20143074181,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,12,2014-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10403,9037,GO-20143078519,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,19,2014-10-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10404,9040,GO-20149007515,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,18,2014-10-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10405,9060,GO-20149007576,THEFT UNDER,2014-10-13,2014,October,Monday,13,286,19,2014-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10406,9071,GO-20149007593,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,17,2014-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10407,9080,GO-20149007679,THEFT UNDER,2014-10-19,2014,October,Sunday,19,292,9,2014-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10408,9084,GO-20149007697,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,16,2014-10-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10409,9100,GO-20143154735,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,9,2014-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10410,9103,GO-20143158284,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,17,2014-10-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10411,9132,GO-20149007914,THEFT UNDER,2014-10-30,2014,October,Thursday,30,303,17,2014-10-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10412,9148,GO-20143168302,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,9,2014-10-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10413,9180,GO-20149008004,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,8,2014-11-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10414,9182,GO-20149008042,THEFT UNDER,2014-11-05,2014,November,Wednesday,5,309,21,2014-11-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10415,9204,GO-20149008443,THEFT UNDER,2014-11-27,2014,November,Thursday,27,331,15,2014-11-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10416,9238,GO-20143537221,THEFT UNDER,2014-12-21,2014,December,Sunday,21,355,2,2014-12-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10417,9250,GO-20159000101,THEFT UNDER,2011-07-01,2011,July,Friday,1,182,6,2015-01-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10418,9266,GO-2015106978,THEFT UNDER,2015-01-17,2015,January,Saturday,17,17,23,2015-01-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10419,9272,GO-20159000409,THEFT UNDER,2015-01-22,2015,January,Thursday,22,22,9,2015-01-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10420,9293,GO-20159000779,THEFT UNDER,2015-02-14,2015,February,Saturday,14,45,16,2015-02-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10421,9321,GO-2015446138,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,17,2015-03-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10422,9326,GO-2015450760,THEFT UNDER,2014-12-30,2014,December,Tuesday,30,364,16,2015-03-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10423,9329,GO-20159001372,THEFT UNDER,2015-03-16,2015,March,Monday,16,75,22,2015-03-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10424,9343,GO-20159001472,THEFT UNDER,2015-03-20,2015,March,Friday,20,79,17,2015-03-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10425,9354,GO-2015518798,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,18,2015-03-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10426,3429,GO-20189026600,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,1,2018-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10427,1402,GO-20171648555,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,15,2017-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10428,3440,GO-20189029646,POSSESSION PROPERTY OBC UNDER,2018-09-08,2018,September,Saturday,8,251,16,2018-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10429,1416,GO-20179014824,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,9,2017-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10430,3444,GO-20189029984,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,20,2018-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10431,1621,GO-20179016820,THEFT UNDER,2017-10-02,2017,October,Monday,2,275,14,2017-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10432,1423,GO-20171686227,B&E,2017-09-02,2017,September,Saturday,2,245,15,2017-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10433,1426,GO-20171661886,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,12,2017-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10434,1457,GO-20179015223,THEFT UNDER - SHOPLIFTING,2016-12-26,2016,December,Monday,26,361,9,2017-01-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10435,1478,GO-20179015350,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,18,2017-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10436,1479,GO-20179015348,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,9,2017-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10437,1483,GO-20179015381,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,23,2017-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10438,1485,GO-20179015441,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,19,2017-09-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10439,1638,GO-20171841964,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,13,2017-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10440,1505,GO-20179015574,THEFT UNDER,2017-09-19,2017,September,Tuesday,19,262,10,2017-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10441,1516,GO-20179015684,MISCHIEF UNDER,2017-09-22,2017,September,Friday,22,265,5,2017-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10442,1519,GO-20179015718,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,13,2017-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10443,1533,GO-20179015884,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,17,2017-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10444,1545,GO-20179015999,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,12,2017-09-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10445,1574,GO-20179016321,THEFT UNDER - BICYCLE,2017-10-02,2017,October,Monday,2,275,14,2017-10-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10446,1595,GO-20179016557,THEFT UNDER - BICYCLE,2017-09-11,2017,September,Monday,11,254,22,2017-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10447,1619,GO-20179016814,THEFT UNDER,2017-10-09,2017,October,Monday,9,282,18,2017-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10448,1644,GO-20171826164,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,12,2017-10-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10449,1668,GO-20171878228,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,10,2017-10-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10450,1674,GO-20179017412,THEFT UNDER - BICYCLE,2017-10-11,2017,October,Wednesday,11,284,22,2017-10-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10451,1696,GO-20179017644,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,20,2017-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10452,1706,GO-20179017754,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,20,2017-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10453,1716,GO-20171916760,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,8,2017-10-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10454,1719,GO-20171896137,THEFT OF EBIKE UNDER $5000,2017-10-19,2017,October,Thursday,19,292,18,2017-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10455,1725,GO-20179017979,THEFT UNDER,2017-10-23,2017,October,Monday,23,296,14,2017-10-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10456,1732,GO-20179018054,THEFT UNDER,2017-10-23,2017,October,Monday,23,296,7,2017-10-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10457,1744,GO-20171937523,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,8,2017-10-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10458,1746,GO-20179018225,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,9,2017-10-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10459,1762,GO-20179018441,THEFT UNDER - BICYCLE,2017-10-28,2017,October,Saturday,28,301,22,2017-10-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10460,1765,GO-20171947561,THEFT OF EBIKE UNDER $5000,2017-10-24,2017,October,Tuesday,24,297,12,2017-10-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10461,1777,GO-20179018664,THEFT UNDER - BICYCLE,2017-10-30,2017,October,Monday,30,303,8,2017-11-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10462,1781,GO-20179018720,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,9,2017-11-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10463,1796,GO-20179018441,THEFT UNDER - BICYCLE,2017-10-28,2017,October,Saturday,28,301,22,2017-10-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10464,1829,GO-20179019488,THEFT UNDER - BICYCLE,2017-11-10,2017,November,Friday,10,314,7,2017-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10465,1836,GO-20179019548,THEFT UNDER,2017-11-09,2017,November,Thursday,9,313,18,2017-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10466,1837,GO-20179019562,THEFT UNDER - BICYCLE,2017-11-08,2017,November,Wednesday,8,312,23,2017-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10467,1872,GO-20179020368,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,0,2017-11-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10468,1880,GO-20179020489,THEFT UNDER - BICYCLE,2017-11-23,2017,November,Thursday,23,327,11,2017-11-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10469,1892,GO-20179020755,THEFT UNDER - BICYCLE,2017-11-23,2017,November,Thursday,23,327,8,2017-11-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10470,1896,GO-20179020890,THEFT UNDER - BICYCLE,2017-11-28,2017,November,Tuesday,28,332,18,2017-11-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10471,6433,GO-20209015867,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,1,2020-06-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -10472,1901,GO-20179021028,THEFT UNDER,2017-11-30,2017,November,Thursday,30,334,7,2017-12-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10473,1907,GO-20173129215,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,18,2017-12-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10474,1909,GO-20179017754,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,20,2017-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10475,1914,GO-20179021354,THEFT UNDER - SHOPLIFTING,2017-11-28,2017,November,Tuesday,28,332,1,2017-12-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10476,1923,GO-20179021544,THEFT UNDER - BICYCLE,2017-11-28,2017,November,Tuesday,28,332,8,2017-12-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10477,1934,GO-20173186891,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,9,2017-12-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10478,1935,GO-20173186891,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,9,2017-12-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10479,21722,GO-20182304851,B&E,2018-12-16,2018,December,Sunday,16,350,4,2018-12-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -10480,1948,GO-20179022653,THEFT UNDER,2017-12-19,2017,December,Tuesday,19,353,8,2017-12-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10481,1955,GO-20179022722,THEFT UNDER,2017-12-20,2017,December,Wednesday,20,354,15,2017-12-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10482,1956,GO-20179022770,THEFT UNDER,2017-12-15,2017,December,Friday,15,349,15,2017-12-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10483,2006,GO-2018179308,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,16,2018-01-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10484,2015,GO-2018202360,THEFT UNDER - BICYCLE,2017-12-13,2017,December,Wednesday,13,347,18,2018-02-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10485,2026,GO-20189004335,THEFT UNDER - BICYCLE,2018-02-09,2018,February,Friday,9,40,15,2018-02-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10486,2039,GO-20189005530,THEFT UNDER,2018-02-15,2018,February,Thursday,15,46,17,2018-02-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10487,2042,GO-20189005711,THEFT UNDER - BICYCLE,2018-02-22,2018,February,Thursday,22,53,9,2018-02-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10488,2050,GO-20189006181,THEFT UNDER - BICYCLE,2018-02-26,2018,February,Monday,26,57,18,2018-02-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10489,2059,GO-20189006450,THEFT UNDER - BICYCLE,2018-02-28,2018,February,Wednesday,28,59,8,2018-03-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10490,2069,GO-2018433240,POSSESSION PROPERTY OBC UNDER,2018-03-09,2018,March,Friday,9,68,0,2018-03-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10491,2107,GO-20189009503,THEFT UNDER - BICYCLE,2018-03-24,2018,March,Saturday,24,83,9,2018-03-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10492,2116,GO-20189009818,THEFT UNDER - BICYCLE,2018-03-27,2018,March,Tuesday,27,86,7,2018-03-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10493,2146,GO-20189011126,B&E,2018-04-04,2018,April,Wednesday,4,94,0,2018-04-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10494,2154,GO-20189011435,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,17,2018-04-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10495,2155,GO-20189011485,THEFT UNDER - BICYCLE,2018-04-13,2018,April,Friday,13,103,8,2018-04-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10496,2160,GO-20189011691,THEFT UNDER - BICYCLE,2018-04-09,2018,April,Monday,9,99,17,2018-04-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10497,2162,GO-20189011691,THEFT UNDER - BICYCLE,2018-04-09,2018,April,Monday,9,99,17,2018-04-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10498,2190,GO-20189012511,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,9,2018-04-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10499,2195,GO-20189012686,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,13,2018-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10500,2198,GO-2018737442,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,11,2018-04-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10501,2206,GO-2018752616,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,15,2018-04-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10502,2212,GO-20189013129,THEFT UNDER,2018-04-27,2018,April,Friday,27,117,17,2018-04-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10503,2226,GO-20189013316,THEFT UNDER - BICYCLE,2018-04-26,2018,April,Thursday,26,116,13,2018-04-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10504,2230,GO-20189013397,THEFT UNDER - BICYCLE,2018-04-30,2018,April,Monday,30,120,18,2018-05-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10505,2233,GO-20189013502,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,9,2018-05-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10506,2247,GO-20189013724,THEFT UNDER,2018-05-03,2018,May,Thursday,3,123,10,2018-05-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10507,2249,GO-20189013727,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,7,2018-05-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10508,2280,GO-20189014321,THEFT UNDER - BICYCLE,2018-05-07,2018,May,Monday,7,127,11,2018-05-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10509,2292,GO-20189014542,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,7,2018-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10510,2301,GO-20189014791,THEFT UNDER,2017-10-01,2017,October,Sunday,1,274,21,2018-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10511,4013,GO-20199002708,THEFT UNDER - BICYCLE,2019-01-14,2019,January,Monday,14,14,9,2019-01-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10512,2309,GO-20189014932,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,9,2018-05-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10513,2320,GO-2018881731,THEFT UNDER - BICYCLE,2018-05-06,2018,May,Sunday,6,126,15,2018-05-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10514,2339,GO-20189015307,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,0,2018-05-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10515,2342,GO-20189015346,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,8,2018-05-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10516,2346,GO-20189015479,THEFT UNDER - BICYCLE,2018-05-18,2018,May,Friday,18,138,9,2018-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10517,2351,GO-2018910229,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,14,2018-05-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10518,2353,GO-2018911516,THEFT OF EBIKE UNDER $5000,2018-05-20,2018,May,Sunday,20,140,19,2018-05-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10519,2360,GO-20189015713,THEFT UNDER,2018-04-19,2018,April,Thursday,19,109,19,2018-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10520,2375,GO-20189015888,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,23,2018-05-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10521,3474,GO-20189030516,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,9,2018-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10522,3476,GO-20189030525,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,16,2018-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10523,3486,GO-20189030646,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,16,2018-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10524,3490,GO-20181698314,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,15,2018-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10525,3493,GO-20189030784,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,19,2018-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10526,3510,GO-20181735971,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,20,2018-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10527,9790,GO-2015992209,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,8,2015-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -10528,3548,GO-20181748951,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,18,2018-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10529,3557,GO-20189031897,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,17,2018-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10530,3561,GO-20189031951,THEFT UNDER - BICYCLE,2018-09-21,2018,September,Friday,21,264,10,2018-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10531,3611,GO-20189032809,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,11,2018-10-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10532,3626,GO-20181844458,THEFT OF EBIKE UNDER $5000,2018-10-05,2018,October,Friday,5,278,20,2018-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10533,3627,GO-20189033123,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,23,2018-10-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10534,3632,GO-20189033150,THEFT OF EBIKE UNDER $5000,2018-10-06,2018,October,Saturday,6,279,19,2018-10-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10535,3664,GO-20189033608,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,13,2018-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10536,3670,GO-20189033676,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,12,2018-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10537,3681,GO-20189033815,THEFT UNDER,2018-10-10,2018,October,Wednesday,10,283,18,2018-10-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10538,3691,GO-20189033929,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,20,2018-10-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10539,3707,GO-20189034351,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,10,2018-10-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10540,3729,GO-20189034760,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,10,2018-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10541,3740,GO-20189035043,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,20,2018-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10542,3753,GO-20189034428,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,11,2018-10-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10543,3777,GO-20189035994,THEFT UNDER - BICYCLE,2018-10-28,2018,October,Sunday,28,301,18,2018-10-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10544,3781,GO-20189036107,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,17,2018-10-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10545,3786,GO-20189036145,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,17,2018-10-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10546,3810,GO-20189036763,THEFT UNDER - BICYCLE,2018-11-03,2018,November,Saturday,3,307,15,2018-11-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10547,3827,GO-20182036448,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,9,2018-11-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10548,3840,GO-20189037734,THEFT UNDER - BICYCLE,2018-11-10,2018,November,Saturday,10,314,19,2018-11-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10549,3843,GO-20182069016,THEFT OF EBIKE UNDER $5000,2018-11-05,2018,November,Monday,5,309,12,2018-11-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10550,4024,GO-2019143046,B&E,2019-01-23,2019,January,Wednesday,23,23,0,2019-01-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10551,3852,GO-20189038117,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,23,2018-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10552,3855,GO-20189038281,THEFT FROM MOTOR VEHICLE UNDER,2018-11-14,2018,November,Wednesday,14,318,0,2018-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10553,3857,GO-20189038309,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,18,2018-11-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10554,3859,GO-20189038400,THEFT UNDER - BICYCLE,2018-11-15,2018,November,Thursday,15,319,14,2018-11-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10555,3860,GO-20189038390,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,19,2018-11-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10556,3864,GO-20189038501,THEFT UNDER - BICYCLE,2018-11-16,2018,November,Friday,16,320,9,2018-11-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10557,3881,GO-20189038909,THEFT UNDER - BICYCLE,2018-11-19,2018,November,Monday,19,323,17,2018-11-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10558,3893,GO-20189039567,THEFT UNDER - BICYCLE,2018-11-23,2018,November,Friday,23,327,17,2018-11-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10559,3904,GO-20189040056,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,16,2018-11-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10560,3916,GO-20182220509,B&E,2018-11-29,2018,November,Thursday,29,333,22,2018-12-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10561,3930,GO-20182253628,THEFT UNDER - BICYCLE,2018-12-09,2018,December,Sunday,9,343,6,2018-12-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10562,3949,GO-20189042751,THEFT UNDER - BICYCLE,2018-12-19,2018,December,Wednesday,19,353,19,2018-12-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10563,3978,GO-20197162,THEFT OF EBIKE UNDER $5000,2018-12-27,2018,December,Thursday,27,361,18,2019-01-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10564,3983,GO-201932587,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,11,2019-01-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10565,3990,GO-20199000913,THEFT UNDER - BICYCLE,2019-01-08,2019,January,Tuesday,8,8,12,2019-01-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10566,3992,GO-20199000918,THEFT UNDER - BICYCLE,2019-01-08,2019,January,Tuesday,8,8,12,2019-01-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10567,4040,GO-20199004794,THEFT UNDER - BICYCLE,2019-02-07,2019,February,Thursday,7,38,8,2019-02-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10568,4099,GO-20199008880,THEFT UNDER - BICYCLE,2019-03-19,2019,March,Tuesday,19,78,9,2019-03-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10569,4133,GO-2019609659,THEFT UNDER - BICYCLE,2019-04-04,2019,April,Thursday,4,94,20,2019-04-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10570,4157,GO-20199011618,THEFT UNDER - BICYCLE,2019-03-24,2019,March,Sunday,24,83,18,2019-04-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10571,4161,GO-20199011722,THEFT UNDER - BICYCLE,2019-04-12,2019,April,Friday,12,102,20,2019-04-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10572,4174,GO-20199012175,THEFT UNDER,2019-04-16,2019,April,Tuesday,16,106,9,2019-04-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10573,4182,GO-20199012408,THEFT UNDER,2019-04-18,2019,April,Thursday,18,108,19,2019-04-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10574,4195,GO-20199012888,THEFT UNDER,2019-04-24,2019,April,Wednesday,24,114,8,2019-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10575,4196,GO-20199012900,THEFT UNDER,2019-04-24,2019,April,Wednesday,24,114,9,2019-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10576,4205,GO-20199013185,THEFT UNDER,2019-04-22,2019,April,Monday,22,112,16,2019-04-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10577,4223,GO-20199013651,THEFT UNDER,2019-04-29,2019,April,Monday,29,119,17,2019-05-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10578,4226,GO-20199013727,THEFT UNDER,2019-04-30,2019,April,Tuesday,30,120,15,2019-05-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10579,4233,GO-20199013975,THEFT UNDER,2019-04-26,2019,April,Friday,26,116,20,2019-05-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10580,4240,GO-20199014116,THEFT UNDER,2019-05-06,2019,May,Monday,6,126,13,2019-05-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10581,4242,GO-2019821984,THEFT UNDER - BICYCLE,2019-05-06,2019,May,Monday,6,126,15,2019-05-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10582,4270,GO-20199014807,THEFT UNDER,2019-05-10,2019,May,Friday,10,130,19,2019-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10583,4274,GO-20199014961,THEFT UNDER,2019-05-13,2019,May,Monday,13,133,9,2019-05-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10584,4279,GO-20199015114,THEFT UNDER,2019-05-10,2019,May,Friday,10,130,18,2019-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10585,4297,GO-2019902786,THEFT OF EBIKE UNDER $5000,2019-05-16,2019,May,Thursday,16,136,21,2019-05-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10586,4324,GO-20199015959,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,13,2019-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10587,4341,GO-20199016218,THEFT UNDER,2019-05-23,2019,May,Thursday,23,143,15,2019-05-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10588,4350,GO-20199016374,THEFT UNDER,2019-05-23,2019,May,Thursday,23,143,15,2019-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10589,4370,GO-20199016745,THEFT UNDER,2019-05-28,2019,May,Tuesday,28,148,14,2019-05-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10590,4373,GO-20199016852,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,20,2019-05-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10591,4396,GO-20199017124,THEFT UNDER - BICYCLE,2019-05-30,2019,May,Thursday,30,150,9,2019-06-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10592,4397,GO-20191009240,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,23,2019-06-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10593,4403,GO-20191000423,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,9,2019-06-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10594,4408,GO-20191025390,THEFT OF EBIKE UNDER $5000,2019-06-03,2019,June,Monday,3,154,11,2019-06-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10595,4476,GO-20199018510,THEFT UNDER,2018-11-01,2018,November,Thursday,1,305,0,2019-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10596,4489,GO-20199018604,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,21,2019-06-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10597,4494,GO-20199018691,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,8,2019-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10598,10935,GO-20169000704,THEFT UNDER,2016-01-20,2016,January,Wednesday,20,20,14,2016-01-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10599,4526,GO-20199019053,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,13,2019-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10600,4537,GO-20199019167,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,19,2019-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10601,4553,GO-20191137138,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,15,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10602,4555,GO-20199019391,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,13,2019-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10603,4573,GO-20199019560,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,8,2019-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10604,4593,GO-20199019953,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,15,2019-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10605,4607,GO-20191169666,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,14,2019-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10606,4617,GO-20191171013,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,21,2019-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10607,4649,GO-20199020675,THEFT UNDER,2019-07-01,2019,July,Monday,1,182,9,2019-07-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10608,4654,GO-20199020779,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,13,2019-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10609,4656,GO-20199020819,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,9,2019-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10610,4658,GO-20191236169,THEFT OF EBIKE OVER $5000,2019-07-03,2019,July,Wednesday,3,184,12,2019-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10611,4668,GO-20199020938,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,18,2019-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10612,10794,GO-20159009937,THEFT UNDER,2015-11-19,2015,November,Thursday,19,323,19,2015-11-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10613,2395,GO-20189016249,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,14,2018-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10614,2399,GO-20189016360,THEFT UNDER - BICYCLE,2018-05-26,2018,May,Saturday,26,146,15,2018-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10615,10801,GO-20159010041,THEFT UNDER,2015-11-22,2015,November,Sunday,22,326,22,2015-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10616,2446,GO-20189017240,THEFT UNDER,2018-06-03,2018,June,Sunday,3,154,16,2018-06-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10617,10804,GO-20159010062,THEFT UNDER,2015-11-22,2015,November,Sunday,22,326,15,2015-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10618,2465,GO-20189017435,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,16,2018-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10619,10847,GO-20159010671,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,8,2015-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10620,10895,GO-20152226312,THEFT UNDER,2015-12-08,2015,December,Tuesday,8,342,10,2015-12-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10621,10900,GO-20152225292,THEFT UNDER,2015-12-24,2015,December,Thursday,24,358,10,2015-12-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10622,10910,GO-20169000202,THEFT UNDER,2016-01-05,2016,January,Tuesday,5,5,9,2016-01-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10623,10939,GO-2016124663,THEFT UNDER,2016-01-20,2016,January,Wednesday,20,20,18,2016-01-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10624,10943,GO-20169000757,THEFT UNDER,2016-01-22,2016,January,Friday,22,22,18,2016-01-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10625,10960,GO-20169000998,B&E,2016-01-30,2016,January,Saturday,30,30,5,2016-01-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10626,10964,GO-20169000998,B&E,2016-01-30,2016,January,Saturday,30,30,5,2016-01-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10627,10981,GO-201639998,B&E,2016-01-01,2016,January,Friday,1,1,3,2016-01-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10628,10982,GO-201639998,B&E,2016-01-01,2016,January,Friday,1,1,3,2016-01-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10629,10983,GO-201639998,B&E,2016-01-01,2016,January,Friday,1,1,3,2016-01-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10630,11013,GO-20169001754,THEFT UNDER,2016-02-24,2016,February,Wednesday,24,55,18,2016-02-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10631,11025,GO-2016409034,THEFT UNDER,2016-03-08,2016,March,Tuesday,8,68,18,2016-03-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10632,11027,GO-2016407864,THEFT UNDER,2016-03-08,2016,March,Tuesday,8,68,8,2016-03-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10633,11031,GO-2016412242,THEFT UNDER - BICYCLE,2016-03-09,2016,March,Wednesday,9,69,10,2016-03-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10634,4669,GO-20199020982,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,12,2019-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10635,40,GO-201721988,THEFT OF EBIKE UNDER $5000,2017-01-04,2017,January,Wednesday,4,4,17,2017-01-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10636,11037,GO-20169002214,THEFT UNDER,2016-03-08,2016,March,Tuesday,8,68,9,2016-03-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10637,11059,GO-20169002486,THEFT UNDER,2016-03-18,2016,March,Friday,18,78,16,2016-03-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10638,11081,GO-2016534968,THEFT UNDER - BICYCLE,2016-03-22,2016,March,Tuesday,22,82,22,2016-03-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10639,11100,GO-2016578494,THEFT OVER,2016-03-27,2016,March,Sunday,27,87,18,2016-04-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10640,11128,GO-20169003295,THEFT UNDER - BICYCLE,2016-04-10,2016,April,Sunday,10,101,22,2016-04-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10641,11139,GO-20169003448,THEFT UNDER - BICYCLE,2016-04-15,2016,April,Friday,15,106,8,2016-04-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10642,11177,GO-20169003684,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,9,2016-04-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10643,11192,GO-2016701172,THEFT UNDER,2016-04-23,2016,April,Saturday,23,114,19,2016-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10644,11199,GO-2016705874,THEFT UNDER,2016-04-25,2016,April,Monday,25,116,14,2016-04-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10645,11222,GO-20169003935,THEFT UNDER - BICYCLE,2016-04-26,2016,April,Tuesday,26,117,19,2016-04-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10646,11226,GO-2016735358,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,0,2016-04-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10647,11234,GO-20169004032,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,23,2016-05-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10648,11235,GO-20169004032,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,23,2016-05-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10649,11243,GO-20169004077,THEFT UNDER,2016-05-02,2016,May,Monday,2,123,13,2016-05-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10650,11251,GO-2016758894,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,14,2016-05-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10651,11253,GO-20169004129,THEFT UNDER - BICYCLE,2016-04-29,2016,April,Friday,29,120,9,2016-05-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10652,11255,GO-20169004144,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,9,2016-05-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10653,11258,GO-2016765845,THEFT UNDER,2016-05-04,2016,May,Wednesday,4,125,16,2016-05-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10654,11280,GO-20169004314,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,9,2016-05-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10655,11285,GO-20169004350,THEFT UNDER - BICYCLE,2016-05-09,2016,May,Monday,9,130,19,2016-05-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10656,11286,GO-20169004357,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,23,2016-05-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10657,11297,GO-20169004442,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,16,2016-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10658,11300,GO-20169004469,THEFT UNDER - BICYCLE,2016-05-12,2016,May,Thursday,12,133,19,2016-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10659,11331,GO-20169004689,THEFT UNDER,2016-05-18,2016,May,Wednesday,18,139,20,2016-05-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10660,11336,GO-20169004722,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,17,2016-05-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10661,11340,GO-2016863567,THEFT UNDER,2016-05-18,2016,May,Wednesday,18,139,12,2016-05-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10662,11358,GO-20169004859,THEFT UNDER,2016-05-20,2016,May,Friday,20,141,20,2016-05-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10663,11374,GO-2016900039,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,17,2016-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10664,11383,GO-20169004994,THEFT UNDER,2016-05-20,2016,May,Friday,20,141,10,2016-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10665,11387,GO-2016909181,THEFT UNDER,2016-05-26,2016,May,Thursday,26,147,12,2016-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10666,11399,GO-20169005075,THEFT UNDER,2016-05-28,2016,May,Saturday,28,149,21,2016-05-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10667,11410,GO-20169005142,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,18,2016-05-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10668,11446,GO-20169005351,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,15,2016-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10669,11448,GO-20169005363,THEFT UNDER - BICYCLE,2016-05-26,2016,May,Thursday,26,147,20,2016-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10670,11634,GO-20169006337,THEFT UNDER,2016-06-20,2016,June,Monday,20,172,18,2016-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10671,11457,GO-20169005414,THEFT UNDER - BICYCLE,2016-06-06,2016,June,Monday,6,158,18,2016-06-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10672,11478,GO-20169005499,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,17,2016-06-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10673,11494,GO-20169005586,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,9,2016-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10674,11539,GO-20169005832,FTC PROBATION ORDER,2016-06-14,2016,June,Tuesday,14,166,14,2016-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10675,11540,GO-20169005828,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,16,2016-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10676,11546,GO-20169005853,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,19,2016-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10677,11552,GO-20169005880,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,10,2016-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10678,11765,GO-20161190799,THEFT UNDER - BICYCLE,2016-07-07,2016,July,Thursday,7,189,15,2016-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10679,11576,GO-20169006013,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,12,2016-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10680,11577,GO-20161066912,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,8,2016-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10681,11585,GO-20169005954,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,8,2016-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10682,11588,GO-20169006067,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,9,2016-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10683,11590,GO-20169006085,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,13,2016-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10684,11596,GO-20169006120,THEFT UNDER,2016-06-21,2016,June,Tuesday,21,173,7,2016-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10685,11605,GO-20169006161,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,9,2016-06-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10686,11624,GO-20161092649,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,16,2016-06-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10687,11665,GO-20169006522,THEFT UNDER - BICYCLE,2016-06-29,2016,June,Wednesday,29,181,10,2016-06-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10688,11669,GO-20161132781,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,13,2016-06-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10689,11674,GO-20169006581,THEFT UNDER,2016-06-20,2016,June,Monday,20,172,14,2016-06-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10690,11684,GO-20161148034,THEFT OF EBIKE UNDER $5000,2016-06-29,2016,June,Wednesday,29,181,21,2016-07-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10691,11709,GO-20161168800,THEFT UNDER,2016-06-30,2016,June,Thursday,30,182,16,2016-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10692,11711,GO-20169006729,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,13,2016-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10693,11718,GO-20161170832,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,16,2016-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10694,11737,GO-20161182891,THEFT OF EBIKE UNDER $5000,2016-07-06,2016,July,Wednesday,6,188,10,2016-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10695,11769,GO-20169007034,THEFT UNDER - BICYCLE,2016-07-08,2016,July,Friday,8,190,9,2016-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10696,11772,GO-20169007066,THEFT UNDER,2016-07-11,2016,July,Monday,11,193,19,2016-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10697,11776,GO-20169007090,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,12,2016-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10698,11783,GO-20161203884,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,18,2016-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10699,11799,GO-20161233085,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,14,2016-07-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10700,11802,GO-20169007164,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,8,2016-07-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10701,11818,GO-20169007265,THEFT UNDER,2016-07-15,2016,July,Friday,15,197,8,2016-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10702,11828,GO-20169007306,THEFT UNDER,2016-07-17,2016,July,Sunday,17,199,10,2016-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10703,11829,GO-20169007317,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,19,2016-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10704,11836,GO-20169007386,THEFT UNDER,2016-07-18,2016,July,Monday,18,200,9,2016-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10705,11844,GO-20169007395,THEFT UNDER,2016-07-17,2016,July,Sunday,17,199,22,2016-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10706,11846,GO-20169007411,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,13,2016-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10707,11847,GO-20169007411,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,13,2016-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10708,11852,GO-20161251761,THEFT UNDER - BICYCLE,2016-07-16,2016,July,Saturday,16,198,21,2016-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10709,11867,GO-20161289028,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,9,2016-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10710,11899,GO-20161280896,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,5,2016-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10711,11912,GO-20169007755,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,18,2016-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10712,11927,GO-20169007800,THEFT UNDER,2016-07-26,2016,July,Tuesday,26,208,9,2016-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10713,11943,GO-20169007895,THEFT UNDER,2016-07-28,2016,July,Thursday,28,210,19,2016-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10714,11964,GO-20169007993,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,12,2016-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10715,11974,GO-20169008071,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,15,2016-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10716,2476,GO-20189017567,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,21,2018-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10717,57,GO-20179000940,THEFT UNDER - BICYCLE,2017-01-19,2017,January,Thursday,19,19,18,2017-01-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10718,4670,GO-20199021007,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,21,2019-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10719,2487,GO-20189017710,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,14,2018-06-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10720,4672,GO-20199021041,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,18,2019-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10721,2492,GO-20189017778,THEFT UNDER,2018-06-01,2018,June,Friday,1,152,11,2018-06-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10722,4676,GO-20199021139,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,23,2019-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10723,59,GO-20179000991,THEFT UNDER - BICYCLE,2017-01-21,2017,January,Saturday,21,21,9,2017-01-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10724,2493,GO-20189017737,THEFT UNDER,2018-06-07,2018,June,Thursday,7,158,8,2018-06-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10725,4679,GO-20191261342,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,18,2019-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10726,69,GO-20179001243,THEFT UNDER - BICYCLE,2017-01-26,2017,January,Thursday,26,26,7,2017-01-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10727,2506,GO-20189017944,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,8,2018-06-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10728,4680,GO-20191261342,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,18,2019-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10729,73,GO-2017174760,THEFT UNDER - BICYCLE,2017-01-28,2017,January,Saturday,28,28,6,2017-01-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10730,2510,GO-20189017969,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,23,2018-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10731,4685,GO-20199021251,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,9,2019-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10732,79,GO-20179001484,THEFT UNDER - BICYCLE,2017-01-24,2017,January,Tuesday,24,24,13,2017-02-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10733,94,GO-2017308908,B&E,2017-01-15,2017,January,Sunday,15,15,12,2017-02-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10734,107,GO-20179002400,THEFT UNDER - BICYCLE,2017-02-19,2017,February,Sunday,19,50,15,2017-02-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10735,173,GO-2017539646,THEFT UNDER - BICYCLE,2017-03-17,2017,March,Friday,17,76,12,2017-03-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10736,184,GO-20179004020,THEFT UNDER - BICYCLE,2017-03-30,2017,March,Thursday,30,89,16,2017-03-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10737,195,GO-20179004169,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,15,2017-04-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10738,201,GO-2017614803,THEFT UNDER - BICYCLE,2017-03-17,2017,March,Friday,17,76,16,2017-04-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10739,209,GO-2017641190,THEFT UNDER - BICYCLE,2017-04-01,2017,April,Saturday,1,91,12,2017-04-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10740,213,GO-20179004591,THEFT UNDER,2017-04-11,2017,April,Tuesday,11,101,7,2017-04-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10741,227,GO-20179004755,THEFT UNDER - BICYCLE,2017-04-15,2017,April,Saturday,15,105,15,2017-04-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10742,229,GO-20179004773,THEFT UNDER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,13,2017-04-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10743,261,GO-20179005108,THEFT UNDER - BICYCLE,2017-04-22,2017,April,Saturday,22,112,16,2017-04-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10744,262,GO-20179005110,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,8,2017-04-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10745,276,GO-2017727188,B&E,2017-04-23,2017,April,Sunday,23,113,20,2017-04-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10746,289,GO-20179005205,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,11,2017-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10747,293,GO-20179005402,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,21,2017-04-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10748,300,GO-20179004773,THEFT UNDER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,13,2017-04-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10749,302,GO-20179005491,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,0,2017-04-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10750,303,GO-20179005489,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,8,2017-04-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10751,397,GO-20179006354,THEFT UNDER,2017-05-07,2017,May,Sunday,7,127,14,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10752,399,GO-20179006411,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,19,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10753,401,GO-20179006427,THEFT UNDER,2017-04-22,2017,April,Saturday,22,112,6,2017-05-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10754,427,GO-20179006661,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,14,2017-05-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10755,432,GO-20179006712,THEFT UNDER,2017-05-20,2017,May,Saturday,20,140,22,2017-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10756,489,GO-20179007116,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,8,2017-05-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10757,501,GO-20179007169,THEFT UNDER,2017-05-28,2017,May,Sunday,28,148,12,2017-05-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10758,509,GO-2017961422,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,11,2017-05-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10759,516,GO-20179007346,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,17,2017-06-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10760,543,GO-2017999111,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,12,2017-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10761,606,GO-20179008026,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,8,2017-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10762,613,GO-20179008105,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,19,2017-06-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10763,633,GO-20171005592,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,14,2017-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10764,649,GO-20171075000,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,13,2017-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10765,650,GO-20171076279,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,18,2017-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10766,657,GO-20179008458,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,15,2017-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10767,658,GO-20179008478,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,20,2017-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10768,679,GO-20179008610,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,8,2017-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10769,701,GO-20179008800,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,16,2017-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10770,713,GO-20179008889,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,19,2017-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10771,716,GO-20179008895,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,20,2017-06-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10772,760,GO-20179009302,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,16,2017-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10773,774,GO-20179009319,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,22,2017-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10774,781,GO-20179009485,THEFT UNDER - BICYCLE,2017-07-01,2017,July,Saturday,1,182,13,2017-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10775,783,GO-20179009506,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,12,2017-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10776,787,GO-20179009541,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,8,2017-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10777,792,GO-20179009620,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,10,2017-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10778,796,GO-20179009647,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,9,2017-07-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10779,815,GO-20179009647,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,9,2017-07-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10780,827,GO-20179009647,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,9,2017-07-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10781,924,GO-20179010607,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,10,2017-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10782,931,GO-20179010681,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,14,2017-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10783,935,GO-20179010710,THEFT UNDER,2017-07-19,2017,July,Wednesday,19,200,9,2017-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10784,950,GO-20179010857,THEFT UNDER - BICYCLE,2016-11-24,2016,November,Thursday,24,329,13,2017-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10785,951,GO-20179010858,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,8,2017-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10786,973,GO-20179011002,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,22,2017-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10787,990,GO-20179011135,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,17,2017-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10788,999,GO-20179011223,THEFT UNDER,2017-07-28,2017,July,Friday,28,209,9,2017-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10789,1016,GO-20179011346,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,8,2017-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10790,1042,GO-20179011581,THEFT UNDER,2017-08-02,2017,August,Wednesday,2,214,7,2017-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10791,1043,GO-20179011594,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,22,2017-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10792,1047,GO-20179011632,THEFT UNDER,2017-07-26,2017,July,Wednesday,26,207,20,2017-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10793,1057,GO-20179011744,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,12,2017-08-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10794,1084,GO-20179011932,THEFT UNDER,2017-08-01,2017,August,Tuesday,1,213,10,2017-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10795,1090,GO-20179011970,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,21,2017-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10796,1091,GO-20179011970,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,21,2017-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10797,1099,GO-20171432300,B&E,2017-08-08,2017,August,Tuesday,8,220,16,2017-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10798,1101,GO-20179012024,THEFT UNDER,2017-07-25,2017,July,Tuesday,25,206,22,2017-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10799,1103,GO-20171445360,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,14,2017-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10800,1117,GO-20179012138,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,8,2017-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10801,1120,GO-20179012165,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,14,2017-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10802,1122,GO-20179012210,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,20,2017-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10803,1152,GO-20171467651,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,0,2017-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10804,1158,GO-20171471635,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,17,2017-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10805,1161,GO-20179012515,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,8,2017-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10806,2675,GO-20181072942,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,15,2018-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10807,1177,GO-20179012739,THEFT UNDER - BICYCLE,2017-08-17,2017,August,Thursday,17,229,18,2017-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10808,1180,GO-20179012772,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,13,2017-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10809,1185,GO-20179012793,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,13,2017-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10810,1197,GO-20179012898,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,13,2017-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10811,1207,GO-20179012989,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,14,2017-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10812,1211,GO-20171524471,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,2,2017-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10813,1212,GO-20171524471,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,2,2017-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10814,4754,GO-20199021953,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,14,2019-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10815,1218,GO-20179013072,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,9,2017-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10816,1227,GO-20171505247,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,16,2017-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10817,1228,GO-20179013142,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,16,2017-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10818,1233,GO-20171536939,THEFT OF EBIKE UNDER $5000,2017-08-24,2017,August,Thursday,24,236,8,2017-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10819,1244,GO-20179013284,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,18,2017-08-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10820,1245,GO-20179013321,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,9,2017-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10821,1261,GO-20179013551,THEFT UNDER,2017-08-28,2017,August,Monday,28,240,7,2017-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10822,1263,GO-20171555555,B&E,2017-08-28,2017,August,Monday,28,240,7,2017-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10823,1289,GO-20179013871,THEFT UNDER - BICYCLE,2017-08-30,2017,August,Wednesday,30,242,12,2017-09-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10824,1291,GO-20179013893,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,9,2017-09-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10825,1308,GO-20171596959,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,16,2017-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10826,1329,GO-20179014147,THEFT UNDER - BICYCLE,2017-08-28,2017,August,Monday,28,240,14,2017-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10827,1334,GO-20179014005,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,10,2017-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10828,2518,GO-20189018061,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,20,2018-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10829,2542,GO-20189018311,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,10,2018-06-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10830,18166,GO-20169011671,THEFT UNDER,2016-10-06,2016,October,Thursday,6,280,9,2016-10-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -10831,2544,GO-20181047698,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,17,2018-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10832,2549,GO-20181048582,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,18,2018-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10833,2563,GO-20189018690,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,10,2018-06-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10834,2584,GO-20189018915,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,11,2018-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10835,2587,GO-20189018955,THEFT UNDER,2018-06-14,2018,June,Thursday,14,165,8,2018-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10836,2590,GO-20189018963,THEFT UNDER,2018-06-16,2018,June,Saturday,16,167,9,2018-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10837,4689,GO-20199021291,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,22,2019-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10838,2593,GO-20189019016,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,12,2018-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10839,2610,GO-20181047698,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,17,2018-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10840,4715,GO-20199021539,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,16,2019-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10841,2620,GO-20189019374,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,15,2018-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10842,4716,GO-20199021539,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,16,2019-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10843,2643,GO-20189019726,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,12,2018-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10844,4726,GO-20199021663,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,12,2019-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10845,2655,GO-20189019769,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,23,2018-06-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10846,4753,GO-20191204234,B&E,2019-06-28,2019,June,Friday,28,179,18,2019-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10847,2678,GO-20189020192,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,20,2018-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10848,2683,GO-20181148804,B&E W'INTENT,2018-06-24,2018,June,Sunday,24,175,5,2018-06-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10849,2686,GO-20189020278,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,6,2018-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10850,2691,GO-20189020371,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,21,2018-06-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10851,2696,GO-20189020408,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,14,2018-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10852,2703,GO-20189020495,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,14,2018-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10853,2718,GO-20189020710,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,23,2018-06-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10854,2770,GO-20189021429,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,23,2018-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10855,2774,GO-20189021501,THEFT UNDER,2018-07-06,2018,July,Friday,6,187,13,2018-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10856,2790,GO-20189021756,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,15,2018-07-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10857,2797,GO-20189021796,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,18,2018-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10858,2798,GO-20181260786,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,16,2018-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10859,2816,GO-20189022059,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,21,2018-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10860,2828,GO-2018961504,B&E,2018-05-25,2018,May,Friday,25,145,2,2018-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10861,2831,GO-20189022224,THEFT UNDER,2018-07-12,2018,July,Thursday,12,193,8,2018-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10862,2840,GO-20189022331,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,17,2018-07-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10863,2842,GO-20189022416,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,12,2018-07-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10864,2855,GO-20189022645,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,16,2018-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10865,2862,GO-20189022741,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,10,2018-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10866,2863,GO-20189022891,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,7,2018-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10867,2890,GO-20181323782,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,17,2018-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10868,2921,GO-20189023513,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,17,2018-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10869,2929,GO-20189023531,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,0,2018-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10870,2932,GO-20189023623,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,18,2018-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10871,2934,GO-20189023637,THEFT UNDER,2018-07-18,2018,July,Wednesday,18,199,17,2018-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10872,2942,GO-20189023762,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,10,2018-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10873,2943,GO-20181357140,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,20,2018-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10874,2954,GO-20189023829,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,12,2018-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10875,2956,GO-20189023855,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,10,2018-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10876,2957,GO-20189023912,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,9,2018-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10877,2959,GO-20189023913,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,18,2018-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10878,2981,GO-20181371204,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,10,2018-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10879,3018,GO-20181391639,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,17,2018-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10880,3019,GO-20189024452,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,17,2018-07-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10881,3025,GO-20189024490,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,8,2018-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10882,3030,GO-20189024569,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,18,2018-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10883,3036,GO-20181399927,THEFT UNDER,2018-07-13,2018,July,Friday,13,194,22,2018-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10884,3039,GO-20189024709,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,7,2018-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10885,3051,GO-20181415669,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10886,3061,GO-20189024924,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,1,2018-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10887,3084,GO-20189025207,THEFT UNDER,2018-04-02,2018,April,Monday,2,92,0,2018-08-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10888,3090,GO-20189025278,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,21,2018-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10889,3096,GO-20189025338,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,18,2018-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10890,3111,GO-20189025474,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,15,2018-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10891,3112,GO-20189025483,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,18,2018-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10892,3118,GO-20189025591,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,17,2018-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10893,3120,GO-20189025606,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,17,2018-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10894,3128,GO-20189025474,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,15,2018-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10895,3147,GO-20189025836,THEFT UNDER,2018-08-10,2018,August,Friday,10,222,9,2018-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10896,3155,GO-20189025906,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,8,2018-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10897,3188,GO-20189026259,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,8,2018-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10898,3196,GO-20189026334,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,13,2018-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10899,3197,GO-20189026338,THEFT UNDER,2018-08-14,2018,August,Tuesday,14,226,7,2018-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10900,3204,GO-20189026458,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,9,2018-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10901,3209,GO-20189026536,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,8,2018-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10902,3217,GO-20189026572,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,20,2018-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10903,3223,GO-20189026608,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,13,2018-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10904,3224,GO-20189026617,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,8,2018-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10905,3233,GO-20181516402,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,13,2018-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10906,3234,GO-20181516402,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,13,2018-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10907,3281,GO-20189027362,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,18,2018-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10908,3290,GO-20189027505,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,18,2018-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10909,3298,GO-20189027594,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,11,2018-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10910,3299,GO-20189027626,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,16,2018-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10911,3300,GO-20189027639,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,20,2018-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10912,3313,GO-20189027837,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,8,2018-08-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10913,3316,GO-20189027868,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,22,2018-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10914,3317,GO-20189027875,THEFT UNDER,2018-08-24,2018,August,Friday,24,236,8,2018-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10915,3320,GO-20189027915,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,14,2018-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10916,3322,GO-20189027957,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,16,2018-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10917,3323,GO-20189027957,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,16,2018-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10918,3332,GO-20181570017,THEFT OF EBIKE UNDER $5000,2018-08-20,2018,August,Monday,20,232,9,2018-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10919,3339,GO-20189028211,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,11,2018-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10920,3344,GO-20189028318,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,20,2018-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10921,3354,GO-20189028534,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,8,2018-08-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10922,3364,GO-20189028584,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,5,2018-08-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10923,4755,GO-20199021964,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,13,2019-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10924,4774,GO-20199022351,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,13,2019-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10925,4776,GO-20199022365,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,15,2019-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10926,4788,GO-20199022585,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,9,2019-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10927,4791,GO-20199022689,THEFT UNDER,2019-07-17,2019,July,Wednesday,17,198,13,2019-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10928,4799,GO-20199022842,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,13,2019-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10929,4800,GO-20199022842,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,13,2019-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10930,4805,GO-20191357638,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,18,2019-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10931,4807,GO-20199022914,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,13,2019-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10932,4810,GO-20199022978,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,8,2019-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10933,4813,GO-20199022960,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,21,2019-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10934,4815,GO-20199023024,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,14,2019-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10935,4825,GO-20191342777,THEFT UNDER - BICYCLE,2019-07-17,2019,July,Wednesday,17,198,15,2019-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10936,4827,GO-20199022978,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,8,2019-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10937,4829,GO-20199022978,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,8,2019-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10938,4834,GO-20199023185,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,0,2019-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10939,4843,GO-20199023332,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,19,2019-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10940,4846,GO-20199023371,THEFT UNDER,2019-07-23,2019,July,Tuesday,23,204,9,2019-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10941,4866,GO-20199023582,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,10,2019-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10942,4882,GO-20199023762,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,20,2019-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10943,4889,GO-20199023811,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,16,2019-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10944,4923,GO-20199024356,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,22,2019-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10945,4932,GO-20199024407,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,19,2019-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10946,4933,GO-20199024416,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,19,2019-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10947,4957,GO-20199024748,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,12,2019-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10948,4958,GO-20199024791,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,8,2019-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10949,4968,GO-20199024942,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,19,2019-08-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10950,4986,GO-20199024569,THEFT UNDER,2019-07-31,2019,July,Wednesday,31,212,8,2019-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10951,4988,GO-20199025288,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,11,2019-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10952,4994,GO-20199025349,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,9,2019-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10953,4997,GO-20199025302,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,11,2019-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10954,4998,GO-20199025305,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,10,2019-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10955,5008,GO-20199025397,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,9,2019-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10956,5009,GO-20199025537,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,9,2019-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10957,5019,GO-20199025605,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,14,2019-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10958,5023,GO-20199025662,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,14,2019-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10959,5027,GO-20199025699,B&E,2019-08-05,2019,August,Monday,5,217,18,2019-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10960,5047,GO-20199025909,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,19,2019-08-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10961,5064,GO-20199026172,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,0,2019-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10962,5066,GO-20199026191,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,11,2019-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10963,5073,GO-20199026263,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,17,2019-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10964,5075,GO-20199026269,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,21,2019-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10965,5102,GO-20199026783,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,19,2019-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10966,5109,GO-20199026882,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,19,2019-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10967,5110,GO-20199026886,THEFT UNDER,2019-08-19,2019,August,Monday,19,231,18,2019-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10968,5115,GO-20199027026,THEFT UNDER,2019-08-20,2019,August,Tuesday,20,232,10,2019-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10969,5135,GO-20199027254,THEFT UNDER,2019-08-20,2019,August,Tuesday,20,232,8,2019-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10970,5146,GO-20199027439,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,12,2019-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10971,5173,GO-20199027792,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,15,2019-08-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10972,5184,GO-20199028095,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,20,2019-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10973,5191,GO-20199028159,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,11,2019-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10974,5194,GO-20199028235,THEFT UNDER,2019-08-30,2019,August,Friday,30,242,12,2019-08-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10975,5202,GO-20199028369,THEFT UNDER,2019-07-31,2019,July,Wednesday,31,212,8,2019-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10976,5237,GO-20191684132,THEFT OVER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,7,2019-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10977,5250,GO-20199028883,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,9,2019-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10978,5262,GO-20199029130,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,21,2019-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10979,5276,GO-20191716982,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,11,2019-09-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10980,5293,GO-20199029510,THEFT UNDER - BICYCLE,2019-09-09,2019,September,Monday,9,252,19,2019-09-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10981,5322,GO-20191772553,B&E W'INTENT,2019-09-15,2019,September,Sunday,15,258,8,2019-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10982,5358,GO-20191782131,THEFT UNDER - BICYCLE,2019-09-16,2019,September,Monday,16,259,18,2019-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10983,5365,GO-20199030517,THEFT OF EBIKE UNDER $5000,2019-09-18,2019,September,Wednesday,18,261,12,2019-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10984,5369,GO-20199030730,THEFT UNDER,2019-09-19,2019,September,Thursday,19,262,7,2019-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10985,5372,GO-20199030885,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,20,2019-09-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10986,5380,GO-20191831501,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,12,2019-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10987,5381,GO-20199031133,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,5,2019-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10988,5391,GO-20199031294,THEFT UNDER,2019-09-23,2019,September,Monday,23,266,21,2019-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10989,5394,GO-20199031412,THEFT UNDER,2019-09-24,2019,September,Tuesday,24,267,9,2019-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10990,5441,GO-20199032094,THEFT UNDER,2019-09-29,2019,September,Sunday,29,272,22,2019-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10991,5397,GO-20191833752,THEFT UNDER - BICYCLE,2019-09-22,2019,September,Sunday,22,265,19,2019-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10992,5398,GO-20191846397,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,17,2019-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10993,5401,GO-20199031469,THEFT UNDER,2019-09-24,2019,September,Tuesday,24,267,17,2019-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10994,5404,GO-20199031524,THEFT UNDER,2019-09-25,2019,September,Wednesday,25,268,16,2019-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10995,5415,GO-20191860497,THEFT UNDER,2019-09-19,2019,September,Thursday,19,262,17,2019-09-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10996,5425,GO-20199031486,THEFT UNDER,2019-09-23,2019,September,Monday,23,266,19,2019-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10997,5437,GO-20199032007,THEFT UNDER,2019-09-29,2019,September,Sunday,29,272,18,2019-09-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10998,5440,GO-20199032061,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,11,2019-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -10999,5453,GO-20199032299,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,10,2019-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11000,5460,GO-20199032484,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,14,2019-10-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11001,5472,GO-20199032678,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,14,2019-10-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11002,5521,GO-20199033804,THEFT UNDER,2019-10-11,2019,October,Friday,11,284,9,2019-10-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11003,5530,GO-20199033548,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,9,2019-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11004,5552,GO-20199034572,THEFT UNDER,2019-10-20,2019,October,Sunday,20,293,17,2019-10-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11005,5558,GO-20199034645,THEFT UNDER,2019-10-21,2019,October,Monday,21,294,9,2019-10-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11006,5563,GO-20199034710,THEFT UNDER,2019-10-19,2019,October,Saturday,19,292,18,2019-10-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11007,5592,GO-20192045292,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,10,2019-10-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11008,5609,GO-20199035604,B&E,2019-10-26,2019,October,Saturday,26,299,2,2019-10-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11009,19822,GO-20159000310,THEFT UNDER,2015-01-12,2015,January,Monday,12,12,18,2015-01-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11010,15815,GO-20209021177,THEFT UNDER,2020-08-23,2020,August,Sunday,23,236,15,2020-08-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11011,20583,GO-20199020144,THEFT UNDER,2019-06-13,2019,June,Thursday,13,164,16,2019-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11012,19823,GO-2015125396,THEFT UNDER,2015-01-17,2015,January,Saturday,17,17,15,2015-01-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11013,15816,GO-20201610014,THEFT UNDER - BICYCLE,2020-08-21,2020,August,Friday,21,234,10,2020-08-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11014,19824,GO-2015235307,THEFT UNDER,2015-02-06,2015,February,Friday,6,37,14,2015-02-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11015,15817,GO-20209021679,THEFT UNDER,2020-08-28,2020,August,Friday,28,241,12,2020-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11016,20584,GO-20191229511,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,15,2019-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11017,19830,GO-20159001933,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,12,2015-04-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11018,15827,GO-20209023439,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,18,2020-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11019,15832,GO-20209024383,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,11,2020-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11020,15835,GO-20209025859,THEFT UNDER,2020-10-08,2020,October,Thursday,8,282,17,2020-10-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11021,15836,GO-20209025859,THEFT UNDER,2020-10-08,2020,October,Thursday,8,282,17,2020-10-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11022,15837,GO-20209026412,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,20,2020-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11023,15838,GO-20209026490,THEFT UNDER,2020-10-14,2020,October,Wednesday,14,288,17,2020-10-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11024,15839,GO-20201961184,THEFT UNDER - BICYCLE,2020-10-15,2020,October,Thursday,15,289,17,2020-10-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11025,15840,GO-20201976392,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,20,2020-10-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11026,16118,GO-20169010080,THEFT UNDER,2016-09-06,2016,September,Tuesday,6,250,18,2016-09-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11027,16120,GO-2017534658,THEFT FROM MOTOR VEHICLE UNDER,2017-03-26,2017,March,Sunday,26,85,10,2017-03-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11028,16121,GO-2017534658,THEFT FROM MOTOR VEHICLE UNDER,2017-03-26,2017,March,Sunday,26,85,10,2017-03-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11029,16124,GO-20179004577,THEFT UNDER,2017-04-10,2017,April,Monday,10,100,16,2017-04-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11030,16127,GO-20179006056,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,15,2017-05-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11031,16128,GO-20179006373,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,9,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11032,16130,GO-20179006942,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,18,2017-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11033,16135,GO-20179007416,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,13,2017-06-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11034,16136,GO-20179007610,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,13,2017-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11035,16137,GO-20179007707,THEFT UNDER - BICYCLE,2017-05-27,2017,May,Saturday,27,147,7,2017-06-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11036,16140,GO-20171042026,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,6,2017-06-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11037,16143,GO-20179008323,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,14,2017-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11038,16149,GO-20179008805,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,6,2017-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11039,16150,GO-20179008850,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,17,2017-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11040,16151,GO-20179008970,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,11,2017-06-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11041,16153,GO-20179009112,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,9,2017-06-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11042,16154,GO-20171163838,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,7,2017-06-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11043,16155,GO-20179009319,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,22,2017-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11044,16156,GO-20179009547,THEFT UNDER,2017-07-06,2017,July,Thursday,6,187,17,2017-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11045,16157,GO-20179009906,B&E,2017-07-09,2017,July,Sunday,9,190,21,2017-07-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11046,16159,GO-20171287842,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,13,2017-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11047,16161,GO-20171318401,THEFT OVER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,14,2017-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11048,16162,GO-20179010983,THEFT OF EBIKE UNDER $5000,2017-07-21,2017,July,Friday,21,202,16,2017-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11049,16163,GO-20179011330,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,18,2017-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11050,16164,GO-20179011517,THEFT UNDER,2017-08-01,2017,August,Tuesday,1,213,8,2017-08-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11051,16165,GO-20179011570,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,20,2017-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11052,16168,GO-20179011919,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,13,2017-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11053,16169,GO-20179012279,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,13,2017-08-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11054,16170,GO-20171471635,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,17,2017-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11055,16172,GO-20179012955,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,12,2017-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11056,16173,GO-20179013182,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,17,2017-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11057,16174,GO-20179013327,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,9,2017-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11058,16175,GO-20179014005,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,10,2017-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11059,16176,GO-20179014160,THEFT UNDER,2017-07-24,2017,July,Monday,24,205,10,2017-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11060,16177,GO-20171621057,THEFT UNDER - BICYCLE,2017-09-06,2017,September,Wednesday,6,249,9,2017-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11061,16180,GO-20179014729,THEFT UNDER,2017-09-13,2017,September,Wednesday,13,256,9,2017-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11062,16182,GO-20179015069,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,9,2017-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11063,16191,GO-20179016456,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,7,2017-10-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11064,16198,GO-20179017334,THEFT UNDER - BICYCLE,2017-10-16,2017,October,Monday,16,289,0,2017-10-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11065,16199,GO-20179017387,THEFT UNDER - BICYCLE,2017-10-14,2017,October,Saturday,14,287,20,2017-10-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11066,16201,GO-20179017774,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,10,2017-10-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11067,16202,GO-20179017793,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,8,2017-10-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11068,16209,GO-20179019778,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,8,2017-11-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11069,16211,GO-20179020354,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,18,2017-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11070,16215,GO-20179021136,THEFT UNDER - BICYCLE,2017-12-01,2017,December,Friday,1,335,8,2017-12-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11071,16216,GO-20179021936,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,19,2017-12-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11072,16219,GO-20189002260,THEFT UNDER - BICYCLE,2018-01-23,2018,January,Tuesday,23,23,8,2018-01-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11073,16220,GO-20189003045,THEFT UNDER,2018-01-30,2018,January,Tuesday,30,30,22,2018-01-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11074,16221,GO-20189003045,THEFT UNDER,2018-01-30,2018,January,Tuesday,30,30,22,2018-01-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11075,16224,GO-20189005856,THEFT UNDER - BICYCLE,2018-02-23,2018,February,Friday,23,54,9,2018-02-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11076,16226,GO-2018714369,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,15,2018-04-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11077,16229,GO-20189013022,THEFT UNDER - BICYCLE,2018-04-26,2018,April,Thursday,26,116,16,2018-04-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11078,16231,GO-20189013407,THEFT UNDER - BICYCLE,2018-04-30,2018,April,Monday,30,120,9,2018-04-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11079,16234,GO-20189014555,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,8,2018-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11080,16236,GO-20189015411,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,14,2018-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11081,16238,GO-20181022604,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,7,2018-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11082,16239,GO-20189017533,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,9,2018-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11083,16241,GO-20189018633,THEFT UNDER,2018-06-13,2018,June,Wednesday,13,164,22,2018-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11084,16245,GO-20189019747,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,5,2018-06-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11085,16247,GO-20189020495,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,14,2018-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11086,16249,GO-20189020892,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,17,2018-07-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11087,16250,GO-20189021178,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,9,2018-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11088,16251,GO-20189021178,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,9,2018-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11089,16252,GO-20189021679,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,17,2018-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11090,16253,GO-20189022086,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,22,2018-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11091,16254,GO-20189022086,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,22,2018-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11092,16257,GO-20181294901,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,13,2018-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11093,16259,GO-20189023041,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,11,2018-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11094,16260,GO-20189023271,THEFT UNDER,2018-07-20,2018,July,Friday,20,201,18,2018-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11095,16261,GO-20189023679,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,5,2018-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11096,16264,GO-20181363820,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,13,2018-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11097,16265,GO-20189024064,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,19,2018-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11098,16267,GO-20189024268,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,11,2018-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11099,16268,GO-20189024412,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,11,2018-07-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11100,16270,GO-20189024543,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,17,2018-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11101,16271,GO-20189024673,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,10,2018-08-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11102,16272,GO-20189024709,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,7,2018-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11103,16273,GO-20181415669,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11104,16276,GO-20189025664,THEFT UNDER,2018-08-09,2018,August,Thursday,9,221,2,2018-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11105,16279,GO-20189027558,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,17,2018-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11106,16280,GO-20189027578,THEFT UNDER,2018-08-17,2018,August,Friday,17,229,9,2018-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11107,16283,GO-20189028475,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,17,2018-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11108,16284,GO-20181594484,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,19,2018-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11109,16286,GO-20189029114,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,16,2018-09-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11110,16287,GO-20189029742,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,19,2018-09-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11111,16289,GO-20189030853,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,8,2018-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11112,16293,GO-20189031788,THEFT UNDER - SHOPLIFTING,2018-09-24,2018,September,Monday,24,267,18,2018-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11113,16294,GO-20189031764,THEFT UNDER,2018-09-22,2018,September,Saturday,22,265,20,2018-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11114,16297,GO-20189033364,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,17,2018-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11115,23001,GO-20169013957,THEFT UNDER,2016-11-28,2016,November,Monday,28,333,14,2016-11-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11116,16604,GO-20159008305,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,16,2015-10-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11117,19934,GO-20169008944,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,0,2016-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11118,23002,GO-20169014622,THEFT UNDER - BICYCLE,2016-12-13,2016,December,Tuesday,13,348,22,2016-12-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11119,19831,GO-20159001973,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,9,2015-04-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11120,16607,GO-20151744460,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,11,2015-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11121,23003,GO-20179001064,THEFT UNDER - BICYCLE,2017-01-17,2017,January,Tuesday,17,17,10,2017-01-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11122,16612,GO-20159009395,THEFT UNDER,2015-11-04,2015,November,Wednesday,4,308,8,2015-11-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11123,20587,GO-20199021539,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,16,2019-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11124,23004,GO-20179002294,THEFT UNDER - BICYCLE,2017-02-21,2017,February,Tuesday,21,52,19,2017-02-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11125,16903,GO-20142560229,FTC PROBATION ORDER,2014-07-07,2014,July,Monday,7,188,9,2014-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11126,16613,GO-20151971265,THEFT UNDER,2015-11-17,2015,November,Tuesday,17,321,7,2015-11-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11127,19833,GO-2015672168,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,23,2015-04-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11128,20589,GO-20199021830,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,8,2019-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11129,23006,GO-20179003451,THEFT UNDER,2016-11-01,2016,November,Tuesday,1,306,23,2017-03-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11130,16615,GO-20152027628,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,12,2015-11-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11131,16617,GO-20159010735,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,13,2015-12-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11132,16621,GO-2016200998,THEFT UNDER,2016-02-03,2016,February,Wednesday,3,34,1,2016-02-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11133,16622,GO-2016200998,THEFT UNDER,2016-02-03,2016,February,Wednesday,3,34,1,2016-02-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11134,16623,GO-2016211459,POSSESSION PROPERTY OBC UNDER,2016-02-04,2016,February,Thursday,4,35,21,2016-02-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11135,16624,GO-2016211459,POSSESSION PROPERTY OBC UNDER,2016-02-04,2016,February,Thursday,4,35,21,2016-02-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11136,16626,GO-20169002724,THEFT UNDER - BICYCLE,2016-03-22,2016,March,Tuesday,22,82,9,2016-03-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11137,16627,GO-20169002801,THEFT UNDER - BICYCLE,2016-03-25,2016,March,Friday,25,85,19,2016-03-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11138,16631,GO-2016736817,THEFT UNDER - BICYCLE,2016-04-17,2016,April,Sunday,17,108,15,2016-04-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11139,16634,GO-20169004179,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,19,2016-05-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11140,16635,GO-2016779102,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,16,2016-05-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11141,16639,GO-20169004509,THEFT UNDER - BICYCLE,2016-05-14,2016,May,Saturday,14,135,3,2016-05-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11142,16641,GO-2016874311,THEFT UNDER - BICYCLE,2016-05-20,2016,May,Friday,20,141,18,2016-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11143,16644,GO-20169005028,THEFT UNDER - BICYCLE,2016-05-26,2016,May,Thursday,26,147,16,2016-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11144,16645,GO-20169005068,THEFT UNDER,2016-05-28,2016,May,Saturday,28,149,18,2016-05-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11145,16647,GO-20169005149,THEFT UNDER,2016-05-22,2016,May,Sunday,22,143,2,2016-05-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11146,16651,GO-20169005954,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,8,2016-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11147,16653,GO-20161083303,B&E,2016-06-20,2016,June,Monday,20,172,8,2016-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11148,16654,GO-20169006256,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,13,2016-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11149,16655,GO-20169006349,THEFT UNDER,2016-06-25,2016,June,Saturday,25,177,8,2016-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11150,16656,GO-20161104766,THEFT OF EBIKE UNDER $5000,2016-06-24,2016,June,Friday,24,176,12,2016-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11151,16657,GO-20169006450,THEFT UNDER - BICYCLE,2016-06-27,2016,June,Monday,27,179,9,2016-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11152,16658,GO-20161123590,THEFT OVER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,7,2016-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11153,16661,GO-20169006926,THEFT UNDER,2016-07-01,2016,July,Friday,1,183,16,2016-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11154,16666,GO-20169007536,THEFT UNDER,2016-07-20,2016,July,Wednesday,20,202,18,2016-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11155,16671,GO-20161391142,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,16,2016-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11156,16672,GO-20169008714,THEFT UNDER,2016-08-13,2016,August,Saturday,13,226,10,2016-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11157,16673,GO-20169008724,THEFT UNDER - BICYCLE,2016-08-13,2016,August,Saturday,13,226,14,2016-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11158,16675,GO-20169008969,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,17,2016-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11159,16676,GO-20169008969,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,17,2016-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11160,16677,GO-20161476696,THEFT OF EBIKE UNDER $5000,2016-08-20,2016,August,Saturday,20,233,8,2016-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11161,16683,GO-20169010337,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,12,2016-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11162,16686,GO-20169010578,THEFT UNDER,2016-09-17,2016,September,Saturday,17,261,3,2016-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11163,16690,GO-20169010925,THEFT UNDER,2016-09-22,2016,September,Thursday,22,266,14,2016-09-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11164,16691,GO-20169010946,THEFT UNDER,2016-09-22,2016,September,Thursday,22,266,14,2016-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11165,16863,GO-20149002922,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,15,2014-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11166,16692,GO-20169011316,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,13,2016-09-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11167,16695,GO-20169011508,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,12,2016-10-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11168,16699,GO-20169011989,THEFT UNDER - BICYCLE,2016-10-12,2016,October,Wednesday,12,286,13,2016-10-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11169,16700,GO-20169012610,THEFT UNDER - BICYCLE,2016-10-21,2016,October,Friday,21,295,23,2016-10-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11170,16702,GO-20169012978,THEFT UNDER - BICYCLE,2016-11-04,2016,November,Friday,4,309,9,2016-11-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11171,16708,GO-20162138869,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,0,2016-12-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11172,16719,GO-20179002503,THEFT UNDER,2017-02-23,2017,February,Thursday,23,54,22,2017-02-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11173,16904,GO-20149005199,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,9,2014-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11174,16864,GO-20149003207,THEFT UNDER,2014-05-06,2014,May,Tuesday,6,126,9,2014-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11175,16865,GO-20149003215,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,11,2014-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11176,16867,GO-20149003342,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,5,2014-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11177,16868,GO-20149003346,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,8,2014-05-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11178,16869,GO-20149003369,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,9,2014-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11179,16870,GO-20149003400,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,11,2014-05-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11180,16871,GO-20149003404,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,15,2014-05-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11181,16872,GO-20142103476,THEFT UNDER,2014-05-18,2014,May,Sunday,18,138,11,2014-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11182,16873,GO-20142125389,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,10,2014-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11183,16874,GO-20149003528,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,20,2014-05-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11184,16875,GO-20149003536,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,17,2014-05-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11185,16876,GO-20149003564,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,1,2014-05-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11186,16877,GO-20149003572,THEFT UNDER,2014-05-20,2014,May,Tuesday,20,140,13,2014-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11187,16880,GO-20149003827,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,16,2014-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11188,16881,GO-20142219464,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,7,2014-06-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11189,16885,GO-20142264270,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,21,2014-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11190,16888,GO-20142284063,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,8,2014-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11191,16889,GO-20149003963,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,17,2014-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11192,16892,GO-20149004312,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,11,2014-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11193,16893,GO-20149004362,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,16,2014-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11194,16894,GO-20149004362,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,16,2014-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11195,16896,GO-20142423265,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,11,2014-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11196,16899,GO-20149004812,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,18,2014-07-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11197,16902,GO-20149005101,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,9,2014-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11198,16905,GO-20149005345,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,23,2014-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11199,16909,GO-20149005737,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,22,2014-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11200,18778,GO-20209028441,THEFT UNDER,2020-10-20,2020,October,Tuesday,20,294,7,2020-11-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11201,18784,GO-20202198554,THEFT OF EBIKE UNDER $5000,2020-11-17,2020,November,Tuesday,17,322,14,2020-11-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11202,18793,GO-20209032732,THEFT UNDER,2020-12-22,2020,December,Tuesday,22,357,9,2020-12-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11203,18796,GO-20209024273,THEFT UNDER,2020-09-23,2020,September,Wednesday,23,267,9,2020-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11204,18797,GO-20209024277,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,12,2020-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11205,18798,GO-20209024395,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,15,2020-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11206,18799,GO-20209024403,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,11,2020-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11207,18809,GO-20209026086,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,20,2020-10-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11208,19390,GO-20179005024,THEFT UNDER,2017-04-15,2017,April,Saturday,15,105,21,2017-04-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11209,19392,GO-20179005293,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,2,2017-04-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11210,19393,GO-20179006063,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,8,2017-05-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11211,19394,GO-20179006238,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,15,2017-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11212,19396,GO-20179006350,THEFT UNDER,2017-05-15,2017,May,Monday,15,135,17,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11213,19397,GO-20179006354,THEFT UNDER,2017-05-07,2017,May,Sunday,7,127,14,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11214,19398,GO-20179006373,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,9,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11215,19402,GO-20179006888,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,9,2017-05-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11216,19403,GO-20179007028,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,9,2017-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11217,19406,GO-20171005451,THEFT UNDER - BICYCLE,2017-05-30,2017,May,Tuesday,30,150,15,2017-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11218,19407,GO-20171018500,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,9,2017-06-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11219,19408,GO-20179008058,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,8,2017-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11220,19410,GO-20171059124,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,12,2017-06-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11221,19411,GO-20179008257,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,13,2017-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11222,19412,GO-20179008270,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,21,2017-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11223,19419,GO-20179009467,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,23,2017-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11224,19424,GO-20171308836,THEFT UNDER,2017-06-27,2017,June,Tuesday,27,178,9,2017-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11225,19834,GO-2015673806,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,16,2015-04-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11226,19836,GO-20159002310,THEFT UNDER,2015-01-01,2015,January,Thursday,1,1,17,2015-04-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11227,19837,GO-20159002392,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,9,2015-05-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11228,19839,GO-20159003115,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,5,2015-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11229,19841,GO-20159003318,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,13,2015-06-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11230,19843,GO-2015935828,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,14,2015-06-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11231,19844,GO-20159003483,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,8,2015-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11232,19846,GO-20151018512,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,22,2015-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11233,19847,GO-20159003874,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,20,2015-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11234,19848,GO-20159003898,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,19,2015-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11235,19849,GO-20159003929,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,9,2015-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11236,19850,GO-20159004175,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,0,2015-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11237,19854,GO-20159004574,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,6,2015-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11238,19855,GO-20159004668,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,16,2015-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11239,19856,GO-20159004707,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,21,2015-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11240,19858,GO-20159004885,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,11,2015-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11241,19859,GO-20159005042,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,11,2015-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11242,19860,GO-20159005069,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,8,2015-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11243,19861,GO-20159005408,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,9,2015-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11244,19865,GO-20151432570,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,9,2015-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11245,19866,GO-20159005969,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,14,2015-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11246,19869,GO-20159006567,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,16,2015-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11247,19870,GO-20159006919,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,16,2015-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11248,19871,GO-20151562970,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,8,2015-09-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11249,19877,GO-20159008529,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,18,2015-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11250,19878,GO-20151802070,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,15,2015-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11251,20590,GO-20199021856,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,9,2019-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11252,19879,GO-20159008868,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,15,2015-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11253,19919,GO-20169006151,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,8,2016-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11254,19882,GO-20151957788,THEFT UNDER,2015-11-03,2015,November,Tuesday,3,307,0,2015-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11255,19883,GO-20159010116,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,10,2015-11-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11256,19886,GO-20159010860,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,9,2015-12-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11257,19889,GO-20169000520,THEFT UNDER,2015-12-21,2015,December,Monday,21,355,8,2016-01-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11258,19890,GO-20169000886,THEFT UNDER,2016-01-26,2016,January,Tuesday,26,26,18,2016-01-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11259,19896,GO-20169002620,THEFT UNDER,2016-03-21,2016,March,Monday,21,81,10,2016-03-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11260,19897,GO-20169002870,THEFT UNDER - BICYCLE,2016-03-25,2016,March,Friday,25,85,7,2016-03-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11261,19899,GO-20169003484,THEFT UNDER,2016-04-16,2016,April,Saturday,16,107,13,2016-04-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11262,19900,GO-20169003613,THEFT UNDER - BICYCLE,2016-04-19,2016,April,Tuesday,19,110,9,2016-04-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11263,19904,GO-20169004334,THEFT UNDER,2016-05-09,2016,May,Monday,9,130,12,2016-05-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11264,19905,GO-20169004619,THEFT UNDER,2016-05-16,2016,May,Monday,16,137,18,2016-05-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11265,19907,GO-20169004824,THEFT UNDER,2016-05-22,2016,May,Sunday,22,143,12,2016-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11266,19909,GO-2016888538,THEFT UNDER - BICYCLE,2016-05-23,2016,May,Monday,23,144,16,2016-05-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11267,19911,GO-20169005018,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,15,2016-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11268,19912,GO-2016933815,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,18,2016-05-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11269,19917,GO-20161071720,THEFT OF EBIKE UNDER $5000,2016-06-19,2016,June,Sunday,19,171,7,2016-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11270,19922,GO-20169007100,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,19,2016-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11271,19926,GO-20169007503,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,9,2016-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11272,19928,GO-20169007685,THEFT OF EBIKE UNDER $5000,2016-07-24,2016,July,Sunday,24,206,16,2016-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11273,19929,GO-20169007791,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,9,2016-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11274,19930,GO-20169008089,THEFT UNDER - BICYCLE,2016-07-29,2016,July,Friday,29,211,15,2016-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11275,19931,GO-20169008286,THEFT UNDER,2016-08-05,2016,August,Friday,5,218,20,2016-08-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11276,19932,GO-20161412327,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,21,2016-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11277,19933,GO-20169008528,THEFT UNDER,2016-08-05,2016,August,Friday,5,218,9,2016-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11278,19935,GO-20169009094,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,8,2016-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11279,19936,GO-20169009293,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,20,2016-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11280,19937,GO-20169009610,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,19,2016-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11281,19938,GO-20169009657,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,8,2016-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11282,19939,GO-20169009766,THEFT UNDER - BICYCLE,2016-08-26,2016,August,Friday,26,239,17,2016-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11283,19942,GO-20161583134,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,16,2016-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11284,19943,GO-20169010449,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,17,2016-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11285,19946,GO-20169011820,THEFT UNDER,2016-10-10,2016,October,Monday,10,284,10,2016-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11286,19947,GO-20169011841,THEFT UNDER,2016-10-01,2016,October,Saturday,1,275,15,2016-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11287,19949,GO-20169011931,THEFT UNDER,2016-10-11,2016,October,Tuesday,11,285,12,2016-10-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11288,19950,GO-20169011991,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,13,2016-10-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11289,19951,GO-20169012022,THEFT UNDER - BICYCLE,2016-10-12,2016,October,Wednesday,12,286,9,2016-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11290,19961,GO-20179000812,THEFT UNDER,2017-01-18,2017,January,Wednesday,18,18,9,2017-01-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11291,19965,GO-20179001375,THEFT UNDER - BICYCLE,2017-01-30,2017,January,Monday,30,30,20,2017-01-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11292,19966,GO-20179002189,THEFT UNDER - BICYCLE,2017-02-18,2017,February,Saturday,18,49,16,2017-02-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11293,19972,GO-2017614405,THEFT UNDER - BICYCLE,2017-03-31,2017,March,Friday,31,90,15,2017-04-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11294,19973,GO-20179004570,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,9,2017-04-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11295,20135,GO-20141492599,THEFT OVER,2014-01-25,2014,January,Saturday,25,25,8,2014-02-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11296,20136,GO-20149001330,THEFT UNDER,2014-02-16,2014,February,Sunday,16,47,14,2014-02-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11297,20137,GO-20141760643,THEFT UNDER,2014-03-24,2014,March,Monday,24,83,12,2014-03-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11298,20140,GO-20149002669,THEFT UNDER,2014-04-08,2014,April,Tuesday,8,98,2,2014-04-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11299,20141,GO-20141870591,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,13,2014-04-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11300,20145,GO-20149003059,THEFT UNDER,2014-04-28,2014,April,Monday,28,118,21,2014-04-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11301,20149,GO-20149003524,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,16,2014-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11302,20153,GO-20142242705,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,16,2014-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11303,20155,GO-20142296318,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,15,2014-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11304,20156,GO-20149003960,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,10,2014-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11305,20158,GO-20142296362,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,11,2014-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11306,20161,GO-20149004197,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,0,2014-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11307,20162,GO-20149004231,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,9,2014-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11308,20163,GO-20149004243,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,18,2014-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11309,20166,GO-20149004467,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,10,2014-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11310,20168,GO-20142430215,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,12,2014-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11311,20169,GO-20142429738,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,17,2014-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11312,20172,GO-20149004857,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,22,2014-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11313,20173,GO-20149004914,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,1,2014-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11314,20174,GO-20149004914,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,1,2014-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11315,20175,GO-20149004947,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,20,2014-07-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11316,20176,GO-20149005004,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,9,2014-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11317,20581,GO-20199019307,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,15,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11318,20582,GO-20199019338,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,4,2019-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11319,23007,GO-2017489981,THEFT UNDER - BICYCLE,2017-03-18,2017,March,Saturday,18,77,23,2017-03-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11320,20593,GO-20199022456,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,20,2019-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11321,23009,GO-2017593953,THEFT UNDER - BICYCLE,2017-03-17,2017,March,Friday,17,76,12,2017-04-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11322,20598,GO-20199023709,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,10,2019-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11323,23010,GO-20179005205,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,11,2017-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11324,20602,GO-20199024197,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,6,2019-07-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11325,23012,GO-20179006341,THEFT UNDER,2017-05-15,2017,May,Monday,15,135,13,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11326,20605,GO-20199024569,THEFT UNDER,2019-07-31,2019,July,Wednesday,31,212,8,2019-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11327,23013,GO-20179006350,THEFT UNDER,2017-05-15,2017,May,Monday,15,135,17,2017-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11328,20606,GO-20199024648,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,21,2019-08-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11329,23016,GO-20179006951,THEFT UNDER - BICYCLE,2017-05-22,2017,May,Monday,22,142,22,2017-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11330,20607,GO-20199024648,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,21,2019-08-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11331,20608,GO-20199024797,THEFT UNDER,2019-06-23,2019,June,Sunday,23,174,8,2019-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11332,20610,GO-20199025108,THEFT UNDER,2019-08-05,2019,August,Monday,5,217,13,2019-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11333,20611,GO-20199025239,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,13,2019-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11334,20613,GO-20199025421,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,18,2019-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11335,20615,GO-20199025719,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,1,2019-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11336,20618,GO-20199026533,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,16,2019-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11337,20622,GO-20199026766,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,18,2019-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11338,20623,GO-20199026766,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,18,2019-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11339,20631,GO-20199027649,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,18,2019-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11340,20633,GO-20199027892,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,18,2019-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11341,20634,GO-20199027892,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,18,2019-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11342,20635,GO-20199028095,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,20,2019-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11343,20636,GO-20191645890,THEFT UNDER - BICYCLE,2019-08-28,2019,August,Wednesday,28,240,20,2019-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11344,20648,GO-20199030760,THEFT UNDER,2019-09-18,2019,September,Wednesday,18,261,8,2019-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11345,20651,GO-20199031486,THEFT UNDER,2019-09-23,2019,September,Monday,23,266,19,2019-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11346,20653,GO-20199031602,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,1,2019-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11347,20658,GO-20199033269,THEFT UNDER,2019-10-07,2019,October,Monday,7,280,8,2019-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11348,20663,GO-20192028234,THEFT UNDER - BICYCLE,2019-10-20,2019,October,Sunday,20,293,20,2019-10-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11349,20671,GO-20192102466,THEFT UNDER,2019-10-26,2019,October,Saturday,26,299,9,2019-10-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11350,20677,GO-20192187996,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,9,2019-11-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11351,20680,GO-20199038134,THEFT UNDER,2019-11-18,2019,November,Monday,18,322,8,2019-11-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11352,20684,GO-20199039876,THEFT UNDER,2019-12-04,2019,December,Wednesday,4,338,8,2019-12-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11353,20685,GO-20192375035,THEFT OF EBIKE UNDER $5000,2019-12-09,2019,December,Monday,9,343,18,2019-12-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11354,20689,GO-20209001108,THEFT UNDER,2020-01-08,2020,January,Wednesday,8,8,15,2020-01-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11355,20691,GO-20209001586,THEFT UNDER,2020-01-13,2020,January,Monday,13,13,20,2020-01-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11356,20692,GO-20209001830,THEFT UNDER,2020-01-16,2020,January,Thursday,16,16,8,2020-01-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11357,23172,GO-2019652601,THEFT UNDER,2019-04-07,2019,April,Sunday,7,97,11,2019-04-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11358,20694,GO-20209007935,THEFT UNDER,2020-03-02,2020,March,Monday,2,62,16,2020-03-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11359,20709,GO-2020945897,THEFT OF EBIKE UNDER $5000,2020-05-11,2020,May,Monday,11,132,10,2020-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11360,20710,GO-20209013822,THEFT UNDER,2020-05-23,2020,May,Saturday,23,144,18,2020-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11361,20722,GO-20201196999,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,17,2020-06-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11362,20723,GO-20209016591,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,15,2020-06-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11363,20724,GO-20201211930,THEFT OF EBIKE UNDER $5000,2020-07-01,2020,July,Wednesday,1,183,14,2020-07-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11364,20726,GO-20201230882,THEFT UNDER - BICYCLE,2020-07-03,2020,July,Friday,3,185,18,2020-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11365,20730,GO-20209017195,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,13,2020-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11366,20731,GO-20209017195,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,13,2020-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11367,20732,GO-20201296243,B&E,2020-07-10,2020,July,Friday,10,192,11,2020-07-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11368,20734,GO-20209018219,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,13,2020-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11369,20736,GO-20209018673,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,19,2020-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11370,20737,GO-20209018706,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,15,2020-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11371,20742,GO-20209019766,THEFT UNDER,2020-08-09,2020,August,Sunday,9,222,14,2020-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11372,20743,GO-20209019766,THEFT UNDER,2020-08-09,2020,August,Sunday,9,222,14,2020-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11373,20744,GO-20201469960,THEFT UNDER - BICYCLE,2020-08-06,2020,August,Thursday,6,219,18,2020-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11374,20772,GO-20209022386,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,21,2020-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11375,20779,GO-20209023794,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,7,2020-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11376,22584,GO-20209028762,THEFT UNDER,2020-11-05,2020,November,Thursday,5,310,13,2020-11-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11377,22587,GO-20209028962,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,15,2020-11-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11378,22592,GO-20209030084,THEFT UNDER,2020-11-19,2020,November,Thursday,19,324,15,2020-11-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11379,22608,GO-20199023760,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,17,2019-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11380,22611,GO-20199024347,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,3,2019-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11381,22616,GO-20199025305,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,10,2019-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11382,22617,GO-20199025397,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,9,2019-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11383,22626,GO-20199027195,THEFT UNDER,2019-08-21,2019,August,Wednesday,21,233,18,2019-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11384,22628,GO-20199027305,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,22,2019-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11385,22639,GO-20191645778,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,20,2019-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11386,22641,GO-20199029195,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,13,2019-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11387,22649,GO-20199030848,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,23,2019-09-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11388,22651,GO-20199031650,THEFT UNDER,2019-09-25,2019,September,Wednesday,25,268,17,2019-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11389,22660,GO-20199033548,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,9,2019-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11390,22664,GO-20199033861,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,17,2019-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11391,22667,GO-20199034585,THEFT UNDER,2019-10-19,2019,October,Saturday,19,292,9,2019-10-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11392,22668,GO-20199034748,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,21,2019-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11393,22678,GO-20199036521,THEFT UNDER,2019-11-04,2019,November,Monday,4,308,17,2019-11-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11394,22683,GO-20192243742,THEFT OF EBIKE UNDER $5000,2019-11-20,2019,November,Wednesday,20,324,10,2019-11-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11395,22685,GO-20199038813,THEFT UNDER,2019-11-25,2019,November,Monday,25,329,16,2019-11-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11396,22687,GO-20199040233,THEFT UNDER,2019-11-29,2019,November,Friday,29,333,0,2019-12-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11397,22692,GO-20209001598,THEFT UNDER,2020-01-09,2020,January,Thursday,9,9,16,2020-01-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11398,22697,GO-20209009015,THEFT UNDER,2019-12-01,2019,December,Sunday,1,335,0,2020-03-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11399,22699,GO-20209009219,THEFT UNDER,2020-03-17,2020,March,Tuesday,17,77,9,2020-03-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11400,22707,GO-2020667695,THEFT UNDER - BICYCLE,2020-04-05,2020,April,Sunday,5,96,20,2020-04-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11401,22718,GO-2020935180,B&E,2020-05-21,2020,May,Thursday,21,142,0,2020-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11402,22721,GO-20209014073,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,7,2020-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11403,22727,GO-20201081609,THEFT UNDER - BICYCLE,2020-06-08,2020,June,Monday,8,160,23,2020-06-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11404,22746,GO-20209017520,THEFT UNDER,2020-07-13,2020,July,Monday,13,195,17,2020-07-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11405,22748,GO-20209018082,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,7,2020-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11406,22749,GO-20209018421,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,16,2020-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11407,22750,GO-20209018451,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,15,2020-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11408,22755,GO-20209019178,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,22,2020-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11409,22756,GO-20201455065,THEFT OF EBIKE OVER $5000,2020-07-29,2020,July,Wednesday,29,211,22,2020-08-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11410,22761,GO-20201532975,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,15,2020-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11411,22763,GO-20209020605,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,17,2020-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11412,22765,GO-20209021298,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,16,2020-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11413,22766,GO-20209021653,THEFT UNDER,2020-08-28,2020,August,Friday,28,241,10,2020-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11414,22769,GO-20209021835,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,7,2020-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11415,22778,GO-20201779564,THEFT OF EBIKE UNDER $5000,2020-09-19,2020,September,Saturday,19,263,15,2020-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11416,22781,GO-20201858142,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,21,2020-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11417,22783,GO-20201852064,THEFT OF EBIKE UNDER $5000,2020-09-21,2020,September,Monday,21,265,20,2020-09-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11418,22786,GO-20209025849,THEFT UNDER,2020-10-08,2020,October,Thursday,8,282,19,2020-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11419,22791,GO-20201952693,THEFT UNDER - BICYCLE,2020-10-10,2020,October,Saturday,10,284,20,2020-10-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11420,23000,GO-20162089602,THEFT UNDER - BICYCLE,2016-11-24,2016,November,Thursday,24,329,18,2016-11-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11421,23017,GO-20179006951,THEFT UNDER - BICYCLE,2017-05-22,2017,May,Monday,22,142,22,2017-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11422,23018,GO-20179007169,THEFT UNDER,2017-05-28,2017,May,Sunday,28,148,12,2017-05-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11423,23020,GO-20179007530,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,14,2017-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11424,23023,GO-20179007846,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,21,2017-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11425,23028,GO-20179008349,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,13,2017-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11426,23029,GO-20179008557,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,18,2017-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11427,23031,GO-20179008569,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,17,2017-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11428,23037,GO-20179009449,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,6,2017-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11429,23038,GO-20179009620,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,10,2017-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11430,23039,GO-20179009619,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,22,2017-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11431,23041,GO-20179010072,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,7,2017-07-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11432,23042,GO-20179010835,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,12,2017-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11433,23043,GO-20179011181,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,6,2017-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11434,23046,GO-20179011921,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,9,2017-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11435,23048,GO-20179012150,THEFT FROM MOTOR VEHICLE UNDER,2017-08-10,2017,August,Thursday,10,222,20,2017-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11436,23055,GO-20171551577,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,14,2017-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11437,23057,GO-20171655449,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,16,2017-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11438,23058,GO-20179015069,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,9,2017-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11439,23060,GO-20179015617,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,19,2017-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11440,23061,GO-20179015825,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,18,2017-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11441,23063,GO-20179016371,THEFT UNDER - BICYCLE,2017-10-02,2017,October,Monday,2,275,12,2017-10-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11442,23065,GO-20179016576,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,22,2017-10-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11443,23066,GO-20179016638,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,17,2017-10-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11444,23067,GO-20179016926,THEFT UNDER,2017-09-26,2017,September,Tuesday,26,269,17,2017-10-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11445,23069,GO-20179017166,THEFT UNDER - BICYCLE,2017-10-12,2017,October,Thursday,12,285,16,2017-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11446,23079,GO-20171963922,B&E,2017-10-16,2017,October,Monday,16,289,0,2017-10-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11447,23083,GO-20179019840,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,20,2017-11-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11448,23085,GO-20179021697,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,18,2017-12-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11449,23086,GO-2018179772,THEFT UNDER - BICYCLE,2017-11-21,2017,November,Tuesday,21,325,8,2018-01-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11450,23087,GO-20189003426,THEFT UNDER - BICYCLE,2018-02-03,2018,February,Saturday,3,34,18,2018-02-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11451,23088,GO-20189004185,THEFT UNDER,2018-02-09,2018,February,Friday,9,40,14,2018-02-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11452,23090,GO-20189006049,THEFT UNDER - BICYCLE,2018-02-25,2018,February,Sunday,25,56,13,2018-02-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11453,23091,GO-20189006459,THEFT UNDER - BICYCLE,2018-02-26,2018,February,Monday,26,57,9,2018-03-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11454,23092,GO-20189007677,THEFT UNDER - BICYCLE,2018-03-12,2018,March,Monday,12,71,8,2018-03-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11455,23093,GO-20189009116,THEFT UNDER - BICYCLE,2018-03-22,2018,March,Thursday,22,81,12,2018-03-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11456,23095,GO-20189009702,THEFT UNDER,2018-03-23,2018,March,Friday,23,82,16,2018-03-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11457,23097,GO-20189011432,THEFT UNDER - BICYCLE,2018-04-11,2018,April,Wednesday,11,101,21,2018-04-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11458,23098,GO-2018684226,THEFT UNDER - BICYCLE,2018-04-10,2018,April,Tuesday,10,100,10,2018-04-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11459,23099,GO-20189012104,THEFT UNDER,2018-04-18,2018,April,Wednesday,18,108,18,2018-04-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11460,23100,GO-20189012713,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,22,2018-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11461,23101,GO-20189012761,THEFT UNDER,2018-04-24,2018,April,Tuesday,24,114,6,2018-04-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11462,23102,GO-20189013924,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,12,2018-05-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11463,23104,GO-20189014667,THEFT UNDER,2017-11-12,2017,November,Sunday,12,316,12,2018-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11464,23105,GO-20189014841,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,19,2018-05-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11465,23108,GO-20189016569,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,8,2018-05-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11466,23109,GO-20189017327,THEFT UNDER,2018-06-01,2018,June,Friday,1,152,17,2018-06-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11467,23114,GO-20189018292,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,14,2018-06-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11468,23117,GO-20189018796,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,9,2018-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11469,23122,GO-20181253369,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,15,2018-07-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11470,23123,GO-20189022187,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,15,2018-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11471,23126,GO-20189023692,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,17,2018-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11472,23127,GO-20189023877,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,18,2018-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11473,23128,GO-20181363820,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,13,2018-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11474,23129,GO-20189024041,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,20,2018-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11475,23130,GO-20189024061,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,12,2018-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11476,23131,GO-20181371167,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,21,2018-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11477,23132,GO-20189024456,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,19,2018-07-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11478,23135,GO-20189025275,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,14,2018-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11479,23137,GO-20189025798,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,17,2018-08-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11480,23138,GO-20181488011,PROPERTY - FOUND,2018-08-13,2018,August,Monday,13,225,3,2018-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11481,23141,GO-20189027048,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,19,2018-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11482,23142,GO-20189027118,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,11,2018-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11483,12010,GO-20169008276,THEFT UNDER,2016-08-05,2016,August,Friday,5,218,9,2016-08-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11484,23143,GO-20189028096,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,13,2018-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11485,23145,GO-20189029137,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,9,2018-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11486,23146,GO-20189029740,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,12,2018-09-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11487,23148,GO-20189030302,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,17,2018-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11488,23149,GO-20181702657,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,0,2018-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11489,23151,GO-20189031260,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,13,2018-09-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11490,23152,GO-20189031437,THEFT UNDER,2018-09-15,2018,September,Saturday,15,258,0,2018-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11491,23153,GO-20189032037,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,9,2018-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11492,23154,GO-20181789503,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,17,2018-09-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11493,23156,GO-20189032760,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,15,2018-10-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11494,23157,GO-20181844458,THEFT OF EBIKE UNDER $5000,2018-10-05,2018,October,Friday,5,278,20,2018-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11495,23164,GO-20189034428,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,11,2018-10-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11496,23169,GO-20199001817,THEFT UNDER - BICYCLE,2018-12-31,2018,December,Monday,31,365,21,2019-01-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11497,23170,GO-20199008293,THEFT UNDER - BICYCLE,2019-03-14,2019,March,Thursday,14,73,8,2019-03-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11498,23171,GO-2019519383,THEFT UNDER - BICYCLE,2019-03-18,2019,March,Monday,18,77,17,2019-03-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11499,23173,GO-20199014671,THEFT UNDER,2019-05-10,2019,May,Friday,10,130,18,2019-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11500,23174,GO-20199015078,THEFT UNDER,2019-05-14,2019,May,Tuesday,14,134,0,2019-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11501,23175,GO-20199015580,THEFT UNDER,2019-05-18,2019,May,Saturday,18,138,16,2019-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11502,23177,GO-20199015889,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,17,2019-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11503,23180,GO-20191012451,B&E,2019-06-02,2019,June,Sunday,2,153,13,2019-06-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11504,23183,GO-20199019245,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,14,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11505,23189,GO-20199021681,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,0,2019-07-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11506,23190,GO-20191301268,THEFT UNDER,2019-04-24,2019,April,Wednesday,24,114,8,2019-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11507,23195,GO-20199022599,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,19,2019-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11508,23196,GO-20199023104,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,2,2019-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11509,23379,GO-20149001208,THEFT UNDER,2014-01-01,2014,January,Wednesday,1,1,18,2014-02-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11510,11977,GO-20169008116,THEFT OF EBIKE UNDER $5000,2016-08-02,2016,August,Tuesday,2,215,14,2016-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11511,11981,GO-20169008134,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,8,2016-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11512,11986,GO-20169007895,THEFT UNDER,2016-07-28,2016,July,Thursday,28,210,19,2016-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11513,13375,GO-20169005057,THEFT UNDER,2016-05-27,2016,May,Friday,27,148,11,2016-05-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11514,11997,GO-20169008217,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,1,2016-08-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11515,13377,GO-20169005353,THEFT UNDER,2016-06-04,2016,June,Saturday,4,156,19,2016-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11516,12019,GO-20169008366,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,9,2016-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11517,13378,GO-20169005367,THEFT UNDER,2016-06-04,2016,June,Saturday,4,156,21,2016-06-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11518,13383,GO-20169006153,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,19,2016-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11519,16300,GO-20189033838,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,12,2018-10-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11520,12020,GO-20161394653,THEFT OF EBIKE UNDER $5000,2016-07-29,2016,July,Friday,29,211,16,2016-08-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11521,13385,GO-20161170269,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,18,2016-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11522,12034,GO-20161403685,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,8,2016-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11523,16304,GO-20189038400,THEFT UNDER - BICYCLE,2018-11-15,2018,November,Thursday,15,319,14,2018-11-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11524,13387,GO-20169006991,THEFT UNDER - BICYCLE,2016-07-08,2016,July,Friday,8,190,18,2016-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11525,12038,GO-20169008446,THEFT UNDER,2016-08-08,2016,August,Monday,8,221,22,2016-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11526,16305,GO-20182093409,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,11,2018-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11527,13390,GO-20169007233,THEFT UNDER - BICYCLE,2016-07-14,2016,July,Thursday,14,196,15,2016-07-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11528,12069,GO-20169008607,THEFT UNDER,2016-08-10,2016,August,Wednesday,10,223,9,2016-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11529,16306,GO-20189039904,THEFT UNDER - BICYCLE,2018-11-26,2018,November,Monday,26,330,9,2018-11-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11530,13602,GO-20149001553,THEFT UNDER,2014-01-18,2014,January,Saturday,18,18,0,2014-02-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11531,13391,GO-20161243252,THEFT OVER - BICYCLE,2016-07-14,2016,July,Thursday,14,196,12,2016-07-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11532,13393,GO-20161260717,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,7,2016-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11533,13395,GO-20169007789,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,20,2016-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11534,13398,GO-20169007976,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,23,2016-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11535,13400,GO-20169008322,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,16,2016-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11536,13401,GO-20169008428,THEFT UNDER,2016-07-08,2016,July,Friday,8,190,18,2016-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11537,13404,GO-20169008839,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,17,2016-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11538,13405,GO-20169008970,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,18,2016-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11539,13406,GO-20169009027,THEFT UNDER,2016-08-17,2016,August,Wednesday,17,230,22,2016-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11540,13407,GO-20169009090,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,12,2016-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11541,13409,GO-20169009300,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,13,2016-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11542,13411,GO-20169009722,THEFT UNDER,2016-08-27,2016,August,Saturday,27,240,18,2016-08-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11543,13416,GO-20169010383,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11544,13417,GO-20169010453,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,17,2016-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11545,13419,GO-20169010526,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,9,2016-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11546,13421,GO-20169010853,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,1,2016-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11547,13425,GO-20169011651,THEFT UNDER,2016-09-27,2016,September,Tuesday,27,271,7,2016-10-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11548,13426,GO-20169011951,THEFT UNDER - BICYCLE,2016-10-12,2016,October,Wednesday,12,286,11,2016-10-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11549,13428,GO-20169012477,THEFT UNDER,2016-10-23,2016,October,Sunday,23,297,15,2016-10-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11550,13429,GO-20161942269,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,13,2016-11-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11551,13432,GO-20169013365,THEFT UNDER,2016-11-13,2016,November,Sunday,13,318,13,2016-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11552,13433,GO-20169013500,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,17,2016-11-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11553,13443,GO-20179005069,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,16,2017-04-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11554,13444,GO-20179005075,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,9,2017-04-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11555,13447,GO-2017727188,B&E,2017-04-23,2017,April,Sunday,23,113,20,2017-04-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11556,13450,GO-2017776320,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,1,2017-05-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11557,13452,GO-2017811102,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,10,2017-05-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11558,13453,GO-20179006237,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,23,2017-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11559,13460,GO-20179007555,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,13,2017-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11560,13461,GO-2017997847,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,9,2017-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11561,13601,GO-20149000445,THEFT UNDER,2014-01-14,2014,January,Tuesday,14,14,10,2014-01-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11562,19427,GO-20179011171,THEFT UNDER - BICYCLE,2016-02-20,2016,February,Saturday,20,51,16,2017-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11563,13603,GO-20141878781,THEFT UNDER,2014-04-12,2014,April,Saturday,12,102,10,2014-04-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11564,13604,GO-20149002858,THEFT UNDER,2014-04-13,2014,April,Sunday,13,103,9,2014-04-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11565,13605,GO-20142034816,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,19,2014-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11566,13607,GO-20149003385,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,15,2014-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11567,13608,GO-20149003419,THEFT UNDER,2014-05-16,2014,May,Friday,16,136,13,2014-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11568,13609,GO-20149003508,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,10,2014-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11569,13610,GO-20149003595,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,7,2014-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11570,13615,GO-20142252652,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,0,2014-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11571,13618,GO-20149004049,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,17,2014-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11572,13621,GO-20149004143,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,19,2014-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11573,13623,GO-20142340362,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,18,2014-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11574,13624,GO-20149004390,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,8,2014-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11575,13625,GO-20142316966,THEFT OVER,2014-06-18,2014,June,Wednesday,18,169,9,2014-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11576,13626,GO-20142395522,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,13,2014-06-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11577,13627,GO-20149004500,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,8,2014-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11578,13629,GO-20142442011,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,12,2014-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11579,13631,GO-20149004636,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,8,2014-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11580,13633,GO-20149004703,PROPERTY - LOST,2014-06-30,2014,June,Monday,30,181,16,2014-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11581,13637,GO-20149005080,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,15,2014-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11582,13640,GO-20142582851,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,11,2014-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11583,13642,GO-20149005549,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,9,2014-08-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11584,13643,GO-20142654389,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,6,2014-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11585,13646,GO-20149005940,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,13,2014-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11586,13650,GO-20149006140,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,15,2014-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11587,13652,GO-20149006688,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,15,2014-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11588,13655,GO-20149006886,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,9,2014-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11589,13656,GO-20142909415,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,18,2014-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11590,13657,GO-20142934105,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,12,2014-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11591,13661,GO-20143004068,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,19,2014-09-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11592,15650,GO-20199023056,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,15,2019-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11593,15652,GO-20199023130,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,21,2019-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11594,15657,GO-20199023840,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,8,2019-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11595,15661,GO-20199024535,THEFT UNDER,2019-07-31,2019,July,Wednesday,31,212,14,2019-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11596,15679,GO-20199027579,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,21,2019-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11597,15683,GO-20199028271,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,9,2019-08-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11598,15692,GO-20191706527,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,19,2019-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11599,15696,GO-20199029684,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,9,2019-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11600,15699,GO-20199029799,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,11,2019-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11601,15701,GO-20199030082,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,13,2019-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11602,15703,GO-20199030417,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,17,2019-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11603,15709,GO-20199031231,THEFT UNDER,2019-09-14,2019,September,Saturday,14,257,0,2019-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11604,15710,GO-20199031231,THEFT UNDER,2019-09-14,2019,September,Saturday,14,257,0,2019-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11605,15716,GO-20199033026,THEFT UNDER,2019-10-05,2019,October,Saturday,5,278,21,2019-10-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11606,15722,GO-20199035040,THEFT UNDER,2019-10-24,2019,October,Thursday,24,297,9,2019-10-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11607,15724,GO-20192068724,ASSAULT PEACE OFFICER,2019-10-26,2019,October,Saturday,26,299,15,2019-10-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11608,15743,GO-20209008630,THEFT UNDER,2020-03-04,2020,March,Wednesday,4,64,20,2020-03-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11609,15746,GO-20209010325,THEFT UNDER,2020-04-02,2020,April,Thursday,2,93,9,2020-04-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11610,15748,GO-2020732774,THEFT UNDER,2020-03-29,2020,March,Sunday,29,89,1,2020-04-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11611,15753,GO-20209012170,THEFT UNDER,2020-04-29,2020,April,Wednesday,29,120,8,2020-04-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11612,15758,GO-20209013090,THEFT UNDER,2020-05-13,2020,May,Wednesday,13,134,23,2020-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11613,15763,GO-20209013803,THEFT UNDER,2020-05-24,2020,May,Sunday,24,145,10,2020-05-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11614,15767,GO-2020988849,THEFT OF EBIKE UNDER $5000,2020-04-18,2020,April,Saturday,18,109,14,2020-05-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11615,15770,GO-20201023673,THEFT OF EBIKE UNDER $5000,2020-06-03,2020,June,Wednesday,3,155,18,2020-06-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11616,15777,GO-20209015390,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,12,2020-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11617,15784,GO-20209016198,THEFT UNDER,2020-06-25,2020,June,Thursday,25,177,9,2020-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11618,15785,GO-20201164979,THEFT UNDER - BICYCLE,2020-06-24,2020,June,Wednesday,24,176,11,2020-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11619,15788,GO-20201191217,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,13,2020-06-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11620,15791,GO-20209017217,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,14,2020-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11621,15797,GO-20201392396,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,17,2020-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11622,15802,GO-20201452923,THEFT UNDER - BICYCLE,2020-08-04,2020,August,Tuesday,4,217,8,2020-08-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11623,15803,GO-20209019647,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,12,2020-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11624,16311,GO-20199002349,THEFT UNDER - BICYCLE,2019-01-17,2019,January,Thursday,17,17,18,2019-01-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11625,12089,GO-20169008747,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,17,2016-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11626,19428,GO-20179011254,THEFT UNDER,2017-07-28,2017,July,Friday,28,209,15,2017-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11627,16313,GO-2019609659,THEFT UNDER - BICYCLE,2019-04-04,2019,April,Thursday,4,94,20,2019-04-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11628,19429,GO-20179011663,THEFT UNDER - BICYCLE,2017-08-03,2017,August,Thursday,3,215,12,2017-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11629,19433,GO-20179012798,THEFT UNDER,2017-07-30,2017,July,Sunday,30,211,22,2017-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11630,19436,GO-20179013439,THEFT UNDER,2017-08-26,2017,August,Saturday,26,238,18,2017-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11631,19442,GO-20179015776,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,2,2017-09-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11632,19446,GO-20179016520,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,9,2017-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11633,19450,GO-20179017563,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,11,2017-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11634,19462,GO-20179019842,THEFT UNDER,2017-11-16,2017,November,Thursday,16,320,23,2017-11-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11635,19453,GO-20179017956,THEFT UNDER - BICYCLE,2017-10-15,2017,October,Sunday,15,288,14,2017-10-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11636,19454,GO-20171914462,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,18,2017-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11637,19455,GO-20179018301,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,9,2017-10-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11638,19456,GO-20179018398,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,15,2017-10-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11639,19458,GO-20179018704,THEFT UNDER - BICYCLE,2017-10-31,2017,October,Tuesday,31,304,19,2017-11-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11640,19459,GO-20179019149,THEFT UNDER,2017-11-06,2017,November,Monday,6,310,19,2017-11-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11641,19460,GO-20179019149,THEFT UNDER,2017-11-06,2017,November,Monday,6,310,19,2017-11-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11642,19461,GO-20172055605,B&E,2017-11-08,2017,November,Wednesday,8,312,10,2017-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11643,19463,GO-20179020767,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,23,2017-11-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11644,19464,GO-20179020887,THEFT UNDER - BICYCLE,2017-11-29,2017,November,Wednesday,29,333,13,2017-11-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11645,19465,GO-20179021421,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,11,2017-12-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11646,19471,GO-2018423687,THEFT OF EBIKE UNDER $5000,2018-03-07,2018,March,Wednesday,7,66,14,2018-03-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11647,19473,GO-20189009421,THEFT UNDER,2018-03-24,2018,March,Saturday,24,83,14,2018-03-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11648,19475,GO-2018560255,THEFT UNDER,2018-03-28,2018,March,Wednesday,28,87,14,2018-03-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11649,19476,GO-2018633175,THEFT UNDER - BICYCLE,2018-04-02,2018,April,Monday,2,92,9,2018-04-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11650,19516,GO-20189023315,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,18,2018-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11651,19480,GO-20189012688,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,9,2018-04-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11652,19481,GO-20189013777,THEFT UNDER,2018-05-03,2018,May,Thursday,3,123,23,2018-05-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11653,19482,GO-20189014630,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,17,2018-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11654,19484,GO-2018858360,THEFT UNDER - BICYCLE,2018-05-12,2018,May,Saturday,12,132,15,2018-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11655,19485,GO-20189015721,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,12,2018-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11656,19488,GO-20189016130,THEFT UNDER - BICYCLE,2018-05-19,2018,May,Saturday,19,139,20,2018-05-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11657,19490,GO-20189016257,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,16,2018-05-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11658,19492,GO-2018990052,THEFT UNDER,2018-05-29,2018,May,Tuesday,29,149,22,2018-06-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11659,19496,GO-20189017778,THEFT UNDER,2018-06-01,2018,June,Friday,1,152,11,2018-06-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11660,19500,GO-20181113597,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,8,2018-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11661,19501,GO-20181151766,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,0,2018-06-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11662,19506,GO-20189020394,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,6,2018-06-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11663,19508,GO-20189022123,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,19,2018-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11664,19509,GO-20189022123,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,19,2018-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11665,19515,GO-20189023255,THEFT UNDER,2018-07-20,2018,July,Friday,20,201,8,2018-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11666,3004,GO-20181385264,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,5,2018-07-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -11667,19519,GO-20189023918,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,8,2018-07-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11668,19522,GO-20189024573,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,22,2018-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11669,19523,GO-20189024849,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,21,2018-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11670,19527,GO-20181485710,ROBBERY - OTHER,2018-08-12,2018,August,Sunday,12,224,18,2018-08-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11671,19529,GO-20189026599,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,7,2018-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11672,19530,GO-20189026730,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,16,2018-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11673,19533,GO-20189027190,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,9,2018-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11674,19548,GO-20189030853,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,8,2018-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11675,19536,GO-20189028510,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,8,2018-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11676,19537,GO-20181610855,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,21,2018-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11677,19540,GO-20189029345,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,9,2018-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11678,19543,GO-20189029627,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,11,2018-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11679,19544,GO-20189029627,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,11,2018-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11680,19545,GO-20189029727,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,18,2018-09-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11681,19546,GO-20189030259,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,17,2018-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11682,19547,GO-20189030338,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,18,2018-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11683,19550,GO-20189031003,THEFT UNDER,2018-09-18,2018,September,Tuesday,18,261,13,2018-09-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11684,19553,GO-20189031614,THEFT UNDER,2018-09-22,2018,September,Saturday,22,265,22,2018-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11685,19554,GO-20189031821,THEFT UNDER - BICYCLE,2018-09-21,2018,September,Friday,21,264,16,2018-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11686,19557,GO-20189032550,THEFT UNDER,2018-10-01,2018,October,Monday,1,274,8,2018-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11687,19559,GO-20189034110,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,10,2018-10-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11688,19560,GO-20189034110,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,10,2018-10-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11689,19561,GO-20181917996,THEFT OF EBIKE UNDER $5000,2018-10-17,2018,October,Wednesday,17,290,8,2018-10-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11690,19579,GO-20199014104,THEFT UNDER,2019-05-06,2019,May,Monday,6,126,16,2019-05-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11691,19563,GO-20189034907,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,21,2018-10-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11692,19564,GO-20189035043,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,20,2018-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11693,19566,GO-20189035803,THEFT UNDER,2018-10-17,2018,October,Wednesday,17,290,20,2018-10-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11694,19567,GO-20189035784,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,15,2018-10-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11695,19572,GO-20189043877,THEFT UNDER - BICYCLE,2018-12-31,2018,December,Monday,31,365,13,2018-12-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11696,19575,GO-20199003925,THEFT UNDER - BICYCLE,2019-01-15,2019,January,Tuesday,15,15,17,2019-01-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11697,19577,GO-20199012716,THEFT UNDER,2019-04-22,2019,April,Monday,22,112,18,2019-04-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11698,19580,GO-20199015624,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,20,2019-05-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11699,19581,GO-2019962755,B&E,2019-05-25,2019,May,Saturday,25,145,10,2019-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11700,19586,GO-20199019167,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,19,2019-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11701,19588,GO-20191118176,THEFT UNDER - BICYCLE,2019-06-14,2019,June,Friday,14,165,23,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11702,19591,GO-20209024788,THEFT UNDER,2020-09-27,2020,September,Sunday,27,271,20,2020-09-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11703,19594,GO-20209025411,THEFT UNDER,2020-10-04,2020,October,Sunday,4,278,13,2020-10-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11704,19595,GO-20209025678,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,11,2020-10-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11705,19596,GO-20209025719,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,9,2020-10-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11706,19598,GO-20201945087,THEFT UNDER - BICYCLE,2020-10-04,2020,October,Sunday,4,278,13,2020-10-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11707,19599,GO-20209026983,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,7,2020-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11708,19601,GO-20209027135,THEFT UNDER,2020-10-20,2020,October,Tuesday,20,294,0,2020-10-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11709,19780,GO-20149005185,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,13,2014-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11710,19781,GO-20149005185,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,13,2014-07-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11711,19785,GO-20142607499,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,19,2014-07-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11712,19787,GO-20149005834,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,10,2014-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11713,19789,GO-20149005915,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,21,2014-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11714,19791,GO-20149006026,THEFT UNDER,2014-08-16,2014,August,Saturday,16,228,15,2014-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11715,19792,GO-20149006026,THEFT UNDER,2014-08-16,2014,August,Saturday,16,228,15,2014-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11716,19796,GO-20149006156,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,14,2014-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11717,19800,GO-20149006270,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,18,2014-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11718,19801,GO-20149006277,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,17,2014-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11719,19803,GO-20149006459,THEFT UNDER,2014-08-30,2014,August,Saturday,30,242,17,2014-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11720,19804,GO-20149006470,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,14,2014-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11721,19805,GO-20149006575,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,21,2014-09-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11722,19810,GO-20149006975,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,9,2014-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11723,19816,GO-20143058219,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,12,2014-10-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11724,19817,GO-20143072192,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,16,2014-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11725,19818,GO-20149007657,THEFT UNDER,2014-10-17,2014,October,Friday,17,290,16,2014-10-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11726,19821,GO-201545643,B&E,2015-01-08,2015,January,Thursday,8,8,11,2015-01-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11727,16314,GO-20199012288,THEFT UNDER,2019-04-17,2019,April,Wednesday,17,107,20,2019-04-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11728,16317,GO-20199014416,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,13,2019-05-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11729,16322,GO-20199017947,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,19,2019-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11730,16324,GO-20191065035,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,14,2019-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11731,16325,GO-20191126362,THEFT OVER - BICYCLE,2019-06-17,2019,June,Monday,17,168,8,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11732,16326,GO-20191126362,THEFT OVER - BICYCLE,2019-06-17,2019,June,Monday,17,168,8,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11733,16327,GO-20191175469,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,22,2019-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11734,16329,GO-20199021539,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,16,2019-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11735,16330,GO-20199021539,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,16,2019-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11736,16337,GO-20199022821,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,15,2019-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11737,16338,GO-20199022821,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,15,2019-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11738,16438,GO-2020281029,B&E W'INTENT,2020-02-09,2020,February,Sunday,9,40,11,2020-02-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11739,16343,GO-20199023326,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,22,2019-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11740,16344,GO-20199023449,THEFT UNDER,2019-07-23,2019,July,Tuesday,23,204,9,2019-07-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11741,16359,GO-20199026547,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,8,2019-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11742,16360,GO-20199026568,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,21,2019-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11743,16362,GO-20199026671,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,15,2019-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11744,16367,GO-20199027300,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,22,2019-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11745,16370,GO-20191687549,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,18,2019-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11746,16372,GO-20199029325,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,0,2019-09-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11747,16374,GO-20199029383,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,22,2019-09-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11748,16375,GO-20199029770,THEFT UNDER - BICYCLE,2019-09-12,2019,September,Thursday,12,255,15,2019-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11749,16377,GO-20199029820,THEFT UNDER,2019-09-11,2019,September,Wednesday,11,254,10,2019-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11750,16384,GO-20199030986,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,11,2019-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11751,16385,GO-20199031096,THEFT UNDER,2019-09-22,2019,September,Sunday,22,265,17,2019-09-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11752,16386,GO-20199031417,THEFT UNDER,2019-09-24,2019,September,Tuesday,24,267,22,2019-09-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11753,16392,GO-20199032182,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,14,2019-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11754,16401,GO-20199034416,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,9,2019-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11755,16404,GO-20192046674,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,4,2019-10-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11756,16406,GO-20192077366,THEFT UNDER,2019-10-27,2019,October,Sunday,27,300,21,2019-10-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11757,16411,GO-20199036947,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,22,2019-11-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11758,16413,GO-20199038280,THEFT UNDER,2019-11-19,2019,November,Tuesday,19,323,8,2019-11-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11759,16417,GO-20199038809,THEFT UNDER,2019-11-25,2019,November,Monday,25,329,12,2019-11-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11760,16421,GO-20199040233,THEFT UNDER,2019-11-29,2019,November,Friday,29,333,0,2019-12-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11761,16429,GO-20209001169,THEFT UNDER,2020-01-09,2020,January,Thursday,9,9,23,2020-01-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11762,16437,GO-20209004010,THEFT UNDER,2020-02-02,2020,February,Sunday,2,33,22,2020-02-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11763,16443,GO-20209009015,THEFT UNDER,2019-12-01,2019,December,Sunday,1,335,0,2020-03-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11764,16451,GO-2020807478,THEFT UNDER,2020-04-29,2020,April,Wednesday,29,120,0,2020-04-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11765,16454,GO-20209012528,THEFT UNDER,2020-03-15,2020,March,Sunday,15,75,12,2020-05-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11766,16458,GO-20209014688,THEFT UNDER,2020-06-05,2020,June,Friday,5,157,7,2020-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11767,16462,GO-20209015414,THEFT OF EBIKE UNDER $5000,2020-06-08,2020,June,Monday,8,160,18,2020-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11768,16471,GO-20209016695,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,15,2020-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11769,16474,GO-20209017063,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,9,2020-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11770,16479,GO-20209017749,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,9,2020-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11771,16482,GO-20209018205,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,8,2020-07-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11772,16484,GO-20209018837,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,8,2020-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11773,16488,GO-20209019198,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,19,2020-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11774,16494,GO-20201462636,THEFT UNDER - BICYCLE,2020-08-05,2020,August,Wednesday,5,218,18,2020-08-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11775,16497,GO-20201493399,THEFT UNDER - BICYCLE,2020-08-04,2020,August,Tuesday,4,217,16,2020-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11776,16501,GO-20209020263,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,11,2020-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11777,16504,GO-20209020952,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,15,2020-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11778,16505,GO-20209020977,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,11,2020-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11779,16509,GO-20209022223,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,8,2020-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11780,16512,GO-20209022425,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,15,2020-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11781,16516,GO-20209022831,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,10,2020-09-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11782,16518,GO-20209023842,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,12,2020-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11783,16519,GO-20209024067,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,23,2020-09-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11784,16520,GO-20149006013,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,17,2014-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11785,16522,GO-20149006070,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,8,2014-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11786,16526,GO-20149006532,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,18,2014-09-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11787,16528,GO-20149006618,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,23,2014-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11788,16529,GO-20149006917,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,20,2014-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11789,16531,GO-20142928254,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,10,2014-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11790,16536,GO-20143019873,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,13,2014-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11791,16540,GO-20149007592,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,10,2014-10-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11792,16543,GO-20149007677,THEFT UNDER,2014-10-18,2014,October,Saturday,18,291,11,2014-10-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11793,16544,GO-20143152112,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,10,2014-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11794,16545,GO-20149007749,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,20,2014-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11795,16550,GO-20149008191,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,16,2014-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11796,16553,GO-20159001258,THEFT UNDER,2015-03-11,2015,March,Wednesday,11,70,8,2015-03-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11797,16554,GO-20159001839,THEFT UNDER,2015-04-11,2015,April,Saturday,11,101,1,2015-04-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11798,16556,GO-20159001957,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,10,2015-04-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11799,16557,GO-2015626096,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,20,2015-04-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11800,16559,GO-20159002072,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,16,2015-04-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11801,16560,GO-20159002072,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,16,2015-04-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11802,16561,GO-20159002103,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,17,2015-04-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11803,16567,GO-20159002566,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,18,2015-05-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11804,16570,GO-2015800262,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,13,2015-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11805,16572,GO-20159002981,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,17,2015-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11806,16574,GO-2015900198,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,18,2015-05-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11807,16576,GO-20159003573,THEFT UNDER,2015-06-12,2015,June,Friday,12,163,8,2015-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11808,16578,GO-20159003744,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,18,2015-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11809,16579,GO-20151045607,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,10,2015-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11810,16580,GO-20159003907,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,8,2015-06-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11811,12102,GO-20169008791,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,12,2016-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11812,16583,GO-20159005274,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,18,2015-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11813,16586,GO-20159005426,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,23,2015-08-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11814,16590,GO-20159005766,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,16,2015-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11815,16592,GO-20151469995,THEFT UNDER,2015-08-22,2015,August,Saturday,22,234,15,2015-08-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11816,16593,GO-20159006630,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,8,2015-09-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11817,16594,GO-20159006812,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,15,2015-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11818,16597,GO-20159007433,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,12,2015-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11819,16600,GO-20151686225,B&E,2015-09-30,2015,September,Wednesday,30,273,5,2015-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11820,16601,GO-20159007927,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,5,2015-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11821,16602,GO-20159008177,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,6,2015-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11822,13152,GO-20189014160,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,9,2018-05-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11823,13154,GO-2018836263,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,9,2018-05-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11824,13160,GO-20189016154,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,8,2018-05-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11825,13162,GO-2018958100,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,15,2018-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11826,13169,GO-20189019411,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,12,2018-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11827,13170,GO-20181126776,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,13,2018-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11828,13172,GO-20189019736,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,8,2018-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11829,13173,GO-20189019868,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,8,2018-06-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11830,13184,GO-20189023015,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,20,2018-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11831,13186,GO-20181350023,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,18,2018-07-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11832,13187,GO-20189023743,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,14,2018-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11833,13191,GO-20189026025,THEFT UNDER,2018-08-11,2018,August,Saturday,11,223,19,2018-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11834,13192,GO-20189026113,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,14,2018-08-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11835,13193,GO-20189026459,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,14,2018-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11836,13194,GO-20189026600,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,1,2018-08-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11837,13196,GO-20189026774,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,18,2018-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11838,13198,GO-20189027505,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,18,2018-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11839,13199,GO-20189027680,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,18,2018-08-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11840,13200,GO-20189027878,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,15,2018-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11841,13203,GO-20189028106,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,16,2018-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11842,13204,GO-20181593684,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,9,2018-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11843,13205,GO-20189028705,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,13,2018-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11844,13210,GO-20189029712,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,12,2018-09-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11845,13212,GO-20189029919,THEFT UNDER - BICYCLE,2018-09-10,2018,September,Monday,10,253,8,2018-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11846,13214,GO-20181685428,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,11,2018-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11847,13216,GO-20189030525,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,16,2018-09-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11848,13217,GO-20189031204,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,9,2018-09-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11849,13220,GO-20189032705,THEFT UNDER,2018-09-25,2018,September,Tuesday,25,268,18,2018-10-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11850,13224,GO-20189035057,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,11,2018-10-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11851,13226,GO-20189036128,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,9,2018-10-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11852,13227,GO-20189036658,THEFT UNDER - BICYCLE,2018-11-02,2018,November,Friday,2,306,19,2018-11-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11853,13228,GO-20189036988,THEFT UNDER - BICYCLE,2018-11-01,2018,November,Thursday,1,305,8,2018-11-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11854,13230,GO-20182085270,B&E,2018-09-06,2018,September,Thursday,6,249,12,2018-11-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11855,13233,GO-20189042110,THEFT UNDER - BICYCLE,2018-12-14,2018,December,Friday,14,348,19,2018-12-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11856,13237,GO-20182385815,THEFT UNDER - BICYCLE,2018-12-21,2018,December,Friday,21,355,18,2018-12-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11857,13239,GO-20199007343,THEFT UNDER,2019-02-22,2019,February,Friday,22,53,17,2019-03-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11858,13244,GO-20199015190,THEFT UNDER,2019-05-13,2019,May,Monday,13,133,9,2019-05-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11859,13245,GO-20199015959,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,13,2019-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11860,13246,GO-20199015959,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,13,2019-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11861,13248,GO-20199016511,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,13,2019-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11862,13249,GO-20199017481,THEFT UNDER,2019-06-05,2019,June,Wednesday,5,156,10,2019-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11863,13250,GO-20199017736,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,15,2019-06-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11864,13251,GO-20199017781,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,7,2019-06-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11865,13252,GO-20199017954,THEFT UNDER - BICYCLE,2019-06-08,2019,June,Saturday,8,159,18,2019-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11866,13254,GO-20199019172,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,16,2019-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11867,13255,GO-20191138244,THEFT UNDER - BICYCLE,2019-06-18,2019,June,Tuesday,18,169,15,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11868,13256,GO-20191138244,THEFT UNDER - BICYCLE,2019-06-18,2019,June,Tuesday,18,169,15,2019-06-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11869,13259,GO-20199020276,THEFT UNDER,2019-06-26,2019,June,Wednesday,26,177,18,2019-06-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11870,13264,GO-20199020982,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,12,2019-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11871,13266,GO-20143103411,THEFT UNDER,2014-10-13,2014,October,Monday,13,286,20,2014-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11872,13267,GO-20143139887,THEFT UNDER,2014-10-17,2014,October,Friday,17,290,10,2014-10-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11873,13269,GO-20143176361,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,13,2014-10-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11874,13270,GO-20149007897,THEFT UNDER,2014-10-29,2014,October,Wednesday,29,302,19,2014-10-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11875,13271,GO-20143206795,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,14,2014-10-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11876,13272,GO-20143280401,THEFT UNDER,2014-10-24,2014,October,Friday,24,297,12,2014-11-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11877,13273,GO-20143284524,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,8,2014-11-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11878,13275,GO-20143287065,THEFT UNDER,2014-11-07,2014,November,Friday,7,311,14,2014-11-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11879,13276,GO-20149008472,THEFT UNDER,2014-11-28,2014,November,Friday,28,332,7,2014-12-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11880,13278,GO-20149008530,THEFT UNDER,2014-12-03,2014,December,Wednesday,3,337,19,2014-12-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11881,13280,GO-20149008681,THEFT UNDER,2014-11-25,2014,November,Tuesday,25,329,19,2014-12-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11882,13283,GO-20159000237,THEFT UNDER,2014-12-17,2014,December,Wednesday,17,351,13,2015-01-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11883,13285,GO-20159001517,THEFT UNDER,2015-03-20,2015,March,Friday,20,79,2,2015-03-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11884,13286,GO-20159001832,THEFT UNDER,2015-03-26,2015,March,Thursday,26,85,0,2015-04-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11885,13287,GO-2015587687,THEFT UNDER,2015-04-08,2015,April,Wednesday,8,98,11,2015-04-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11886,13288,GO-20159002292,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,9,2015-04-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11887,13290,GO-20159002431,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,12,2015-05-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11888,13291,GO-20159002436,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,14,2015-05-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11889,13292,GO-2015745250,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,9,2015-05-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11890,13296,GO-2015832893,FTC PROBATION ORDER,2015-05-19,2015,May,Tuesday,19,139,9,2015-05-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11891,13297,GO-2015832893,FTC PROBATION ORDER,2015-05-19,2015,May,Tuesday,19,139,9,2015-05-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11892,13298,GO-20159002947,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,21,2015-05-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11893,13300,GO-2015855546,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,16,2015-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11894,13301,GO-20159003105,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,19,2015-05-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11895,13306,GO-20159003371,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,19,2015-06-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11896,13312,GO-20159003650,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,21,2015-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11897,13313,GO-20159003667,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,8,2015-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11898,13314,GO-20159003672,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,12,2015-06-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11899,13319,GO-20151138579,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,7,2015-07-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11900,13321,GO-20159004359,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,9,2015-07-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11901,13323,GO-20151330199,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,10,2015-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11902,13326,GO-20159005415,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,8,2015-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11903,13329,GO-20159005647,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,16,2015-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11904,13330,GO-20151446970,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,17,2015-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11905,13332,GO-20151463112,B&E,2015-08-22,2015,August,Saturday,22,234,2,2015-08-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11906,13334,GO-20159006592,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,9,2015-09-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11907,13335,GO-20159006615,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,10,2015-09-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11908,13342,GO-20151644465,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,9,2015-09-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11909,13343,GO-20151650310,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,17,2015-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11910,13345,GO-20151824363,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,16,2015-10-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11911,13346,GO-20159009423,THEFT UNDER,2015-10-28,2015,October,Wednesday,28,301,9,2015-11-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11912,13348,GO-20151966713,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,19,2015-11-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11913,13350,GO-20152123044,THEFT UNDER,2015-11-23,2015,November,Monday,23,327,16,2015-12-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11914,13355,GO-20152212644,THEFT UNDER,2015-12-26,2015,December,Saturday,26,360,19,2015-12-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11915,13358,GO-20169002203,THEFT UNDER,2016-03-10,2016,March,Thursday,10,70,20,2016-03-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11916,13359,GO-20169002917,THEFT UNDER - BICYCLE,2016-03-23,2016,March,Wednesday,23,83,17,2016-03-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11917,13360,GO-2016544677,THEFT UNDER - BICYCLE,2016-03-23,2016,March,Wednesday,23,83,15,2016-03-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11918,13361,GO-2016578151,THEFT UNDER,2016-03-27,2016,March,Sunday,27,87,16,2016-04-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11919,13363,GO-2016607896,THEFT UNDER - BICYCLE,2016-04-10,2016,April,Sunday,10,101,7,2016-04-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11920,13365,GO-20169003573,THEFT UNDER,2016-04-13,2016,April,Wednesday,13,104,0,2016-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11921,13369,GO-2016730127,THEFT UNDER,2016-04-28,2016,April,Thursday,28,119,13,2016-04-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11922,12123,GO-20169008956,THEFT UNDER,2016-08-16,2016,August,Tuesday,16,229,17,2016-08-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11923,12124,GO-20161459288,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,7,2016-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11924,12137,GO-20169009043,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,9,2016-08-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11925,12140,GO-20161473016,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,1,2016-08-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11926,12165,GO-20169009154,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,11,2016-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11927,12176,GO-20169009278,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,9,2016-08-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11928,12197,GO-20169009467,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,8,2016-08-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11929,12204,GO-20169009511,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,17,2016-08-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11930,12218,GO-20169009616,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,22,2016-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11931,12230,GO-20169009667,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,22,2016-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11932,12258,GO-20169009780,THEFT UNDER - SHOPLIFTING,2016-08-30,2016,August,Tuesday,30,243,11,2016-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11933,12269,GO-20169010013,THEFT UNDER - BICYCLE,2016-09-05,2016,September,Monday,5,249,20,2016-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11934,12274,GO-20169010055,THEFT OF EBIKE OVER $5000,2016-09-06,2016,September,Tuesday,6,250,16,2016-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11935,12275,GO-20169010071,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,9,2016-09-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11936,12313,GO-20169010234,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,17,2016-09-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11937,12320,GO-20161623917,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,14,2016-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11938,12329,GO-20169010373,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,15,2016-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11939,12334,GO-20169010396,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,6,2016-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11940,12340,GO-20161636904,ASSAULT,2016-09-14,2016,September,Wednesday,14,258,18,2016-09-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11941,12364,GO-20169010550,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,8,2016-09-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11942,12369,GO-20169010597,THEFT UNDER - BICYCLE,2016-09-17,2016,September,Saturday,17,261,16,2016-09-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11943,12402,GO-20161667828,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,22,2016-09-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11944,12415,GO-20161677921,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,16,2016-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11945,12417,GO-20169010859,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,8,2016-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11946,12421,GO-20169010875,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,13,2016-09-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11947,12444,GO-20169011053,THEFT UNDER,2016-09-19,2016,September,Monday,19,263,23,2016-09-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11948,12470,GO-20169011184,THEFT UNDER - BICYCLE,2016-09-22,2016,September,Thursday,22,266,17,2016-09-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11949,12473,GO-20169011197,THEFT UNDER,2016-09-26,2016,September,Monday,26,270,20,2016-09-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11950,12556,GO-20161768311,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,14,2016-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11951,12558,GO-20169011612,THEFT UNDER - BICYCLE,2016-10-05,2016,October,Wednesday,5,279,8,2016-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11952,12561,GO-20161774817,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,15,2016-10-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11953,12571,GO-20169011677,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,20,2016-10-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11954,12597,GO-20169011926,THEFT UNDER - BICYCLE,2016-10-11,2016,October,Tuesday,11,285,11,2016-10-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11955,12607,GO-20161821673,THEFT UNDER,2016-10-13,2016,October,Thursday,13,287,11,2016-10-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11956,12616,GO-20169012062,THEFT OF EBIKE UNDER $5000,2016-10-14,2016,October,Friday,14,288,8,2016-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11957,12628,GO-20169012134,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,14,2016-10-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11958,12629,GO-20161844971,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,6,2016-10-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11959,12639,GO-20169012276,THEFT UNDER,2016-10-18,2016,October,Tuesday,18,292,21,2016-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11960,12641,GO-20161860567,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,0,2016-10-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11961,12660,GO-20169012415,THEFT UNDER,2016-10-21,2016,October,Friday,21,295,15,2016-10-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11962,12678,GO-20169012614,THEFT UNDER - BICYCLE,2016-10-25,2016,October,Tuesday,25,299,20,2016-10-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11963,12701,GO-20161933983,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,12,2016-10-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11964,12713,GO-20169012913,THEFT UNDER,2016-11-01,2016,November,Tuesday,1,306,14,2016-11-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11965,12719,GO-20169012948,THEFT UNDER - BICYCLE,2016-11-02,2016,November,Wednesday,2,307,13,2016-11-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11966,12725,GO-20169012979,THEFT UNDER - BICYCLE,2016-11-04,2016,November,Friday,4,309,9,2016-11-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11967,12733,GO-20169013097,THEFT UNDER - BICYCLE,2016-11-07,2016,November,Monday,7,312,13,2016-11-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11968,24884,GO-20159005744,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,17,2015-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11969,12746,GO-20169013237,THEFT UNDER,2016-11-09,2016,November,Wednesday,9,314,13,2016-11-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11970,12765,GO-20169013444,THEFT UNDER - BICYCLE,2016-11-08,2016,November,Tuesday,8,313,6,2016-11-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11971,12776,GO-20162044031,THEFT UNDER - BICYCLE,2016-11-04,2016,November,Friday,4,309,11,2016-11-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11972,12811,GO-20169013723,THEFT UNDER,2016-11-21,2016,November,Monday,21,326,7,2016-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11973,12812,GO-20169013732,THEFT UNDER - BICYCLE,2016-11-22,2016,November,Tuesday,22,327,13,2016-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11974,12831,GO-20169013995,THEFT UNDER - BICYCLE,2016-11-20,2016,November,Sunday,20,325,13,2016-11-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11975,12850,GO-20169014245,THEFT UNDER,2016-12-02,2016,December,Friday,2,337,21,2016-12-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11976,13099,GO-20179014408,THEFT UNDER,2017-09-09,2017,September,Saturday,9,252,20,2017-09-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11977,13066,GO-20179009551,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,10,2017-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11978,13069,GO-20179009976,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,10,2017-07-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11979,13073,GO-20179010559,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,23,2017-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11980,13074,GO-20179010706,THEFT UNDER,2017-07-20,2017,July,Thursday,20,201,11,2017-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11981,13075,GO-20179010765,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,2,2017-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11982,13076,GO-20179011041,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,20,2017-07-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11983,13078,GO-20179011231,THEFT UNDER,2017-07-27,2017,July,Thursday,27,208,11,2017-07-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11984,13083,GO-20171457939,THEFT UNDER,2017-08-08,2017,August,Tuesday,8,220,14,2017-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11985,13084,GO-20179012408,THEFT UNDER,2017-07-31,2017,July,Monday,31,212,17,2017-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11986,13085,GO-20179012440,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,2,2017-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11987,13087,GO-20179012471,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,8,2017-08-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11988,13089,GO-20179012718,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,19,2017-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11989,13091,GO-20179013439,THEFT UNDER,2017-08-26,2017,August,Saturday,26,238,18,2017-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11990,13095,GO-20179013582,THEFT UNDER - BICYCLE,2017-08-28,2017,August,Monday,28,240,8,2017-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11991,13098,GO-20171632507,THEFT OF EBIKE UNDER $5000,2017-09-08,2017,September,Friday,8,251,15,2017-09-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11992,12608,GO-20169011903,THEFT UNDER,2016-10-11,2016,October,Tuesday,11,285,13,2016-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -11993,13107,GO-20179015976,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,16,2017-09-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11994,13108,GO-20179016147,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,10,2017-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11995,13109,GO-20179016147,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,10,2017-09-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11996,13111,GO-20179016469,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,19,2017-10-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11997,13112,GO-20179016744,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,9,2017-10-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11998,13113,GO-20179016783,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,18,2017-10-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -11999,13125,GO-20179019443,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,12,2017-11-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12000,13126,GO-20179019488,THEFT UNDER - BICYCLE,2017-11-10,2017,November,Friday,10,314,7,2017-11-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12001,13129,GO-20179020325,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,19,2017-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12002,13130,GO-20179020890,THEFT UNDER - BICYCLE,2017-11-28,2017,November,Tuesday,28,332,18,2017-11-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12003,13132,GO-20173157288,THEFT UNDER - BICYCLE,2017-12-04,2017,December,Monday,4,338,15,2017-12-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12004,13133,GO-20179021726,THEFT UNDER,2017-12-06,2017,December,Wednesday,6,340,21,2017-12-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12005,13136,GO-201894870,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,10,2018-01-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12006,13137,GO-2018103175,THEFT UNDER,2017-10-25,2017,October,Wednesday,25,298,13,2018-01-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12007,13138,GO-20189002021,THEFT UNDER - BICYCLE,2018-01-21,2018,January,Sunday,21,21,16,2018-01-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12008,13143,GO-20189004185,THEFT UNDER,2018-02-09,2018,February,Friday,9,40,14,2018-02-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12009,13148,GO-2018660990,THEFT UNDER - BICYCLE,2018-04-10,2018,April,Tuesday,10,100,10,2018-04-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12010,13149,GO-20189013397,THEFT UNDER - BICYCLE,2018-04-30,2018,April,Monday,30,120,18,2018-05-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12011,13150,GO-20189013567,THEFT UNDER,2018-04-27,2018,April,Friday,27,117,1,2018-05-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12012,24971,GO-20169010383,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12013,24976,GO-20169011226,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,7,2016-09-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12014,24978,GO-20169011740,THEFT UNDER,2016-10-06,2016,October,Thursday,6,280,22,2016-10-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12015,24981,GO-20169012562,THEFT UNDER - BICYCLE,2016-10-25,2016,October,Tuesday,25,299,15,2016-10-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12016,24982,GO-20161909635,B&E,2016-10-26,2016,October,Wednesday,26,300,21,2016-10-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12017,24983,GO-20161909635,B&E,2016-10-26,2016,October,Wednesday,26,300,21,2016-10-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12018,25795,GO-20209028222,THEFT UNDER,2020-10-29,2020,October,Thursday,29,303,17,2020-10-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12019,25803,GO-20209030204,THEFT UNDER,2020-11-20,2020,November,Friday,20,325,23,2020-11-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12020,25804,GO-20209030289,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,21,2020-11-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12021,11,GO-20169014593,THEFT UNDER - BICYCLE,2016-12-10,2016,December,Saturday,10,345,18,2016-12-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12022,1743,GO-20179018196,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,21,2017-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12023,5051,GO-20199025978,THEFT UNDER - BICYCLE,2019-08-12,2019,August,Monday,12,224,19,2019-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12024,3459,GO-20189030281,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,12,2018-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12025,27,GO-20169014934,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,10,2016-12-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12026,43,GO-20179000435,THEFT UNDER - BICYCLE,2016-12-29,2016,December,Thursday,29,364,22,2017-01-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12027,52,GO-20179000783,THEFT UNDER - BICYCLE,2017-01-16,2017,January,Monday,16,16,20,2017-01-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12028,54,GO-20179000822,THEFT UNDER - BICYCLE,2017-01-18,2017,January,Wednesday,18,18,16,2017-01-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12029,77,GO-20179001358,THEFT UNDER,2017-01-20,2017,January,Friday,20,20,21,2017-01-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12030,80,GO-2017212141,THEFT OF EBIKE UNDER $5000,2016-12-21,2016,December,Wednesday,21,356,21,2017-02-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12031,207,GO-20179004502,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,9,2017-04-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12032,218,GO-2017653952,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,9,2017-04-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12033,228,GO-20179004771,B&E,2017-04-08,2017,April,Saturday,8,98,14,2017-04-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12034,239,GO-20179004819,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,12,2017-04-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12035,240,GO-20179004818,THEFT UNDER - BICYCLE,2017-04-15,2017,April,Saturday,15,105,15,2017-04-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12036,242,GO-2017679786,B&E,2017-04-12,2017,April,Wednesday,12,102,12,2017-04-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12037,255,GO-2017702556,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,18,2017-04-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12038,270,GO-20179005146,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,13,2017-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12039,274,GO-2017719964,FTC PROBATION ORDER,2017-04-24,2017,April,Monday,24,114,14,2017-04-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12040,280,GO-20179005259,THEFT UNDER,2016-11-01,2016,November,Tuesday,1,306,16,2017-04-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12041,284,GO-2017735197,THEFT UNDER - BICYCLE,2017-01-19,2017,January,Thursday,19,19,7,2017-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12042,285,GO-20179005324,THEFT UNDER,2017-04-26,2017,April,Wednesday,26,116,2,2017-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12043,286,GO-20179005328,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,12,2017-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12044,291,GO-2017739166,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,12,2017-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12045,294,GO-2017460993,B&E,2017-03-13,2017,March,Monday,13,72,21,2017-03-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12046,13431,GO-20161998695,THEFT UNDER - BICYCLE,2016-11-03,2016,November,Thursday,3,308,7,2016-11-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -12047,295,GO-20179005422,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,18,2017-04-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12048,301,GO-20179005471,THEFT UNDER,2017-04-28,2017,April,Friday,28,118,20,2017-04-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12049,322,GO-2017739166,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,12,2017-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12050,324,GO-20179005649,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,23,2017-05-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12051,325,GO-2017785440,THEFT UNDER - BICYCLE,2017-04-28,2017,April,Friday,28,118,20,2017-05-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12052,341,GO-20179005890,THEFT UNDER - BICYCLE,2017-05-04,2017,May,Thursday,4,124,12,2017-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12053,372,GO-20179006159,THEFT UNDER,2017-05-10,2017,May,Wednesday,10,130,22,2017-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12054,379,GO-2017835510,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,12,2017-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12055,385,GO-20179006283,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,13,2017-05-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12056,386,GO-20179006295,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,23,2017-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12057,387,GO-20179006313,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,15,2017-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12058,395,GO-20179006356,THEFT UNDER,2017-05-15,2017,May,Monday,15,135,17,2017-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12059,400,GO-20179006413,THEFT UNDER - BICYCLE,2017-05-14,2017,May,Sunday,14,134,13,2017-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12060,409,GO-20179006531,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,10,2017-05-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12061,2225,GO-20189013293,THEFT UNDER - BICYCLE,2018-04-30,2018,April,Monday,30,120,14,2018-04-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12062,415,GO-20179006548,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,18,2017-05-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12063,424,GO-20179006637,THEFT UNDER,2017-05-19,2017,May,Friday,19,139,12,2017-05-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12064,440,GO-20179006795,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,23,2017-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12065,441,GO-2017897214,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,16,2017-05-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12066,444,GO-2017896981,THEFT OF EBIKE UNDER $5000,2017-05-21,2017,May,Sunday,21,141,10,2017-05-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12067,459,GO-20179006892,B&E,2017-05-22,2017,May,Monday,22,142,23,2017-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12068,462,GO-2017913506,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,22,2017-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12069,536,GO-20179007499,THEFT UNDER - BICYCLE,2017-06-04,2017,June,Sunday,4,155,12,2017-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12070,464,GO-2017914161,B&E,2017-05-18,2017,May,Thursday,18,138,22,2017-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12071,466,GO-20179006928,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,19,2017-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12072,467,GO-20179006928,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,19,2017-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12073,474,GO-2017929021,THEFT UNDER - BICYCLE,2017-05-26,2017,May,Friday,26,146,8,2017-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12074,490,GO-20179007097,THEFT UNDER,2017-05-18,2017,May,Thursday,18,138,15,2017-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12075,500,GO-20179007148,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,20,2017-05-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12076,529,GO-20179007442,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,22,2017-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12077,537,GO-20179007500,THEFT UNDER - BICYCLE,2017-05-14,2017,May,Sunday,14,134,8,2017-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12078,542,GO-2017998266,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,16,2017-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12079,547,GO-20171005665,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,19,2017-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12080,551,GO-20179007632,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,8,2017-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12081,552,GO-20179007639,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,13,2017-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12082,558,GO-20179007694,THEFT UNDER,2017-06-07,2017,June,Wednesday,7,158,19,2017-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12083,560,GO-20179007723,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,18,2017-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12084,564,GO-20179007777,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,13,2017-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12085,565,GO-20179007784,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,12,2017-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12086,574,GO-20179007835,THEFT UNDER,2017-06-09,2017,June,Friday,9,160,17,2017-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12087,587,GO-20171035175,THEFT UNDER,2017-06-10,2017,June,Saturday,10,161,17,2017-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12088,590,GO-20179007911,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,13,2017-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12089,597,GO-20179007975,THEFT UNDER,2017-06-11,2017,June,Sunday,11,162,0,2017-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12090,604,GO-20179007996,THEFT UNDER,2017-06-08,2017,June,Thursday,8,159,18,2017-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12091,608,GO-20171057201,THEFT UNDER,2017-06-10,2017,June,Saturday,10,161,20,2017-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12092,617,GO-20179007911,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,13,2017-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12093,623,GO-20179008123,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,19,2017-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12094,629,GO-20179008199,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,13,2017-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12095,667,GO-20179008463,THEFT UNDER - BICYCLE,2017-06-15,2017,June,Thursday,15,166,19,2017-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12096,675,GO-20179008575,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,19,2017-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12097,690,GO-20179008728,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,10,2017-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12098,691,GO-20179008708,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,18,2017-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12099,706,GO-20179008835,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,11,2017-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12100,711,GO-20179008849,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,19,2017-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12101,714,GO-20179008900,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,17,2017-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12102,715,GO-20179008897,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,21,2017-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12103,719,GO-20179008931,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,0,2017-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12104,740,GO-20179009098,THEFT UNDER,2017-06-27,2017,June,Tuesday,27,178,17,2017-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12105,768,GO-20179009369,THEFT UNDER - BICYCLE,2017-04-20,2017,April,Thursday,20,110,20,2017-07-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12106,777,GO-20171188011,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,11,2017-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12107,779,GO-20179009439,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,23,2017-07-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12108,785,GO-20179009519,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,3,2017-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12109,797,GO-20179009677,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,7,2017-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12110,812,GO-20171208453,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,13,2017-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12111,813,GO-20179009793,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,18,2017-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12112,22295,GO-20189018491,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,21,2018-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -12113,814,GO-20179009778,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,10,2017-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12114,829,GO-20179009911,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,14,2017-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12115,830,GO-20179009914,THEFT UNDER - BICYCLE,2017-07-09,2017,July,Sunday,9,190,20,2017-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12116,834,GO-20179009064,THEFT OVER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,7,2017-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12117,839,GO-20179010026,THEFT UNDER,2017-07-08,2017,July,Saturday,8,189,0,2017-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12118,7273,GO-20209023554,THEFT UNDER,2020-09-16,2020,September,Wednesday,16,260,1,2020-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12119,1745,GO-20171937908,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,10,2017-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12120,21865,GO-2015836543,B&E,2015-05-19,2015,May,Tuesday,19,139,9,2015-05-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -12121,1754,GO-20179018328,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,13,2017-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12122,1778,GO-20179018668,THEFT UNDER - BICYCLE,2017-10-30,2017,October,Monday,30,303,13,2017-11-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12123,1783,GO-20179018696,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,10,2017-11-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12124,1786,GO-20179018799,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,9,2017-11-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12125,1787,GO-20179018799,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,9,2017-11-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12126,1789,GO-20179018832,THEFT UNDER - BICYCLE,2017-11-03,2017,November,Friday,3,307,6,2017-11-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12127,1804,GO-20179019026,THEFT UNDER - BICYCLE,2017-11-06,2017,November,Monday,6,310,15,2017-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12128,1805,GO-20179019064,THEFT UNDER,2017-10-22,2017,October,Sunday,22,295,20,2017-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12129,1839,GO-20172057571,THEFT OVER,2017-11-02,2017,November,Thursday,2,306,18,2017-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12130,1840,GO-20172057571,THEFT OVER,2017-11-02,2017,November,Thursday,2,306,18,2017-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12131,1842,GO-20179019590,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,20,2017-11-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12132,1849,GO-20179019703,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,21,2017-11-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12133,1867,GO-20179020234,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,18,2017-11-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12134,1887,GO-20173008392,B&E,2017-11-13,2017,November,Monday,13,317,2,2017-11-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12135,1891,GO-20179020677,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,16,2017-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12136,1900,GO-20179020936,THEFT UNDER - BICYCLE,2017-11-28,2017,November,Tuesday,28,332,14,2017-11-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12137,1904,GO-20179021072,B&E,2017-11-01,2017,November,Wednesday,1,305,0,2017-12-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12138,1910,GO-20179021299,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,20,2017-12-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12139,1920,GO-20179021488,THEFT UNDER - BICYCLE,2017-12-05,2017,December,Tuesday,5,339,21,2017-12-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12140,1925,GO-20179018576,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,18,2017-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12141,1930,GO-20179021798,THEFT UNDER - BICYCLE,2017-12-09,2017,December,Saturday,9,343,15,2017-12-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12142,1936,GO-20179022066,THEFT UNDER,2017-12-09,2017,December,Saturday,9,343,20,2017-12-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12143,1938,GO-20173131824,THEFT UNDER - BICYCLE,2017-11-30,2017,November,Thursday,30,334,8,2017-12-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12144,3461,GO-20189030291,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,11,2018-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12145,1949,GO-20179022648,THEFT UNDER - BICYCLE,2017-12-19,2017,December,Tuesday,19,353,19,2017-12-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12146,1952,GO-20179022648,THEFT UNDER - BICYCLE,2017-12-19,2017,December,Tuesday,19,353,19,2017-12-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12147,1953,GO-20173238789,THEFT UNDER - BICYCLE,2017-12-20,2017,December,Wednesday,20,354,23,2017-12-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12148,1957,GO-20179022785,THEFT UNDER,2017-12-20,2017,December,Wednesday,20,354,17,2017-12-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12149,7297,GO-20209023810,THEFT UNDER,2020-09-16,2020,September,Wednesday,16,260,19,2020-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12150,1958,GO-20179022930,THEFT UNDER,2017-12-22,2017,December,Friday,22,356,17,2017-12-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12151,1971,GO-20189000533,THEFT UNDER - BICYCLE,2017-12-12,2017,December,Tuesday,12,346,17,2018-01-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12152,1972,GO-20189000572,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,1,2018-01-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12153,1982,GO-20172006433,B&E,2017-10-25,2017,October,Wednesday,25,298,0,2017-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12154,1993,GO-20189001748,THEFT UNDER - BICYCLE,2018-01-19,2018,January,Friday,19,19,9,2018-01-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12155,1995,GO-20189001945,THEFT UNDER - BICYCLE,2018-01-15,2018,January,Monday,15,15,23,2018-01-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12156,2102,GO-20189009181,THEFT UNDER,2018-03-22,2018,March,Thursday,22,81,20,2018-03-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12157,2014,GO-2018220889,THEFT UNDER - BICYCLE,2017-12-18,2017,December,Monday,18,352,18,2018-02-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12158,2032,GO-2018305968,THEFT UNDER - BICYCLE,2018-02-17,2018,February,Saturday,17,48,15,2018-02-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12159,2037,GO-2018240820,B&E,2018-02-05,2018,February,Monday,5,36,7,2018-02-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12160,2038,GO-2018240820,B&E,2018-02-05,2018,February,Monday,5,36,7,2018-02-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12161,2089,GO-2018494602,B&E,2018-03-08,2018,March,Thursday,8,67,13,2018-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12162,2092,GO-20189008684,THEFT UNDER,2018-03-20,2018,March,Tuesday,20,79,1,2018-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12163,2095,GO-20189008934,THEFT UNDER - BICYCLE,2018-02-05,2018,February,Monday,5,36,21,2018-03-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12164,2101,GO-2018509006,THEFT UNDER - BICYCLE,2018-03-20,2018,March,Tuesday,20,79,19,2018-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12165,5052,GO-20199025994,THEFT UNDER - BICYCLE,2019-08-10,2019,August,Saturday,10,222,18,2019-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12166,2126,GO-20189010021,THEFT UNDER - BICYCLE,2018-01-01,2018,January,Monday,1,1,12,2018-03-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12167,2135,GO-20189010539,THEFT UNDER - BICYCLE,2018-04-04,2018,April,Wednesday,4,94,15,2018-04-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12168,2157,GO-20189011629,THEFT UNDER - BICYCLE,2018-04-03,2018,April,Tuesday,3,93,19,2018-04-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12169,2159,GO-20189011679,THEFT UNDER - BICYCLE,2018-04-11,2018,April,Wednesday,11,101,20,2018-04-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12170,2207,GO-2018746881,THEFT UNDER - BICYCLE,2018-04-25,2018,April,Wednesday,25,115,14,2018-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12171,2208,GO-20189012982,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,20,2018-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12172,2231,GO-20189013406,THEFT UNDER - BICYCLE,2018-04-01,2018,April,Sunday,1,91,14,2018-04-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12173,2234,GO-20189013453,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,12,2018-05-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12174,2256,GO-20189013895,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,9,2018-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12175,2265,GO-20189013997,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,10,2018-05-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12176,2269,GO-2018805351,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,21,2018-05-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12177,2270,GO-20189014098,THEFT UNDER - BICYCLE,2018-05-07,2018,May,Monday,7,127,7,2018-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12178,2271,GO-20189014138,THEFT UNDER - BICYCLE,2018-05-07,2018,May,Monday,7,127,18,2018-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12179,2273,GO-20189014170,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,0,2018-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12180,2296,GO-20189014780,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,18,2018-05-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12181,2305,GO-20189014818,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,9,2018-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12182,2312,GO-20189014988,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,7,2018-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12183,2313,GO-20189014988,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,7,2018-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12184,2317,GO-20189015022,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,21,2018-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12185,2321,GO-20189015118,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,18,2018-05-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12186,2322,GO-20189015125,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,22,2018-05-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12187,2332,GO-20189015229,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,21,2018-05-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12188,2334,GO-2018885567,B&E,2018-05-15,2018,May,Tuesday,15,135,8,2018-05-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12189,2335,GO-20189015283,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,21,2018-05-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12190,2344,GO-20189015392,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,23,2018-05-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12191,2352,GO-2018910597,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,18,2018-05-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12192,2358,GO-20189015661,THEFT UNDER,2018-05-17,2018,May,Thursday,17,137,9,2018-05-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12193,2359,GO-2018895827,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,14,2018-05-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12194,2367,GO-20189015790,THEFT UNDER,2017-11-01,2017,November,Wednesday,1,305,14,2018-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12195,2376,GO-20189015895,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,22,2018-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12196,2377,GO-20189015906,THEFT UNDER,2018-05-19,2018,May,Saturday,19,139,1,2018-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12197,2380,GO-20189015934,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,16,2018-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12198,2396,GO-20189016271,THEFT UNDER - SHOPLIFTING,2018-05-25,2018,May,Friday,25,145,8,2018-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12199,2429,GO-20189016870,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,9,2018-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12200,2434,GO-20189016961,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,9,2018-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12201,2452,GO-20189017326,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,13,2018-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12202,2455,GO-20189017351,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,0,2018-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12203,2464,GO-20189017431,THEFT UNDER - BICYCLE,2018-04-25,2018,April,Wednesday,25,115,9,2018-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12204,2467,GO-20189017448,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,9,2018-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12205,2478,GO-20189017590,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,11,2018-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12206,2481,GO-20181018451,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,7,2018-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12207,2483,GO-20189017682,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,5,2018-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12208,2488,GO-20189017755,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,9,2018-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12209,2490,GO-20189017829,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,10,2018-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12210,2498,GO-20181037579,B&E W'INTENT,2018-06-07,2018,June,Thursday,7,158,6,2018-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12211,2500,GO-20189017846,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,19,2018-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12212,2511,GO-20189017732,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,8,2018-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12213,2541,GO-20189018345,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,17,2018-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12214,2578,GO-20189018863,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,12,2018-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12215,2585,GO-20189018932,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,21,2018-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12216,2600,GO-20189019049,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,14,2018-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12217,2603,GO-20189019091,THEFT UNDER,2018-06-06,2018,June,Wednesday,6,157,18,2018-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12218,2608,GO-20189019219,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,9,2018-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12219,2611,GO-20189019223,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,9,2018-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12220,2621,GO-20189019377,THEFT UNDER,2018-06-16,2018,June,Saturday,16,167,1,2018-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12221,849,GO-20179010129,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,15,2017-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12222,6068,GO-20209011305,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,10,2020-04-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12223,2625,GO-20189019391,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,6,2018-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12224,23382,GO-20142030078,THEFT UNDER,2014-05-06,2014,May,Tuesday,6,126,16,2014-05-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12225,3465,GO-20189030411,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,12,2018-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12226,3473,GO-20189030520,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,17,2018-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12227,3488,GO-20189030726,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,14,2018-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12228,3495,GO-20189030819,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,15,2018-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12229,3500,GO-20189030900,THEFT UNDER,2018-09-17,2018,September,Monday,17,260,17,2018-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12230,3503,GO-20189030965,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,21,2018-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12231,3505,GO-20189031020,THEFT UNDER,2018-09-16,2018,September,Sunday,16,259,20,2018-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12232,3508,GO-20189031014,THEFT UNDER,2018-09-11,2018,September,Tuesday,11,254,12,2018-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12233,3519,GO-20189031238,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,5,2018-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12234,3536,GO-20189031547,THEFT UNDER - BICYCLE,2018-09-21,2018,September,Friday,21,264,21,2018-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12235,3541,GO-20189031654,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,11,2018-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12236,3550,GO-20189031800,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,17,2018-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12237,3551,GO-20189031776,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,18,2018-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12238,3552,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,20,2018-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12239,3565,GO-20189032094,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,9,2018-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12240,3573,GO-20189032306,THEFT UNDER,2018-09-28,2018,September,Friday,28,271,15,2018-09-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12241,3575,GO-20181808581,PROPERTY - FOUND,2018-09-30,2018,September,Sunday,30,273,13,2018-09-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12242,3579,GO-20189032386,THEFT UNDER,2018-09-27,2018,September,Thursday,27,270,13,2018-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12243,7312,GO-20209023958,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,13,2020-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12244,5058,GO-20191539625,B&E,2019-08-02,2019,August,Friday,2,214,12,2019-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12245,6108,GO-20209012002,THEFT UNDER,2020-04-23,2020,April,Thursday,23,114,9,2020-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12246,2627,GO-20189019451,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,22,2018-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12247,3588,GO-20189032483,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,10,2018-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12248,3592,GO-20189032581,THEFT UNDER - BICYCLE,2018-09-29,2018,September,Saturday,29,272,9,2018-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12249,3593,GO-20189032594,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,20,2018-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12250,3598,GO-20189032676,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,14,2018-10-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12251,3599,GO-20189032676,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,14,2018-10-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12252,3601,GO-20189032684,THEFT UNDER,2018-09-30,2018,September,Sunday,30,273,6,2018-10-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12253,3605,GO-20189032743,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,0,2018-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12254,3612,GO-20189032814,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,16,2018-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12255,3619,GO-20189033013,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,12,2018-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12256,3636,GO-20181847962,THEFT UNDER - BICYCLE,2018-10-04,2018,October,Thursday,4,277,16,2018-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12257,3643,GO-20189033300,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,9,2018-10-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12258,3648,GO-20189033411,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,13,2018-10-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12259,3654,GO-20189033411,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,13,2018-10-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12260,3658,GO-20189033411,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,13,2018-10-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12261,3674,GO-20189033750,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,18,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12262,23383,GO-20149003279,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,14,2014-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12263,855,GO-20179010147,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,4,2017-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12264,3677,GO-20189033760,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,9,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12265,3680,GO-20181885116,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,15,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12266,3682,GO-20181886392,PROPERTY - FOUND,2018-10-12,2018,October,Friday,12,285,15,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12267,3683,GO-20181886392,PROPERTY - FOUND,2018-10-12,2018,October,Friday,12,285,15,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12268,3684,GO-20181886392,PROPERTY - FOUND,2018-10-12,2018,October,Friday,12,285,15,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12269,3685,GO-20181886392,PROPERTY - FOUND,2018-10-12,2018,October,Friday,12,285,15,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12270,3686,GO-20181886392,PROPERTY - FOUND,2018-10-12,2018,October,Friday,12,285,15,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12271,3687,GO-20181886392,PROPERTY - FOUND,2018-10-12,2018,October,Friday,12,285,15,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12272,3692,GO-20181897471,PROPERTY - FOUND,2018-10-14,2018,October,Sunday,14,287,10,2018-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12273,3693,GO-20181897471,PROPERTY - FOUND,2018-10-14,2018,October,Sunday,14,287,10,2018-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12274,3694,GO-20181897471,PROPERTY - FOUND,2018-10-14,2018,October,Sunday,14,287,10,2018-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12275,3695,GO-20181897471,PROPERTY - FOUND,2018-10-14,2018,October,Sunday,14,287,10,2018-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12276,3696,GO-20181897471,PROPERTY - FOUND,2018-10-14,2018,October,Sunday,14,287,10,2018-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12277,3697,GO-20181897471,PROPERTY - FOUND,2018-10-14,2018,October,Sunday,14,287,10,2018-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12278,3716,GO-20189034478,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,12,2018-10-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12279,3733,GO-20189034855,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,8,2018-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12280,3748,GO-20189035246,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,13,2018-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12281,3768,GO-20189035790,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,12,2018-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12282,3790,GO-20189036291,THEFT UNDER - BICYCLE,2018-10-30,2018,October,Tuesday,30,303,19,2018-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12283,3811,GO-20189036824,THEFT UNDER - BICYCLE,2018-11-03,2018,November,Saturday,3,307,8,2018-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12284,3833,GO-20189037477,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,14,2018-11-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12285,3834,GO-20189037592,THEFT UNDER - BICYCLE,2018-11-07,2018,November,Wednesday,7,311,16,2018-11-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12286,3847,GO-20189037983,THEFT UNDER - BICYCLE,2018-11-10,2018,November,Saturday,10,314,20,2018-11-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12287,3850,GO-20182093133,THEFT UNDER,2018-10-20,2018,October,Saturday,20,293,11,2018-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12288,3851,GO-20189038110,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,20,2018-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12289,3853,GO-20189038119,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,7,2018-11-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12290,3872,GO-20189038620,THEFT UNDER - BICYCLE,2018-11-18,2018,November,Sunday,18,322,8,2018-11-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12291,3883,GO-20182138264,B&E,2018-11-08,2018,November,Thursday,8,312,20,2018-11-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12292,3899,GO-20189039843,THEFT UNDER - BICYCLE,2018-11-25,2018,November,Sunday,25,329,22,2018-11-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12293,3900,GO-20189039897,THEFT UNDER - BICYCLE,2018-11-25,2018,November,Sunday,25,329,23,2018-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12294,3901,GO-20189039901,THEFT UNDER - BICYCLE,2018-11-25,2018,November,Sunday,25,329,14,2018-11-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12295,3903,GO-20189039929,THEFT UNDER - BICYCLE,2018-11-26,2018,November,Monday,26,330,0,2018-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12296,3922,GO-20189039929,THEFT UNDER - BICYCLE,2018-11-26,2018,November,Monday,26,330,0,2018-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12297,3948,GO-20189042616,THEFT UNDER - BICYCLE,2018-12-17,2018,December,Monday,17,351,19,2018-12-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12298,3959,GO-20189043318,THEFT UNDER - BICYCLE,2018-12-20,2018,December,Thursday,20,354,9,2018-12-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12299,3969,GO-20189040046,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,8,2018-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12300,3979,GO-20199000336,THEFT UNDER - BICYCLE,2019-01-03,2019,January,Thursday,3,3,19,2019-01-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12301,3988,GO-20199000800,THEFT UNDER - BICYCLE,2019-01-07,2019,January,Monday,7,7,17,2019-01-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12302,3998,GO-201936627,B&E,2019-01-06,2019,January,Sunday,6,6,0,2019-01-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12303,4007,GO-201977433,B&E,2018-12-23,2018,December,Sunday,23,357,11,2019-01-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12304,4008,GO-20199002152,THEFT UNDER - BICYCLE,2019-01-15,2019,January,Tuesday,15,15,18,2019-01-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12305,4010,GO-201990117,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,0,2019-01-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12306,4014,GO-20199002924,THEFT UNDER - BICYCLE,2019-01-18,2019,January,Friday,18,18,17,2019-01-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12307,2822,GO-20181275627,B&E,2018-07-13,2018,July,Friday,13,194,0,2018-07-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -12308,4029,GO-2019194610,THEFT UNDER - BICYCLE,2019-01-14,2019,January,Monday,14,14,19,2019-01-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12309,4030,GO-2019202017,B&E,2019-01-12,2019,January,Saturday,12,12,12,2019-02-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12310,4034,GO-20199004507,THEFT UNDER - BICYCLE,2018-12-20,2018,December,Thursday,20,354,0,2019-02-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12311,4035,GO-20199004507,THEFT UNDER - BICYCLE,2018-12-20,2018,December,Thursday,20,354,0,2019-02-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12312,4036,GO-20199004538,THEFT UNDER - BICYCLE,2019-02-05,2019,February,Tuesday,5,36,0,2019-02-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12313,4043,GO-20199004833,THEFT UNDER - BICYCLE,2019-02-07,2019,February,Thursday,7,38,16,2019-02-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12314,4045,GO-20199005146,THEFT UNDER - BICYCLE,2019-02-03,2019,February,Sunday,3,34,17,2019-02-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12315,10445,GO-20151400119,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,4,2015-08-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -12316,4051,GO-20199005662,THEFT UNDER - BICYCLE,2019-02-08,2019,February,Friday,8,39,15,2019-02-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12317,4059,GO-20199006139,THEFT UNDER - BICYCLE,2019-02-14,2019,February,Thursday,14,45,12,2019-02-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12318,4067,GO-20199006534,THEFT UNDER - BICYCLE,2019-01-15,2019,January,Tuesday,15,15,6,2019-02-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12319,4073,GO-20199007050,THEFT UNDER - BICYCLE,2019-01-31,2019,January,Thursday,31,31,12,2019-03-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12320,4075,GO-20199007087,THEFT UNDER - BICYCLE,2019-03-01,2019,March,Friday,1,60,15,2019-03-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12321,4076,GO-20199007087,THEFT UNDER - BICYCLE,2019-03-01,2019,March,Friday,1,60,15,2019-03-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12322,4077,GO-20199007087,THEFT UNDER - BICYCLE,2019-03-01,2019,March,Friday,1,60,15,2019-03-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12323,3056,GO-20189024876,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,10,2018-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12324,4079,GO-2019423759,FTC WITH CONDITIONS,2019-03-07,2019,March,Thursday,7,66,22,2019-03-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12325,4080,GO-20199007636,THEFT UNDER,2019-03-07,2019,March,Thursday,7,66,18,2019-03-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12326,4088,GO-20199007973,THEFT UNDER - BICYCLE,2019-02-19,2019,February,Tuesday,19,50,7,2019-03-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12327,4089,GO-20199007976,THEFT UNDER - BICYCLE,2019-03-06,2019,March,Wednesday,6,65,4,2019-03-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12328,4091,GO-20199008240,THEFT UNDER - BICYCLE,2019-03-10,2019,March,Sunday,10,69,1,2019-03-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12329,4098,GO-20199008840,THEFT UNDER,2019-03-07,2019,March,Thursday,7,66,23,2019-03-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12330,4116,GO-2019562192,B&E,2019-03-26,2019,March,Tuesday,26,85,12,2019-03-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12331,4138,GO-2019634628,B&E,2019-03-29,2019,March,Friday,29,88,10,2019-04-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12332,5059,GO-20191539625,B&E,2019-08-02,2019,August,Friday,2,214,12,2019-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12333,5060,GO-20199026104,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,22,2019-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12334,5061,GO-20199026133,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,12,2019-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12335,5067,GO-20199026208,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,0,2019-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12336,5088,GO-20199026449,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,18,2019-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12337,5089,GO-20191558785,THEFT UNDER - BICYCLE,2019-08-07,2019,August,Wednesday,7,219,17,2019-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12338,5230,GO-20199028699,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,0,2019-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12339,5103,GO-20199026788,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,11,2019-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12340,5105,GO-20199026614,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,20,2019-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12341,5108,GO-20199026855,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,23,2019-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12342,5126,GO-20199027184,THEFT UNDER,2019-08-21,2019,August,Wednesday,21,233,18,2019-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12343,5129,GO-20199027227,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,10,2019-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12344,5143,GO-20199027371,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,18,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12345,5154,GO-20199027585,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,18,2019-08-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12346,5164,GO-20199027686,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,15,2019-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12347,5166,GO-20199027707,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,17,2019-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12348,5176,GO-20199027865,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,10,2019-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12349,5178,GO-20199027926,THEFT UNDER - BICYCLE,2019-08-23,2019,August,Friday,23,235,14,2019-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12350,5190,GO-20199028141,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,12,2019-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12351,5203,GO-20199028393,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,20,2019-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12352,5218,GO-20199028564,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,16,2019-09-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12353,5236,GO-20191683625,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,22,2019-09-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12354,5248,GO-20199028927,THEFT UNDER - BICYCLE,2019-08-12,2019,August,Monday,12,224,0,2019-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12355,5261,GO-20191715786,THEFT UNDER,2019-09-07,2019,September,Saturday,7,250,15,2019-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12356,5278,GO-20199029299,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,10,2019-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12357,23384,GO-20142060810,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,18,2014-05-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12358,5286,GO-20199029392,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,20,2019-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12359,5289,GO-20199029484,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,19,2019-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12360,5290,GO-20199029501,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,10,2019-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12361,5302,GO-20199029660,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,9,2019-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12362,5304,GO-20199029666,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,9,2019-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12363,5305,GO-20199029693,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,17,2019-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12364,5311,GO-20199029790,THEFT UNDER - BICYCLE,2019-08-27,2019,August,Tuesday,27,239,17,2019-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12365,5318,GO-20199027926,THEFT UNDER - BICYCLE,2019-08-23,2019,August,Friday,23,235,14,2019-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12366,5328,GO-20199030081,THEFT UNDER,2019-09-02,2019,September,Monday,2,245,12,2019-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12367,5366,GO-20199030623,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,20,2019-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12368,5377,GO-20199031084,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,21,2019-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12369,5422,GO-20199031841,THEFT UNDER,2019-09-27,2019,September,Friday,27,270,9,2019-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12370,5424,GO-20199031862,THEFT UNDER - BICYCLE,2019-09-27,2019,September,Friday,27,270,15,2019-09-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12371,5454,GO-20199032331,THEFT UNDER - BICYCLE,2019-10-02,2019,October,Wednesday,2,275,10,2019-10-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12372,5475,GO-20199032723,THEFT UNDER - BICYCLE,2019-10-05,2019,October,Saturday,5,278,12,2019-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12373,6110,GO-20209012011,THEFT UNDER - BICYCLE,2020-04-27,2020,April,Monday,27,118,21,2020-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12374,2628,GO-20181107931,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,21,2018-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12375,7325,GO-20209024138,THEFT FROM MOTOR VEHICLE UNDER,2020-09-22,2020,September,Tuesday,22,266,20,2020-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12376,5489,GO-20199033159,THEFT UNDER,2019-10-08,2019,October,Tuesday,8,281,16,2019-10-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12377,5504,GO-20199033434,THEFT UNDER - BICYCLE,2019-10-10,2019,October,Thursday,10,283,18,2019-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12378,5509,GO-20199033528,THEFT UNDER - BICYCLE,2019-10-07,2019,October,Monday,7,280,13,2019-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12379,5518,GO-20191977940,B&E,2019-10-12,2019,October,Saturday,12,285,14,2019-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12380,5522,GO-20199033843,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,21,2019-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12381,5534,GO-20199034087,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,13,2019-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12382,3081,GO-20189025152,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,20,2018-08-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12383,5536,GO-20199034132,THEFT UNDER,2019-10-15,2019,October,Tuesday,15,288,18,2019-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12384,5546,GO-20199034362,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,16,2019-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12385,5547,GO-20199034421,THEFT UNDER,2019-10-14,2019,October,Monday,14,287,23,2019-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12386,5553,GO-20199034597,THEFT UNDER,2019-10-20,2019,October,Sunday,20,293,18,2019-10-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12387,5568,GO-20199034875,THEFT UNDER - BICYCLE,2019-10-22,2019,October,Tuesday,22,295,18,2019-10-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12388,5572,GO-20199034873,THEFT UNDER,2019-10-19,2019,October,Saturday,19,292,18,2019-10-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12389,5584,GO-20192051989,B&E,2019-10-22,2019,October,Tuesday,22,295,3,2019-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12390,5585,GO-20192051989,B&E,2019-10-22,2019,October,Tuesday,22,295,3,2019-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12391,5588,GO-20199035124,THEFT UNDER,2019-10-05,2019,October,Saturday,5,278,19,2019-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12392,5595,GO-20199035226,THEFT UNDER - BICYCLE,2019-10-08,2019,October,Tuesday,8,281,14,2019-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12393,5596,GO-20192067372,B&E,2019-10-23,2019,October,Wednesday,23,296,18,2019-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12394,5598,GO-20199035392,THEFT UNDER - BICYCLE,2019-10-26,2019,October,Saturday,26,299,17,2019-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12395,5599,GO-20192076777,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,18,2019-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12396,5600,GO-20192060256,B&E,2019-10-20,2019,October,Sunday,20,293,12,2019-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12397,5601,GO-20199035392,THEFT UNDER - BICYCLE,2019-10-26,2019,October,Saturday,26,299,17,2019-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12398,5617,GO-20199035786,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,20,2019-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12399,5630,GO-20192066465,POSSESSION HOUSE BREAK INSTRUM,2019-10-26,2019,October,Saturday,26,299,7,2019-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12400,5643,GO-20192127088,B&E,2019-10-05,2019,October,Saturday,5,278,0,2019-11-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12401,5644,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,19,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12402,5645,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,19,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12403,5646,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,19,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12404,5647,GO-20199036444,B&E,2019-11-04,2019,November,Monday,4,308,7,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12405,5652,GO-20199036444,B&E,2019-11-04,2019,November,Monday,4,308,7,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12406,5670,GO-20199036962,THEFT UNDER - BICYCLE,2019-11-05,2019,November,Tuesday,5,309,10,2019-11-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12407,5676,GO-20199037102,THEFT UNDER,2019-11-10,2019,November,Sunday,10,314,19,2019-11-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12408,5683,GO-20199037252,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,14,2019-11-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12409,5686,GO-20199037391,THEFT UNDER,2019-10-28,2019,October,Monday,28,301,7,2019-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12410,5705,GO-20192228533,B&E,2019-11-18,2019,November,Monday,18,322,3,2019-11-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12411,5706,GO-20192228533,B&E,2019-11-18,2019,November,Monday,18,322,3,2019-11-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12412,5721,GO-20192266882,THEFT UNDER,2019-11-24,2019,November,Sunday,24,328,2,2019-11-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12413,5731,GO-20192297332,THEFT UNDER,2019-11-28,2019,November,Thursday,28,332,13,2019-11-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12414,5741,GO-20192273759,B&E,2019-11-23,2019,November,Saturday,23,327,17,2019-11-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12415,5775,GO-20199041579,B&E,2019-12-20,2019,December,Friday,20,354,7,2019-12-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12416,5781,GO-20192471986,THEFT UNDER - BICYCLE,2019-12-23,2019,December,Monday,23,357,13,2019-12-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12417,5820,GO-20209001189,THEFT UNDER,2020-01-10,2020,January,Friday,10,10,12,2020-01-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12418,5822,GO-20209001314,THEFT UNDER,2020-01-09,2020,January,Thursday,9,9,1,2020-01-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12419,7357,GO-20209024490,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,0,2020-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12420,5838,GO-20209001880,THEFT UNDER,2019-12-12,2019,December,Thursday,12,346,20,2020-01-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12421,5856,GO-2020177426,THEFT OF MOTOR VEHICLE,2020-01-25,2020,January,Saturday,25,25,9,2020-01-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12422,5877,GO-20209004511,THEFT UNDER,2020-02-06,2020,February,Thursday,6,37,10,2020-02-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12423,5925,GO-20209006654,THEFT UNDER,2020-02-22,2020,February,Saturday,22,53,5,2020-02-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12424,5928,GO-20209006862,THEFT UNDER,2020-02-24,2020,February,Monday,24,55,17,2020-02-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12425,5939,GO-20209007557,THEFT UNDER,2020-02-02,2020,February,Sunday,2,33,22,2020-03-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12426,5940,GO-20209007557,THEFT UNDER,2020-02-02,2020,February,Sunday,2,33,22,2020-03-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12427,5942,GO-20209007730,THEFT UNDER,2020-03-04,2020,March,Wednesday,4,64,13,2020-03-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12428,5951,GO-20209008276,THEFT UNDER,2020-03-09,2020,March,Monday,9,69,11,2020-03-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12429,5952,GO-20209008323,THEFT UNDER,2020-02-17,2020,February,Monday,17,48,16,2020-03-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12430,5967,GO-20209009028,THEFT UNDER,2020-03-15,2020,March,Sunday,15,75,15,2020-03-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12431,5971,GO-2020572143,PROPERTY - FOUND,2020-03-20,2020,March,Friday,20,80,12,2020-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12432,5991,GO-20209009838,THEFT UNDER,2020-03-17,2020,March,Tuesday,17,77,20,2020-03-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12433,6010,GO-2020640291,THEFT OVER - BICYCLE,2019-12-13,2019,December,Friday,13,347,19,2020-04-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12434,6025,GO-20209010558,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,9,2020-04-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12435,6139,GO-2020835650,B&E,2020-05-03,2020,May,Sunday,3,124,17,2020-05-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12436,7338,GO-20209024298,THEFT UNDER,2020-09-23,2020,September,Wednesday,23,267,20,2020-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12437,6124,GO-20209012241,THEFT FROM MOTOR VEHICLE UNDER,2020-04-20,2020,April,Monday,20,111,20,2020-04-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12438,2631,GO-20189019511,THEFT UNDER,2018-06-20,2018,June,Wednesday,20,171,7,2018-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12439,2634,GO-20189019543,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,18,2018-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12440,2635,GO-20189019554,THEFT UNDER,2018-06-18,2018,June,Monday,18,169,10,2018-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12441,4159,GO-2019663997,B&E,2019-03-18,2019,March,Monday,18,77,0,2019-04-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12442,2636,GO-20189019526,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,2,2018-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12443,7616,GO-20209029207,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,12,2020-11-10,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -12444,2646,GO-20181134576,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,21,2018-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12445,2649,GO-20189019707,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,13,2018-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12446,2650,GO-20189019707,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,13,2018-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12447,2672,GO-20181136973,THEFT FROM MOTOR VEHICLE OVER,2018-06-22,2018,June,Friday,22,173,14,2018-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12448,2679,GO-20189020218,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,12,2018-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12449,2699,GO-20181168419,B&E,2018-06-07,2018,June,Thursday,7,158,0,2018-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12450,2704,GO-20181173194,THEFT OF EBIKE OVER $5000,2018-06-23,2018,June,Saturday,23,174,11,2018-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12451,2705,GO-20181173194,THEFT OF EBIKE OVER $5000,2018-06-23,2018,June,Saturday,23,174,11,2018-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12452,2709,GO-20181177874,B&E W'INTENT,2018-06-27,2018,June,Wednesday,27,178,1,2018-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12453,2710,GO-20181177874,B&E W'INTENT,2018-06-27,2018,June,Wednesday,27,178,1,2018-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12454,2712,GO-20181175025,B&E W'INTENT,2018-06-28,2018,June,Thursday,28,179,0,2018-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12455,2725,GO-20181201320,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,0,2018-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12456,2738,GO-20189020986,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,18,2018-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12457,2747,GO-20189021086,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,13,2018-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12458,859,GO-20171255826,THEFT UNDER - BICYCLE,2016-11-14,2016,November,Monday,14,319,12,2017-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12459,2764,GO-20189021347,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,9,2018-07-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12460,2773,GO-20189021499,THEFT UNDER,2018-07-03,2018,July,Tuesday,3,184,21,2018-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12461,2776,GO-20189021520,THEFT UNDER,2018-07-07,2018,July,Saturday,7,188,5,2018-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12462,2783,GO-20189021601,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,22,2018-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12463,2799,GO-20189021846,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,8,2018-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12464,2800,GO-20189021871,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,17,2018-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12465,13055,GO-20201196309,ROBBERY - OTHER,2020-06-29,2020,June,Monday,29,181,11,2020-06-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -12466,2808,GO-20189021964,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12467,2814,GO-20189022026,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,15,2018-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12468,2825,GO-20189022186,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,15,2018-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12469,2836,GO-20189022288,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12470,2841,GO-20189022380,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,22,2018-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12471,2845,GO-20189022431,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,13,2018-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12472,2854,GO-20189022595,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,12,2018-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12473,15540,GO-20169009121,THEFT UNDER,2016-08-21,2016,August,Sunday,21,234,0,2016-08-21,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -12474,2867,GO-20181307331,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,21,2018-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12475,2875,GO-20189022857,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,22,2018-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12476,2884,GO-20189022998,THEFT UNDER,2018-07-17,2018,July,Tuesday,17,198,18,2018-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12477,2889,GO-20189023105,THEFT UNDER,2018-07-19,2018,July,Thursday,19,200,9,2018-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12478,2891,GO-20181313639,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,12,2018-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12479,2892,GO-20181313639,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,12,2018-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12480,2894,GO-20189023138,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,22,2018-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12481,2907,GO-20189023309,THEFT UNDER,2018-07-21,2018,July,Saturday,21,202,10,2018-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12482,2908,GO-20181335093,THEFT UNDER,2018-07-20,2018,July,Friday,20,201,23,2018-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12483,2952,GO-20189023821,FTC PROBATION ORDER,2018-07-14,2018,July,Saturday,14,195,8,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12484,23385,GO-20149003362,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,18,2014-05-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12485,2958,GO-20189023847,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,21,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12486,2964,GO-20181356545,THEFT OF EBIKE UNDER $5000,2018-07-20,2018,July,Friday,20,201,20,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12487,2966,GO-20181368374,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,8,2018-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12488,13558,GO-20209017725,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,7,2020-07-16,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -12489,2968,GO-20181369496,B&E,2018-07-02,2018,July,Monday,2,183,0,2018-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12490,2979,GO-20189024077,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,19,2018-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12491,2982,GO-20189024092,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,22,2018-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12492,3010,GO-20181387172,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,12,2018-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12493,3012,GO-20181368928,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,23,2018-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12494,3014,GO-20189024399,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,15,2018-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12495,3047,GO-20189024779,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,9,2018-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12496,4300,GO-2019906362,B&E W'INTENT,2019-05-18,2019,May,Saturday,18,138,13,2019-05-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -12497,3088,GO-20189025228,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,18,2018-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12498,3097,GO-20189025364,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,21,2018-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12499,3098,GO-20189025369,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,16,2018-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12500,3110,GO-20189025491,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,19,2018-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12501,3114,GO-20181458959,B&E,2018-07-18,2018,July,Wednesday,18,199,3,2018-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12502,3115,GO-20181458959,B&E,2018-07-18,2018,July,Wednesday,18,199,3,2018-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12503,3121,GO-20181457389,B&E,2018-07-28,2018,July,Saturday,28,209,14,2018-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12504,4638,GO-20191211680,B&E,2019-06-29,2019,June,Saturday,29,180,5,2019-06-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -12505,3134,GO-20181462659,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,10,2018-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12506,3149,GO-20181469857,PROPERTY - FOUND,2018-08-09,2018,August,Thursday,9,221,23,2018-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12507,3150,GO-20181469857,PROPERTY - FOUND,2018-08-09,2018,August,Thursday,9,221,23,2018-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12508,3156,GO-20189025910,THEFT UNDER,2018-08-09,2018,August,Thursday,9,221,20,2018-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12509,3157,GO-20189025927,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,7,2018-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12510,3158,GO-20189025939,THEFT UNDER,2018-08-08,2018,August,Wednesday,8,220,23,2018-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12511,3194,GO-20189026273,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,19,2018-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12512,6169,GO-20209012990,THEFT UNDER,2020-04-13,2020,April,Monday,13,104,6,2020-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12513,3203,GO-20189026447,THEFT UNDER,2018-08-11,2018,August,Saturday,11,223,1,2018-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12514,3207,GO-20189026529,THEFT UNDER,2018-08-03,2018,August,Friday,3,215,16,2018-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12515,3228,GO-20189026666,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,11,2018-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12516,3229,GO-20189026714,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,16,2018-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12517,3232,GO-20189026757,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,17,2018-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12518,3239,GO-20181491522,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,20,2018-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12519,3241,GO-20189026876,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,23,2018-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12520,3243,GO-20189026940,THEFT UNDER,2018-08-18,2018,August,Saturday,18,230,16,2018-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12521,3247,GO-20189026982,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,6,2018-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12522,3255,GO-20189027069,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,7,2018-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12523,3257,GO-20181537539,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,11,2018-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12524,3266,GO-20189027165,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,16,2018-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12525,3304,GO-20189027703,B&E,2018-08-23,2018,August,Thursday,23,235,12,2018-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12526,3324,GO-20189027980,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,7,2018-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12527,3327,GO-20181576282,THEFT OF EBIKE UNDER $5000,2018-08-21,2018,August,Tuesday,21,233,11,2018-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12528,3328,GO-20181562488,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,18,2018-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12529,3345,GO-20189028355,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,18,2018-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12530,3346,GO-20189028344,THEFT UNDER,2018-08-28,2018,August,Tuesday,28,240,13,2018-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12531,3349,GO-20189028368,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,8,2018-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12532,3355,GO-20189028535,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,11,2018-08-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12533,3358,GO-20189028539,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,0,2018-08-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12534,3359,GO-20189028539,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,0,2018-08-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12535,3372,GO-20189028698,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,22,2018-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12536,3380,GO-20189028871,THEFT UNDER - BICYCLE,2018-09-02,2018,September,Sunday,2,245,13,2018-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12537,3405,GO-20189029363,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,14,2018-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12538,3406,GO-20189029363,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,14,2018-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12539,3410,GO-20189029383,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,21,2018-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12540,3411,GO-20189029383,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,21,2018-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12541,11940,GO-20161330724,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,3,2016-07-29,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -12542,3413,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,20,2018-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12543,3418,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,20,2018-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12544,4160,GO-2019663997,B&E,2019-03-18,2019,March,Monday,18,77,0,2019-04-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12545,4163,GO-20199011738,THEFT UNDER - BICYCLE,2019-04-10,2019,April,Wednesday,10,100,1,2019-04-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12546,6146,GO-20209012551,THEFT UNDER,2020-05-01,2020,May,Friday,1,122,20,2020-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12547,4165,GO-2019675257,THEFT UNDER,2019-02-09,2019,February,Saturday,9,40,19,2019-04-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12548,862,GO-20179010204,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,18,2017-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12549,23386,GO-20142087190,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,8,2014-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12550,23388,GO-20149003766,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,7,2014-06-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12551,23389,GO-20142202784,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,17,2014-06-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12552,24784,GO-20149003990,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,18,2014-06-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12553,6155,GO-20209012633,THEFT UNDER,2020-05-03,2020,May,Sunday,3,124,13,2020-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12554,24786,GO-20142282088,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,12,2014-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12555,4181,GO-2019697574,THEFT UNDER,2019-04-17,2019,April,Wednesday,17,107,22,2019-04-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12556,24788,GO-20142294533,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,15,2014-06-15,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12557,4255,GO-2019833155,PROPERTY - FOUND,2019-05-08,2019,May,Wednesday,8,128,8,2019-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12558,866,GO-20179010237,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,16,2017-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12559,7359,GO-20209024560,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,17,2020-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12560,4184,GO-20199012470,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,20,2019-04-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12561,7376,GO-20209024767,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,12,2020-09-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12562,880,GO-20179010355,THEFT UNDER,2017-07-16,2017,July,Sunday,16,197,20,2017-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12563,6185,GO-20209013104,THEFT UNDER,2020-05-13,2020,May,Wednesday,13,134,14,2020-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12564,4207,GO-20199013317,THEFT UNDER,2019-04-25,2019,April,Thursday,25,115,3,2019-04-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12565,17835,GO-20189019367,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,1,2018-06-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -12566,7399,GO-20209025226,THEFT UNDER,2020-10-02,2020,October,Friday,2,276,9,2020-10-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12567,4221,GO-20199013580,THEFT UNDER,2019-04-30,2019,April,Tuesday,30,120,21,2019-05-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12568,24789,GO-20149004153,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,8,2014-06-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12569,4234,GO-20199013979,B&E,2019-03-05,2019,March,Tuesday,5,64,12,2019-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12570,4237,GO-20199014030,THEFT UNDER,2019-04-28,2019,April,Sunday,28,118,17,2019-05-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12571,4247,GO-20199014241,THEFT UNDER - BICYCLE,2019-05-07,2019,May,Tuesday,7,127,17,2019-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12572,4248,GO-20199014260,THEFT UNDER,2019-05-07,2019,May,Tuesday,7,127,23,2019-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12573,4254,GO-2019833155,PROPERTY - FOUND,2019-05-08,2019,May,Wednesday,8,128,8,2019-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12574,4261,GO-2019842069,THEFT UNDER,2019-04-21,2019,April,Sunday,21,111,12,2019-05-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12575,4265,GO-20199014694,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,18,2019-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12576,4283,GO-20199015187,THEFT UNDER,2019-01-01,2019,January,Tuesday,1,1,19,2019-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12577,4286,GO-20199015288,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,18,2019-05-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12578,4311,GO-2019914315,THEFT UNDER,2019-05-19,2019,May,Sunday,19,139,15,2019-05-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12579,4345,GO-20199016265,THEFT UNDER - BICYCLE,2019-05-23,2019,May,Thursday,23,143,23,2019-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12580,4347,GO-2019956862,THEFT UNDER - BICYCLE,2019-05-25,2019,May,Saturday,25,145,17,2019-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12581,4348,GO-20199016336,THEFT UNDER,2019-05-26,2019,May,Sunday,26,146,1,2019-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12582,4354,GO-20199016408,THEFT UNDER - BICYCLE,2019-05-18,2019,May,Saturday,18,138,19,2019-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12583,4387,GO-2019999079,B&E,2019-05-30,2019,May,Thursday,30,150,6,2019-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12584,6188,GO-20209013166,B&E,2020-05-15,2020,May,Friday,15,136,1,2020-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12585,884,GO-20179010366,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,18,2017-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12586,4390,GO-20199017051,THEFT UNDER,2019-05-25,2019,May,Saturday,25,145,12,2019-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12587,4410,GO-20199017437,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,19,2019-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12588,4411,GO-20199017437,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,19,2019-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12589,4433,GO-20191057891,B&E,2019-05-20,2019,May,Monday,20,140,16,2019-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12590,4437,GO-20199017910,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,12,2019-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12591,4446,GO-20199018001,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,9,2019-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12592,4456,GO-20199018172,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,11,2019-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12593,4457,GO-20199018195,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,13,2019-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12594,4466,GO-20199018288,THEFT UNDER,2019-06-02,2019,June,Sunday,2,153,19,2019-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12595,4473,GO-20191075601,THEFT UNDER - BICYCLE,2019-06-11,2019,June,Tuesday,11,162,11,2019-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12596,4486,GO-20199018583,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,13,2019-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12597,13243,GO-20199012725,THEFT UNDER,2019-04-22,2019,April,Monday,22,112,21,2019-04-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -12598,4523,GO-20199019050,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,5,2019-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12599,4533,GO-20199019144,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,23,2019-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12600,4565,GO-20199019476,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,18,2019-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12601,4572,GO-20199019514,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,16,2019-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12602,4576,GO-20199019564,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,12,2019-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12603,4578,GO-20199019568,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,20,2019-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12604,4581,GO-20199019646,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,1,2019-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12605,4584,GO-20199019727,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,19,2019-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12606,4585,GO-20199019735,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,17,2019-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12607,4594,GO-20199019937,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,20,2019-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12608,4634,GO-20191186580,THEFT UNDER - BICYCLE,2019-06-26,2019,June,Wednesday,26,177,5,2019-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12609,4639,GO-20199020510,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,0,2019-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12610,4647,GO-20199020612,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,10,2019-06-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12611,4671,GO-20199021031,B&E,2019-06-30,2019,June,Sunday,30,181,11,2019-07-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12612,4674,GO-20199021075,ARR/WARR EXECUTED NO ADDED CHG,2019-06-10,2019,June,Monday,10,161,1,2019-07-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12613,4981,GO-20199025123,B&E,2019-08-04,2019,August,Sunday,4,216,17,2019-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12614,4693,GO-20191233733,DRUG - POSS METH (SCHD I),2019-06-11,2019,June,Tuesday,11,162,6,2019-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12615,4694,GO-20199021367,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,2,2019-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12616,4711,GO-20199021532,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,17,2019-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12617,4713,GO-20199021586,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,0,2019-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12618,4714,GO-20199020612,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,10,2019-06-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12619,4719,GO-20199021625,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,14,2019-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12620,4720,GO-20199021608,THEFT UNDER - BICYCLE,2019-07-09,2019,July,Tuesday,9,190,11,2019-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12621,4724,GO-20191287270,B&E,2019-07-06,2019,July,Saturday,6,187,3,2019-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12622,4728,GO-20191273121,THEFT UNDER - BICYCLE,2019-07-05,2019,July,Friday,5,186,17,2019-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12623,4761,GO-20199022081,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,11,2019-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12624,4765,GO-20199022175,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,18,2019-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12625,4785,GO-20199022526,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,15,2019-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12626,4802,GO-20191353801,B&E W'INTENT,2019-07-05,2019,July,Friday,5,186,18,2019-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12627,4803,GO-20191355268,THEFT OF EBIKE OVER $5000,2019-07-19,2019,July,Friday,19,200,8,2019-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12628,4841,GO-20199023289,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,17,2019-07-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12629,13371,GO-20169004202,THEFT UNDER,2016-05-03,2016,May,Tuesday,3,124,16,2016-05-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -12630,4849,GO-20199023408,THEFT UNDER - BICYCLE,2019-07-20,2019,July,Saturday,20,201,20,2019-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12631,4854,GO-20199023475,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,19,2019-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12632,4860,GO-20191390950,THEFT UNDER - BICYCLE,2019-07-20,2019,July,Saturday,20,201,8,2019-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12633,4864,GO-20199022526,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,15,2019-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12634,4875,GO-20199023641,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,17,2019-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12635,4881,GO-20199023734,THEFT UNDER,2019-07-23,2019,July,Tuesday,23,204,17,2019-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12636,4883,GO-20199023777,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,7,2019-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12637,5021,GO-20199025626,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,5,2019-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12638,4893,GO-20199023857,THEFT UNDER,2019-07-12,2019,July,Friday,12,193,14,2019-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12639,4902,GO-20199024066,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,0,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12640,4908,GO-20199024098,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,21,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12641,4909,GO-20199024119,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,14,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12642,4910,GO-20199024129,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,22,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12643,4911,GO-20199024135,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,11,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12644,4914,GO-20199024182,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,23,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12645,12712,GO-20169012900,THEFT UNDER,2016-11-02,2016,November,Wednesday,2,307,15,2016-11-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -12646,4919,GO-20199024278,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,10,2019-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12647,4931,GO-20199024359,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,9,2019-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12648,4936,GO-20191423327,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,22,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12649,4945,GO-20199024182,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,23,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12650,4954,GO-20199024702,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,18,2019-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12651,4964,GO-20199024910,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,17,2019-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12652,4970,GO-20199024978,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,12,2019-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12653,2007,GO-2018181008,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,18,2018-01-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -12654,4987,GO-20199025282,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,9,2019-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12655,4990,GO-20199025339,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,17,2019-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12656,4991,GO-20199025342,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,8,2019-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12657,4992,GO-20199025344,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,18,2019-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12658,5004,GO-20199025437,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,23,2019-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12659,5006,GO-20199025447,THEFT UNDER - BICYCLE,2019-08-08,2019,August,Thursday,8,220,20,2019-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12660,5007,GO-20199025469,THEFT UNDER - BICYCLE,2019-08-09,2019,August,Friday,9,221,9,2019-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12661,5017,GO-20199025603,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,14,2019-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12662,5024,GO-20199025673,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,15,2019-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12663,5034,GO-20199025744,THEFT UNDER,2019-08-09,2019,August,Friday,9,221,17,2019-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12664,5036,GO-20191465566,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,16,2019-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12665,5043,GO-20199025892,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,11,2019-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12666,7410,GO-20209025394,THEFT UNDER,2020-10-03,2020,October,Saturday,3,277,16,2020-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12667,6191,GO-2020902575,B&E,2020-05-06,2020,May,Wednesday,6,127,20,2020-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12668,7423,GO-20209025579,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,20,2020-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12669,7746,GO-20149000495,THEFT UNDER,2014-01-12,2014,January,Sunday,12,12,10,2014-01-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12670,6195,GO-2020915124,PROPERTY - FOUND,2020-05-12,2020,May,Tuesday,12,133,19,2020-05-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12671,7440,GO-20209026073,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,16,2020-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12672,7441,GO-20209026073,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,16,2020-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12673,7453,GO-20201942391,B&E,2020-10-13,2020,October,Tuesday,13,287,3,2020-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12674,7458,GO-20209026316,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,16,2020-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12675,7463,GO-20209026386,THEFT UNDER,2020-10-14,2020,October,Wednesday,14,288,0,2020-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12676,7477,GO-20201942391,B&E,2020-10-13,2020,October,Tuesday,13,287,3,2020-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12677,7490,GO-20209026791,THEFT UNDER,2020-10-16,2020,October,Friday,16,290,18,2020-10-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12678,7511,GO-20209026975,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,17,2020-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12679,7520,GO-20209027132,THEFT UNDER - BICYCLE,2020-10-11,2020,October,Sunday,11,285,3,2020-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12680,7531,GO-20202016467,THEFT OF EBIKE UNDER $5000,2020-10-24,2020,October,Saturday,24,298,4,2020-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12681,7549,GO-20209027724,THEFT UNDER,2020-10-03,2020,October,Saturday,3,277,16,2020-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12682,7553,GO-20209027761,ASSAULT WITH WEAPON,2020-10-24,2020,October,Saturday,24,298,12,2020-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12683,7575,GO-20201964330,B&E,2020-10-09,2020,October,Friday,9,283,22,2020-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12684,7588,GO-20202092143,B&E,2020-10-01,2020,October,Thursday,1,275,0,2020-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12685,7590,GO-20209028568,THEFT UNDER,2020-10-27,2020,October,Tuesday,27,301,8,2020-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12686,7612,GO-20209029155,THEFT UNDER,2020-11-09,2020,November,Monday,9,314,20,2020-11-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12687,7633,GO-20209029557,THEFT UNDER,2020-11-09,2020,November,Monday,9,314,9,2020-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12688,7634,GO-20209029557,THEFT UNDER,2020-11-09,2020,November,Monday,9,314,9,2020-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12689,7636,GO-20209027724,THEFT UNDER,2020-10-03,2020,October,Saturday,3,277,16,2020-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12690,7640,GO-20209029612,THEFT UNDER - BICYCLE,2020-11-14,2020,November,Saturday,14,319,10,2020-11-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12691,7649,GO-20209030196,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,3,2020-11-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12692,7960,GO-20149003532,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,8,2014-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12693,7672,GO-20209030820,THEFT UNDER,2020-11-17,2020,November,Tuesday,17,322,22,2020-11-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12694,7689,GO-20202290727,B&E,2020-12-04,2020,December,Friday,4,339,3,2020-12-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12695,7704,GO-20202336486,THEFT OF EBIKE UNDER $5000,2020-12-11,2020,December,Friday,11,346,3,2020-12-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12696,7732,GO-20149000090,THEFT UNDER,2014-01-01,2014,January,Wednesday,1,1,12,2014-01-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12697,7737,GO-20141298201,THEFT UNDER,2013-12-27,2013,December,Friday,27,361,20,2014-01-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12698,7741,GO-20141318032,THEFT UNDER,2014-01-10,2014,January,Friday,10,10,6,2014-01-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12699,7744,GO-20149000374,THEFT UNDER,2013-06-06,2013,June,Thursday,6,157,9,2014-01-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12700,7753,GO-20141414982,THEFT OVER,2014-01-25,2014,January,Saturday,25,25,18,2014-01-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12701,893,GO-20171284140,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,8,2017-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12702,24790,GO-20142344462,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,11,2014-06-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12703,7818,GO-20149002612,THEFT UNDER,2014-04-06,2014,April,Sunday,6,96,18,2014-04-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12704,7828,GO-20141871654,THEFT UNDER,2014-04-10,2014,April,Thursday,10,100,12,2014-04-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12705,7838,GO-20141894951,THEFT OVER,2014-04-09,2014,April,Wednesday,9,99,18,2014-04-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12706,7857,GO-20149002973,THEFT UNDER,2014-04-20,2014,April,Sunday,20,110,12,2014-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12707,7866,GO-20141963730,THEFT UNDER,2014-04-25,2014,April,Friday,25,115,9,2014-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12708,7885,GO-20149003161,THEFT UNDER,2014-05-04,2014,May,Sunday,4,124,22,2014-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12709,7889,GO-20142032198,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,17,2014-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12710,7921,GO-20142077430,PROPERTY - FOUND,2014-05-14,2014,May,Wednesday,14,134,12,2014-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12711,7928,GO-20149003341,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,13,2014-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12712,7951,GO-20142135785,THEFT UNDER,2014-05-18,2014,May,Sunday,18,138,21,2014-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12713,7954,GO-20149003515,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,16,2014-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12714,12763,GO-20169013410,THEFT UNDER,2016-11-14,2016,November,Monday,14,319,14,2016-11-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -12715,7987,GO-20149003622,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,16,2014-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12716,8018,GO-20149003734,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,23,2014-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12717,8020,GO-20149003741,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,15,2014-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12718,8038,GO-20149003778,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,10,2014-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12719,8042,GO-20142210351,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,14,2014-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12720,8046,GO-20142222258,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,17,2014-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12721,8052,GO-20149003813,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,12,2014-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12722,8060,GO-20142233973,PROPERTY - RECOVERED,2014-06-06,2014,June,Friday,6,157,14,2014-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12723,8072,GO-20142233660,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,9,2014-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12724,8073,GO-20142235373,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,9,2014-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12725,8075,GO-20149003885,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,20,2014-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12726,8078,GO-20142225651,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,10,2014-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12727,8134,GO-20149003975,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,21,2014-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12728,8140,GO-20149004035,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,18,2014-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12729,8143,GO-20149004038,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,20,2014-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12730,8160,GO-20142295871,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,16,2014-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12731,8194,GO-20149004265,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,4,2014-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12732,8196,GO-20142318612,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,17,2014-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12733,8201,GO-20149004289,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,17,2014-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12734,8208,GO-20149004310,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,19,2014-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12735,8222,GO-20142345203,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,14,2014-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12736,8226,GO-20142346050,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,18,2014-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12737,6339,GO-20209014896,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,2,2020-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12738,8227,GO-20142349172,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,18,2014-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12739,8260,GO-20149004483,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,18,2014-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12740,8263,GO-20149004493,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,12,2014-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12741,8270,GO-20142412907,THEFT OVER,2014-06-02,2014,June,Monday,2,153,12,2014-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12742,8276,GO-20149004551,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,19,2014-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12743,8297,GO-20149004574,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,14,2014-06-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12744,8312,GO-20149004634,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,16,2014-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12745,7013,GO-20209020798,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,21,2020-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12746,8315,GO-20149004632,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,16,2014-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12747,8318,GO-20149004622,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,20,2014-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12748,8341,GO-20149004685,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,16,2014-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12749,8362,GO-20149004798,THEFT FROM MOTOR VEHICLE UNDER,2014-07-07,2014,July,Monday,7,188,16,2014-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12750,8404,GO-20149004933,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,10,2014-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12751,8408,GO-20149004944,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,19,2014-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12752,8411,GO-20142490706,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,16,2014-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12753,8424,GO-20149004993,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,16,2014-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12754,8426,GO-20149004998,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,21,2014-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12755,8449,GO-20149005106,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,13,2014-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12756,8453,GO-20149005111,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,21,2014-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12757,8455,GO-20149005121,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,0,2014-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12758,8473,GO-20142537069,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,14,2014-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12759,8477,GO-20149005200,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,15,2014-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12760,8491,GO-20142528385,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,17,2014-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12761,8504,GO-20149005301,THEFT FROM MOTOR VEHICLE UNDER,2014-07-24,2014,July,Thursday,24,205,8,2014-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12762,8509,GO-20149005320,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,15,2014-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12763,8513,GO-20142581151,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,17,2014-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12764,6231,GO-2020949106,B&E,2020-01-01,2020,January,Wednesday,1,1,0,2020-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12765,6252,GO-20209013854,THEFT UNDER,2020-05-06,2020,May,Wednesday,6,127,17,2020-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12766,6254,GO-20209013954,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,12,2020-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12767,45,GO-20179000494,THEFT UNDER,2017-01-11,2017,January,Wednesday,11,11,12,2017-01-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -12768,6256,GO-20209013984,THEFT UNDER,2020-05-26,2020,May,Tuesday,26,147,19,2020-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12769,6286,GO-20209014434,THEFT UNDER,2020-06-02,2020,June,Tuesday,2,154,10,2020-06-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12770,6321,GO-20209014800,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,14,2020-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12771,6322,GO-20201056853,THEFT UNDER - BICYCLE,2020-06-08,2020,June,Monday,8,160,20,2020-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12772,24793,GO-20149004350,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,13,2014-06-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12773,6331,GO-20209014834,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,21,2020-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12774,6337,GO-20209014892,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,23,2020-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12775,6338,GO-20209014893,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,23,2020-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12776,6343,GO-20209014916,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,11,2020-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12777,6353,GO-20209015065,THEFT UNDER,2020-06-08,2020,June,Monday,8,160,12,2020-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12778,6358,GO-20209015100,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,13,2020-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12779,6365,GO-20209015181,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,11,2020-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12780,6369,GO-20209015252,THEFT UNDER,2020-06-12,2020,June,Friday,12,164,17,2020-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12781,6371,GO-20209015279,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,1,2020-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12782,6389,GO-20209015386,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,15,2020-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12783,6401,GO-20201094553,THEFT OVER,2020-06-14,2020,June,Sunday,14,166,5,2020-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12784,6408,GO-20201099564,B&E,2020-06-15,2020,June,Monday,15,167,4,2020-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12785,6428,GO-20209015729,THEFT UNDER - BICYCLE,2020-06-16,2020,June,Tuesday,16,168,22,2020-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12786,6443,GO-20209015917,THEFT UNDER,2020-06-20,2020,June,Saturday,20,172,6,2020-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12787,6444,GO-20209015929,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,18,2020-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12788,6446,GO-20209015949,THEFT UNDER,2020-06-19,2020,June,Friday,19,171,16,2020-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12789,6463,GO-20209016131,THEFT UNDER,2020-06-12,2020,June,Friday,12,164,21,2020-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12790,6467,GO-20209016117,THEFT UNDER,2020-06-18,2020,June,Thursday,18,170,13,2020-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12791,24809,GO-20149005585,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,13,2014-08-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12792,6475,GO-20209016248,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,2,2020-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12793,6482,GO-20201162595,THEFT UNDER - BICYCLE,2020-06-21,2020,June,Sunday,21,173,18,2020-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12794,6500,GO-20209016553,THEFT UNDER,2020-06-30,2020,June,Tuesday,30,182,0,2020-06-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12795,6513,GO-20209016629,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,17,2020-07-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12796,6517,GO-20209016675,THEFT UNDER,2020-07-01,2020,July,Wednesday,1,183,2,2020-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12797,6518,GO-20209016675,THEFT UNDER,2020-07-01,2020,July,Wednesday,1,183,2,2020-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12798,6520,GO-20209016712,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,0,2020-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12799,898,GO-20179010445,THEFT UNDER,2017-07-17,2017,July,Monday,17,198,14,2017-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12800,6522,GO-20209016721,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,0,2020-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12801,6525,GO-20209016794,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,19,2020-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12802,6608,GO-20209016980,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,21,2020-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12803,6615,GO-20201281547,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,21,2020-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12804,6631,GO-20209017669,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,15,2020-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12805,6633,GO-20201298060,PROPERTY - RECOVERED,2020-07-12,2020,July,Sunday,12,194,18,2020-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12806,6642,GO-20209017743,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,11,2020-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12807,6648,GO-20209017818,THEFT UNDER,2020-07-14,2020,July,Tuesday,14,196,18,2020-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12808,6657,GO-20209017866,THEFT UNDER,2020-07-14,2020,July,Tuesday,14,196,12,2020-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12809,6676,GO-20209018026,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,2,2020-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12810,6684,GO-20201357496,THEFT OF EBIKE UNDER $5000,2020-07-20,2020,July,Monday,20,202,22,2020-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12811,6701,GO-20209018226,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,20,2020-07-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12812,6706,GO-20201349405,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,6,2020-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12813,6743,GO-20209018587,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,14,2020-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12814,6744,GO-20209018592,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,17,2020-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12815,6757,GO-20209018667,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,21,2020-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12816,6787,GO-20209018792,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,7,2020-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12817,6796,GO-20209018593,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,0,2020-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12818,6800,GO-20209018855,THEFT UNDER,2020-07-01,2020,July,Wednesday,1,183,23,2020-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12819,6816,GO-20209019004,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,0,2020-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12820,6823,GO-20209019058,INVALID GO - RMS ONLY,2020-07-31,2020,July,Friday,31,213,8,2020-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12821,6853,GO-20209019244,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,2,2020-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12822,6875,GO-20209019454,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,3,2020-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12823,6896,GO-20209019619,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,18,2020-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12824,6965,GO-20201533042,THEFT OF EBIKE UNDER $5000,2020-08-11,2020,August,Tuesday,11,224,17,2020-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12825,6967,GO-20201543193,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,20,2020-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12826,6971,GO-20209020394,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,19,2020-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12827,6972,GO-20209020394,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,19,2020-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12828,6994,GO-20201556222,B&E W'INTENT,2020-08-19,2020,August,Wednesday,19,232,5,2020-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12829,6995,GO-20201556222,B&E W'INTENT,2020-08-19,2020,August,Wednesday,19,232,5,2020-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12830,7024,GO-20209020890,THEFT UNDER - BICYCLE,2020-08-21,2020,August,Friday,21,234,12,2020-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12831,7052,GO-20209021053,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,21,2020-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12832,7059,GO-20209021148,THEFT UNDER,2020-08-23,2020,August,Sunday,23,236,21,2020-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12833,7081,GO-20209021371,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,11,2020-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12834,7100,GO-20201617943,B&E,2020-08-12,2020,August,Wednesday,12,225,15,2020-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12835,7128,GO-20201623255,THEFT UNDER - BICYCLE,2020-08-26,2020,August,Wednesday,26,239,13,2020-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12836,7142,GO-20209021934,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,15,2020-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12837,7150,GO-20201654713,B&E,2020-01-01,2020,January,Wednesday,1,1,12,2020-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12838,7182,GO-20201687172,THEFT OF EBIKE UNDER $5000,2020-09-05,2020,September,Saturday,5,249,20,2020-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12839,7188,GO-20209022454,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,13,2020-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12840,7189,GO-20209022460,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,15,2020-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12841,7191,GO-20209022467,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,20,2020-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12842,7193,GO-20201694260,THEFT UNDER,2020-09-02,2020,September,Wednesday,2,246,21,2020-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12843,7212,GO-20209022700,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,13,2020-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12844,7228,GO-20209022908,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,22,2020-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12845,7236,GO-20209023073,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,20,2020-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12846,7242,GO-20209023188,THEFT UNDER,2020-08-28,2020,August,Friday,28,241,23,2020-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12847,7243,GO-20209023188,THEFT UNDER,2020-08-28,2020,August,Friday,28,241,23,2020-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12848,7244,GO-20209023188,THEFT UNDER,2020-08-28,2020,August,Friday,28,241,23,2020-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12849,7248,GO-20201747422,THEFT UNDER - BICYCLE,2020-09-06,2020,September,Sunday,6,250,15,2020-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12850,7254,GO-20209023333,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,12,2020-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12851,7260,GO-20209023380,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,15,2020-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12852,7261,GO-20209023406,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,23,2020-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12853,7264,GO-20209023478,THEFT UNDER,2020-09-13,2020,September,Sunday,13,257,12,2020-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12854,24798,GO-20149004719,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,23,2014-07-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12855,24801,GO-20149005031,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,9,2014-07-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12856,24802,GO-20142525141,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,12,2014-07-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12857,24807,GO-20149005375,THEFT UNDER,2014-07-26,2014,July,Saturday,26,207,16,2014-07-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12858,24810,GO-20149005626,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,14,2014-08-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12859,24811,GO-20142667516,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,15,2014-08-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12860,24813,GO-20149005852,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,17,2014-08-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12861,24814,GO-20149005856,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,13,2014-08-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12862,24816,GO-20149005898,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,0,2014-08-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12863,24820,GO-20149006069,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,17,2014-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12864,24822,GO-20149006322,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,9,2014-08-26,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12865,24823,GO-20149006351,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,0,2014-08-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12866,24828,GO-20142896715,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,19,2014-09-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12867,24829,GO-20149007087,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,10,2014-09-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12868,24831,GO-20149007339,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,19,2014-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12869,24832,GO-20149007339,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,19,2014-10-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12870,24833,GO-20143037350,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,17,2014-10-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12871,24839,GO-20143286756,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,6,2014-11-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12872,24840,GO-20143300252,THEFT OVER,2014-11-14,2014,November,Friday,14,318,12,2014-11-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12873,24843,GO-20149008938,THEFT UNDER,2014-12-20,2014,December,Saturday,20,354,2,2014-12-23,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12874,24846,GO-2015637257,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,17,2015-04-17,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12875,24847,GO-2015659670,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,1,2015-04-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12876,24848,GO-20159002221,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,8,2015-04-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12877,24854,GO-2015790639,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,22,2015-05-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12878,24855,GO-20159002706,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,14,2015-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12879,24857,GO-20159002808,THEFT UNDER,2015-05-16,2015,May,Saturday,16,136,18,2015-05-16,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12880,24858,GO-20159002925,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,18,2015-05-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12881,24859,GO-2015849105,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,9,2015-05-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12882,24860,GO-20159003051,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,12,2015-05-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12883,24861,GO-20159003145,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,19,2015-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12884,24864,GO-20159003474,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,7,2015-06-09,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12885,24866,GO-2015972579,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,8,2015-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12886,24867,GO-2015972579,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,8,2015-06-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12887,24868,GO-20159003541,THEFT UNDER,2015-06-12,2015,June,Friday,12,163,8,2015-06-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12888,24869,GO-20151023232,THEFT OVER,2015-06-15,2015,June,Monday,15,166,0,2015-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12889,24870,GO-20151023232,THEFT OVER,2015-06-15,2015,June,Monday,15,166,0,2015-06-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12890,24872,GO-20151108363,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,14,2015-07-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12891,24873,GO-20159004121,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,19,2015-07-02,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12892,24874,GO-20159004156,THEFT UNDER,2015-06-27,2015,June,Saturday,27,178,8,2015-07-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12893,24875,GO-20159004160,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,9,2015-07-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12894,24877,GO-20151185923,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,21,2015-07-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12895,24879,GO-20159004726,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,12,2015-07-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12896,24881,GO-20159004946,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,12,2015-07-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12897,24883,GO-20159005637,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,17,2015-08-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12898,24888,GO-20159006469,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,8,2015-08-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12899,24889,GO-20159006497,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,18,2015-08-29,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12900,24890,GO-20159006583,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,10,2015-08-31,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12901,24891,GO-20151549586,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,17,2015-09-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12902,24893,GO-20159007035,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,8,2015-09-11,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12903,24895,GO-20151770591,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,10,2015-10-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12904,24896,GO-20151833000,THEFT UNDER,2015-10-24,2015,October,Saturday,24,297,19,2015-10-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12905,24897,GO-20159010212,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,23,2015-11-25,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12906,24899,GO-20152212123,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,16,2015-12-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12907,24900,GO-20169000129,THEFT UNDER,2015-12-23,2015,December,Wednesday,23,357,14,2016-01-04,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12908,24902,GO-2016190057,B&E,2016-01-30,2016,January,Saturday,30,30,12,2016-02-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12909,24906,GO-20169002566,THEFT UNDER - BICYCLE,2016-03-22,2016,March,Tuesday,22,82,10,2016-03-22,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12910,24908,GO-2016502907,THEFT UNDER - BICYCLE,2016-03-21,2016,March,Monday,21,81,18,2016-03-24,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12911,24909,GO-20169003032,THEFT UNDER,2016-04-03,2016,April,Sunday,3,94,12,2016-04-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12912,24911,GO-20169003529,THEFT UNDER,2016-03-30,2016,March,Wednesday,30,90,18,2016-04-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12913,24912,GO-20169003560,THEFT UNDER - BICYCLE,2016-04-09,2016,April,Saturday,9,100,23,2016-04-19,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12914,24918,GO-2016803225,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,8,2016-05-10,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12915,24920,GO-20169004484,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,15,2016-05-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12916,24921,GO-20169004653,THEFT UNDER,2016-05-16,2016,May,Monday,16,137,16,2016-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12917,24922,GO-20169004676,THEFT UNDER,2016-05-17,2016,May,Tuesday,17,138,15,2016-05-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12918,24923,GO-20169005031,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,12,2016-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12919,24924,GO-20169005034,THEFT UNDER - BICYCLE,2016-05-26,2016,May,Thursday,26,147,15,2016-05-27,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12920,24926,GO-20169005106,THEFT UNDER,2016-05-26,2016,May,Thursday,26,147,11,2016-05-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12921,24927,GO-2016938302,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,20,2016-05-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12922,24929,GO-20169005505,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,7,2016-06-08,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12923,24930,GO-20169005720,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,14,2016-06-13,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12924,24933,GO-20169006052,THEFT UNDER,2016-06-18,2016,June,Saturday,18,170,0,2016-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12925,24934,GO-20169006099,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,18,2016-06-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12926,24935,GO-20169006110,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,15,2016-06-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12927,24940,GO-20161131788,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,2,2016-06-28,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12928,24944,GO-20169006880,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,1,2016-07-07,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12929,24946,GO-20169007104,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,8,2016-07-12,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12930,24949,GO-20169007490,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,8,2016-07-20,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12931,24951,GO-20169007949,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,9,2016-07-30,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12932,24953,GO-20169008170,THEFT UNDER,2016-08-02,2016,August,Tuesday,2,215,15,2016-08-03,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12933,24956,GO-20169008313,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,16,2016-08-06,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12934,24959,GO-20169008744,THEFT UNDER - BICYCLE,2016-08-13,2016,August,Saturday,13,226,13,2016-08-14,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12935,24960,GO-20169008990,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,22,2016-08-18,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12936,24961,GO-20169009171,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,17,2016-08-21,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12937,1262,GO-20179013568,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,21,2017-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12938,24966,GO-20169009817,THEFT UNDER,2016-08-30,2016,August,Tuesday,30,243,20,2016-09-01,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12939,24967,GO-20169009985,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,12,2016-09-05,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)}",Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -12940,904,GO-20179010457,B&E,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12941,905,GO-20179010457,B&E,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12942,917,GO-20179010553,B&E,2017-07-16,2017,July,Sunday,16,197,17,2017-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12943,918,GO-20179010584,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,22,2017-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12944,933,GO-20179010703,THEFT UNDER,2017-07-15,2017,July,Saturday,15,196,20,2017-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12945,942,GO-20171323790,B&E,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12946,943,GO-20171323790,B&E,2017-07-18,2017,July,Tuesday,18,199,9,2017-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12947,961,GO-20171322336,B&E,2017-07-12,2017,July,Wednesday,12,193,0,2017-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12948,966,GO-20179010967,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,18,2017-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12949,967,GO-20179010988,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,0,2017-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12950,968,GO-20179010968,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,22,2017-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12951,976,GO-20179011028,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,19,2017-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12952,977,GO-20171345328,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,21,2017-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12953,76,GO-2017191032,THEFT UNDER - BICYCLE,2017-01-30,2017,January,Monday,30,30,1,2017-01-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -12954,980,GO-20171140842,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,16,2017-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12955,986,GO-20179011029,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,18,2017-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12956,987,GO-20179011114,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,9,2017-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12957,988,GO-20179011117,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,5,2017-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12958,1001,GO-20179011251,THEFT UNDER,2017-07-24,2017,July,Monday,24,205,16,2017-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12959,1022,GO-20179011424,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,1,2017-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12960,1023,GO-20179011416,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,21,2017-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12961,1026,GO-20179011430,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,12,2017-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12962,1028,GO-20179011462,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,16,2017-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12963,1030,GO-20179011464,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,18,2017-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12964,1036,GO-20179011515,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,13,2017-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12965,1064,GO-20179011814,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,12,2017-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12966,1069,GO-20171417317,THEFT OVER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,12,2017-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12967,1072,GO-20179011895,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,7,2017-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12968,1081,GO-20179011904,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,11,2017-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12969,1083,GO-20179011925,THEFT UNDER - BICYCLE,2017-08-07,2017,August,Monday,7,219,15,2017-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12970,1086,GO-20171409921,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,10,2017-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12971,1092,GO-20171428773,THEFT UNDER - BICYCLE,2017-08-07,2017,August,Monday,7,219,9,2017-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12972,1110,GO-20179012099,THEFT UNDER - BICYCLE,2017-08-03,2017,August,Thursday,3,215,16,2017-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12973,1114,GO-20179012116,THEFT UNDER - BICYCLE,2017-08-07,2017,August,Monday,7,219,18,2017-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12974,1116,GO-20179012111,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,17,2017-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12975,1118,GO-20171443387,B&E,2017-08-09,2017,August,Wednesday,9,221,22,2017-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12976,1119,GO-20171443387,B&E,2017-08-09,2017,August,Wednesday,9,221,22,2017-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12977,1179,GO-20171474737,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,15,2017-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12978,1184,GO-20179012781,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,19,2017-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12979,1191,GO-20179012821,THEFT UNDER,2017-08-19,2017,August,Saturday,19,231,15,2017-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12980,1192,GO-20179012840,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,9,2017-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12981,1202,GO-20179012953,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,14,2017-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12982,1213,GO-20179013015,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,19,2017-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12983,1217,GO-20179013023,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,18,2017-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12984,1240,GO-20179013231,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,20,2017-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12985,1241,GO-20179013253,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,16,2017-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12986,1247,GO-20179013374,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,16,2017-08-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12987,1248,GO-20179013378,B&E,2017-08-14,2017,August,Monday,14,226,8,2017-08-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12988,1250,GO-20179013402,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,11,2017-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12989,1252,GO-20179013410,THEFT UNDER - BICYCLE,2017-08-27,2017,August,Sunday,27,239,14,2017-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12990,1253,GO-20179013429,THEFT UNDER,2017-08-26,2017,August,Saturday,26,238,21,2017-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12991,1275,GO-20179013746,THEFT UNDER,2017-08-30,2017,August,Wednesday,30,242,19,2017-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12992,1294,GO-20179013905,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,16,2017-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12993,1295,GO-20179013907,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,15,2017-09-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12994,1296,GO-20179013907,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,15,2017-09-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12995,1305,GO-20179013975,B&E,2017-07-31,2017,July,Monday,31,212,11,2017-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12996,1321,GO-20171602971,THEFT OVER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,19,2017-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12997,1324,GO-20179014087,THEFT UNDER,2017-09-05,2017,September,Tuesday,5,248,21,2017-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12998,1326,GO-20179014110,THEFT UNDER,2017-08-28,2017,August,Monday,28,240,22,2017-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -12999,1332,GO-20179014161,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,21,2017-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13000,1341,GO-20179014261,THEFT UNDER,2017-08-28,2017,August,Monday,28,240,19,2017-09-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13001,1366,GO-20179014451,THEFT UNDER,2017-09-10,2017,September,Sunday,10,253,12,2017-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13002,1381,GO-20179014571,THEFT UNDER,2017-08-28,2017,August,Monday,28,240,13,2017-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13003,1404,GO-20179014744,B&E,2017-09-09,2017,September,Saturday,9,252,3,2017-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13004,1411,GO-20179014799,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,12,2017-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13005,1427,GO-20179014936,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,9,2017-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13006,1444,GO-20179015058,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,8,2017-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13007,1455,GO-20179015169,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,9,2017-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13008,1468,GO-20179015311,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,11,2017-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13009,1470,GO-20179015300,THEFT UNDER,2017-09-20,2017,September,Wednesday,20,263,1,2017-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13010,1472,GO-20171692775,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,1,2017-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13011,1494,GO-20179015515,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,16,2017-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13012,1495,GO-20179015515,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,16,2017-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13013,1501,GO-20171709357,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,2,2017-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13014,1502,GO-20179015556,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,18,2017-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13015,1513,GO-20179015661,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,12,2017-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13016,1515,GO-20179015683,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,17,2017-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13017,1527,GO-20179015781,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,19,2017-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13018,1566,GO-20179016234,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,18,2017-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13019,1573,GO-20179016295,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,0,2017-10-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13020,1582,GO-20179016403,THEFT UNDER,2017-09-14,2017,September,Thursday,14,257,6,2017-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13021,1589,GO-20179016478,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,21,2017-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13022,1593,GO-20171804566,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,3,2017-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13023,1601,GO-20179016616,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,11,2017-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13024,1633,GO-20179016869,THEFT UNDER,2017-09-13,2017,September,Wednesday,13,256,12,2017-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13025,1639,GO-20179016893,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,21,2017-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13026,1650,GO-20179016998,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,13,2017-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13027,1653,GO-20179017089,THEFT UNDER,2017-10-09,2017,October,Monday,9,282,12,2017-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13028,1667,GO-20179017303,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,7,2017-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13029,1694,GO-20179017597,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,15,2017-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13030,1720,GO-20179017906,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,19,2017-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13031,13102,GO-20179014746,THEFT UNDER - BICYCLE,2017-09-03,2017,September,Sunday,3,246,19,2017-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13032,13106,GO-20179015544,THEFT UNDER,2017-09-23,2017,September,Saturday,23,266,3,2017-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13033,13116,GO-20179017546,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,16,2017-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13034,13117,GO-20179017546,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,16,2017-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13035,13118,GO-20179017697,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,17,2017-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13036,13120,GO-20179018114,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,6,2017-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13037,13121,GO-20179018129,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,11,2017-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13038,13123,GO-20179018472,THEFT UNDER,2017-10-29,2017,October,Sunday,29,302,5,2017-10-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13039,13124,GO-20179018472,THEFT UNDER,2017-10-29,2017,October,Sunday,29,302,5,2017-10-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13040,13449,GO-2017735052,B&E,2017-04-26,2017,April,Wednesday,26,116,7,2017-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13041,13140,GO-2018199574,B&E,2018-02-01,2018,February,Thursday,1,32,10,2018-02-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13042,13142,GO-20189003615,THEFT UNDER,2017-09-20,2017,September,Wednesday,20,263,22,2018-02-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13043,13145,GO-2018449259,B&E,2018-02-25,2018,February,Sunday,25,56,8,2018-03-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13044,13155,GO-20189014878,THEFT UNDER - BICYCLE,2018-05-12,2018,May,Saturday,12,132,13,2018-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13045,13156,GO-20189015022,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,21,2018-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13046,13161,GO-2018947297,B&E,2018-04-21,2018,April,Saturday,21,111,19,2018-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13047,3437,GO-20181682220,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,8,2018-09-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13048,13164,GO-20181009019,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,20,2018-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13049,13168,GO-20189019062,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,14,2018-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13050,13171,GO-20189019803,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,21,2018-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13051,13175,GO-20189020555,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,23,2018-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13052,13176,GO-20189020917,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,17,2018-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13053,13177,GO-20189021660,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,17,2018-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13054,13178,GO-20189021846,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,8,2018-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13055,13179,GO-20189021866,THEFT UNDER - BICYCLE,2018-07-03,2018,July,Tuesday,3,184,21,2018-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13056,13183,GO-20189022366,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,17,2018-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13057,13185,GO-20189023231,THEFT UNDER,2018-07-20,2018,July,Friday,20,201,11,2018-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13058,13188,GO-20189023949,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,18,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13059,9644,GO-2015867534,B&E W'INTENT,2015-05-24,2015,May,Sunday,24,144,8,2015-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13060,13195,GO-20189026620,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,20,2018-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13061,13201,GO-20181579233,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,9,2018-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13062,13202,GO-20189027984,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,10,2018-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13063,13207,GO-20189028842,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,22,2018-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13064,13211,GO-20189029736,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,9,2018-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13065,13219,GO-20189032207,THEFT UNDER,2018-09-24,2018,September,Monday,24,267,9,2018-09-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13066,13221,GO-20189032801,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,14,2018-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13067,13222,GO-20189033081,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,4,2018-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13068,13223,GO-20189034962,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,12,2018-10-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13069,13231,GO-20189039413,THEFT UNDER - BICYCLE,2018-11-22,2018,November,Thursday,22,326,7,2018-11-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13070,13232,GO-20189039954,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,8,2018-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13071,13234,GO-20189042646,THEFT UNDER - BICYCLE,2018-12-17,2018,December,Monday,17,351,13,2018-12-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13072,13235,GO-20189043289,THEFT UNDER - BICYCLE,2018-12-22,2018,December,Saturday,22,356,12,2018-12-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13073,13236,GO-20189043320,THEFT UNDER - BICYCLE,2018-12-26,2018,December,Wednesday,26,360,14,2018-12-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13074,13238,GO-20199005222,THEFT UNDER - BICYCLE,2019-02-07,2019,February,Thursday,7,38,11,2019-02-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13075,11931,GO-20169007826,FTC PROBATION ORDER,2016-06-27,2016,June,Monday,27,179,23,2016-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13076,16776,GO-20199020539,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,23,2019-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13077,13457,GO-2017917667,THEFT UNDER,2017-05-15,2017,May,Monday,15,135,12,2017-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13078,14543,GO-20199022347,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,7,2019-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13079,13240,GO-20199008035,THEFT UNDER - BICYCLE,2019-03-12,2019,March,Tuesday,12,71,12,2019-03-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13080,13242,GO-20199011697,THEFT UNDER - BICYCLE,2019-04-13,2019,April,Saturday,13,103,11,2019-04-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13081,13247,GO-2019950303,B&E,2019-05-12,2019,May,Sunday,12,132,21,2019-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13082,13253,GO-20199019153,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,20,2019-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13083,13311,GO-20159003635,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,18,2015-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13084,13257,GO-20199019451,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,20,2019-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13085,13258,GO-20199019747,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,5,2019-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13086,13260,GO-20199020607,THEFT UNDER,2018-12-20,2018,December,Thursday,20,354,17,2019-06-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13087,13261,GO-20199020701,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,10,2019-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13088,13263,GO-20191230456,B&E,2019-07-01,2019,July,Monday,1,182,22,2019-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13089,13274,GO-20143209003,PROPERTY - FOUND,2014-10-31,2014,October,Friday,31,304,7,2014-11-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13090,13277,GO-20149008507,THEFT UNDER,2014-11-22,2014,November,Saturday,22,326,11,2014-12-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13091,13279,GO-20149008664,THEFT UNDER,2014-12-04,2014,December,Thursday,4,338,11,2014-12-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13092,13289,GO-2015717052,THEFT UNDER,2015-04-22,2015,April,Wednesday,22,112,14,2015-04-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13093,13293,GO-2015745888,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,23,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13094,13304,GO-2015917139,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,0,2015-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13095,13305,GO-20159003325,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,21,2015-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13096,13309,GO-20159003482,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,9,2015-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13097,13310,GO-20159003635,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,18,2015-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13098,13317,GO-20151111120,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,6,2015-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13099,13325,GO-20159005390,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,14,2015-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13100,13331,GO-20159006067,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,22,2015-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13101,13333,GO-20151488189,THEFT UNDER,2015-08-29,2015,August,Saturday,29,241,12,2015-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13102,13338,GO-20159006809,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,8,2015-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13103,13340,GO-20159007259,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,7,2015-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13104,13344,GO-20159008374,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,22,2015-10-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13105,13349,GO-20159010103,THEFT UNDER,2015-11-20,2015,November,Friday,20,324,19,2015-11-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13106,13353,GO-20159010957,THEFT UNDER,2015-10-20,2015,October,Tuesday,20,293,4,2015-12-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13107,13356,GO-20169000559,THEFT UNDER,2016-01-16,2016,January,Saturday,16,16,14,2016-01-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13108,13357,GO-20169002109,THEFT UNDER - BICYCLE,2016-02-29,2016,February,Monday,29,60,16,2016-03-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13109,13366,GO-20169003702,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,10,2016-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13110,13367,GO-20169003715,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,21,2016-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13111,13368,GO-20169003781,THEFT UNDER,2016-04-19,2016,April,Tuesday,19,110,20,2016-04-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13112,13374,GO-20169004854,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,14,2016-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13113,13376,GO-20169005332,THEFT UNDER,2016-05-26,2016,May,Thursday,26,147,17,2016-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13114,13379,GO-20169005531,THEFT UNDER,2016-06-01,2016,June,Wednesday,1,153,19,2016-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13115,13381,GO-20169005695,THEFT UNDER,2016-06-03,2016,June,Friday,3,155,22,2016-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13116,13384,GO-20161113350,THEFT UNDER - BICYCLE,2016-06-24,2016,June,Friday,24,176,21,2016-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13117,13388,GO-20169007040,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,3,2016-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13118,13389,GO-20169007202,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,18,2016-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13119,13392,GO-20169007375,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,21,2016-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13120,13394,GO-20169007637,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,9,2016-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13121,13396,GO-20169007793,THEFT UNDER,2016-07-26,2016,July,Tuesday,26,208,11,2016-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13122,13397,GO-20169007870,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,14,2016-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13123,13399,GO-20169008033,THEFT UNDER - BICYCLE,2016-07-29,2016,July,Friday,29,211,14,2016-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13124,13402,GO-20169008456,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,3,2016-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13125,13408,GO-20169009093,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,21,2016-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13126,13410,GO-20169009653,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,13,2016-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13127,13413,GO-20169009779,THEFT UNDER,2016-08-31,2016,August,Wednesday,31,244,20,2016-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13128,13414,GO-20169010054,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,13,2016-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13129,13415,GO-20169010329,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,21,2016-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13130,13418,GO-20161636563,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,11,2016-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13131,13423,GO-20169011208,THEFT UNDER,2016-09-27,2016,September,Tuesday,27,271,9,2016-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13132,13427,GO-20169012317,THEFT UNDER,2016-10-19,2016,October,Wednesday,19,293,13,2016-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13133,13430,GO-20161982857,THEFT UNDER - BICYCLE,2016-10-28,2016,October,Friday,28,302,12,2016-11-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13134,13438,GO-20179000746,THEFT UNDER,2016-12-31,2016,December,Saturday,31,366,13,2017-01-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13135,13441,GO-20179004502,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,9,2017-04-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13136,13446,GO-20179005124,THEFT UNDER,2017-04-23,2017,April,Sunday,23,113,14,2017-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13137,13448,GO-2017735052,B&E,2017-04-26,2017,April,Wednesday,26,116,7,2017-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13138,15726,GO-20199036815,THEFT UNDER,2019-11-06,2019,November,Wednesday,6,310,17,2019-11-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13139,13458,GO-20179007266,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,17,2017-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13140,10511,GO-20151637547,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,18,2015-09-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13141,16866,GO-20149003340,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,8,2014-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13142,11932,GO-20169007842,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,14,2016-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13143,14557,GO-20191465566,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,16,2019-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13144,13459,GO-2017984451,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,11,2017-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13145,13462,GO-20179007817,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,20,2017-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13146,13463,GO-20171039269,THEFT OVER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,16,2017-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13147,13464,GO-20171039269,THEFT OVER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,16,2017-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13148,13467,GO-20171140842,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,16,2017-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13149,13468,GO-20171169850,THEFT OF EBIKE UNDER $5000,2017-06-21,2017,June,Wednesday,21,172,9,2017-06-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13150,13501,GO-20199019330,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,1,2019-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13151,13504,GO-20199020288,THEFT UNDER,2019-06-26,2019,June,Wednesday,26,177,19,2019-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13152,13606,GO-20142041517,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,19,2014-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13153,13611,GO-20149003700,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,20,2014-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13154,13613,GO-20142206072,THEFT UNDER,2014-05-29,2014,May,Thursday,29,149,21,2014-06-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13155,13617,GO-20149004031,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,21,2014-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13156,13619,GO-20149004059,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,11,2014-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13157,13630,GO-20149004623,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,9,2014-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13158,13632,GO-20149004691,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,9,2014-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13159,13634,GO-20142498271,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,16,2014-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13160,13638,GO-20142543870,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,17,2014-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13161,13639,GO-20149005170,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,12,2014-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13162,13641,GO-20149005493,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,19,2014-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13163,13644,GO-20142699513,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,15,2014-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13164,13654,GO-20149006861,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,9,2014-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13165,13658,GO-20149007071,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,18,2014-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13166,13660,GO-20143006920,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,16,2014-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13167,13662,GO-20149007396,THEFT UNDER,2014-10-01,2014,October,Wednesday,1,274,11,2014-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13168,13717,GO-20179015671,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,6,2017-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13169,13728,GO-20171944493,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,23,2017-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13170,13740,GO-201847831,B&E,2018-01-08,2018,January,Monday,8,8,21,2018-01-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13171,13746,GO-20189011510,THEFT UNDER - BICYCLE,2018-04-13,2018,April,Friday,13,103,12,2018-04-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13172,13758,GO-20189016136,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,16,2018-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13173,13761,GO-20189017214,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,15,2018-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13174,9650,GO-20159003072,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,20,2015-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13175,13771,GO-20189019106,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,22,2018-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13176,13772,GO-20189019294,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,12,2018-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13177,13787,GO-20189023770,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,17,2018-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13178,13788,GO-20189023831,B&E,2018-07-23,2018,July,Monday,23,204,21,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13179,13796,GO-20189025492,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,20,2018-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13180,13815,GO-20189030752,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,1,2018-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13181,13816,GO-20189030759,POSSESSION HOUSE BREAK INSTRUM,2018-09-16,2018,September,Sunday,16,259,10,2018-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13182,13824,GO-20189031337,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,14,2018-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13183,494,GO-20179007128,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,20,2017-05-28,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-13,2018,September,Thursday,13,256,9,2018-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13185,13836,GO-20189033716,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,17,2018-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13186,13851,GO-20189043406,THEFT UNDER - BICYCLE,2018-12-24,2018,December,Monday,24,358,16,2018-12-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13187,13852,GO-20189043406,THEFT UNDER - BICYCLE,2018-12-24,2018,December,Monday,24,358,16,2018-12-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13188,13883,GO-20159004403,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,22,2015-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13189,13901,GO-20151414529,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,14,2015-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13190,13925,GO-20159008537,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,4,2015-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13191,13929,GO-20159009488,B&E,2015-10-11,2015,October,Sunday,11,284,12,2015-11-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13192,13941,GO-201634016,THEFT UNDER,2016-01-04,2016,January,Monday,4,4,19,2016-01-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13193,13944,GO-2016175683,PROPERTY - FOUND,2016-01-30,2016,January,Saturday,30,30,3,2016-01-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13194,13949,GO-20169001809,THEFT UNDER,2016-02-27,2016,February,Saturday,27,58,17,2016-02-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13195,13972,GO-20169005122,THEFT UNDER,2016-05-29,2016,May,Sunday,29,150,5,2016-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13196,13988,GO-20161222561,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,15,2016-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13197,13991,GO-20161363374,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,11,2016-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13198,14062,GO-20179006399,THEFT UNDER,2017-05-14,2017,May,Sunday,14,134,21,2017-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13199,14003,GO-20169009587,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,21,2016-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13200,14018,GO-20161695441,THEFT FROM MOTOR VEHICLE UNDER,2016-09-20,2016,September,Tuesday,20,264,22,2016-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13201,14032,GO-20169013436,B&E,2016-11-13,2016,November,Sunday,13,318,21,2016-11-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13202,14040,GO-20179000490,THEFT UNDER,2017-01-11,2017,January,Wednesday,11,11,6,2017-01-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13203,14041,GO-20179000532,THEFT UNDER - BICYCLE,2017-01-09,2017,January,Monday,9,9,6,2017-01-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13204,14051,GO-20179004762,THEFT UNDER - BICYCLE,2017-04-16,2017,April,Sunday,16,106,13,2017-04-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13205,14054,GO-20179005146,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,13,2017-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13206,11004,GO-20169001640,THEFT UNDER,2016-02-21,2016,February,Sunday,21,52,20,2016-02-22,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-06,2020,June,Saturday,6,158,5,2020-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13208,14265,GO-20201040980,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,5,2020-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13209,14280,GO-20209017022,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,21,2020-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13210,14281,GO-20209017022,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,21,2020-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13211,14294,GO-20209019898,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,9,2020-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13212,14313,GO-20201700024,B&E,2020-08-30,2020,August,Sunday,30,243,0,2020-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13213,14320,GO-20201768160,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,23,2020-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13214,14390,GO-20142504858,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,15,2014-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13215,14327,GO-20201947462,THEFT UNDER - BICYCLE,2020-10-02,2020,October,Friday,2,276,18,2020-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13216,14341,GO-20209030298,THEFT UNDER,2020-11-08,2020,November,Sunday,8,313,16,2020-11-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13217,14345,GO-20202325297,THEFT UNDER - BICYCLE,2020-12-09,2020,December,Wednesday,9,344,9,2020-12-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13218,14358,GO-20142072781,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,8,2014-05-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13219,14369,GO-20149003961,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,8,2014-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13220,14374,GO-20142326234,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,17,2014-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13221,14389,GO-20149004778,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,15,2014-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13222,88,GO-2017251400,THEFT UNDER - BICYCLE,2017-02-06,2017,February,Monday,6,37,8,2017-02-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13223,14394,GO-20149005283,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,11,2014-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13224,14397,GO-20149005395,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,21,2014-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13225,14398,GO-20149005414,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,1,2014-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13226,14407,GO-20149006574,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,11,2014-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13227,14411,GO-20149006850,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,19,2014-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13228,14417,GO-20142958479,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,13,2014-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13229,14418,GO-20142993698,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,16,2014-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13230,14436,GO-20159000712,THEFT UNDER,2015-01-31,2015,January,Saturday,31,31,17,2015-02-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13231,14456,GO-20181593414,THEFT UNDER,2018-08-28,2018,August,Tuesday,28,240,9,2018-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13232,14459,GO-20189031014,THEFT UNDER,2018-09-11,2018,September,Tuesday,11,254,12,2018-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13233,14460,GO-20189031661,THEFT UNDER - BICYCLE,2018-09-21,2018,September,Friday,21,264,15,2018-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13234,14476,GO-20189036777,THEFT UNDER - BICYCLE,2018-11-03,2018,November,Saturday,3,307,18,2018-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13235,14490,GO-20199003288,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,18,2019-01-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13236,14491,GO-2019131328,THEFT UNDER,2018-12-01,2018,December,Saturday,1,335,0,2019-01-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13237,14493,GO-20199005204,THEFT UNDER,2019-02-11,2019,February,Monday,11,42,18,2019-02-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13238,14496,GO-2019451850,B&E,2019-01-20,2019,January,Sunday,20,20,19,2019-03-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13239,14505,GO-20199012052,THEFT UNDER - BICYCLE,2019-04-10,2019,April,Wednesday,10,100,22,2019-04-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13240,14523,GO-20199019364,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,4,2019-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13241,14524,GO-20199019364,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,4,2019-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13242,14525,GO-20191146671,B&E,2019-06-07,2019,June,Friday,7,158,15,2019-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13243,14528,GO-20191185858,B&E,2019-06-20,2019,June,Thursday,20,171,3,2019-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13244,14529,GO-20191189659,B&E,2019-06-25,2019,June,Tuesday,25,176,15,2019-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13245,16355,GO-20199025842,B&E,2019-08-03,2019,August,Saturday,3,215,1,2019-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13246,8519,GO-20142589345,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,9,2014-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13247,11949,GO-20169007953,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,18,2016-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13248,11954,GO-20169007953,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,18,2016-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13249,11969,GO-20169008035,THEFT FROM MOTOR VEHICLE UNDER,2016-07-31,2016,July,Sunday,31,213,15,2016-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13250,16883,GO-20149003899,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,18,2014-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13251,13500,GO-20199019300,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,18,2019-06-19,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -13252,11973,GO-20169008055,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,9,2016-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13253,11995,GO-20169008210,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,15,2016-08-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13254,16890,GO-20149004087,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,18,2014-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13255,11998,GO-20169008221,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,8,2016-08-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13256,8526,GO-20149005377,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,1,2014-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13257,16891,GO-20149004152,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,19,2014-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13258,14573,GO-20199028497,THEFT UNDER - BICYCLE,2019-08-29,2019,August,Thursday,29,241,13,2019-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13259,15728,GO-20199037649,THEFT UNDER,2019-10-24,2019,October,Thursday,24,297,20,2019-11-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13260,9652,GO-2015870307,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,11,2015-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13261,16365,GO-20199026890,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,13,2019-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13262,14576,GO-20199028950,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,12,2019-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13263,12013,GO-20161390214,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,14,2016-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13264,8530,GO-20149005388,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,21,2014-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13265,9654,GO-20159003096,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,22,2015-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13266,16368,GO-20199027711,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,11,2019-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13267,14577,GO-20199028999,THEFT UNDER,2019-09-06,2019,September,Friday,6,249,17,2019-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13268,15734,GO-20199038671,THEFT UNDER,2019-11-07,2019,November,Thursday,7,311,9,2019-11-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13269,16895,GO-20142408653,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,14,2014-07-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13270,12014,GO-20161390214,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,14,2016-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13271,16898,GO-20149004696,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,14,2014-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13272,14599,GO-20199036299,THEFT UNDER - BICYCLE,2019-11-03,2019,November,Sunday,3,307,17,2019-11-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13273,16400,GO-20199034362,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,16,2019-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13274,9659,GO-20159003079,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,14,2015-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13275,16396,GO-20199033059,THEFT UNDER,2019-10-06,2019,October,Sunday,6,279,19,2019-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13276,8542,GO-20149005436,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,7,2014-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13277,15736,GO-20199040692,THEFT UNDER,2019-12-12,2019,December,Thursday,12,346,0,2019-12-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13278,12018,GO-20169008359,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,15,2016-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13279,16900,GO-20149004896,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,19,2014-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13280,14601,GO-20199036413,THEFT UNDER - BICYCLE,2019-11-04,2019,November,Monday,4,308,10,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13281,9673,GO-2015886899,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,20,2015-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13282,8586,GO-20149005612,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,13,2014-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13283,15739,GO-20199041259,THEFT UNDER,2019-12-16,2019,December,Monday,16,350,23,2019-12-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13284,8627,GO-20142679136,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,16,2014-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13285,12042,GO-20169008473,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,9,2016-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13286,14602,GO-20199037363,THEFT UNDER - BICYCLE,2019-11-07,2019,November,Thursday,7,311,14,2019-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13287,16402,GO-20199034553,THEFT UNDER,2019-10-16,2019,October,Wednesday,16,289,16,2019-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13288,9684,GO-2015892605,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,17,2015-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13289,10523,GO-20151645362,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,17,2015-09-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13290,16901,GO-20142508884,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,22,2014-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13291,15747,GO-20209010666,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,22,2020-04-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13292,8631,GO-20149005768,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,19,2014-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13293,12058,GO-20169008552,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,19,2016-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13294,15750,GO-20209011581,THEFT UNDER - BICYCLE,2020-04-20,2020,April,Monday,20,111,14,2020-04-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13295,9693,GO-20159003221,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,17,2015-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13296,16907,GO-20149005689,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,19,2014-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13297,16403,GO-20199035023,THEFT UNDER,2019-10-16,2019,October,Wednesday,16,289,18,2019-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13298,8634,GO-20149005778,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,16,2014-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13299,14606,GO-20192424134,B&E,2019-12-09,2019,December,Monday,9,343,0,2019-12-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13300,12071,GO-20169008621,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,15,2016-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13301,15751,GO-20209011581,THEFT UNDER - BICYCLE,2020-04-20,2020,April,Monday,20,111,14,2020-04-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13302,9700,GO-20159003229,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,8,2015-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13303,16912,GO-20149005939,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,17,2014-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13304,16405,GO-20199035336,THEFT UNDER,2019-10-13,2019,October,Sunday,13,286,11,2019-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13305,8647,GO-20149005878,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,10,2014-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13306,16423,GO-20199041581,THEFT UNDER,2019-10-13,2019,October,Sunday,13,286,0,2019-12-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13307,12080,GO-20169008702,B&E,2016-08-12,2016,August,Friday,12,225,13,2016-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13308,9701,GO-20159003233,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,8,2015-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13309,15756,GO-20209012600,THEFT UNDER,2020-05-04,2020,May,Monday,4,125,7,2020-05-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13310,8649,GO-20142722529,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,0,2014-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13311,14611,GO-20209001314,THEFT UNDER,2020-01-09,2020,January,Thursday,9,9,1,2020-01-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13312,16428,GO-20199042049,THEFT UNDER,2019-12-25,2019,December,Wednesday,25,359,14,2019-12-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13313,16913,GO-20149005989,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,11,2014-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13314,12082,GO-20169008721,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,19,2016-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13315,9704,GO-20159003253,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,7,2015-06-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13316,15760,GO-20209013700,THEFT UNDER - BICYCLE,2020-05-17,2020,May,Sunday,17,138,18,2020-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13317,14612,GO-20209001347,B&E W'INTENT,2020-01-06,2020,January,Monday,6,6,18,2020-01-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13318,8651,GO-20149005903,THEFT UNDER,2014-08-12,2014,August,Tuesday,12,224,21,2014-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13319,17054,GO-20189019748,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,9,2018-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13320,16945,GO-20171240395,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,11,2017-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13321,16430,GO-202078699,B&E,2019-10-12,2019,October,Saturday,12,285,17,2020-01-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13322,12085,GO-20169008715,THEFT UNDER,2016-06-01,2016,June,Wednesday,1,153,8,2016-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13323,9706,GO-20159003258,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,17,2015-06-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13324,15764,GO-20209013854,THEFT UNDER,2020-05-06,2020,May,Wednesday,6,127,17,2020-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13325,14630,GO-20209012002,THEFT UNDER,2020-04-23,2020,April,Thursday,23,114,9,2020-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13326,8660,GO-20149005930,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,20,2014-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13327,15536,GO-20169008539,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,10,2016-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13328,16984,GO-20179015877,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,14,2017-09-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13329,16431,GO-202078699,B&E,2019-10-12,2019,October,Saturday,12,285,17,2020-01-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13330,15775,GO-20201080590,THEFT OF EBIKE UNDER $5000,2020-06-06,2020,June,Saturday,6,158,15,2020-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13331,12090,GO-20161437126,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,20,2016-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13332,9714,GO-2015923358,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,13,2015-06-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13333,8665,GO-20142735203,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,17,2014-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13334,15782,GO-20209015952,THEFT UNDER,2020-06-19,2020,June,Friday,19,171,3,2020-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13335,12091,GO-20161437126,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,20,2016-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13336,14633,GO-20209012808,THEFT UNDER,2020-05-09,2020,May,Saturday,9,130,11,2020-05-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13337,16432,GO-20209001572,THEFT UNDER,2020-01-13,2020,January,Monday,13,13,13,2020-01-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13338,16997,GO-20179017650,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,7,2017-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13339,17044,GO-20189017586,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,11,2018-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13340,14634,GO-20209013232,THEFT UNDER,2020-05-16,2020,May,Saturday,16,137,10,2020-05-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13341,8666,GO-20142735203,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,17,2014-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13342,11298,GO-2016815733,THEFT UNDER,2016-05-10,2016,May,Tuesday,10,131,21,2016-05-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13343,16439,GO-20209006106,THEFT UNDER,2019-11-27,2019,November,Wednesday,27,331,8,2020-02-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13344,12096,GO-20169008765,THEFT UNDER - BICYCLE,2016-08-11,2016,August,Thursday,11,224,20,2016-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13345,16447,GO-20209010673,THEFT UNDER,2020-04-07,2020,April,Tuesday,7,98,14,2020-04-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13346,14635,GO-20209013326,THEFT UNDER - BICYCLE,2020-05-16,2020,May,Saturday,16,137,11,2020-05-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13347,8675,GO-20149005996,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,9,2014-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13348,15786,GO-20209016525,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,7,2020-06-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13349,17066,GO-20189021347,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,9,2018-07-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13350,9719,GO-20159003307,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,13,2015-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13351,17070,GO-20189022832,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,9,2018-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13352,16449,GO-20209011967,THEFT UNDER - BICYCLE,2020-04-26,2020,April,Sunday,26,117,13,2020-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13353,12107,GO-20169008828,THEFT UNDER,2016-08-15,2016,August,Monday,15,228,6,2016-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13354,8679,GO-20149006012,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,7,2014-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13355,14639,GO-20209013454,B&E,2020-05-17,2020,May,Sunday,17,138,5,2020-05-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13356,15794,GO-20209018014,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,20,2020-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13357,9723,GO-20159003327,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,11,2015-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13358,17087,GO-20181492415,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,0,2018-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13359,9727,GO-20159003342,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,15,2015-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13360,12115,GO-20169008877,THEFT UNDER,2016-08-13,2016,August,Saturday,13,226,13,2016-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13361,15795,GO-20209018087,THEFT UNDER,2020-07-08,2020,July,Wednesday,8,190,16,2020-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13362,14647,GO-20209014240,THEFT UNDER,2020-05-26,2020,May,Tuesday,26,147,23,2020-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13363,8688,GO-20149006074,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,14,2014-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13364,17108,GO-20189032523,B&E,2018-09-30,2018,September,Sunday,30,273,17,2018-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13365,16450,GO-20209011993,THEFT UNDER - BICYCLE,2020-04-27,2020,April,Monday,27,118,11,2020-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13366,9730,GO-2015947662,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,12,2015-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13367,12125,GO-20169008943,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,15,2016-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13368,15800,GO-20209019060,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,17,2020-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13369,14648,GO-2020992163,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,14,2020-05-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13370,8694,GO-20149006101,THEFT UNDER,2014-08-16,2014,August,Saturday,16,228,10,2014-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13371,17112,GO-20189033993,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,12,2018-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13372,8700,GO-20149006131,THEFT UNDER,2014-08-16,2014,August,Saturday,16,228,23,2014-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13373,8702,GO-20149006144,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,15,2014-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13374,8706,GO-20149006163,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,1,2014-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13375,8707,GO-20149006168,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,12,2014-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13376,8711,GO-20142768465,MISCHIEF UNDER,2014-08-24,2014,August,Sunday,24,236,15,2014-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13377,8712,GO-20142768465,MISCHIEF UNDER,2014-08-24,2014,August,Sunday,24,236,15,2014-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13378,8738,GO-20149006318,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,18,2014-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13379,12214,GO-20169009598,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,0,2016-08-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13380,8741,GO-20149006324,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,13,2014-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13381,8745,GO-20149006263,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,18,2014-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13382,8750,GO-20149006253,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,20,2014-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13383,8751,GO-20149006205,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,20,2014-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13384,8767,GO-20149006379,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,8,2014-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13385,8769,GO-20149006391,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,12,2014-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13386,8777,GO-20142820683,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,14,2014-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13387,8782,GO-20149006464,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,17,2014-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13388,8783,GO-20149006467,THEFT UNDER,2014-08-30,2014,August,Saturday,30,242,11,2014-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13389,8784,GO-20149006469,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,17,2014-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13390,8786,GO-20149006473,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,14,2014-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13391,8787,GO-20149006475,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,0,2014-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13392,8793,GO-20149006503,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,15,2014-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13393,8830,GO-20149006642,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,13,2014-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13394,8847,GO-20149006708,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,20,2014-09-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13395,8853,GO-20142868169,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,12,2014-09-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13396,8854,GO-20142888493,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,18,2014-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13397,8857,GO-20149006748,B&E W'INTENT,2014-09-03,2014,September,Wednesday,3,246,17,2014-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13398,8858,GO-20149006748,B&E W'INTENT,2014-09-03,2014,September,Wednesday,3,246,17,2014-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13399,8859,GO-20149006750,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,12,2014-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13400,8869,GO-20149006791,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,21,2014-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13401,8877,GO-20149006854,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,13,2014-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13402,8901,GO-20149006953,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,20,2014-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13403,8928,GO-20149007046,MISCHIEF - ENDANGER LIFE,2014-09-18,2014,September,Thursday,18,261,0,2014-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13404,8930,GO-20149007065,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,7,2014-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13405,8957,GO-20149007149,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,13,2014-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13406,8969,GO-20149007182,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,20,2014-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13407,8986,GO-20142994313,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,18,2014-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13408,8997,GO-20149007312,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,9,2014-09-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13409,9072,GO-20149007595,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,9,2014-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13410,7852,GO-20141948221,THEFT UNDER,2014-04-21,2014,April,Monday,21,111,20,2014-04-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13411,9079,GO-20149007669,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,22,2014-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13412,9095,GO-20143146583,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,7,2014-10-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13413,9123,GO-20149007872,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,8,2014-10-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13414,9124,GO-20149007869,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,14,2014-10-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13415,9133,GO-20143204502,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,9,2014-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13416,9135,GO-20143217913,THEFT UNDER,2014-10-29,2014,October,Wednesday,29,302,18,2014-11-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13417,9142,GO-20143229281,THEFT UNDER,2014-11-02,2014,November,Sunday,2,306,16,2014-11-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13418,9154,GO-20143238134,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,12,2014-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13419,9176,GO-20149008143,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,17,2014-11-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13420,9193,GO-20149008255,THEFT UNDER,2014-11-13,2014,November,Thursday,13,317,18,2014-11-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13421,9210,GO-20149008505,B&E,2014-09-11,2014,September,Thursday,11,254,6,2014-12-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13422,9245,GO-20149009058,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,22,2014-12-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13423,9263,GO-20159000274,THEFT UNDER,2015-01-13,2015,January,Tuesday,13,13,21,2015-01-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13424,9265,GO-20159000330,THEFT UNDER,2015-01-09,2015,January,Friday,9,9,16,2015-01-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13425,9270,GO-2015123267,THEFT UNDER,2015-01-21,2015,January,Wednesday,21,21,8,2015-01-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13426,9306,GO-20159001084,THEFT UNDER,2015-01-23,2015,January,Friday,23,23,17,2015-03-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13427,9314,GO-20159001179,THEFT UNDER,2015-03-09,2015,March,Monday,9,68,12,2015-03-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13428,9335,GO-20159001439,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,8,2015-03-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13429,9349,GO-20159001523,THEFT UNDER,2015-03-25,2015,March,Wednesday,25,84,8,2015-03-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13430,9355,GO-20159001594,THEFT FROM MOTOR VEHICLE UNDER,2015-03-27,2015,March,Friday,27,86,3,2015-03-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13431,9372,GO-20159001725,THEFT UNDER,2015-03-29,2015,March,Sunday,29,88,16,2015-04-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13432,9394,GO-20159001882,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,18,2015-04-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13433,9424,GO-2015643682,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,18,2015-04-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13434,9444,GO-2015651634,B&E,2015-04-19,2015,April,Sunday,19,109,2,2015-04-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13435,9448,GO-20159002099,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,8,2015-04-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13436,9462,GO-20159002178,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,14,2015-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13437,9463,GO-20159002178,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,14,2015-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13438,9469,GO-2015683901,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,20,2015-04-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13439,9481,GO-2015695461,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,16,2015-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13440,9511,GO-20159002409,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,13,2015-05-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13441,9512,GO-20159002409,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,13,2015-05-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13442,9520,GO-20159002433,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,0,2015-05-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13443,9523,GO-20159002448,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,8,2015-05-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13444,9525,GO-20159002464,B&E,2015-05-02,2015,May,Saturday,2,122,18,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13445,9527,GO-20159002470,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,19,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13446,9530,GO-20159002473,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,17,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13447,9531,GO-20159002475,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,18,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13448,9562,GO-20159002608,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,21,2015-05-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13449,9563,GO-20159002615,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,14,2015-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13450,9565,GO-20159002642,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,16,2015-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13451,9572,GO-20159002667,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,18,2015-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13452,9612,GO-20159002921,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,13,2015-05-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13453,9615,GO-20159002932,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,22,2015-05-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13454,16618,GO-20169000216,THEFT UNDER,2016-01-05,2016,January,Tuesday,5,5,9,2016-01-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13455,9620,GO-2015846899,B&E,2015-03-24,2015,March,Tuesday,24,83,19,2015-05-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13456,9635,GO-2015858877,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,10,2015-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13457,9742,GO-20159003386,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,13,2015-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13458,16453,GO-20209012330,THEFT UNDER,2020-05-01,2020,May,Friday,1,122,18,2020-05-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13459,12126,GO-20169008966,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,16,2016-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13460,17125,GO-2015768547,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,17,2015-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13461,9771,GO-2015981852,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,17,2015-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13462,15801,GO-20201446751,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,16,2020-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13463,12138,GO-20169009044,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,13,2016-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13464,17130,GO-20159002882,THEFT UNDER,2015-05-15,2015,May,Friday,15,135,20,2015-05-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13465,14650,GO-20209014536,THEFT UNDER - BICYCLE,2020-06-03,2020,June,Wednesday,3,155,8,2020-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13466,9786,GO-2015988491,THEFT UNDER,2015-06-12,2015,June,Friday,12,163,19,2015-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13467,16459,GO-20209014795,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,23,2020-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13468,15804,GO-20209019665,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,23,2020-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13469,12153,GO-20169009131,THEFT UNDER,2016-08-21,2016,August,Sunday,21,234,14,2016-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13470,17172,GO-20159007190,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,17,2015-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13471,14651,GO-20201040980,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,5,2020-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13472,14669,GO-20179010227,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,14,2017-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13473,14676,GO-20179010954,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,10,2017-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13474,14703,GO-20171540148,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,15,2017-08-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13475,14707,GO-20171598928,B&E,2017-08-14,2017,August,Monday,14,226,18,2017-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13476,14729,GO-20179016410,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,18,2017-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13477,14732,GO-20179017121,THEFT UNDER,2017-10-13,2017,October,Friday,13,286,6,2017-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13478,14735,GO-20179017360,THEFT UNDER,2017-10-16,2017,October,Monday,16,289,12,2017-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13479,14737,GO-20171926046,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,0,2017-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13480,14741,GO-20179019643,THEFT UNDER - BICYCLE,2017-11-10,2017,November,Friday,10,314,22,2017-11-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13481,14753,GO-20179022821,THEFT UNDER,2017-12-22,2017,December,Friday,22,356,17,2017-12-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13482,14758,GO-2018239931,B&E,2018-02-06,2018,February,Tuesday,6,37,8,2018-02-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13483,14760,GO-20189005266,THEFT OVER - BICYCLE,2018-02-17,2018,February,Saturday,17,48,1,2018-02-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13484,14761,GO-20189005266,THEFT OVER - BICYCLE,2018-02-17,2018,February,Saturday,17,48,1,2018-02-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13485,23742,GO-20169009597,THEFT UNDER,2016-08-24,2016,August,Wednesday,24,237,8,2016-08-28,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -13486,14773,GO-2018667390,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,23,2018-04-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13487,14781,GO-2018861108,THEFT UNDER - BICYCLE,2018-05-12,2018,May,Saturday,12,132,15,2018-05-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13488,14795,GO-20189017687,THEFT UNDER,2018-06-06,2018,June,Wednesday,6,157,23,2018-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13489,14800,GO-20189018593,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,19,2018-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13490,14815,GO-20189021709,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,15,2018-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13491,14825,GO-20189023881,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,23,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13492,14826,GO-20181356545,THEFT OF EBIKE UNDER $5000,2018-07-20,2018,July,Friday,20,201,20,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13493,14829,GO-20189024278,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,0,2018-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13494,14849,GO-20189027533,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,18,2018-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13495,14851,GO-20189027723,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,6,2018-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13496,15307,GO-20141263544,B&E,2013-12-26,2013,December,Thursday,26,360,19,2014-01-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13497,15315,GO-20149003202,THEFT UNDER,2014-05-06,2014,May,Tuesday,6,126,22,2014-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13498,15321,GO-20149003902,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,23,2014-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13499,15322,GO-20142283165,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,11,2014-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13500,15323,GO-20149004263,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,6,2014-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13501,15334,GO-20149004909,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,23,2014-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13502,15344,GO-20149005547,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,20,2014-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13503,15346,GO-20149005678,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,19,2014-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13504,15360,GO-20149006602,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,18,2014-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13505,15368,GO-20149007520,THEFT UNDER,2014-10-10,2014,October,Friday,10,283,9,2014-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13506,15379,GO-20149008136,THEFT UNDER,2014-11-10,2014,November,Monday,10,314,21,2014-11-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13507,15387,GO-20159000366,THEFT UNDER,2015-01-19,2015,January,Monday,19,19,20,2015-01-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13508,15420,GO-20159004338,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,19,2015-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13509,15432,GO-20159004991,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,21,2015-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13510,15434,GO-20151282733,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,14,2015-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13511,15448,GO-20159006866,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,17,2015-09-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13512,15449,GO-20159006927,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,12,2015-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13513,15498,GO-2016828364,THEFT UNDER,2016-05-13,2016,May,Friday,13,134,19,2016-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13514,15502,GO-20169005133,THEFT UNDER,2016-05-30,2016,May,Monday,30,151,21,2016-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13515,15510,GO-20169005489,THEFT UNDER - BICYCLE,2016-06-06,2016,June,Monday,6,158,9,2016-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13516,15514,GO-20169006316,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,7,2016-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13517,15518,GO-20169006662,THEFT UNDER,2016-07-01,2016,July,Friday,1,183,12,2016-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13518,15520,GO-20169007169,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,3,2016-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13519,15527,GO-20169007840,THEFT UNDER,2016-07-24,2016,July,Sunday,24,206,12,2016-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13520,15531,GO-20169008212,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,23,2016-08-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13521,15537,GO-20169008558,THEFT UNDER - BICYCLE,2016-08-11,2016,August,Thursday,11,224,7,2016-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13522,15538,GO-20169008615,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,15,2016-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13523,15539,GO-20161442320,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,6,2016-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13524,15545,GO-20169009399,THEFT UNDER,2016-08-24,2016,August,Wednesday,24,237,8,2016-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13525,15546,GO-20161529761,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,10,2016-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13526,15553,GO-20169010198,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,19,2016-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13527,15556,GO-20169010817,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,18,2016-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13528,15564,GO-20169011714,THEFT UNDER,2016-10-06,2016,October,Thursday,6,280,8,2016-10-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13529,15565,GO-20161839558,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,12,2016-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13530,15568,GO-20169012181,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,14,2016-10-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13531,15573,GO-20161944094,THEFT UNDER,2016-11-01,2016,November,Tuesday,1,306,18,2016-11-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13532,15598,GO-20179004830,THEFT UNDER - BICYCLE,2017-04-14,2017,April,Friday,14,104,15,2017-04-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13533,15599,GO-2017679786,B&E,2017-04-12,2017,April,Wednesday,12,102,12,2017-04-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13534,15602,GO-20179005465,THEFT UNDER,2017-04-28,2017,April,Friday,28,118,23,2017-04-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13535,15609,GO-20179006799,THEFT UNDER - BICYCLE,2017-05-14,2017,May,Sunday,14,134,23,2017-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13536,15645,GO-20199021648,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,16,2019-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13537,15646,GO-20199021829,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,17,2019-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13538,15649,GO-20199023058,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,4,2019-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13539,15659,GO-20199024053,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,18,2019-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13540,15663,GO-20191486187,B&E,2019-08-02,2019,August,Friday,2,214,10,2019-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13541,15664,GO-20191489000,THEFT UNDER - BICYCLE,2019-08-07,2019,August,Wednesday,7,219,7,2019-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13542,15670,GO-20199026146,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,20,2019-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13543,15672,GO-20199026318,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,12,2019-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13544,15673,GO-20199026367,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,8,2019-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13545,15675,GO-20199026876,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,15,2019-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13546,15677,GO-20199027371,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,18,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13547,15678,GO-20199027415,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,20,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13548,15691,GO-20199028716,THEFT UNDER,2019-08-27,2019,August,Tuesday,27,239,22,2019-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13549,15693,GO-20199029103,THEFT UNDER,2019-08-31,2019,August,Saturday,31,243,12,2019-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13550,23342,GO-20209018409,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,11,2020-07-24,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -13551,15694,GO-20191722571,B&E,2019-09-06,2019,September,Friday,6,249,0,2019-09-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13552,15706,GO-20199031105,THEFT UNDER,2019-09-22,2019,September,Sunday,22,265,19,2019-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13553,9798,GO-20151001099,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,16,2015-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13554,17178,GO-20151750155,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,9,2015-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13555,16469,GO-20209016174,THEFT UNDER,2020-06-25,2020,June,Thursday,25,177,16,2020-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13556,16476,GO-20209017126,THEFT UNDER,2020-07-01,2020,July,Wednesday,1,183,18,2020-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13557,15807,GO-20209020394,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,19,2020-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13558,9823,GO-20151025971,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,15,2015-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13559,16477,GO-20209017315,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,23,2020-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13560,17192,GO-20151915286,B&E,2015-10-06,2015,October,Tuesday,6,279,12,2015-11-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13561,15808,GO-20209020394,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,19,2020-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13562,16480,GO-20209018009,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,22,2020-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13563,9830,GO-20151020368,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,10,2015-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13564,17202,GO-20169001509,THEFT UNDER,2016-02-18,2016,February,Thursday,18,49,9,2016-02-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13565,15809,GO-20209020456,THEFT FROM MOTOR VEHICLE UNDER,2020-08-16,2020,August,Sunday,16,229,15,2020-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13566,15810,GO-20201556222,B&E W'INTENT,2020-08-19,2020,August,Wednesday,19,232,5,2020-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13567,15812,GO-20209020693,THEFT UNDER - BICYCLE,2020-08-17,2020,August,Monday,17,230,19,2020-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13568,15822,GO-20201686007,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,16,2020-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13569,15824,GO-20209023203,THEFT UNDER - BICYCLE,2020-09-14,2020,September,Monday,14,258,19,2020-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13570,15825,GO-20209023232,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,15,2020-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13571,15828,GO-20201763675,THEFT UNDER - BICYCLE,2020-09-09,2020,September,Wednesday,9,253,12,2020-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13572,15845,GO-20209030570,THEFT UNDER - BICYCLE,2020-11-20,2020,November,Friday,20,325,15,2020-11-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13573,16108,GO-20209030452,THEFT UNDER,2020-10-31,2020,October,Saturday,31,305,22,2020-11-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13574,16122,GO-20179003862,THEFT UNDER,2017-03-21,2017,March,Tuesday,21,80,8,2017-03-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13575,16123,GO-20179004558,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,20,2017-04-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13576,16125,GO-20179005304,THEFT UNDER - BICYCLE,2017-04-25,2017,April,Tuesday,25,115,21,2017-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13577,16129,GO-2017903425,THEFT OF EBIKE UNDER $5000,2017-05-22,2017,May,Monday,22,142,9,2017-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13578,16131,GO-2017911072,B&E,2017-05-23,2017,May,Tuesday,23,143,0,2017-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13579,16133,GO-20179007141,THEFT UNDER - BICYCLE,2017-05-28,2017,May,Sunday,28,148,14,2017-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13580,16138,GO-20179007751,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,21,2017-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13581,16139,GO-20179007770,THEFT UNDER,2017-06-07,2017,June,Wednesday,7,158,0,2017-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13582,16142,GO-20179008198,THEFT UNDER - BICYCLE,2017-06-15,2017,June,Thursday,15,166,14,2017-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13583,16144,GO-20179008359,THEFT UNDER,2016-08-18,2016,August,Thursday,18,231,22,2017-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13584,16145,GO-20179008542,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,11,2017-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13585,16146,GO-20179008513,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,11,2017-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13586,16147,GO-20179008555,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,18,2017-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13587,7856,GO-20141954419,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,18,2014-04-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13588,16148,GO-20179008474,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,19,2017-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13589,16158,GO-20179010219,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,11,2017-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13590,16166,GO-20179011552,THEFT UNDER,2017-08-01,2017,August,Tuesday,1,213,9,2017-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13591,16178,GO-20179014429,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,16,2017-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13592,16181,GO-20179014977,THEFT UNDER - BICYCLE,2017-09-11,2017,September,Monday,11,254,15,2017-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13593,16183,GO-20179015226,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,3,2017-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13594,16184,GO-20179015291,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,20,2017-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13595,16185,GO-20179015492,THEFT UNDER,2017-09-22,2017,September,Friday,22,265,9,2017-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13596,16186,GO-20179015571,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,14,2017-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13597,16187,GO-20179015619,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,8,2017-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13598,16189,GO-20179015895,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,18,2017-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13599,16192,GO-20171804573,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,3,2017-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13600,16203,GO-20179017945,THEFT UNDER,2017-10-20,2017,October,Friday,20,293,21,2017-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13601,16204,GO-20179018456,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,9,2017-10-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13602,16207,GO-20179018526,THEFT UNDER,2017-10-02,2017,October,Monday,2,275,13,2017-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13603,16212,GO-20179020677,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,16,2017-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13604,16214,GO-20179020999,THEFT UNDER,2017-11-29,2017,November,Wednesday,29,333,16,2017-12-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13605,16217,GO-20189001736,THEFT UNDER - BICYCLE,2018-01-18,2018,January,Thursday,18,18,10,2018-01-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13606,16225,GO-20189011191,THEFT UNDER,2018-04-08,2018,April,Sunday,8,98,12,2018-04-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13607,16227,GO-20189012800,THEFT UNDER,2018-04-25,2018,April,Wednesday,25,115,12,2018-04-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13608,16228,GO-20189012911,THEFT UNDER - BICYCLE,2018-04-26,2018,April,Thursday,26,116,8,2018-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13609,16230,GO-20189013497,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,13,2018-05-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13610,16232,GO-20189013619,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,13,2018-05-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13611,16237,GO-20189016966,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,15,2018-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13612,16240,GO-20189017949,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,21,2018-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13613,16243,GO-20181123997,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,8,2018-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13614,16244,GO-20189019643,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,21,2018-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13615,16246,GO-20189020189,THEFT UNDER - SHOPLIFTING,2018-06-25,2018,June,Monday,25,176,9,2018-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13616,16248,GO-20189020913,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,8,2018-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13617,16258,GO-20189022600,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,9,2018-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13618,16263,GO-20189023765,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,0,2018-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13619,16269,GO-20189024526,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,16,2018-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13620,16274,GO-20189024969,THEFT UNDER - BICYCLE,2018-03-31,2018,March,Saturday,31,90,9,2018-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13621,16277,GO-20189026870,THEFT UNDER - BICYCLE,2018-08-17,2018,August,Friday,17,229,20,2018-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13622,16281,GO-20189027981,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,23,2018-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13623,16282,GO-20189028059,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,21,2018-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13624,16285,GO-20189029097,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,9,2018-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13625,16292,GO-20189031294,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,17,2018-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13626,16295,GO-20189031881,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,13,2018-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13627,16298,GO-20189033727,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,7,2018-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13628,16299,GO-20181887901,PROPERTY - FOUND,2018-10-12,2018,October,Friday,12,285,18,2018-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13629,16303,GO-20189035475,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,9,2018-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13630,16307,GO-20189039962,THEFT UNDER,2018-11-08,2018,November,Thursday,8,312,5,2018-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13631,16309,GO-201915416,B&E,2018-12-19,2018,December,Wednesday,19,353,9,2019-01-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13632,16310,GO-20199001452,THEFT UNDER - BICYCLE,2019-01-09,2019,January,Wednesday,9,9,4,2019-01-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13633,16315,GO-20199012950,THEFT UNDER,2019-04-23,2019,April,Tuesday,23,113,19,2019-04-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13634,16321,GO-20199017221,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,10,2019-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13635,16328,GO-20191270592,THEFT UNDER - BICYCLE,2019-07-05,2019,July,Friday,5,186,14,2019-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13636,16335,GO-20199022345,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,14,2019-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13637,331,GO-2017798245,THEFT UNDER - BICYCLE,2017-05-06,2017,May,Saturday,6,126,14,2017-05-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13638,16340,GO-20191345013,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,8,2019-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13639,16341,GO-20191345013,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,8,2019-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13640,16342,GO-20199023173,THEFT UNDER,2019-06-29,2019,June,Saturday,29,180,11,2019-07-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13641,16346,GO-20199024133,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,12,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13642,16349,GO-20199024572,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,11,2019-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13643,16350,GO-20199024561,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,20,2019-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13644,16352,GO-20199025296,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,15,2019-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13645,16353,GO-20199025739,B&E,2019-08-10,2019,August,Saturday,10,222,13,2019-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13646,12154,GO-20169009132,THEFT UNDER,2016-08-21,2016,August,Sunday,21,234,13,2016-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13647,9834,GO-20159003747,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,15,2015-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13648,16483,GO-20209018538,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,16,2020-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13649,9844,GO-20159003811,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,17,2015-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13650,9863,GO-20159003891,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,17,2015-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13651,17205,GO-20169001655,THEFT UNDER,2016-02-08,2016,February,Monday,8,39,18,2016-02-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13652,16490,GO-20209019352,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,13,2020-08-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13653,337,GO-2017807963,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,13,2017-05-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13654,9865,GO-20159003900,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,9,2015-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13655,12173,GO-20169009236,THEFT UNDER,2016-08-21,2016,August,Sunday,21,234,20,2016-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13656,17216,GO-20169004306,THEFT UNDER,2016-05-01,2016,May,Sunday,1,122,11,2016-05-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13657,16491,GO-20209019470,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,12,2020-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13658,9880,GO-20149006503,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,15,2014-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13659,12178,GO-20169009285,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,18,2016-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13660,17219,GO-2016810031,THEFT UNDER,2016-05-11,2016,May,Wednesday,11,132,14,2016-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13661,10786,GO-20159009888,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,19,2015-11-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13662,16493,GO-20209019702,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,15,2020-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13663,16495,GO-20209019752,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,21,2020-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13664,16496,GO-20209019752,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,21,2020-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13665,16502,GO-20209020459,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,17,2020-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13666,16503,GO-20209020893,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,13,2020-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13667,16511,GO-20209022408,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,17,2020-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13668,16514,GO-20209022487,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,17,2020-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13669,16515,GO-20209022730,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,22,2020-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13670,16521,GO-20149006043,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,0,2014-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13671,16523,GO-20142756558,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,19,2014-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13672,16524,GO-20149006364,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,20,2014-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13673,16525,GO-20149006463,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,21,2014-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13674,16527,GO-20142845536,ROBBERY - MUGGING,2014-09-05,2014,September,Friday,5,248,1,2014-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13675,16532,GO-20142924340,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,21,2014-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13676,16535,GO-20149007293,THEFT UNDER,2014-09-27,2014,September,Saturday,27,270,15,2014-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13677,16541,GO-20149007627,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,14,2014-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13678,16542,GO-20149007633,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,17,2014-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13679,16548,GO-20143242346,THEFT UNDER,2014-11-04,2014,November,Tuesday,4,308,21,2014-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13680,16549,GO-20149008060,THEFT UNDER,2014-11-05,2014,November,Wednesday,5,309,17,2014-11-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13681,16551,GO-20149008445,THEFT UNDER,2014-11-27,2014,November,Thursday,27,331,16,2014-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13682,16552,GO-20159001142,THEFT UNDER,2015-03-01,2015,March,Sunday,1,60,18,2015-03-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13683,16558,GO-20159002031,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,16,2015-04-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13684,16564,GO-20159002469,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,13,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13685,16565,GO-20159002469,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,13,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13686,16566,GO-2015755850,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,15,2015-05-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13687,16568,GO-2015785417,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,15,2015-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13688,16569,GO-2015785417,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,15,2015-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13689,16573,GO-20159003087,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,0,2015-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13690,16575,GO-20159003529,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,15,2015-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13691,16584,GO-20151323306,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,13,2015-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13692,16585,GO-20159005337,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,9,2015-08-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13693,16588,GO-20159005590,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,15,2015-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13694,16589,GO-20159005720,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,19,2015-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13695,16603,GO-20159008292,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,18,2015-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13696,16605,GO-20159008334,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,10,2015-10-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13697,16608,GO-20151750202,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,23,2015-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13698,16611,GO-20151901275,THEFT UNDER,2015-11-02,2015,November,Monday,2,306,22,2015-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13699,16619,GO-20169000243,THEFT UNDER,2016-01-06,2016,January,Wednesday,6,6,9,2016-01-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13700,16625,GO-2016451593,THEFT UNDER,2016-03-15,2016,March,Tuesday,15,75,21,2016-03-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13701,16628,GO-20169002904,THEFT UNDER - BICYCLE,2016-03-01,2016,March,Tuesday,1,61,1,2016-03-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13702,16630,GO-20169003703,THEFT UNDER - BICYCLE,2016-04-23,2016,April,Saturday,23,114,12,2016-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13703,16632,GO-20169004065,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,8,2016-05-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13704,16633,GO-20169004166,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,19,2016-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13705,16638,GO-20169004451,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,20,2016-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13706,16642,GO-20169004863,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,19,2016-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13707,16646,GO-2016916770,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,15,2016-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13708,16649,GO-20169005896,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,17,2016-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13709,16650,GO-20169005914,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,3,2016-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13710,16660,GO-20169006802,THEFT UNDER - BICYCLE,2016-07-01,2016,July,Friday,1,183,6,2016-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13711,16662,GO-20169006988,THEFT OVER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,19,2016-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13712,16664,GO-20169007379,THEFT UNDER - BICYCLE,2016-07-16,2016,July,Saturday,16,198,17,2016-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13713,16668,GO-20169007792,THEFT UNDER,2016-07-26,2016,July,Tuesday,26,208,19,2016-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13714,16669,GO-20169007792,THEFT UNDER,2016-07-26,2016,July,Tuesday,26,208,19,2016-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13715,16670,GO-20169007828,THEFT UNDER,2016-07-21,2016,July,Thursday,21,203,20,2016-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13716,16678,GO-20169009505,THEFT UNDER,2016-08-27,2016,August,Saturday,27,240,0,2016-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13717,16679,GO-20169009608,THEFT UNDER - BICYCLE,2016-08-22,2016,August,Monday,22,235,11,2016-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13718,16680,GO-20169010072,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,19,2016-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13719,16682,GO-20169010293,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,13,2016-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13720,686,GO-20171120322,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,21,2017-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13721,16685,GO-20161627633,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,22,2016-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13722,16687,GO-20169010669,THEFT UNDER,2016-09-16,2016,September,Friday,16,260,7,2016-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13723,16688,GO-20169010684,THEFT UNDER - BICYCLE,2016-09-13,2016,September,Tuesday,13,257,16,2016-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13724,16694,GO-20169011445,THEFT UNDER,2016-10-02,2016,October,Sunday,2,276,0,2016-10-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13725,16696,GO-20161766299,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,12,2016-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13726,16701,GO-20169012876,THEFT UNDER,2016-10-29,2016,October,Saturday,29,303,22,2016-11-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13727,16704,GO-20169013093,THEFT UNDER - BICYCLE,2016-11-07,2016,November,Monday,7,312,8,2016-11-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13728,16706,GO-20162009552,THEFT OF EBIKE UNDER $5000,2016-11-12,2016,November,Saturday,12,317,0,2016-11-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13729,16713,GO-20162280113,B&E,2016-12-25,2016,December,Sunday,25,360,4,2016-12-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13730,16714,GO-20162280113,B&E,2016-12-25,2016,December,Sunday,25,360,4,2016-12-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13731,16715,GO-20162280113,B&E,2016-12-25,2016,December,Sunday,25,360,4,2016-12-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13732,16717,GO-2017190849,THEFT UNDER - BICYCLE,2017-01-31,2017,January,Tuesday,31,31,5,2017-01-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13733,16750,GO-20199014938,THEFT UNDER,2019-05-10,2019,May,Friday,10,130,0,2019-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13734,16765,GO-20199018156,THEFT UNDER,2019-06-10,2019,June,Monday,10,161,0,2019-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13735,16768,GO-20199018400,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,23,2019-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13736,9882,GO-20149006503,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,15,2014-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13737,17223,GO-20169005041,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,16,2016-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13738,12182,GO-20169009326,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,15,2016-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13739,17229,GO-20169005785,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,12,2016-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13740,12195,GO-20169009444,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,22,2016-08-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13741,9887,GO-20151077849,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,14,2015-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13742,17242,GO-20169006683,THEFT UNDER,2016-07-04,2016,July,Monday,4,186,8,2016-07-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13743,12209,GO-20161499048,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,9,2016-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13744,9888,GO-20151077849,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,14,2015-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13745,17258,GO-20169009163,B&E,2016-08-11,2016,August,Thursday,11,224,17,2016-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13746,12210,GO-20169009566,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,16,2016-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13747,9898,GO-20159004008,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,13,2015-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13748,17275,GO-20161744368,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,10,2016-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13749,12215,GO-20169009604,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,21,2016-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13750,9906,GO-20151093514,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,16,2015-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13751,17329,GO-20209014268,THEFT UNDER,2020-05-28,2020,May,Thursday,28,149,21,2020-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13752,12229,GO-20169009658,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,20,2016-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13753,9925,GO-20159004112,B&E,2015-07-01,2015,July,Wednesday,1,182,13,2015-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13754,9959,GO-20159004249,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,0,2015-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13755,9976,GO-20159004355,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,12,2015-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13756,9978,GO-20159004358,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,20,2015-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13757,7924,GO-20142084500,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,17,2014-05-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13758,9981,GO-20159004381,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,18,2015-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13759,9984,GO-20159004395,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,14,2015-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13760,10049,GO-20151230263,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,15,2015-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13761,10103,GO-20159005020,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,20,2015-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13762,10106,GO-20159005035,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,15,2015-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13763,10111,GO-20159005056,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,16,2015-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13764,10143,GO-20159005152,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,22,2015-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13765,10179,GO-20159005359,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,17,2015-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13766,10183,GO-20159005375,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,9,2015-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13767,10198,GO-20159005445,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,21,2015-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13768,10216,GO-20159005522,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,9,2015-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13769,10217,GO-20159005522,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,9,2015-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13770,10219,GO-20151366154,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,18,2015-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13771,10256,GO-20159005712,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,21,2015-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13772,10263,GO-20159005771,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,19,2015-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13773,10273,GO-20159005862,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,13,2015-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13774,10292,GO-20159005956,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,22,2015-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13775,10330,GO-20159006225,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,18,2015-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13776,10336,GO-20159006300,THEFT UNDER,2015-08-22,2015,August,Saturday,22,234,22,2015-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13777,10338,GO-20159006312,B&E,2015-08-01,2015,August,Saturday,1,213,10,2015-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13778,10339,GO-20159006313,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,20,2015-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13779,10406,GO-20159006764,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,15,2015-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13780,10411,GO-20159006787,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,11,2015-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13781,10426,GO-20159006861,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,10,2015-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13782,10453,GO-20159007079,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,20,2015-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13783,10463,GO-20159007150,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,6,2015-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13784,10473,GO-20159007217,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,13,2015-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13785,10474,GO-20159007236,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,9,2015-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13786,10483,GO-20159007322,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,14,2015-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13787,10491,GO-20159007375,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,8,2015-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13788,10505,GO-20159007466,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,15,2015-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13789,10509,GO-20159007490,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,20,2015-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13790,10510,GO-20159007490,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,20,2015-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13791,10524,GO-20151631825,THEFT FROM MOTOR VEHICLE UNDER,2015-09-19,2015,September,Saturday,19,262,16,2015-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13792,10551,GO-20159007779,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,13,2015-09-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13793,10591,GO-20159008165,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,8,2015-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13794,10598,GO-20159008242,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,18,2015-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13795,10600,GO-20159008220,THEFT UNDER,2015-10-02,2015,October,Friday,2,275,17,2015-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13796,10603,GO-20151732701,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,7,2015-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13797,10634,GO-20159008562,THEFT UNDER,2015-10-01,2015,October,Thursday,1,274,18,2015-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13798,10638,GO-20159008601,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,10,2015-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13799,10643,GO-20151794988,PROPERTY - LOST,2015-10-14,2015,October,Wednesday,14,287,22,2015-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13800,10644,GO-20151794988,PROPERTY - LOST,2015-10-14,2015,October,Wednesday,14,287,22,2015-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13801,692,GO-20179008740,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,10,2017-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13802,10645,GO-20159008649,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,0,2015-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13803,10646,GO-20159008645,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,9,2015-10-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13804,10652,GO-20159008709,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,19,2015-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13805,10655,GO-20151806497,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,9,2015-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13806,10657,GO-20159008783,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,9,2015-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13807,10664,GO-20159008750,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,15,2015-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13808,10691,GO-20151845983,THEFT UNDER,2015-10-27,2015,October,Tuesday,27,300,0,2015-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13809,10785,GO-20159009888,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,19,2015-11-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13810,10700,GO-20159009121,B&E,2015-10-01,2015,October,Thursday,1,274,15,2015-10-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13811,10703,GO-20159009142,B&E,2015-10-27,2015,October,Tuesday,27,300,18,2015-10-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13812,10727,GO-20151898630,B&E,2015-11-04,2015,November,Wednesday,4,308,12,2015-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13813,10728,GO-20151898630,B&E,2015-11-04,2015,November,Wednesday,4,308,12,2015-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13814,10732,GO-20159009439,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,0,2015-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13815,10768,GO-20151943616,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,0,2015-11-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13816,10782,GO-20151968210,THEFT UNDER,2015-11-16,2015,November,Monday,16,320,15,2015-11-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13817,10809,GO-20159010152,THEFT UNDER - SHOPLIFTING,2015-11-19,2015,November,Thursday,19,323,20,2015-11-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13818,10811,GO-20159010170,THEFT UNDER,2015-11-11,2015,November,Wednesday,11,315,22,2015-11-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13819,10833,GO-20152077952,THEFT OVER,2015-09-01,2015,September,Tuesday,1,244,0,2015-12-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13820,10835,GO-20159010490,THEFT UNDER,2015-11-15,2015,November,Sunday,15,319,20,2015-12-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13821,17334,GO-20209014949,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,10,2020-06-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13822,12234,GO-20169009712,THEFT UNDER - BICYCLE,2016-08-30,2016,August,Tuesday,30,243,16,2016-08-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13823,17335,GO-20209015247,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,21,2020-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13824,12388,GO-20169010636,THEFT UNDER,2016-08-29,2016,August,Monday,29,242,12,2016-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13825,12239,GO-20161549221,THEFT UNDER - BICYCLE,2016-08-22,2016,August,Monday,22,235,16,2016-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13826,17343,GO-20201172330,B&E,2020-06-06,2020,June,Saturday,6,158,12,2020-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13827,12266,GO-20169009991,THEFT UNDER,2016-09-02,2016,September,Friday,2,246,18,2016-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13828,17346,GO-20209016509,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,22,2020-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13829,12273,GO-20169010054,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,13,2016-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13830,17362,GO-20209018671,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,19,2020-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13831,12315,GO-20169010244,THEFT OF EBIKE UNDER $5000,2016-09-09,2016,September,Friday,9,253,20,2016-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13832,12317,GO-20169010275,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,18,2016-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13833,12328,GO-20161627489,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,21,2016-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13834,12332,GO-20169010395,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,19,2016-09-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13835,12358,GO-20169010532,THEFT UNDER - BICYCLE,2016-09-14,2016,September,Wednesday,14,258,15,2016-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13836,12370,GO-20169010602,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,14,2016-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13837,12374,GO-20169010619,THEFT UNDER,2016-09-17,2016,September,Saturday,17,261,12,2016-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13838,12377,GO-20161654951,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,22,2016-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13839,12389,GO-20169010666,THEFT UNDER,2016-09-18,2016,September,Sunday,18,262,13,2016-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13840,12392,GO-20169010702,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,21,2016-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13841,12412,GO-20161677087,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,18,2016-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13842,12420,GO-20169010874,THEFT UNDER,2016-09-18,2016,September,Sunday,18,262,10,2016-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13843,12428,GO-20169010926,THEFT UNDER,2016-09-22,2016,September,Thursday,22,266,14,2016-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13844,12459,GO-20161712876,THEFT UNDER,2016-09-24,2016,September,Saturday,24,268,16,2016-09-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13845,12468,GO-20169011172,B&E,2016-09-26,2016,September,Monday,26,270,23,2016-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13846,12519,GO-20161744112,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,8,2016-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13847,12521,GO-20169011391,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,7,2016-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13848,12523,GO-20169011409,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,12,2016-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13849,12537,GO-20169011470,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,7,2016-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13850,12538,GO-20169011470,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,7,2016-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13851,12584,GO-20161802203,THEFT UNDER - BICYCLE,2016-10-10,2016,October,Monday,10,284,12,2016-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13852,12593,GO-20169011902,THEFT UNDER,2016-10-07,2016,October,Friday,7,281,18,2016-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13853,12614,GO-20161829333,B&E,2016-10-14,2016,October,Friday,14,288,10,2016-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13854,12617,GO-20161834280,THEFT UNDER - SHOPLIFTING,2016-10-15,2016,October,Saturday,15,289,10,2016-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13855,12618,GO-20161833949,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,9,2016-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13856,12620,GO-20161835690,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,14,2016-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13857,12625,GO-20169012098,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,23,2016-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13858,12633,GO-20169012224,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,8,2016-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13859,12634,GO-20169012224,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,8,2016-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13860,12638,GO-20169012261,THEFT UNDER,2016-10-18,2016,October,Tuesday,18,292,8,2016-10-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13861,12643,GO-20169012326,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,19,2016-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13862,12650,GO-20169012335,THEFT UNDER,2016-10-12,2016,October,Wednesday,12,286,9,2016-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13863,12659,GO-20169012404,THEFT UNDER,2016-09-01,2016,September,Thursday,1,245,12,2016-10-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13864,12669,GO-20169012486,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,18,2016-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13865,12690,GO-20161911613,THEFT OVER,2016-09-01,2016,September,Thursday,1,245,0,2016-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13866,12691,GO-20161911613,THEFT OVER,2016-09-01,2016,September,Thursday,1,245,0,2016-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13867,12693,GO-20169012719,THEFT UNDER - BICYCLE,2016-10-28,2016,October,Friday,28,302,16,2016-10-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13868,12695,GO-20169012727,THEFT UNDER,2016-10-28,2016,October,Friday,28,302,18,2016-10-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13869,12727,GO-20161808416,B&E,2016-11-06,2016,November,Sunday,6,311,7,2016-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13870,12741,GO-20169013144,THEFT UNDER - BICYCLE,2016-11-08,2016,November,Tuesday,8,313,15,2016-11-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13871,12777,GO-20169013531,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,16,2016-11-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13872,12778,GO-20169013543,THEFT UNDER - BICYCLE,2016-11-17,2016,November,Thursday,17,322,10,2016-11-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13873,12819,GO-20162088519,B&E,2016-11-24,2016,November,Thursday,24,329,17,2016-11-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13874,17572,GO-2019961628,B&E,2019-05-26,2019,May,Sunday,26,146,12,2019-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13875,12825,GO-20169013875,THEFT UNDER - BICYCLE,2016-11-06,2016,November,Sunday,6,311,22,2016-11-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13876,12826,GO-20162099845,THEFT UNDER - BICYCLE,2016-11-26,2016,November,Saturday,26,331,8,2016-11-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13877,12895,GO-20189032034,THEFT UNDER,2018-09-23,2018,September,Sunday,23,266,18,2018-09-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13878,13067,GO-20179009582,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,9,2017-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13879,13068,GO-20179009638,THEFT UNDER,2017-07-04,2017,July,Tuesday,4,185,22,2017-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13880,13070,GO-20179010294,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,22,2017-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13881,13071,GO-20179010403,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,19,2017-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13882,13079,GO-20179011446,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,20,2017-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13883,13080,GO-20179011960,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,13,2017-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13884,13081,GO-20179012140,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,19,2017-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13885,13088,GO-20179012591,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,19,2017-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13886,13092,GO-20179013442,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,21,2017-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13887,13093,GO-20179013442,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,21,2017-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13888,13094,GO-20179013509,THEFT UNDER,2017-08-27,2017,August,Sunday,27,239,13,2017-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13889,24892,GO-20159006825,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,13,2015-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13890,13100,GO-20179014464,THEFT UNDER,2017-09-10,2017,September,Sunday,10,253,14,2017-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13891,13101,GO-20179014557,THEFT UNDER,2017-08-30,2017,August,Wednesday,30,242,8,2017-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13892,17364,GO-20209018935,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,17,2020-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13893,17372,GO-20201468309,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,16,2020-08-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13894,17378,GO-20209021374,THEFT UNDER,2020-08-25,2020,August,Tuesday,25,238,13,2020-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13895,17389,GO-20201720244,THEFT UNDER,2020-09-06,2020,September,Sunday,6,250,17,2020-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13896,17390,GO-20209022905,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,18,2020-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13897,17393,GO-20201825175,B&E,2020-09-24,2020,September,Thursday,24,268,21,2020-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13898,17394,GO-20209024560,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,17,2020-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13899,17400,GO-20201942391,B&E,2020-10-13,2020,October,Tuesday,13,287,3,2020-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13900,17410,GO-20202207469,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,13,2020-11-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13901,17412,GO-20209030746,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,17,2020-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13902,17414,GO-20209031195,THEFT UNDER,2020-11-25,2020,November,Wednesday,25,330,15,2020-12-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13903,17441,GO-20149004287,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,13,2014-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13904,5545,GO-20199034352,THEFT UNDER,2019-10-12,2019,October,Saturday,12,285,13,2019-10-18,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -13905,17442,GO-20149004426,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,13,2014-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13906,17449,GO-20149004971,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,18,2014-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13907,17461,GO-20149005457,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,15,2014-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13908,17463,GO-20149005548,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,20,2014-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13909,17469,GO-20149005855,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,17,2014-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13910,17472,GO-20149006311,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,13,2014-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13911,17474,GO-20149006243,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,12,2014-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13912,17486,GO-20149007398,THEFT UNDER,2014-10-04,2014,October,Saturday,4,277,13,2014-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13913,17490,GO-20149007876,B&E,2014-10-28,2014,October,Tuesday,28,301,18,2014-10-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13914,17500,GO-20159000116,THEFT UNDER,2015-01-01,2015,January,Thursday,1,1,21,2015-01-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13915,17507,GO-20159001514,THEFT UNDER,2015-03-23,2015,March,Monday,23,82,14,2015-03-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13916,17530,GO-20189039741,THEFT UNDER - BICYCLE,2018-11-15,2018,November,Thursday,15,319,20,2018-11-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13917,17538,GO-2019194610,THEFT UNDER - BICYCLE,2019-01-14,2019,January,Monday,14,14,19,2019-01-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13918,17571,GO-2019961628,B&E,2019-05-26,2019,May,Sunday,26,146,12,2019-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13919,17575,GO-20199017318,THEFT UNDER - BICYCLE,2019-05-31,2019,May,Friday,31,151,9,2019-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13920,17584,GO-20199019316,THEFT UNDER - BICYCLE,2019-06-19,2019,June,Wednesday,19,170,19,2019-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13921,17592,GO-20191239063,PROPERTY - FOUND,2019-07-03,2019,July,Wednesday,3,184,19,2019-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13922,17603,GO-20199022994,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,8,2019-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13923,17606,GO-20199023162,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,14,2019-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13924,17614,GO-20199024454,THEFT UNDER,2019-04-03,2019,April,Wednesday,3,93,20,2019-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13925,17620,GO-20199025875,THEFT UNDER - BICYCLE,2019-08-12,2019,August,Monday,12,224,19,2019-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13926,342,GO-20179005685,THEFT UNDER,2017-05-03,2017,May,Wednesday,3,123,9,2017-05-03,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -13927,17627,GO-20191599020,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,23,2019-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13928,17630,GO-20199027794,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,22,2019-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13929,17654,GO-20199033836,THEFT UNDER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,14,2019-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13930,17659,GO-20199034507,THEFT UNDER - BICYCLE,2019-10-18,2019,October,Friday,18,291,18,2019-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13931,17708,GO-20209011768,THEFT UNDER,2020-04-18,2020,April,Saturday,18,109,12,2020-04-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13932,17719,GO-20171542955,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,15,2017-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13933,17725,GO-20179014332,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,12,2017-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13934,17734,GO-20179015106,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,18,2017-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13935,17735,GO-20171693705,THEFT OF EBIKE UNDER $5000,2017-09-20,2017,September,Wednesday,20,263,6,2017-09-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13936,17749,GO-20179017572,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,8,2017-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13937,17753,GO-20179018576,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,18,2017-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13938,17756,GO-20171979553,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,12,2017-11-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13939,17768,GO-20179020234,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,18,2017-11-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13940,17786,GO-20189002271,THEFT UNDER - BICYCLE,2018-01-19,2018,January,Friday,19,19,19,2018-01-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13941,17788,GO-20189003659,THEFT UNDER - BICYCLE,2018-02-06,2018,February,Tuesday,6,37,16,2018-02-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13942,17789,GO-20189003659,THEFT UNDER - BICYCLE,2018-02-06,2018,February,Tuesday,6,37,16,2018-02-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13943,17791,GO-2018239851,B&E,2018-01-02,2018,January,Tuesday,2,2,12,2018-02-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13944,17794,GO-20189007610,B&E,2018-03-02,2018,March,Friday,2,61,15,2018-03-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13945,17815,GO-20189016381,THEFT UNDER,2018-05-26,2018,May,Saturday,26,146,20,2018-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13946,17817,GO-20189016636,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,11,2018-05-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13947,17832,GO-20189018970,THEFT UNDER,2018-06-16,2018,June,Saturday,16,167,15,2018-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13948,17841,GO-20189020087,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,11,2018-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13949,17842,GO-20189020113,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,10,2018-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13950,17844,GO-20189020350,B&E,2018-06-10,2018,June,Sunday,10,161,0,2018-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13951,10836,GO-20159010492,THEFT UNDER,2015-11-19,2015,November,Thursday,19,323,16,2015-12-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13952,10866,GO-20159010888,THEFT UNDER,2015-12-13,2015,December,Sunday,13,347,19,2015-12-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13953,10875,GO-20152150802,THEFT UNDER,2015-12-15,2015,December,Tuesday,15,349,19,2015-12-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13954,10884,GO-20159011159,B&E,2015-12-15,2015,December,Tuesday,15,349,11,2015-12-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13955,10926,GO-20169000444,THEFT UNDER - SHOPLIFTING,2016-01-01,2016,January,Friday,1,1,17,2016-01-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13956,10932,GO-20169000615,THEFT UNDER,2016-01-16,2016,January,Saturday,16,16,22,2016-01-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13957,10937,GO-2016124179,THEFT UNDER,2015-11-15,2015,November,Sunday,15,319,18,2016-01-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13958,10951,GO-20169000813,THEFT UNDER,2016-01-25,2016,January,Monday,25,25,17,2016-01-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13959,10966,GO-2016203949,THEFT UNDER,2016-02-02,2016,February,Tuesday,2,33,9,2016-02-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13960,10995,GO-20169001463,B&E,2016-02-15,2016,February,Monday,15,46,15,2016-02-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13961,11015,GO-20169001794,THEFT UNDER,2016-02-25,2016,February,Thursday,25,56,20,2016-02-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13962,11068,GO-20169002591,THEFT UNDER,2016-02-15,2016,February,Monday,15,46,9,2016-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13963,11085,GO-20169002916,THEFT UNDER - BICYCLE,2016-03-30,2016,March,Wednesday,30,90,9,2016-03-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13964,7992,GO-20149003644,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,22,2014-05-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -13965,11095,GO-20169003036,THEFT UNDER,2016-01-09,2016,January,Saturday,9,9,20,2016-04-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13966,11129,GO-2016617604,THEFT UNDER - BICYCLE,2016-04-10,2016,April,Sunday,10,101,12,2016-04-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13967,11133,GO-20169003368,THEFT UNDER - BICYCLE,2016-04-12,2016,April,Tuesday,12,103,18,2016-04-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13968,11134,GO-2016628739,THEFT UNDER,2016-04-12,2016,April,Tuesday,12,103,18,2016-04-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13969,11136,GO-20169003393,THEFT UNDER - BICYCLE,2016-04-13,2016,April,Wednesday,13,104,23,2016-04-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13970,11164,GO-20169003625,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,13,2016-04-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13971,11178,GO-20169003686,THEFT UNDER - BICYCLE,2016-04-21,2016,April,Thursday,21,112,20,2016-04-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13972,11188,GO-2016701851,B&E,2016-04-24,2016,April,Sunday,24,115,13,2016-04-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13973,11198,GO-20169003815,THEFT UNDER,2016-04-24,2016,April,Sunday,24,115,11,2016-04-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13974,11203,GO-20169003835,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,8,2016-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13975,11214,GO-20169003889,THEFT UNDER,2016-04-27,2016,April,Wednesday,27,118,8,2016-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13976,11220,GO-20169003904,THEFT UNDER,2016-04-27,2016,April,Wednesday,27,118,13,2016-04-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13977,11227,GO-20169003971,THEFT UNDER - BICYCLE,2016-04-28,2016,April,Thursday,28,119,19,2016-04-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13978,11232,GO-20169004002,THEFT UNDER,2016-05-01,2016,May,Sunday,1,122,0,2016-05-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13979,11283,GO-2016804033,THEFT UNDER,2016-05-09,2016,May,Monday,9,130,23,2016-05-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13980,11290,GO-2016808963,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,9,2016-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13981,11291,GO-20169004389,THEFT UNDER,2016-05-10,2016,May,Tuesday,10,131,12,2016-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13982,11292,GO-2016809139,THEFT UNDER - BICYCLE,2016-05-09,2016,May,Monday,9,130,19,2016-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13983,11293,GO-2016811793,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,19,2016-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13984,11294,GO-2016811793,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,19,2016-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13985,11295,GO-2016811793,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,19,2016-05-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13986,11299,GO-2016817655,THEFT UNDER - BICYCLE,2016-05-12,2016,May,Thursday,12,133,12,2016-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13987,11332,GO-20169004690,THEFT UNDER,2016-05-17,2016,May,Tuesday,17,138,16,2016-05-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13988,11341,GO-20169004745,THEFT UNDER,2016-05-19,2016,May,Thursday,19,140,8,2016-05-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13989,11346,GO-2016867075,THEFT OF EBIKE UNDER $5000,2016-03-01,2016,March,Tuesday,1,61,9,2016-05-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13990,11348,GO-20169004765,THEFT UNDER,2016-05-21,2016,May,Saturday,21,142,15,2016-05-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13991,11354,GO-20169004814,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,20,2016-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13992,11359,GO-20169004854,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,14,2016-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13993,17003,GO-20179019056,THEFT UNDER,2017-10-16,2017,October,Monday,16,289,21,2017-11-06,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -13994,11371,GO-20169004923,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,23,2016-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13995,11394,GO-20169005040,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,19,2016-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13996,11401,GO-20169005089,THEFT UNDER - BICYCLE,2016-05-22,2016,May,Sunday,22,143,12,2016-05-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13997,11411,GO-20169005148,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,17,2016-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13998,11420,GO-20169005184,THEFT UNDER,2016-05-31,2016,May,Tuesday,31,152,18,2016-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -13999,11421,GO-2016951177,THEFT UNDER - BICYCLE,2016-05-31,2016,May,Tuesday,31,152,13,2016-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14000,11425,GO-20169005225,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,2,2016-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14001,23613,GO-2015992764,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,7,2015-06-13,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -14002,11426,GO-20169005225,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,2,2016-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14003,11437,GO-2016951177,THEFT UNDER - BICYCLE,2016-05-31,2016,May,Tuesday,31,152,13,2016-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14004,11440,GO-2016969592,POSSESSION PROPERTY OBC UNDER,2016-06-04,2016,June,Saturday,4,156,12,2016-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14005,11447,GO-2016970613,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,14,2016-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14006,11450,GO-20169005380,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,8,2016-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14007,11451,GO-20169005374,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,15,2016-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14008,11452,GO-20169005378,THEFT UNDER - BICYCLE,2016-06-02,2016,June,Thursday,2,154,15,2016-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14009,11467,GO-2016985053,THEFT UNDER - BICYCLE,2016-06-06,2016,June,Monday,6,158,17,2016-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14010,11471,GO-20169005480,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,6,2016-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14011,11509,GO-20169005671,THEFT FROM MOTOR VEHICLE UNDER,2016-06-10,2016,June,Friday,10,162,12,2016-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14012,11516,GO-20169005696,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,20,2016-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14013,11545,GO-20169005849,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,2,2016-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14014,11547,GO-20169005855,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,17,2016-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14015,11558,GO-20169005889,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,20,2016-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14016,11568,GO-20169005940,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,8,2016-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14017,11575,GO-20161057353,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,20,2016-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14018,11579,GO-20161062377,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,22,2016-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14019,11580,GO-20161062377,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,22,2016-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14020,11589,GO-20169006080,THEFT UNDER,2016-06-16,2016,June,Thursday,16,168,18,2016-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14021,11606,GO-20161082141,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,16,2016-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14022,11612,GO-20169006201,THEFT UNDER,2016-06-17,2016,June,Friday,17,169,8,2016-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14023,11617,GO-20161093233,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,19,2016-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14024,11632,GO-20169006331,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,21,2016-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14025,11640,GO-20169006375,THEFT UNDER,2016-06-26,2016,June,Sunday,26,178,11,2016-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14026,11641,GO-20169006377,THEFT UNDER,2016-06-25,2016,June,Saturday,25,177,12,2016-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14027,11648,GO-20169006421,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,8,2016-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14028,11656,GO-20169006479,THEFT UNDER,2016-06-26,2016,June,Sunday,26,178,15,2016-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14029,11663,GO-20169006512,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,20,2016-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14030,11667,GO-20169006541,THEFT UNDER - BICYCLE,2016-06-26,2016,June,Sunday,26,178,11,2016-06-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14031,11676,GO-20169006599,THEFT UNDER - BICYCLE,2016-06-30,2016,June,Thursday,30,182,11,2016-07-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14032,11697,GO-20169006685,THEFT UNDER,2016-06-30,2016,June,Thursday,30,182,18,2016-07-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14033,11721,GO-20169006780,THEFT UNDER,2016-07-05,2016,July,Tuesday,5,187,8,2016-07-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14034,11759,GO-20169006984,THEFT UNDER,2016-07-10,2016,July,Sunday,10,192,18,2016-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14035,11779,GO-20169007102,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,10,2016-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14036,11787,GO-20161206852,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,18,2016-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14037,11810,GO-20169007224,THEFT UNDER,2016-06-29,2016,June,Wednesday,29,181,16,2016-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14038,11817,GO-20161256772,PROPERTY - FOUND,2016-07-17,2016,July,Sunday,17,199,22,2016-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14039,11826,GO-20169007302,THEFT UNDER,2016-07-16,2016,July,Saturday,16,198,13,2016-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14040,11835,GO-20169007359,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,19,2016-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14041,11838,GO-20169007376,THEFT UNDER,2016-07-18,2016,July,Monday,18,200,17,2016-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14042,11845,GO-20169007397,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,10,2016-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14043,11873,GO-20169007594,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,12,2016-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14044,24783,GO-20169002596,THEFT UNDER - BICYCLE,2016-03-18,2016,March,Friday,18,78,14,2016-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14045,11880,GO-20169007637,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,9,2016-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14046,11889,GO-20169007682,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,21,2016-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14047,11891,GO-20169007693,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,2,2016-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14048,11892,GO-20161300683,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,10,2016-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14049,11893,GO-20161301733,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,21,2016-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14050,11901,GO-20169007714,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,0,2016-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14051,11906,GO-20169007737,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,10,2016-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14052,11917,GO-20169007775,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,23,2016-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14053,11926,GO-20169007793,THEFT UNDER,2016-07-26,2016,July,Tuesday,26,208,11,2016-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14054,11930,GO-20169007812,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,9,2016-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14055,24770,GO-20159009443,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,14,2015-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14056,24772,GO-20152071421,THEFT UNDER,2015-11-16,2015,November,Monday,16,320,3,2015-12-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14057,24773,GO-20152095908,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,12,2015-12-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14058,24774,GO-20152102578,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,22,2015-12-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14059,24787,GO-20149004109,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,20,2014-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14060,24791,GO-20149004334,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,18,2014-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14061,24794,GO-20149004428,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,12,2014-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14062,24795,GO-20149004473,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,8,2014-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14063,24799,GO-20149004793,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,18,2014-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14064,24800,GO-20149004860,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,21,2014-07-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14065,24803,GO-20149005218,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,8,2014-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14066,24806,GO-20149005337,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,0,2014-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14067,24808,GO-20142607062,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,12,2014-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14068,24812,GO-20149005741,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,23,2014-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14069,24817,GO-20149005911,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,13,2014-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14070,24818,GO-20149006003,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,18,2014-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14071,24821,GO-20149006077,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,14,2014-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14072,24824,GO-20142812080,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,14,2014-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14073,24825,GO-20142812080,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,14,2014-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14074,24826,GO-20149006584,THEFT UNDER,2014-08-30,2014,August,Saturday,30,242,22,2014-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14075,24827,GO-20142865162,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,19,2014-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14076,24830,GO-20149007199,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,20,2014-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14077,24834,GO-20149007420,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,19,2014-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14078,24837,GO-20143116593,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,14,2014-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14079,24838,GO-20149007848,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,19,2014-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14080,1988,GO-201892523,THEFT UNDER,2018-01-12,2018,January,Friday,12,12,5,2018-01-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14081,24841,GO-20149008499,THEFT UNDER,2014-12-01,2014,December,Monday,1,335,18,2014-12-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14082,24842,GO-20149008814,THEFT UNDER,2014-11-24,2014,November,Monday,24,328,14,2014-12-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14083,24845,GO-20159001857,THEFT UNDER,2015-04-11,2015,April,Saturday,11,101,18,2015-04-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14084,24850,GO-2015733856,MISCHIEF UNDER,2015-05-02,2015,May,Saturday,2,122,5,2015-05-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14085,24851,GO-20159002418,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,18,2015-05-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14086,24852,GO-20159002541,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,19,2015-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14087,24853,GO-20159002560,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,20,2015-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14088,24856,GO-20159002779,THEFT UNDER,2015-05-15,2015,May,Friday,15,135,9,2015-05-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14089,24862,GO-2015904227,THEFT FROM MOTOR VEHICLE UNDER,2015-05-29,2015,May,Friday,29,149,21,2015-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14090,24878,GO-20159004529,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,23,2015-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14091,24882,GO-20159005154,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,23,2015-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14092,24885,GO-20151419430,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,19,2015-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14093,24886,GO-20159005926,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,18,2015-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14094,24887,GO-20159006009,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,0,2015-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14095,24901,GO-20169000264,THEFT UNDER,2014-12-24,2014,December,Wednesday,24,358,12,2016-01-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14096,24904,GO-20169001127,THEFT UNDER,2016-02-04,2016,February,Thursday,4,35,20,2016-02-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14097,24914,GO-20169003860,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,18,2016-04-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14098,24915,GO-20169003877,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,14,2016-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14099,24916,GO-20169004190,THEFT UNDER,2016-05-05,2016,May,Thursday,5,126,9,2016-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14100,24925,GO-20169005084,THEFT UNDER - BICYCLE,2016-05-25,2016,May,Wednesday,25,146,1,2016-05-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14101,24936,GO-20169006131,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,18,2016-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14102,24937,GO-20169006131,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,18,2016-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14103,24938,GO-20169006131,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,18,2016-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14104,24939,GO-20169006262,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,19,2016-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14105,24941,GO-20169006618,THEFT OF EBIKE UNDER $5000,2016-07-01,2016,July,Friday,1,183,21,2016-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14106,24942,GO-20169006625,THEFT UNDER,2016-07-02,2016,July,Saturday,2,184,14,2016-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14107,24943,GO-20169006669,THEFT UNDER - BICYCLE,2016-07-01,2016,July,Friday,1,183,23,2016-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14108,24945,GO-20169006965,THEFT UNDER,2016-07-09,2016,July,Saturday,9,191,13,2016-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14109,24947,GO-20161209985,THEFT UNDER,2016-07-10,2016,July,Sunday,10,192,19,2016-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14110,24948,GO-20169007312,THEFT UNDER,2016-06-13,2016,June,Monday,13,165,9,2016-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14111,24950,GO-20169007637,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,9,2016-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14112,24952,GO-20169008168,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,10,2016-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14113,24954,GO-20169008255,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,23,2016-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14114,24957,GO-20161421502,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,11,2016-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14115,24958,GO-20169008657,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,4,2016-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14116,24962,GO-20161532877,B&E,2016-08-29,2016,August,Monday,29,242,17,2016-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14117,24963,GO-20161533294,B&E,2016-08-29,2016,August,Monday,29,242,17,2016-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14118,24968,GO-20169010037,THEFT UNDER,2016-09-06,2016,September,Tuesday,6,250,10,2016-09-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14119,24975,GO-20169010501,THEFT FROM MOTOR VEHICLE UNDER,2016-09-15,2016,September,Thursday,15,259,7,2016-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14120,24977,GO-20169011695,THEFT UNDER,2016-10-06,2016,October,Thursday,6,280,4,2016-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14121,24980,GO-20169012016,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,9,2016-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14122,25180,GO-20169002628,THEFT UNDER,2016-03-22,2016,March,Tuesday,22,82,22,2016-03-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14123,8470,GO-20142550517,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,11,2014-07-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14124,25181,GO-20169002749,THEFT UNDER - BICYCLE,2016-03-22,2016,March,Tuesday,22,82,18,2016-03-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14125,25185,GO-20169004215,THEFT UNDER,2016-05-01,2016,May,Sunday,1,122,20,2016-05-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14126,25189,GO-2016823530,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,10,2016-05-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14127,25197,GO-20169005126,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,23,2016-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14128,25202,GO-2016986327,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,22,2016-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14129,25219,GO-20169006473,THEFT UNDER,2016-06-27,2016,June,Monday,27,179,12,2016-06-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14130,25231,GO-20169007923,THEFT UNDER,2016-07-28,2016,July,Thursday,28,210,19,2016-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14131,25241,GO-20169008668,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,15,2016-08-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14132,25247,GO-20161464449,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,18,2016-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14133,25261,GO-20161668867,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,16,2016-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14134,25263,GO-20161680969,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,21,2016-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14135,25288,GO-20179000278,THEFT UNDER - BICYCLE,2017-01-06,2017,January,Friday,6,6,19,2017-01-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14136,25797,GO-20209029269,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,10,2020-11-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14137,25800,GO-20202194037,THEFT OF MOTOR VEHICLE,2020-11-14,2020,November,Saturday,14,319,20,2020-11-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14138,25801,GO-20209030196,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,3,2020-11-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14139,25805,GO-20209031865,THEFT UNDER,2020-12-07,2020,December,Monday,7,342,22,2020-12-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14140,17,GO-20169014643,THEFT UNDER - BICYCLE,2016-12-13,2016,December,Tuesday,13,348,21,2016-12-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14141,51,GO-20179000686,THEFT UNDER - BICYCLE,2017-01-14,2017,January,Saturday,14,14,7,2017-01-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14142,64,GO-20179001188,THEFT OF EBIKE UNDER $5000,2017-01-25,2017,January,Wednesday,25,25,17,2017-01-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14143,135,GO-20179002802,THEFT UNDER - BICYCLE,2017-02-28,2017,February,Tuesday,28,59,18,2017-03-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14144,196,GO-20179004173,THEFT UNDER - BICYCLE,2017-04-03,2017,April,Monday,3,93,15,2017-04-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14145,197,GO-2017593577,THEFT UNDER - BICYCLE,2017-03-28,2017,March,Tuesday,28,87,16,2017-04-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14146,220,GO-20179004696,THEFT UNDER,2017-04-13,2017,April,Thursday,13,103,1,2017-04-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14147,238,GO-20179004806,THEFT UNDER,2017-04-08,2017,April,Saturday,8,98,14,2017-04-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14148,259,GO-2017711197,ROBBERY - MUGGING,2017-04-23,2017,April,Sunday,23,113,6,2017-04-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14149,281,GO-2017732106,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,12,2017-04-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14150,306,GO-2017764122,PROPERTY - FOUND,2017-05-01,2017,May,Monday,1,121,7,2017-05-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14151,317,GO-2017771680,THEFT UNDER - BICYCLE,2017-05-02,2017,May,Tuesday,2,122,13,2017-05-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14152,328,GO-2017790594,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,19,2017-05-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14153,351,GO-20179006034,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,21,2017-05-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14154,368,GO-20179006146,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,6,2017-05-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14155,371,GO-20179006153,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,8,2017-05-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14156,377,GO-20179006210,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,15,2017-05-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14157,392,GO-20179006357,THEFT UNDER,2017-05-12,2017,May,Friday,12,132,19,2017-05-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14158,402,GO-20179006400,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,14,2017-05-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14159,418,GO-20179006569,THEFT UNDER,2017-05-18,2017,May,Thursday,18,138,0,2017-05-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14160,419,GO-20179006577,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,18,2017-05-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14161,436,GO-20179006761,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,19,2017-05-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14162,483,GO-20179007075,THEFT UNDER,2017-05-03,2017,May,Wednesday,3,123,9,2017-05-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14163,496,GO-20179007139,THEFT UNDER,2017-05-28,2017,May,Sunday,28,148,1,2017-05-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14164,508,GO-2017958218,THEFT UNDER - BICYCLE,2017-05-29,2017,May,Monday,29,149,23,2017-05-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14165,559,GO-20179007709,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,18,2017-06-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14166,580,GO-20179007888,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,23,2017-06-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14167,595,GO-20179007969,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,21,2017-06-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14168,599,GO-20171038770,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,17,2017-06-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14169,621,GO-20179008112,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,20,2017-06-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14170,632,GO-20171038437,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,10,2017-06-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14171,671,GO-20179008564,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,13,2017-06-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14172,677,GO-20179008612,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,12,2017-06-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14173,743,GO-20171143245,THEFT OF EBIKE UNDER $5000,2017-06-25,2017,June,Sunday,25,176,21,2017-06-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14174,844,GO-20179010084,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,18,2017-07-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14175,858,GO-20171269301,PROPERTY - FOUND,2017-07-08,2017,July,Saturday,8,189,0,2017-07-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14176,870,GO-20179010283,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,7,2017-07-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14177,873,GO-20179010317,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,23,2017-07-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14178,879,GO-20179010354,THEFT UNDER,2017-07-16,2017,July,Sunday,16,197,16,2017-07-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14179,996,GO-20179011179,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,19,2017-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14180,1003,GO-20179011294,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,10,2017-07-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14181,1027,GO-20179011435,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,12,2017-08-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14182,1061,GO-20171411882,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,21,2017-08-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14183,1125,GO-20171388487,B&E,2017-08-02,2017,August,Wednesday,2,214,1,2017-08-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14184,2432,GO-2018985308,INCIDENT,2018-05-31,2018,May,Thursday,31,151,17,2018-05-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14185,1166,GO-20171462494,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,2,2017-08-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14186,1167,GO-20171462494,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,2,2017-08-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14187,1257,GO-20171547000,THEFT OF EBIKE UNDER $5000,2017-08-22,2017,August,Tuesday,22,234,22,2017-08-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14188,1277,GO-20171582940,B&E,2017-08-31,2017,August,Thursday,31,243,19,2017-09-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14189,1286,GO-20179013832,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,17,2017-09-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14190,1323,GO-20179014085,THEFT UNDER,2017-09-05,2017,September,Tuesday,5,248,12,2017-09-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14191,1360,GO-20179014430,THEFT UNDER,2017-09-10,2017,September,Sunday,10,253,17,2017-09-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14192,698,GO-20179008781,B&E,2017-06-10,2017,June,Saturday,10,161,14,2017-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14193,1363,GO-20179014427,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,18,2017-09-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14194,1389,GO-20179014638,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,21,2017-09-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14195,1414,GO-20179014817,THEFT UNDER - BICYCLE,2017-09-09,2017,September,Saturday,9,252,20,2017-09-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14196,1443,GO-20179015056,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,9,2017-09-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14197,1548,GO-20179016062,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,17,2017-09-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14198,1557,GO-20179016121,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,15,2017-09-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14199,1561,GO-20171781489,THEFT UNDER - BICYCLE,2017-09-30,2017,September,Saturday,30,273,10,2017-10-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14200,2439,GO-20189017071,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,9,2018-06-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14201,1584,GO-20179016417,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,1,2017-10-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14202,1587,GO-20179016459,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,22,2017-10-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14203,1602,GO-20179016617,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,17,2017-10-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14204,1617,GO-20179016617,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,17,2017-10-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14205,1679,GO-20179017451,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,17,2017-10-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14206,1712,GO-20171898735,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,18,2017-10-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14207,1736,GO-20179018113,THEFT UNDER - BICYCLE,2017-10-23,2017,October,Monday,23,296,22,2017-10-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14208,1739,GO-20179018185,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,17,2017-10-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14209,1750,GO-20179018292,THEFT UNDER,2017-10-01,2017,October,Sunday,1,274,12,2017-10-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14210,1809,GO-20179019107,THEFT UNDER - BICYCLE,2017-11-07,2017,November,Tuesday,7,311,0,2017-11-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14211,1922,GO-20173149583,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,21,2017-12-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14212,1932,GO-20179021843,THEFT UNDER - BICYCLE,2017-12-04,2017,December,Monday,4,338,22,2017-12-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14213,1967,GO-20189000439,THEFT UNDER - BICYCLE,2017-12-17,2017,December,Sunday,17,351,13,2018-01-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14214,1981,GO-20189000957,THEFT UNDER - BICYCLE,2017-12-16,2017,December,Saturday,16,350,19,2018-01-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14215,1994,GO-20189001905,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,0,2018-01-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14216,2051,GO-20189006150,THEFT UNDER - BICYCLE,2018-02-23,2018,February,Friday,23,54,13,2018-02-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14217,2076,GO-20189008015,THEFT UNDER - BICYCLE,2018-03-14,2018,March,Wednesday,14,73,19,2018-03-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14218,2178,GO-2018692916,THEFT UNDER - BICYCLE,2018-04-18,2018,April,Wednesday,18,108,12,2018-04-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14219,2179,GO-2018699429,THEFT UNDER - BICYCLE,2018-04-18,2018,April,Wednesday,18,108,18,2018-04-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14220,2221,GO-20189013267,THEFT UNDER,2018-04-29,2018,April,Sunday,29,119,21,2018-04-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14221,2243,GO-20189013631,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,11,2018-05-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14222,2263,GO-20189013965,THEFT UNDER,2018-05-05,2018,May,Saturday,5,125,20,2018-05-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14223,2267,GO-20189014077,THEFT UNDER,2018-05-07,2018,May,Monday,7,127,12,2018-05-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14224,2286,GO-20189014420,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,21,2018-05-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14225,2297,GO-20189014776,THEFT UNDER,2018-05-13,2018,May,Sunday,13,133,14,2018-05-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14226,2308,GO-20189014867,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,20,2018-05-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14227,2324,GO-20189015085,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,22,2018-05-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14228,2364,GO-2018920476,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,5,2018-05-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14229,2392,GO-20189016210,THEFT UNDER,2018-04-25,2018,April,Wednesday,25,115,23,2018-05-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14230,2416,GO-20189016699,THEFT UNDER - BICYCLE,2018-05-29,2018,May,Tuesday,29,149,12,2018-05-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14231,2458,GO-20189017360,THEFT UNDER,2018-06-03,2018,June,Sunday,3,154,4,2018-06-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14232,2474,GO-20189017553,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,23,2018-06-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14233,2486,GO-20189017705,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,0,2018-06-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14234,2515,GO-20189017997,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,18,2018-06-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14235,2519,GO-20189018045,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,9,2018-06-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14236,2548,GO-20189018492,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,16,2018-06-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14237,2573,GO-20181065341,THEFT OF EBIKE OVER $5000,2018-06-12,2018,June,Tuesday,12,163,4,2018-06-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14238,6646,GO-20201329997,THEFT UNDER - BICYCLE,2020-07-17,2020,July,Friday,17,199,20,2020-07-17,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -14239,2607,GO-20189019257,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,17,2018-06-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14240,2654,GO-20189019732,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,17,2018-06-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14241,2656,GO-20189019852,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,6,2018-06-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14242,2657,GO-20189019588,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,9,2018-06-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14243,2752,GO-20189021207,THEFT UNDER - BICYCLE,2018-07-03,2018,July,Tuesday,3,184,22,2018-07-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14244,2815,GO-20181266067,THEFT OF EBIKE UNDER $5000,2018-07-11,2018,July,Wednesday,11,192,18,2018-07-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14245,2817,GO-20189022090,THEFT UNDER,2018-07-10,2018,July,Tuesday,10,191,7,2018-07-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14246,2826,GO-20189022207,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,11,2018-07-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14247,2860,GO-20189022718,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,23,2018-07-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14248,2895,GO-20189023180,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,4,2018-07-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14249,2946,GO-20189023807,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,9,2018-07-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14250,2953,GO-20189023827,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,0,2018-07-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14251,3002,GO-20189024260,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,11,2018-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14252,3008,GO-20189024315,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,22,2018-07-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14253,3013,GO-20189024260,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,11,2018-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14254,3092,GO-20189025322,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,16,2018-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14255,17868,GO-20189024527,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,8,2018-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14256,17870,GO-20189024757,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,12,2018-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14257,22740,GO-20209016789,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,17,2020-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14258,17905,GO-20189030723,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,2,2018-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14259,18094,GO-20179010318,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,11,2017-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14260,18098,GO-20179011021,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,18,2017-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14261,18101,GO-20179011434,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,19,2017-07-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14262,18110,GO-20179012643,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,19,2017-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14263,18113,GO-20179012817,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,12,2017-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14264,18118,GO-20161123628,THEFT UNDER,2016-06-27,2016,June,Monday,27,179,12,2016-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14265,18123,GO-20169006931,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,23,2016-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14266,18128,GO-20169007427,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,3,2016-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14267,18129,GO-20169007505,THEFT UNDER,2016-07-15,2016,July,Friday,15,197,11,2016-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14268,18141,GO-20161494278,THEFT OF EBIKE UNDER $5000,2016-08-22,2016,August,Monday,22,235,14,2016-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14269,18142,GO-20169009588,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,14,2016-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14270,18152,GO-20169010836,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,20,2016-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14271,18159,GO-20169011002,THEFT UNDER,2016-09-23,2016,September,Friday,23,267,16,2016-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14272,18161,GO-20169011177,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,0,2016-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14273,20426,GO-20159005609,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,16,2015-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14274,18162,GO-20169011283,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,9,2016-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14275,18165,GO-20169011548,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,7,2016-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14276,18167,GO-20161787033,THEFT UNDER,2016-10-07,2016,October,Friday,7,281,17,2016-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14277,18168,GO-20161787033,THEFT UNDER,2016-10-07,2016,October,Friday,7,281,17,2016-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14278,18172,GO-20169012315,THEFT UNDER - BICYCLE,2016-10-12,2016,October,Wednesday,12,286,14,2016-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14279,18177,GO-20162018722,B&E,2016-11-13,2016,November,Sunday,13,318,12,2016-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14280,18197,GO-20179004533,THEFT UNDER,2017-04-10,2017,April,Monday,10,100,9,2017-04-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14281,18203,GO-20179006289,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,21,2017-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14282,18212,GO-20171005130,THEFT OVER - BICYCLE,2017-04-30,2017,April,Sunday,30,120,0,2017-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14283,18219,GO-20179008348,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,13,2017-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14284,18318,GO-20141769705,THEFT UNDER,2014-01-11,2014,January,Saturday,11,11,0,2014-03-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14285,18334,GO-20142148718,THEFT UNDER,2014-04-25,2014,April,Friday,25,115,0,2014-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14286,18341,GO-20149004234,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,7,2014-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14287,18354,GO-20149005238,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,6,2014-07-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14288,6906,GO-20209019714,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,0,2020-08-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14289,18357,GO-20149005488,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,21,2014-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14290,18366,GO-20149006652,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,18,2014-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14291,18385,GO-20159000917,B&E,2015-02-06,2015,February,Friday,6,37,20,2015-02-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14292,18409,GO-20159003131,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,0,2015-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14293,18419,GO-20159003899,THEFT UNDER,2015-04-09,2015,April,Thursday,9,99,0,2015-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14294,18432,GO-20159004836,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,18,2015-07-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14295,9063,GO-20143108641,THEFT UNDER,2014-10-10,2014,October,Friday,10,283,23,2014-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14296,18433,GO-20151268162,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,16,2015-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14297,18448,GO-20159006172,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,23,2015-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14298,18465,GO-20159008432,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,15,2015-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14299,18466,GO-20151778191,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,10,2015-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14300,18489,GO-20169004860,THEFT UNDER,2016-05-21,2016,May,Saturday,21,142,17,2016-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14301,18490,GO-20169004969,THEFT UNDER - BICYCLE,2016-05-25,2016,May,Wednesday,25,146,1,2016-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14302,18806,GO-20209025321,THEFT UNDER,2020-10-02,2020,October,Friday,2,276,12,2020-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14303,18807,GO-20201898969,THEFT OVER - BICYCLE,2020-09-28,2020,September,Monday,28,272,18,2020-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14304,18810,GO-20209026145,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,14,2020-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14305,21202,GO-20179013384,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,18,2017-08-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14306,18813,GO-20201964330,B&E,2020-10-09,2020,October,Friday,9,283,22,2020-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14307,18814,GO-20201964330,B&E,2020-10-09,2020,October,Friday,9,283,22,2020-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14308,19054,GO-20169012578,THEFT UNDER,2016-10-25,2016,October,Tuesday,25,299,21,2016-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14309,19265,GO-20199026144,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,17,2019-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14310,19493,GO-20189017020,THEFT UNDER - BICYCLE,2018-05-28,2018,May,Monday,28,148,12,2018-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14311,19395,GO-2017851546,B&E,2017-05-12,2017,May,Friday,12,132,8,2017-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14312,19399,GO-20179006496,THEFT UNDER,2017-03-16,2017,March,Thursday,16,75,9,2017-05-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14313,19401,GO-2017892747,THEFT OF EBIKE UNDER $5000,2017-05-20,2017,May,Saturday,20,140,16,2017-05-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14314,19413,GO-20179008887,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,23,2017-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14315,19414,GO-20179008948,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,0,2017-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14316,19416,GO-20171183193,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,12,2017-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14317,19417,GO-20171183193,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,12,2017-07-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14318,19420,GO-20179009488,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,11,2017-07-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14319,19421,GO-20179009572,THEFT UNDER,2017-06-29,2017,June,Thursday,29,180,10,2017-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14320,19422,GO-20179009915,THEFT UNDER,2017-07-10,2017,July,Monday,10,191,8,2017-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14321,19431,GO-20179012147,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,19,2017-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14322,19438,GO-20179014436,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,5,2017-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14323,19439,GO-20179015521,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,19,2017-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14324,19440,GO-20179015607,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,1,2017-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14325,6647,GO-20201330312,ROBBERY - OTHER,2020-07-17,2020,July,Friday,17,199,21,2020-07-17,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -14326,19441,GO-20179015651,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,8,2017-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14327,19443,GO-20179016234,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,18,2017-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14328,19445,GO-20179016511,THEFT UNDER,2017-09-28,2017,September,Thursday,28,271,10,2017-10-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14329,19447,GO-20171796365,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,19,2017-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14330,19448,GO-20179017402,THEFT UNDER - BICYCLE,2017-10-13,2017,October,Friday,13,286,6,2017-10-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14331,19449,GO-20179017546,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,16,2017-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14332,19451,GO-20179017785,THEFT UNDER,2017-10-20,2017,October,Friday,20,293,19,2017-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14333,19468,GO-20189002385,THEFT UNDER - BICYCLE,2018-01-23,2018,January,Tuesday,23,23,20,2018-01-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14334,19472,GO-20189008734,THEFT UNDER - BICYCLE,2018-03-19,2018,March,Monday,19,78,9,2018-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14335,19474,GO-20189009733,THEFT UNDER,2018-02-21,2018,February,Wednesday,21,52,14,2018-03-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14336,19477,GO-20189011257,THEFT UNDER - BICYCLE,2018-04-03,2018,April,Tuesday,3,93,12,2018-04-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14337,19479,GO-20189012430,B&E,2018-04-22,2018,April,Sunday,22,112,10,2018-04-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14338,19486,GO-20189015925,THEFT UNDER,2018-05-19,2018,May,Saturday,19,139,17,2018-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14339,19489,GO-20189016208,THEFT UNDER,2018-05-25,2018,May,Friday,25,145,12,2018-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14340,19494,GO-20189017020,THEFT UNDER - BICYCLE,2018-05-28,2018,May,Monday,28,148,12,2018-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14341,19495,GO-20189017639,THEFT UNDER - BICYCLE,2018-05-27,2018,May,Sunday,27,147,17,2018-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14342,19497,GO-20189018393,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,9,2018-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14343,19499,GO-20189019133,THEFT UNDER,2018-06-14,2018,June,Thursday,14,165,12,2018-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14344,19504,GO-20189020362,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,23,2018-06-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14345,19507,GO-20189021375,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,22,2018-07-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14346,19510,GO-20189022431,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,13,2018-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14347,19513,GO-20189022990,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,22,2018-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14348,19514,GO-20189023118,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,13,2018-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14349,19518,GO-20189023800,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,15,2018-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14350,19520,GO-20189023928,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,20,2018-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14351,19521,GO-20189024031,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,15,2018-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14352,19528,GO-20189026244,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,9,2018-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14353,19532,GO-20189027149,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,15,2018-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14354,19535,GO-20189027667,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,9,2018-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14355,19539,GO-20189029111,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,20,2018-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14356,19541,GO-20189029464,THEFT UNDER,2018-09-07,2018,September,Friday,7,250,16,2018-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14357,19542,GO-20189029586,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,23,2018-09-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14358,19549,GO-20189030868,THEFT UNDER,2018-09-14,2018,September,Friday,14,257,21,2018-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14359,19551,GO-20189031068,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,9,2018-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14360,19552,GO-20189031347,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,21,2018-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14361,22741,GO-20209016980,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,21,2020-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14362,22742,GO-20209017128,THEFT UNDER,2020-07-04,2020,July,Saturday,4,186,0,2020-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14363,22745,GO-20209017517,THEFT UNDER,2020-07-08,2020,July,Wednesday,8,190,9,2020-07-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14364,22747,GO-20209017867,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,11,2020-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14365,22751,GO-20209018593,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,0,2020-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14366,22754,GO-20201442609,THEFT UNDER - BICYCLE,2020-08-02,2020,August,Sunday,2,215,19,2020-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14367,22758,GO-20201475302,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,13,2020-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14368,699,GO-20179008781,B&E,2017-06-10,2017,June,Saturday,10,161,14,2017-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14369,22759,GO-20209020171,THEFT FROM MOTOR VEHICLE UNDER,2020-08-13,2020,August,Thursday,13,226,23,2020-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14370,22772,GO-20209022330,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,1,2020-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14371,22773,GO-20209022700,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,13,2020-09-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14372,22776,GO-20209023023,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,17,2020-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14373,22777,GO-20209023282,THEFT UNDER,2020-07-01,2020,July,Wednesday,1,183,10,2020-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14374,22785,GO-20201898969,THEFT OVER - BICYCLE,2020-09-28,2020,September,Monday,28,272,18,2020-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14375,22787,GO-20209025925,THEFT UNDER,2020-08-17,2020,August,Monday,17,230,14,2020-10-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14376,22799,GO-20209028248,THEFT UNDER,2020-10-30,2020,October,Friday,30,304,11,2020-10-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14377,22910,GO-20159004324,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,15,2015-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14378,22925,GO-20154,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,23,2015-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14379,22999,GO-20169013125,THEFT UNDER,2016-11-07,2016,November,Monday,7,312,19,2016-11-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14380,23011,GO-20179005928,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,16,2017-05-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14381,23025,GO-20179007908,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,8,2017-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14382,23026,GO-20179007927,THEFT UNDER,2017-06-07,2017,June,Wednesday,7,158,18,2017-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14383,23027,GO-20179008240,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,18,2017-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14384,23032,GO-20179008656,THEFT UNDER,2017-06-21,2017,June,Wednesday,21,172,16,2017-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14385,23036,GO-20171129254,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,14,2017-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14386,23040,GO-20179009955,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,15,2017-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14387,23044,GO-20179011714,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,18,2017-08-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14388,23047,GO-20179012143,THEFT UNDER,2017-08-10,2017,August,Thursday,10,222,21,2017-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14389,23049,GO-20179012382,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,14,2017-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14390,23051,GO-20171477785,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,8,2017-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14391,23059,GO-20179015189,THEFT FROM MOTOR VEHICLE UNDER,2017-09-17,2017,September,Sunday,17,260,13,2017-09-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14392,23062,GO-20179016223,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,13,2017-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14393,23071,GO-20179017546,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,16,2017-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14394,23072,GO-20179017546,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,16,2017-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14395,23073,GO-20179018183,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,16,2017-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14396,23075,GO-20179018559,THEFT UNDER,2017-10-28,2017,October,Saturday,28,301,13,2017-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14397,20452,GO-20159009164,THEFT UNDER,2015-10-29,2015,October,Thursday,29,302,8,2015-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14398,23076,GO-20171969830,B&E,2017-10-29,2017,October,Sunday,29,302,5,2017-10-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14399,23077,GO-20171969830,B&E,2017-10-29,2017,October,Sunday,29,302,5,2017-10-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14400,3093,GO-20189025323,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,18,2018-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14401,23078,GO-20179018777,THEFT UNDER - BICYCLE,2017-10-30,2017,October,Monday,30,303,21,2017-11-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14402,23080,GO-20172003512,THEFT UNDER - BICYCLE,2017-11-06,2017,November,Monday,6,310,8,2017-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14403,23081,GO-20172003512,THEFT UNDER - BICYCLE,2017-11-06,2017,November,Monday,6,310,8,2017-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14404,702,GO-20179008820,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,9,2017-06-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14405,23089,GO-20189005666,THEFT UNDER - BICYCLE,2018-02-22,2018,February,Thursday,22,53,14,2018-02-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14406,23094,GO-20189009482,THEFT UNDER - BICYCLE,2018-03-26,2018,March,Monday,26,85,1,2018-03-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14407,23096,GO-20189010021,THEFT UNDER - BICYCLE,2018-01-01,2018,January,Monday,1,1,12,2018-03-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14408,23106,GO-20189014876,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,19,2018-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14409,23107,GO-20189016087,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,18,2018-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14410,23116,GO-20189018692,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,8,2018-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14411,23120,GO-20189019776,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,9,2018-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14412,23121,GO-20189020431,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,11,2018-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14413,23124,GO-20189022990,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,22,2018-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14414,23125,GO-20189023632,THEFT UNDER,2018-07-18,2018,July,Wednesday,18,199,21,2018-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14415,21212,GO-20179014415,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,17,2017-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14416,23698,GO-2016919507,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,5,2016-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14417,23136,GO-20189025569,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,15,2018-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14418,23139,GO-20189026160,THEFT UNDER,2018-07-28,2018,July,Saturday,28,209,13,2018-08-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14419,23144,GO-20189029121,B&E,2018-08-17,2018,August,Friday,17,229,19,2018-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14420,23150,GO-20189030524,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,22,2018-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14421,23162,GO-20189033742,B&E,2018-09-14,2018,September,Friday,14,257,21,2018-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14422,23165,GO-20189034868,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,21,2018-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14423,23166,GO-20189035123,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,11,2018-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14424,23168,GO-20189039019,THEFT UNDER - BICYCLE,2018-11-18,2018,November,Sunday,18,322,14,2018-11-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14425,23178,GO-20199016063,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,22,2019-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14426,1518,GO-20171745312,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,17,2017-09-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14427,23179,GO-20199016949,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,18,2019-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14428,23182,GO-20199018975,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,15,2019-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14429,23184,GO-20199019514,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,16,2019-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14430,23185,GO-20199019741,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,5,2019-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14431,23186,GO-20199020892,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,17,2019-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14432,23188,GO-20199021327,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,19,2019-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14433,23191,GO-20199022194,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,4,2019-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14434,6933,GO-20209019875,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,8,2020-08-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14435,23192,GO-20199022311,THEFT UNDER,2019-07-12,2019,July,Friday,12,193,17,2019-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14436,23204,GO-20189030740,B&E,2018-09-14,2018,September,Friday,14,257,15,2018-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14437,19555,GO-20189031997,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,18,2018-09-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14438,23217,GO-20189034075,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,19,2018-10-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14439,23239,GO-2019313753,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,0,2019-02-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14440,23240,GO-2019313753,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,0,2019-02-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14441,23259,GO-20199017422,THEFT UNDER,2019-06-02,2019,June,Sunday,2,153,16,2019-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14442,23274,GO-20199020079,THEFT UNDER,2019-06-23,2019,June,Sunday,23,174,21,2019-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14443,23284,GO-20191272507,B&E,2019-07-07,2019,July,Sunday,7,188,20,2019-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14444,23381,GO-20141926669,THEFT UNDER,2014-04-20,2014,April,Sunday,20,110,13,2014-04-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14445,23387,GO-20142161178,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,8,2014-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14446,23390,GO-20149003835,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,20,2014-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14447,23395,GO-20179004536,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,15,2017-04-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14448,23411,GO-20179006687,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,22,2017-05-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14449,23580,GO-20189026969,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,4,2018-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14450,23439,GO-20179010010,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,2,2017-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14451,23454,GO-20179011499,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,9,2017-08-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14452,23456,GO-20179011639,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,7,2017-08-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14453,23465,GO-20179013809,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,10,2017-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14454,23485,GO-20179017156,THEFT UNDER - BICYCLE,2017-10-13,2017,October,Friday,13,286,11,2017-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14455,23490,GO-20179018197,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,8,2017-10-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14456,23492,GO-20179018306,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,9,2017-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14457,23517,GO-2018752659,THEFT OF EBIKE UNDER $5000,2018-04-02,2018,April,Monday,2,92,14,2018-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14458,23542,GO-20189019451,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,22,2018-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14459,23543,GO-20189019546,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,17,2018-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14460,23548,GO-20189021580,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,8,2018-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14461,23553,GO-20189022100,THEFT FROM MOTOR VEHICLE UNDER,2018-07-11,2018,July,Wednesday,11,192,19,2018-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14462,23562,GO-20189023220,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,23,2018-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14463,23568,GO-20181371113,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,19,2018-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14464,23586,GO-20189027708,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,0,2018-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14465,23599,GO-20159002959,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,13,2015-05-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14466,23602,GO-2015886639,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,18,2015-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14467,23619,GO-20159003833,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,8,2015-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14468,23661,GO-20159008750,THEFT UNDER,2015-10-19,2015,October,Monday,19,292,15,2015-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14469,20456,GO-20159009394,B&E,2015-11-04,2015,November,Wednesday,4,308,12,2015-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14470,20471,GO-20169001214,THEFT UNDER,2016-02-01,2016,February,Monday,1,32,0,2016-02-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14471,20601,GO-20191422353,B&E,2019-07-13,2019,July,Saturday,13,194,7,2019-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14472,20473,GO-20169001472,B&E,2016-02-16,2016,February,Tuesday,16,47,17,2016-02-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14473,20476,GO-20169001809,THEFT UNDER,2016-02-27,2016,February,Saturday,27,58,17,2016-02-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14474,20493,GO-20169005160,THEFT UNDER,2016-05-29,2016,May,Sunday,29,150,11,2016-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14475,20497,GO-20169005857,THEFT UNDER,2016-06-02,2016,June,Thursday,2,154,11,2016-06-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14476,20538,GO-20169010941,THEFT UNDER,2016-09-21,2016,September,Wednesday,21,265,15,2016-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14477,20543,GO-20169011819,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,8,2016-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14478,20557,GO-20169013950,THEFT UNDER - BICYCLE,2016-11-26,2016,November,Saturday,26,331,12,2016-11-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14479,1757,GO-20179018348,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,12,2017-10-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14480,20566,GO-20179004026,THEFT UNDER - BICYCLE,2017-03-16,2017,March,Thursday,16,75,9,2017-03-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14481,20577,GO-20179006671,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,22,2017-05-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14482,20585,GO-20199020818,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,10,2019-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14483,20588,GO-20199021797,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,18,2019-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14484,20591,GO-20199022350,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,22,2019-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14485,20596,GO-20199022838,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,0,2019-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14486,20600,GO-20199023818,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,22,2019-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14487,20609,GO-20191477674,B&E,2019-08-03,2019,August,Saturday,3,215,12,2019-08-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14488,20614,GO-20199025673,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,15,2019-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14489,20620,GO-20199026614,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,20,2019-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14490,20624,GO-20199026901,THEFT UNDER,2019-08-18,2019,August,Sunday,18,230,15,2019-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14491,20625,GO-20191585329,PROPERTY - FOUND,2019-08-20,2019,August,Tuesday,20,232,13,2019-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14492,20628,GO-20199027383,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,17,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14493,20629,GO-20191596006,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,8,2019-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14494,20632,GO-20199027811,THEFT UNDER,2019-08-06,2019,August,Tuesday,6,218,7,2019-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14495,20641,GO-20199029989,THEFT UNDER,2019-09-13,2019,September,Friday,13,256,7,2019-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14496,20645,GO-20199030366,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,12,2019-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14497,20656,GO-20199032553,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,6,2019-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14498,20657,GO-20199033178,THEFT UNDER,2019-10-08,2019,October,Tuesday,8,281,18,2019-10-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14499,20659,GO-20199034036,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,22,2019-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14500,20662,GO-20199034544,THEFT UNDER,2019-10-10,2019,October,Thursday,10,283,17,2019-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14501,20664,GO-20199035006,THEFT UNDER,2019-10-23,2019,October,Wednesday,23,296,17,2019-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14502,20667,GO-20199035472,THEFT UNDER,2019-10-18,2019,October,Friday,18,291,12,2019-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14503,20670,GO-20199035867,THEFT UNDER - SHOPLIFTING,2019-10-28,2019,October,Monday,28,301,19,2019-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14504,20674,GO-20199036556,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,1,2019-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14505,20675,GO-20199036556,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,1,2019-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14506,20676,GO-20192145549,B&E,2019-10-27,2019,October,Sunday,27,300,14,2019-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14507,20678,GO-20199037649,THEFT UNDER,2019-10-24,2019,October,Thursday,24,297,20,2019-11-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14508,20679,GO-20192229032,B&E,2019-10-01,2019,October,Tuesday,1,274,9,2019-11-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14509,20681,GO-20199038377,THEFT UNDER,2019-11-21,2019,November,Thursday,21,325,21,2019-11-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14510,20702,GO-20209012160,THEFT UNDER - BICYCLE,2020-04-27,2020,April,Monday,27,118,19,2020-04-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14511,20703,GO-2020853218,PROPERTY - FOUND,2020-05-07,2020,May,Thursday,7,128,7,2020-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14512,20704,GO-2020853218,PROPERTY - FOUND,2020-05-07,2020,May,Thursday,7,128,7,2020-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14513,20714,GO-20209014761,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,11,2020-06-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14514,20715,GO-20201080590,THEFT OF EBIKE UNDER $5000,2020-06-06,2020,June,Saturday,6,158,15,2020-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14515,20717,GO-20201108671,THEFT UNDER - BICYCLE,2020-06-07,2020,June,Sunday,7,159,16,2020-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14516,20718,GO-20209015743,THEFT UNDER,2020-06-19,2020,June,Friday,19,171,16,2020-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14517,20728,GO-20201238916,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,2,2020-07-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14518,20733,GO-20209017804,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,13,2020-07-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14519,20747,GO-20209020457,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,14,2020-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14520,20763,GO-20209020823,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,18,2020-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14521,20771,GO-20209022353,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,15,2020-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14522,20773,GO-20209022544,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,11,2020-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14523,20791,GO-20209019623,THEFT UNDER,2020-08-02,2020,August,Sunday,2,215,0,2020-08-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14524,20800,GO-20209021089,THEFT UNDER,2020-08-23,2020,August,Sunday,23,236,2,2020-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14525,20802,GO-20209022321,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,9,2020-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14526,20812,GO-20209022874,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,11,2020-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14527,20813,GO-20209023079,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,14,2020-09-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14528,20828,GO-20209028195,THEFT UNDER,2020-10-27,2020,October,Tuesday,27,301,22,2020-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14529,20834,GO-20209029898,THEFT UNDER - BICYCLE,2020-11-17,2020,November,Tuesday,17,322,13,2020-11-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14530,6939,GO-20209019944,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,10,2020-08-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14531,20868,GO-20142290170,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,10,2014-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14532,20886,GO-20149004814,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,9,2014-07-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14533,20895,GO-20149005290,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,14,2014-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14534,20906,GO-20149005750,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,11,2014-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14535,20917,GO-20142780516,MISCHIEF UNDER,2014-08-26,2014,August,Tuesday,26,238,13,2014-08-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14536,20930,GO-20149007292,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,23,2014-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14537,20933,GO-20143068489,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,15,2014-10-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14538,10156,GO-20159005212,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,3,2015-07-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14539,20937,GO-20143115621,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,8,2014-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14540,20954,GO-20143567636,THEFT UNDER,2014-12-29,2014,December,Monday,29,363,8,2014-12-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14541,20955,GO-20143567636,THEFT UNDER,2014-12-29,2014,December,Monday,29,363,8,2014-12-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14542,20958,GO-20159000325,THEFT UNDER,2015-01-12,2015,January,Monday,12,12,13,2015-01-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14543,20959,GO-20159000421,THEFT UNDER,2015-01-12,2015,January,Monday,12,12,21,2015-01-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14544,20966,GO-20182095300,B&E,2018-10-25,2018,October,Thursday,25,298,19,2018-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14545,20972,GO-20189040046,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,8,2018-11-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14546,12820,GO-20162091796,THEFT UNDER - BICYCLE,2016-11-18,2016,November,Friday,18,323,14,2016-11-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14547,20974,GO-20182214161,B&E W'INTENT,2018-08-01,2018,August,Wednesday,1,213,0,2018-12-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14548,20984,GO-2019245708,B&E,2019-01-07,2019,January,Monday,7,7,0,2019-02-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14549,20994,GO-20199014941,THEFT UNDER - BICYCLE,2019-05-12,2019,May,Sunday,12,132,12,2019-05-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14550,20999,GO-2019962344,B&E,2019-03-26,2019,March,Tuesday,26,85,0,2019-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14551,21007,GO-20199018374,THEFT UNDER - BICYCLE,2019-06-12,2019,June,Wednesday,12,163,18,2019-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14552,21008,GO-20199018536,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,9,2019-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14553,21009,GO-20191113419,THEFT OF EBIKE UNDER $5000,2019-06-16,2019,June,Sunday,16,167,0,2019-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14554,21031,GO-20199024317,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,9,2019-07-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14555,21032,GO-20199024338,THEFT UNDER - BICYCLE,2019-07-30,2019,July,Tuesday,30,211,0,2019-07-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14556,21049,GO-20191583971,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,9,2019-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14557,21079,GO-20199033383,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,20,2019-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14558,21086,GO-20199034875,THEFT UNDER - BICYCLE,2019-10-22,2019,October,Tuesday,22,295,18,2019-10-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14559,21091,GO-20199036532,THEFT UNDER - BICYCLE,2019-11-05,2019,November,Tuesday,5,309,13,2019-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14560,21113,GO-20209007574,THEFT UNDER - BICYCLE,2020-02-17,2020,February,Monday,17,48,15,2020-03-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14561,21126,GO-20209011509,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,15,2020-04-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14562,21127,GO-20209011509,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,15,2020-04-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14563,21131,GO-20209012545,THEFT UNDER,2020-04-25,2020,April,Saturday,25,116,0,2020-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14564,21132,GO-20209012554,THEFT UNDER,2020-02-05,2020,February,Wednesday,5,36,10,2020-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14565,21138,GO-20209014240,THEFT UNDER,2020-05-26,2020,May,Tuesday,26,147,23,2020-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14566,21140,GO-20201010766,THEFT UNDER - BICYCLE,2020-05-19,2020,May,Tuesday,19,140,3,2020-06-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14567,21145,GO-20209015355,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,11,2020-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14568,21178,GO-20179009843,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,10,2017-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14569,21184,GO-20179010318,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,11,2017-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14570,21193,GO-20179011183,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,15,2017-07-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14571,3119,GO-20189025594,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,3,2018-08-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14572,6934,GO-20209019879,THEFT UNDER,2020-08-10,2020,August,Monday,10,223,20,2020-08-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14573,19565,GO-20189035226,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,13,2018-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14574,21214,GO-20179014897,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,20,2017-09-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14575,3122,GO-20181463089,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,11,2018-08-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14576,21221,GO-20179016598,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,0,2017-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14577,3139,GO-20189025775,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,2,2018-08-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14578,21231,GO-20171986009,PROPERTY - FOUND,2017-10-29,2017,October,Sunday,29,302,12,2017-11-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14579,21232,GO-20171986009,PROPERTY - FOUND,2017-10-29,2017,October,Sunday,29,302,12,2017-11-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14580,21234,GO-20179019724,THEFT UNDER - BICYCLE,2017-10-29,2017,October,Sunday,29,302,15,2017-11-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14581,21238,GO-20179020156,THEFT UNDER - BICYCLE,2017-11-21,2017,November,Tuesday,21,325,3,2017-11-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14582,21250,GO-20189005669,THEFT UNDER - BICYCLE,2018-02-19,2018,February,Monday,19,50,15,2018-02-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14583,21257,GO-2018506002,THEFT UNDER - BICYCLE,2018-03-19,2018,March,Monday,19,78,2,2018-03-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14584,21258,GO-20189009678,THEFT UNDER - BICYCLE,2018-03-18,2018,March,Sunday,18,77,19,2018-03-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14585,21275,GO-20189016117,THEFT UNDER,2018-05-20,2018,May,Sunday,20,140,18,2018-05-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14586,21282,GO-20181017112,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,11,2018-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14587,21283,GO-20189017445,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,13,2018-06-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14588,21284,GO-20189017687,THEFT UNDER,2018-06-06,2018,June,Wednesday,6,157,23,2018-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14589,21286,GO-20189017850,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,9,2018-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14590,21290,GO-20189018210,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,14,2018-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14591,21313,GO-20189022020,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,7,2018-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14592,21322,GO-20189023535,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,19,2018-07-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14593,21332,GO-20189025993,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,6,2018-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14594,21335,GO-20189027388,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,8,2018-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14595,21336,GO-20189028137,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,12,2018-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14596,8643,GO-20149005843,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,17,2014-08-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14597,21337,GO-20189028137,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,12,2018-08-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14598,21350,GO-20189032388,THEFT UNDER,2018-09-29,2018,September,Saturday,29,272,18,2018-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14599,21367,GO-20189037058,THEFT UNDER,2018-10-24,2018,October,Wednesday,24,297,21,2018-11-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14600,21370,GO-2016908218,THEFT UNDER - BICYCLE,2016-05-20,2016,May,Friday,20,141,13,2016-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14601,21373,GO-2016923652,THEFT UNDER - BICYCLE,2016-05-26,2016,May,Thursday,26,147,8,2016-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14602,21378,GO-20169005696,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,20,2016-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14603,21388,GO-20169006437,THEFT UNDER - BICYCLE,2016-06-25,2016,June,Saturday,25,177,18,2016-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14604,21399,GO-20169007680,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,15,2016-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14605,21403,GO-20169008488,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,12,2016-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14606,21406,GO-20169008784,THEFT UNDER - BICYCLE,2016-08-11,2016,August,Thursday,11,224,20,2016-08-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14607,21411,GO-20169009078,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,9,2016-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14608,21417,GO-20169009843,THEFT UNDER,2016-09-02,2016,September,Friday,2,246,6,2016-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14609,21426,GO-20169010406,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,10,2016-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14610,21427,GO-20169010600,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,10,2016-09-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14611,21429,GO-20161679198,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,20,2016-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14612,21430,GO-20161679287,FTC PROBATION ORDER,2016-09-20,2016,September,Tuesday,20,264,18,2016-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14613,21432,GO-20169011028,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,0,2016-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14614,21436,GO-20161816956,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,19,2016-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14615,21465,GO-2017351206,THEFT UNDER - BICYCLE,2017-02-22,2017,February,Wednesday,22,53,12,2017-02-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14616,21477,GO-20179005863,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,17,2017-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14617,21480,GO-20179006282,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,12,2017-05-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14618,21483,GO-20179006469,THEFT UNDER,2016-12-01,2016,December,Thursday,1,336,13,2017-05-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14619,21491,GO-2017978420,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,17,2017-06-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14620,21497,GO-20179007943,THEFT UNDER,2017-05-27,2017,May,Saturday,27,147,15,2017-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14621,21498,GO-20171045686,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,19,2017-06-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14622,21795,GO-20149003201,THEFT UNDER,2014-05-04,2014,May,Sunday,4,124,23,2014-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14623,21800,GO-20149004403,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,22,2014-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14624,23699,GO-2016940776,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,15,2016-05-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14625,19568,GO-20181999837,THEFT UNDER - BICYCLE,2018-10-30,2018,October,Tuesday,30,303,4,2018-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14626,21809,GO-20149005062,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,20,2014-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14627,21825,GO-20149006381,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,15,2014-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14628,21826,GO-20149006484,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,11,2014-09-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14629,21832,GO-20149006815,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,19,2014-09-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14630,21834,GO-20149006902,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,19,2014-09-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14631,21835,GO-20149007154,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,19,2014-09-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14632,21838,GO-20149007373,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,21,2014-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14633,21847,GO-20159000444,THEFT UNDER,2015-01-24,2015,January,Saturday,24,24,9,2015-01-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14634,21849,GO-2015288399,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,12,2015-02-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14635,21856,GO-20159002285,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,8,2015-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14636,21857,GO-2015745445,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,16,2015-05-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14637,21887,GO-20159004166,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,14,2015-07-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14638,21888,GO-20159004198,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,23,2015-07-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14639,21904,GO-20151322280,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,22,2015-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14640,21911,GO-20151431634,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,14,2015-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14641,21914,GO-20159006030,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,8,2015-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14642,21926,GO-20159007903,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,22,2015-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14643,21930,GO-20159008267,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,19,2015-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14644,21949,GO-20169002608,THEFT UNDER - BICYCLE,2016-03-19,2016,March,Saturday,19,79,17,2016-03-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14645,21961,GO-20169004441,THEFT UNDER,2016-05-10,2016,May,Tuesday,10,131,23,2016-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14646,21966,GO-20169004857,THEFT UNDER,2016-05-23,2016,May,Monday,23,144,13,2016-05-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14647,22599,GO-20209031882,THEFT UNDER,2020-12-07,2020,December,Monday,7,342,0,2020-12-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14648,22604,GO-20209032926,THEFT UNDER,2020-12-18,2020,December,Friday,18,353,18,2020-12-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14649,22605,GO-20209032926,THEFT UNDER,2020-12-18,2020,December,Friday,18,353,18,2020-12-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14650,22609,GO-20199023848,THEFT UNDER - BICYCLE,2019-07-14,2019,July,Sunday,14,195,11,2019-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14651,22614,GO-20199024784,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,8,2019-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14652,22622,GO-20199026529,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,7,2019-08-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14653,12822,GO-20162092196,THEFT UNDER - BICYCLE,2016-11-18,2016,November,Friday,18,323,16,2016-11-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14654,22625,GO-20199026883,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,19,2019-08-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14655,22630,GO-20199027342,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,19,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14656,22631,GO-20199027415,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,20,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14657,22632,GO-20199027463,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,18,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14658,22634,GO-20199027472,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,6,2019-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14659,22636,GO-20199028063,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,14,2019-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14660,22637,GO-20199028148,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,11,2019-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14661,19853,GO-20159004458,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,23,2015-07-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14662,22650,GO-20199030941,THEFT UNDER - BICYCLE,2019-09-21,2019,September,Saturday,21,264,16,2019-09-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14663,22656,GO-20199032506,THEFT FROM MOTOR VEHICLE UNDER,2019-10-03,2019,October,Thursday,3,276,3,2019-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14664,22662,GO-20191977648,THEFT OF EBIKE UNDER $5000,2019-10-13,2019,October,Sunday,13,286,11,2019-10-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14665,22665,GO-20199033985,THEFT UNDER - BICYCLE,2019-10-10,2019,October,Thursday,10,283,7,2019-10-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14666,22670,GO-20199034926,THEFT UNDER,2019-10-22,2019,October,Tuesday,22,295,12,2019-10-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14667,22675,GO-20199035867,THEFT UNDER - SHOPLIFTING,2019-10-28,2019,October,Monday,28,301,19,2019-10-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14668,22679,GO-20199036983,THEFT UNDER,2019-11-03,2019,November,Sunday,3,307,16,2019-11-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14669,22686,GO-20199039648,THEFT UNDER,2019-12-03,2019,December,Tuesday,3,337,13,2019-12-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14670,22702,GO-20209010186,THEFT UNDER,2020-03-28,2020,March,Saturday,28,88,8,2020-03-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14671,22709,GO-2020738269,THEFT UNDER,2020-04-02,2020,April,Thursday,2,93,21,2020-04-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14672,22710,GO-2020738269,THEFT UNDER,2020-04-02,2020,April,Thursday,2,93,21,2020-04-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14673,22711,GO-2020738269,THEFT UNDER,2020-04-02,2020,April,Thursday,2,93,21,2020-04-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14674,22724,GO-20201021577,PROPERTY - FOUND,2020-06-02,2020,June,Tuesday,2,154,16,2020-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14675,22725,GO-20201021577,PROPERTY - FOUND,2020-06-02,2020,June,Tuesday,2,154,16,2020-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14676,22726,GO-20201029167,THEFT UNDER - BICYCLE,2020-06-04,2020,June,Thursday,4,156,13,2020-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14677,22733,GO-20201169315,THEFT UNDER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,17,2020-06-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14678,22738,GO-20201224553,B&E,2020-07-02,2020,July,Thursday,2,184,2,2020-07-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14679,3231,GO-20189026700,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,8,2018-08-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14680,3249,GO-20189026993,THEFT UNDER,2018-08-18,2018,August,Saturday,18,230,14,2018-08-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14681,3250,GO-20189026993,THEFT UNDER,2018-08-18,2018,August,Saturday,18,230,14,2018-08-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14682,23706,GO-20169005613,THEFT UNDER,2016-06-11,2016,June,Saturday,11,163,11,2016-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14683,3275,GO-20189027251,THEFT FROM MOTOR VEHICLE UNDER,2018-08-19,2018,August,Sunday,19,231,2,2018-08-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14684,23714,GO-20169006323,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,15,2016-06-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14685,19569,GO-20189037592,THEFT UNDER - BICYCLE,2018-11-07,2018,November,Wednesday,7,311,16,2018-11-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14686,3407,GO-20189029379,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,12,2018-09-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14687,23725,GO-20169008435,THEFT UNDER,2016-07-29,2016,July,Friday,29,211,18,2016-08-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14688,19570,GO-20189038435,FTC PROBATION ORDER,2018-11-15,2018,November,Thursday,15,319,17,2018-11-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14689,3414,GO-20181659819,THEFT OF EBIKE UNDER $5000,2018-09-07,2018,September,Friday,7,250,13,2018-09-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14690,6974,GO-20209020409,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,21,2020-08-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14691,23738,GO-20169009408,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,12,2016-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14692,23746,GO-20169009921,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,16,2016-09-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14693,23747,GO-20169009921,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,16,2016-09-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14694,23752,GO-20161712785,THEFT OF EBIKE UNDER $5000,2016-09-25,2016,September,Sunday,25,269,23,2016-09-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14695,23753,GO-20169011345,B&E,2016-09-28,2016,September,Wednesday,28,272,17,2016-09-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14696,23754,GO-20169011380,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,17,2016-09-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14697,23758,GO-20169011920,THEFT UNDER,2016-10-06,2016,October,Thursday,6,280,20,2016-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14698,23765,GO-20169012751,THEFT UNDER,2016-10-28,2016,October,Friday,28,302,20,2016-10-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14699,23772,GO-20169013950,THEFT UNDER - BICYCLE,2016-11-26,2016,November,Saturday,26,331,12,2016-11-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14700,23783,GO-2017443315,THEFT UNDER - BICYCLE,2017-03-01,2017,March,Wednesday,1,60,12,2017-03-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14701,23785,GO-2017613441,THEFT UNDER - BICYCLE,2017-04-02,2017,April,Sunday,2,92,10,2017-04-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14702,23801,GO-20201206341,POSSESSION PROPERTY OBC UNDER,2020-06-30,2020,June,Tuesday,30,182,17,2020-07-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14703,23809,GO-20209017841,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,21,2020-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14704,23829,GO-20209022230,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,12,2020-09-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14705,23832,GO-20209022634,THEFT UNDER,2020-09-08,2020,September,Tuesday,8,252,15,2020-09-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14706,23841,GO-20209024663,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,0,2020-09-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14707,23847,GO-20209025635,THEFT UNDER,2020-10-06,2020,October,Tuesday,6,280,15,2020-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14708,23848,GO-20209025674,THEFT UNDER,2020-10-06,2020,October,Tuesday,6,280,19,2020-10-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14709,23856,GO-20201996128,B&E,2020-10-17,2020,October,Saturday,17,291,17,2020-10-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14710,23864,GO-20209030815,THEFT UNDER,2020-11-27,2020,November,Friday,27,332,16,2020-11-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14711,23899,GO-20142330498,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,14,2014-06-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14712,13281,GO-20143489334,THEFT UNDER,2014-12-07,2014,December,Sunday,7,341,3,2014-12-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14713,23900,GO-20149004237,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,10,2014-06-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14714,23903,GO-20149004360,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,13,2014-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14715,23921,GO-20149004956,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,2,2014-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14716,23927,GO-20149005357,THEFT FROM MOTOR VEHICLE UNDER,2014-07-26,2014,July,Saturday,26,207,12,2014-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14717,23943,GO-20149006169,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,12,2014-08-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14718,23948,GO-20149006659,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,13,2014-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14719,23970,GO-20159000315,THEFT UNDER,2015-01-12,2015,January,Monday,12,12,21,2015-01-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14720,23981,GO-20159002356,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,19,2015-04-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14721,23987,GO-20181833641,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,23,2018-10-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14722,24007,GO-20199000411,THEFT UNDER - BICYCLE,2018-12-27,2018,December,Thursday,27,361,1,2019-01-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14723,24008,GO-20199000620,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,12,2019-01-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14724,24011,GO-20199002804,THEFT UNDER - BICYCLE,2019-01-11,2019,January,Friday,11,11,16,2019-01-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14725,24028,GO-20199012855,THEFT UNDER - BICYCLE,2019-04-19,2019,April,Friday,19,109,9,2019-04-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14726,24033,GO-20199014836,THEFT UNDER - BICYCLE,2019-01-01,2019,January,Tuesday,1,1,10,2019-05-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14727,24054,GO-20199020286,THEFT UNDER - BICYCLE,2019-06-25,2019,June,Tuesday,25,176,22,2019-06-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14728,24071,GO-20191353801,B&E W'INTENT,2019-07-05,2019,July,Friday,5,186,18,2019-07-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14729,24075,GO-20199023820,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,16,2019-07-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14730,24103,GO-20199030578,THEFT UNDER - BICYCLE,2019-09-05,2019,September,Thursday,5,248,18,2019-09-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14731,24114,GO-20192051989,B&E,2019-10-22,2019,October,Tuesday,22,295,3,2019-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14732,24115,GO-20192051989,B&E,2019-10-22,2019,October,Tuesday,22,295,3,2019-10-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14733,24120,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,19,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14734,13284,GO-2015469975,THEFT UNDER,2015-03-17,2015,March,Tuesday,17,76,15,2015-03-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -14735,24121,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,19,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14736,24122,GO-20199036394,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,19,2019-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14737,24128,GO-20199038129,THEFT UNDER,2019-11-18,2019,November,Monday,18,322,17,2019-11-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14738,24137,GO-20199039578,THEFT UNDER,2019-12-01,2019,December,Sunday,1,335,18,2019-12-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14739,24152,GO-20209007730,THEFT UNDER,2020-03-04,2020,March,Wednesday,4,64,13,2020-03-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14740,24179,GO-20209014265,B&E,2020-05-29,2020,May,Friday,29,150,3,2020-05-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14741,24207,GO-20179012209,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,17,2017-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14742,24377,GO-20181603658,B&E,2018-08-18,2018,August,Saturday,18,230,16,2018-08-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14743,24217,GO-20179013004,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,10,2017-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14744,24218,GO-20171540148,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,15,2017-08-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14745,24220,GO-20171565263,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,13,2017-08-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14746,24246,GO-20179017360,THEFT UNDER,2017-10-16,2017,October,Monday,16,289,12,2017-10-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14747,24248,GO-20179017675,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,20,2017-10-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14748,24249,GO-20171906644,B&E,2017-09-30,2017,September,Saturday,30,273,19,2017-10-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14749,24253,GO-20171937821,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,17,2017-10-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14750,24257,GO-20179018696,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,10,2017-11-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14751,24258,GO-20179018823,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,17,2017-11-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14752,24270,GO-20179022445,THEFT UNDER - BICYCLE,2017-12-16,2017,December,Saturday,16,350,22,2017-12-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14753,24284,GO-20189008259,THEFT UNDER - BICYCLE,2018-01-01,2018,January,Monday,1,1,18,2018-03-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14754,24291,GO-20189010054,THEFT UNDER - BICYCLE,2018-03-30,2018,March,Friday,30,89,18,2018-03-30,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14755,24299,GO-20189013527,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,22,2018-05-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14756,24301,GO-20189013954,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,19,2018-05-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14757,24302,GO-20189014135,THEFT UNDER - BICYCLE,2018-05-03,2018,May,Thursday,3,123,20,2018-05-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14758,24305,GO-20189014657,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,14,2018-05-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14759,24313,GO-20189019154,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,16,2018-06-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14760,24336,GO-20189022065,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,2,2018-07-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14761,24345,GO-20189023143,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,22,2018-07-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14762,24357,GO-20181413269,B&E,2018-08-01,2018,August,Wednesday,1,213,1,2018-08-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14763,24376,GO-20189027646,THEFT UNDER - BICYCLE,2018-08-17,2018,August,Friday,17,229,16,2018-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14764,24386,GO-20189030388,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,10,2018-09-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14765,24389,GO-20189032565,THEFT UNDER - BICYCLE,2018-09-29,2018,September,Saturday,29,272,9,2018-10-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14766,24583,GO-20179010125,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,17,2017-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14767,24593,GO-20141863966,THEFT UNDER,2014-04-09,2014,April,Wednesday,9,99,21,2014-04-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14768,24601,GO-20142169040,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,9,2014-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14769,24602,GO-20149003818,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,12,2014-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14770,24619,GO-20149004784,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,0,2014-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14771,24623,GO-20149004900,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,20,2014-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14772,24649,GO-20142840488,B&E,2014-09-04,2014,September,Thursday,4,247,4,2014-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14773,24650,GO-20142840488,B&E,2014-09-04,2014,September,Thursday,4,247,4,2014-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14774,24653,GO-20149006744,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,12,2014-09-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14775,24689,GO-2015649533,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,2,2015-04-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14776,24690,GO-2015649533,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,2,2015-04-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14777,24695,GO-20159002412,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,14,2015-05-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14778,24721,GO-20159004281,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,7,2015-07-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14779,24722,GO-20151158422,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,19,2015-07-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14780,24725,GO-20159004615,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,18,2015-07-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14781,24740,GO-20151455673,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,10,2015-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14782,24741,GO-20159006149,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,10,2015-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14783,24746,GO-20151505454,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,14,2015-09-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14784,24747,GO-20159006566,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,11,2015-08-31,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14785,24750,GO-20159006837,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,14,2015-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14786,24751,GO-20159006861,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,10,2015-09-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14787,24765,GO-20151790719,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,0,2015-10-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14788,3542,GO-20189031660,THEFT UNDER,2018-09-22,2018,September,Saturday,22,265,16,2018-09-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14789,6988,GO-20209020540,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,2,2020-08-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14790,19571,GO-20189039278,THEFT UNDER - BICYCLE,2018-11-21,2018,November,Wednesday,21,325,8,2018-11-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14791,3563,GO-20189032019,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,19,2018-09-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14792,19573,GO-201936627,B&E,2019-01-06,2019,January,Sunday,6,6,0,2019-01-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14793,3644,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04,2018,October,Thursday,4,277,13,2018-10-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14794,19574,GO-20199000928,THEFT UNDER - BICYCLE,2019-01-08,2019,January,Tuesday,8,8,10,2019-01-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14795,19576,GO-2019328309,B&E,2019-02-21,2019,February,Thursday,21,52,0,2019-02-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14796,3645,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04,2018,October,Thursday,4,277,13,2018-10-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14797,19578,GO-20199013255,THEFT UNDER,2019-04-27,2019,April,Saturday,27,117,8,2019-04-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14798,3650,GO-20189033448,THEFT UNDER,2018-10-10,2018,October,Wednesday,10,283,0,2018-10-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14799,19584,GO-20199018075,THEFT UNDER,2019-06-03,2019,June,Monday,3,154,0,2019-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14800,6992,GO-20209020552,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,18,2020-08-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14801,3742,GO-20181955448,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,18,2018-10-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14802,19593,GO-20209024967,THEFT UNDER - BICYCLE,2020-09-23,2020,September,Wednesday,23,267,1,2020-09-29,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14803,3746,GO-20181963531,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,8,2018-10-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14804,19597,GO-20209026210,THEFT UNDER - BICYCLE,2020-10-09,2020,October,Friday,9,283,17,2020-10-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14805,6999,GO-20209020654,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,17,2020-08-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14806,3756,GO-20181971191,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,16,2018-10-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14807,19783,GO-20142586662,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,20,2014-07-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14808,7025,GO-20209020892,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,23,2020-08-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14809,7129,GO-20209021806,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,14,2020-08-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14810,7194,GO-20209022504,THEFT UNDER,2020-09-06,2020,September,Sunday,6,250,17,2020-09-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14811,7214,GO-20209022729,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,1,2020-09-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14812,7241,GO-20201742411,THEFT UNDER - BICYCLE,2020-09-14,2020,September,Monday,14,258,12,2020-09-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14813,7258,GO-20201755208,THEFT UNDER - BICYCLE,2020-09-04,2020,September,Friday,4,248,16,2020-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14814,7274,GO-20201764599,PROPERTY - FOUND,2020-09-17,2020,September,Thursday,17,261,23,2020-09-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14815,7296,GO-20209023829,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,23,2020-09-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14816,7308,GO-20201789993,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,6,2020-09-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14817,7326,GO-20209024143,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,21,2020-09-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14818,7339,GO-20209024312,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,22,2020-09-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14819,7360,GO-20209024564,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,0,2020-09-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14820,7371,GO-20209024745,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,23,2020-09-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14821,7417,GO-20209025496,THEFT UNDER,2020-10-04,2020,October,Sunday,4,278,21,2020-10-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14822,7422,GO-20209025565,THEFT UNDER,2020-10-04,2020,October,Sunday,4,278,18,2020-10-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14823,7456,GO-20209026280,THEFT UNDER,2020-10-12,2020,October,Monday,12,286,23,2020-10-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14824,7533,GO-20209027491,THEFT UNDER,2020-10-23,2020,October,Friday,23,297,19,2020-10-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14825,7546,GO-20209027708,THEFT UNDER,2020-10-26,2020,October,Monday,26,300,10,2020-10-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14826,7561,GO-20209027884,THEFT UNDER,2020-10-27,2020,October,Tuesday,27,301,10,2020-10-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14827,7562,GO-20209027917,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,17,2020-10-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14828,7688,GO-20209031209,THEFT UNDER,2020-11-30,2020,November,Monday,30,335,3,2020-12-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14829,7748,GO-20141383464,MISCHIEF UNDER,2014-01-17,2014,January,Friday,17,17,20,2014-01-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14830,7777,GO-20141675909,THEFT UNDER,2013-02-09,2013,February,Saturday,9,40,20,2014-03-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14831,7778,GO-20179003602,THEFT UNDER - BICYCLE,2017-03-21,2017,March,Tuesday,21,80,18,2017-03-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14832,7835,GO-20141889615,THEFT UNDER,2014-04-12,2014,April,Saturday,12,102,14,2014-04-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14833,7841,GO-20141904302,THEFT UNDER,2014-04-16,2014,April,Wednesday,16,106,11,2014-04-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14834,7846,GO-20141988153,FTC PROBATION ORDER,2014-04-30,2014,April,Wednesday,30,120,14,2014-04-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14835,7958,GO-20149003530,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,9,2014-05-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14836,7964,GO-20149003542,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,11,2014-05-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14837,7967,GO-20149003543,THEFT UNDER,2014-05-18,2014,May,Sunday,18,138,6,2014-05-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14838,8032,GO-20142206134,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,9,2014-06-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14839,8161,GO-20142301384,B&E,2014-06-13,2014,June,Friday,13,164,9,2014-06-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14840,8165,GO-20149004154,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,2,2014-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14841,8184,GO-20149004215,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,23,2014-06-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14842,8213,GO-20149004330,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,2,2014-06-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14843,8259,GO-20142366723,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,16,2014-06-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14844,8353,GO-20149004735,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,21,2014-07-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14845,8356,GO-20149004746,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,12,2014-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14846,8386,GO-20149004872,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,18,2014-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14847,8394,GO-20149004906,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,0,2014-07-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14848,8517,GO-20149005351,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,20,2014-07-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14849,8544,GO-20149005443,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,9,2014-07-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14850,8547,GO-20149005463,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,21,2014-07-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14851,8567,GO-20142648616,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,21,2014-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14852,8626,GO-20142693174,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,9,2014-08-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14853,8629,GO-20142678903,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,9,2014-08-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14854,8633,GO-20149005775,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,14,2014-08-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14855,8655,GO-20142692616,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,11,2014-08-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14856,8667,GO-20149005963,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,2,2014-08-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14857,8736,GO-20149006299,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,10,2014-08-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14858,8785,GO-20149006468,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,16,2014-09-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14859,8792,GO-20149006501,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,7,2014-09-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14860,8891,GO-20149006898,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,18,2014-09-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14861,8933,GO-20149007082,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,13,2014-09-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14862,8947,GO-20149007117,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,16,2014-09-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14863,8961,GO-20142974232,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,14,2014-09-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14864,8973,GO-20142981944,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,7,2014-09-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14865,8998,GO-20149007321,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,18,2014-09-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14866,9015,GO-20149007369,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,9,2014-10-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14867,9017,GO-20143041911,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,15,2014-10-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14868,9023,GO-20149007408,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,0,2014-10-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14869,9053,GO-20143103061,B&E,2014-10-01,2014,October,Wednesday,1,274,0,2014-10-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14870,9629,GO-2015849108,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,14,2015-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14871,9054,GO-20143103061,B&E,2014-10-01,2014,October,Wednesday,1,274,0,2014-10-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14872,9143,GO-20149007973,THEFT UNDER,2014-10-12,2014,October,Sunday,12,285,0,2014-11-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14873,9159,GO-20143253210,THEFT UNDER,2014-11-05,2014,November,Wednesday,5,309,17,2014-11-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14874,9162,GO-20143263384,THEFT UNDER,2014-11-08,2014,November,Saturday,8,312,13,2014-11-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14875,9178,GO-20149007996,THEFT UNDER,2014-11-03,2014,November,Monday,3,307,13,2014-11-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14876,9222,GO-20149008624,THEFT UNDER,2014-11-15,2014,November,Saturday,15,319,6,2014-12-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14877,9256,GO-20159000167,THEFT UNDER,2015-01-09,2015,January,Friday,9,9,12,2015-01-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14878,9331,GO-2015451845,THEFT UNDER,2015-03-14,2015,March,Saturday,14,73,12,2015-03-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14879,9341,GO-20159001456,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,7,2015-03-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14880,9449,GO-20159002105,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,12,2015-04-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14881,9473,GO-20159002253,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,13,2015-04-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14882,9524,GO-20159002456,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,23,2015-05-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14883,9579,GO-2015796974,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,22,2015-05-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14884,9590,GO-2015805938,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,17,2015-05-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14885,9594,GO-20159002787,THEFT UNDER,2015-05-15,2015,May,Friday,15,135,20,2015-05-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14886,9634,GO-2015854741,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,11,2015-05-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14887,9647,GO-20159003045,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,1,2015-05-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14888,9703,GO-20159003252,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,19,2015-06-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14889,9705,GO-20159003255,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,17,2015-06-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14890,9746,GO-2015949383,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,16,2015-06-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14891,9749,GO-2015953568,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,19,2015-06-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14892,9758,GO-2015962378,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,18,2015-06-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14893,9788,GO-2015992488,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,13,2015-06-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14894,9824,GO-20159003712,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,18,2015-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14895,9881,GO-20151074169,POSSESSION PROPERTY OBC UNDER,2015-06-26,2015,June,Friday,26,177,3,2015-06-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14896,9908,GO-20151099871,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,19,2015-06-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14897,9913,GO-20159004052,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,3,2015-06-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14898,9935,GO-20151120969,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,15,2015-07-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14899,3795,GO-20189036365,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,17,2018-10-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14900,3819,GO-20189037059,THEFT UNDER,2018-11-02,2018,November,Friday,2,306,8,2018-11-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14901,3874,GO-20189038646,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,19,2018-11-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14902,3931,GO-20182258250,THEFT UNDER - BICYCLE,2018-11-25,2018,November,Sunday,25,329,12,2018-12-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14903,4033,GO-20199004474,THEFT UNDER,2019-02-04,2019,February,Monday,4,35,21,2019-02-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14904,19788,GO-20149005887,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,21,2014-08-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14905,4049,GO-20199005410,THEFT UNDER - BICYCLE,2019-02-14,2019,February,Thursday,14,45,11,2019-02-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14906,4061,GO-2019342258,THEFT UNDER - BICYCLE,2019-02-23,2019,February,Saturday,23,54,9,2019-02-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14907,4102,GO-20199009210,THEFT UNDER - BICYCLE,2019-03-04,2019,March,Monday,4,63,19,2019-03-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14908,4114,GO-20199009835,THEFT UNDER,2019-03-26,2019,March,Tuesday,26,85,23,2019-03-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14909,4142,GO-20199011121,THEFT UNDER - BICYCLE,2019-04-08,2019,April,Monday,8,98,20,2019-04-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14910,4143,GO-20199011142,THEFT UNDER - BICYCLE,2019-04-08,2019,April,Monday,8,98,18,2019-04-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14911,4158,GO-20199011677,THEFT UNDER - BICYCLE,2019-04-11,2019,April,Thursday,11,101,23,2019-04-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14912,4179,GO-20199012298,THEFT UNDER,2019-04-17,2019,April,Wednesday,17,107,8,2019-04-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14913,4180,GO-20199012298,THEFT UNDER,2019-04-17,2019,April,Wednesday,17,107,8,2019-04-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14914,4224,GO-20199013664,THEFT UNDER,2019-04-01,2019,April,Monday,1,91,12,2019-05-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14915,4225,GO-20199013667,THEFT UNDER,2019-04-30,2019,April,Tuesday,30,120,23,2019-05-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14916,4231,GO-20199013874,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,20,2019-05-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14917,4277,GO-20199015046,THEFT UNDER,2019-05-11,2019,May,Saturday,11,131,2,2019-05-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14918,4316,GO-20199015822,THEFT UNDER,2019-05-21,2019,May,Tuesday,21,141,11,2019-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14919,4381,GO-20199016914,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,18,2019-05-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14920,4448,GO-20199018088,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,8,2019-06-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14921,4484,GO-20199018556,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,10,2019-06-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14922,4510,GO-20199018851,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,20,2019-06-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14923,4597,GO-20199019949,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,12,2019-06-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14924,4601,GO-20199020036,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,1,2019-06-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14925,4626,GO-20199020298,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,2,2019-06-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14926,4708,GO-20199021521,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,17,2019-07-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14927,4739,GO-20191196063,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,3,2019-06-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14928,4747,GO-20199021884,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,12,2019-07-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14929,4766,GO-20191291037,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,20,2019-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14930,4780,GO-20191307010,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,19,2019-07-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14931,4790,GO-20199022684,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,15,2019-07-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14932,4795,GO-20191324400,THEFT UNDER - BICYCLE,2019-07-14,2019,July,Sunday,14,195,18,2019-07-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14933,4808,GO-20199022927,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,21,2019-07-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14934,4907,GO-20199024092,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,3,2019-07-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14935,5048,GO-20199025940,THEFT UNDER - BICYCLE,2019-08-05,2019,August,Monday,5,217,19,2019-08-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14936,5094,GO-20199026672,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,21,2019-08-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14937,5174,GO-20191627815,B&E,2019-08-24,2019,August,Saturday,24,236,4,2019-08-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14938,5185,GO-20199028057,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,10,2019-08-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14939,5187,GO-20199028105,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,1,2019-08-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14940,5188,GO-20191633564,THEFT UNDER,2019-08-20,2019,August,Tuesday,20,232,21,2019-08-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14941,5198,GO-20191663684,B&E,2019-08-25,2019,August,Sunday,25,237,11,2019-08-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14942,5223,GO-20191673190,THEFT UNDER,2009-09-01,2009,September,Tuesday,1,244,12,2019-09-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14943,5244,GO-20191711060,THEFT OF EBIKE UNDER $5000,2019-09-06,2019,September,Friday,6,249,22,2019-09-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14944,5284,GO-20199029402,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,1,2019-09-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14945,5334,GO-20191778214,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14946,5335,GO-20191778181,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14947,5336,GO-20191778192,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14948,5395,GO-20199031419,THEFT UNDER,2019-09-24,2019,September,Tuesday,24,267,8,2019-09-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14949,5413,GO-20199031624,THEFT UNDER,2019-09-25,2019,September,Wednesday,25,268,19,2019-09-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14950,5430,GO-20199031915,THEFT UNDER - BICYCLE,2019-09-29,2019,September,Sunday,29,272,1,2019-09-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14951,5445,GO-20199032136,THEFT UNDER,2019-09-29,2019,September,Sunday,29,272,8,2019-09-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14952,5505,GO-20199033455,THEFT UNDER - BICYCLE,2019-09-26,2019,September,Thursday,26,269,17,2019-10-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14953,5565,GO-20199034753,THEFT UNDER,2019-10-21,2019,October,Monday,21,294,23,2019-10-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14954,5618,GO-20199035797,THEFT FROM MOTOR VEHICLE UNDER,2019-10-30,2019,October,Wednesday,30,303,5,2019-10-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14955,5662,GO-20199036827,THEFT UNDER,2019-11-07,2019,November,Thursday,7,311,17,2019-11-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14956,5733,GO-20199039198,THEFT UNDER,2019-11-26,2019,November,Tuesday,26,330,19,2019-11-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14957,5941,GO-20209007618,THEFT UNDER,2020-03-03,2020,March,Tuesday,3,63,12,2020-03-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14958,5756,GO-20192310165,UNLAWFULLY IN DWELLING-HOUSE,2019-11-29,2019,November,Friday,29,333,21,2019-11-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14959,5757,GO-20192310165,UNLAWFULLY IN DWELLING-HOUSE,2019-11-29,2019,November,Friday,29,333,21,2019-11-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14960,5785,GO-20199041989,THEFT FROM MOTOR VEHICLE UNDER,2019-12-25,2019,December,Wednesday,25,359,13,2019-12-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14961,5793,GO-20209000015,THEFT UNDER,2020-01-01,2020,January,Wednesday,1,1,0,2020-01-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14962,5801,GO-20209000244,THEFT UNDER,2019-12-31,2019,December,Tuesday,31,365,16,2020-01-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14963,5921,GO-2020386444,THEFT OF EBIKE UNDER $5000,2020-02-23,2020,February,Sunday,23,54,20,2020-02-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14964,5923,GO-2020382444,THEFT UNDER,2020-02-22,2020,February,Saturday,22,53,23,2020-02-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14965,5973,GO-2020537314,THEFT UNDER,2020-03-13,2020,March,Friday,13,73,17,2020-03-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14966,5993,GO-2020608192,POSSESSION PROPERTY OBC UNDER,2020-03-26,2020,March,Thursday,26,86,18,2020-03-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14967,6135,GO-2020830432,THEFT UNDER - BICYCLE,2020-05-03,2020,May,Sunday,3,124,6,2020-05-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14968,6147,GO-2020830432,THEFT UNDER - BICYCLE,2020-05-03,2020,May,Sunday,3,124,6,2020-05-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14969,6160,GO-20209012869,B&E,2020-05-10,2020,May,Sunday,10,131,10,2020-05-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14970,6377,GO-20201093955,THEFT UNDER - BICYCLE,2020-06-14,2020,June,Sunday,14,166,1,2020-06-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14971,6381,GO-20209015320,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,4,2020-06-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14972,6432,GO-20209015831,THEFT UNDER,2020-06-18,2020,June,Thursday,18,170,13,2020-06-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14973,6455,GO-20201139011,THEFT UNDER - BICYCLE,2020-06-20,2020,June,Saturday,20,172,22,2020-06-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14974,6470,GO-20209016150,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,10,2020-06-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14975,6472,GO-20209016200,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,23,2020-06-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14976,6490,GO-20209016412,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,18,2020-06-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14977,6532,GO-20209016846,THEFT UNDER,2020-07-04,2020,July,Saturday,4,186,14,2020-07-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14978,6881,GO-20209019515,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,23,2020-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14979,6886,GO-20209019552,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,12,2020-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -14980,19793,GO-20149006073,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,6,2014-08-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14981,19794,GO-20149006097,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,17,2014-08-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14982,19797,GO-20149006212,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,13,2014-08-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14983,19802,GO-20142766048,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,21,2014-08-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14984,19806,GO-20149006604,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,7,2014-09-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14985,19811,GO-20149007131,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,17,2014-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14986,19813,GO-20149007182,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,20,2014-09-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14987,19815,GO-20143053076,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,9,2014-10-06,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14988,19819,GO-20149008794,THEFT UNDER,2014-12-06,2014,December,Saturday,6,340,7,2014-12-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14989,19820,GO-20156863,THEFT UNDER,2015-01-01,2015,January,Thursday,1,1,22,2015-01-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14990,19825,GO-20159000740,THEFT UNDER,2015-02-11,2015,February,Wednesday,11,42,20,2015-02-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14991,19829,GO-20159001822,THEFT UNDER,2015-04-09,2015,April,Thursday,9,99,20,2015-04-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14992,19838,GO-2015740139,B&E,2015-05-01,2015,May,Friday,1,121,16,2015-05-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14993,19842,GO-20159003324,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,17,2015-06-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14994,19845,GO-20151015130,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,6,2015-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14995,19863,GO-20159005658,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,19,2015-08-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14996,19867,GO-20159006301,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,18,2015-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14997,19874,GO-20159007607,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,21,2015-09-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14998,19875,GO-20159008069,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,10,2015-10-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -14999,19885,GO-20159010823,THEFT UNDER,2015-12-11,2015,December,Friday,11,345,16,2015-12-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15000,19891,GO-2016430509,THEFT OVER,2016-02-29,2016,February,Monday,29,60,8,2016-03-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15001,19892,GO-2016430509,THEFT OVER,2016-02-29,2016,February,Monday,29,60,8,2016-03-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15002,19893,GO-2016430509,THEFT OVER,2016-02-29,2016,February,Monday,29,60,8,2016-03-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15003,19894,GO-2016442636,THEFT UNDER,2016-02-26,2016,February,Friday,26,57,18,2016-03-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15004,19895,GO-2016487572,THEFT UNDER - BICYCLE,2016-02-01,2016,February,Monday,1,32,18,2016-03-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15005,19898,GO-20169003463,THEFT UNDER - BICYCLE,2016-04-16,2016,April,Saturday,16,107,9,2016-04-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15006,19901,GO-2016753883,THEFT UNDER - BICYCLE,2016-05-02,2016,May,Monday,2,123,18,2016-05-02,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15007,19906,GO-20169004685,THEFT UNDER,2016-05-18,2016,May,Wednesday,18,139,8,2016-05-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15008,19910,GO-20169004987,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,20,2016-05-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15009,19915,GO-20169005701,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,18,2016-06-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15010,19916,GO-20169005858,THEFT UNDER,2016-06-15,2016,June,Wednesday,15,167,16,2016-06-16,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15011,19918,GO-20169006107,THEFT UNDER,2016-06-20,2016,June,Monday,20,172,17,2016-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15012,19920,GO-20161081609,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,9,2016-06-21,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15013,19924,GO-20169007244,THEFT UNDER,2016-07-14,2016,July,Thursday,14,196,12,2016-07-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15014,19925,GO-20169007360,THEFT UNDER,2016-07-16,2016,July,Saturday,16,198,12,2016-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15015,19940,GO-20161568803,THEFT UNDER - BICYCLE,2016-09-04,2016,September,Sunday,4,248,9,2016-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15016,20015,GO-20199007919,B&E,2019-03-11,2019,March,Monday,11,70,15,2019-03-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15017,19941,GO-20161568803,THEFT UNDER - BICYCLE,2016-09-04,2016,September,Sunday,4,248,9,2016-09-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15018,19948,GO-20169011903,THEFT UNDER,2016-10-11,2016,October,Tuesday,11,285,13,2016-10-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15019,19954,GO-20169013363,THEFT UNDER,2016-11-13,2016,November,Sunday,13,318,17,2016-11-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15020,19955,GO-20162063717,B&E,2016-11-14,2016,November,Monday,14,319,12,2016-11-20,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15021,19958,GO-20169014590,THEFT UNDER - BICYCLE,2016-12-05,2016,December,Monday,5,340,7,2016-12-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15022,19959,GO-20169014787,THEFT UNDER - BICYCLE,2016-12-08,2016,December,Thursday,8,343,18,2016-12-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15023,19963,GO-20179000860,THEFT UNDER - BICYCLE,2017-01-18,2017,January,Wednesday,18,18,5,2017-01-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15024,19967,GO-2017337695,THEFT UNDER - BICYCLE,2017-02-04,2017,February,Saturday,4,35,0,2017-02-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15025,19969,GO-20161970257,THEFT UNDER,2016-11-05,2016,November,Saturday,5,310,18,2016-11-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15026,19974,GO-2017664702,THEFT UNDER - BICYCLE,2017-04-15,2017,April,Saturday,15,105,16,2017-04-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15027,19975,GO-20179004924,THEFT UNDER - BICYCLE,2017-04-18,2017,April,Tuesday,18,108,23,2017-04-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15028,19991,GO-20189034788,THEFT OVER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,1,2018-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15029,19992,GO-20189034788,THEFT OVER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,1,2018-10-19,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15030,19998,GO-20189037842,THEFT UNDER - BICYCLE,2018-11-04,2018,November,Sunday,4,308,6,2018-11-12,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15031,20013,GO-20199004992,THEFT UNDER - BICYCLE,2018-11-01,2018,November,Thursday,1,305,0,2019-02-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15032,20034,GO-20199018033,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,17,2019-06-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15033,20035,GO-20191098876,THEFT OF EBIKE UNDER $5000,2019-06-14,2019,June,Friday,14,165,13,2019-06-14,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15034,20054,GO-20199021723,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,4,2019-07-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15035,20138,GO-20149002654,THEFT UNDER,2014-04-08,2014,April,Tuesday,8,98,10,2014-04-09,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15036,20142,GO-20149002867,THEFT UNDER,2014-04-09,2014,April,Wednesday,9,99,8,2014-04-15,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15037,20150,GO-20142170864,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,15,2014-05-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15038,20160,GO-20149004179,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,15,2014-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15039,20164,GO-20149004392,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,11,2014-06-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15040,20177,GO-20179007080,THEFT UNDER,2017-05-27,2017,May,Saturday,27,147,10,2017-05-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15041,20178,GO-20179007433,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,10,2017-06-03,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15042,20191,GO-20171079810,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,15,2017-06-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15043,20207,GO-20179010464,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,1,2017-07-18,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15044,20216,GO-20179011904,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,11,2017-08-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15045,20224,GO-20171483474,THEFT OF MOTOR VEHICLE,2017-08-16,2017,August,Wednesday,16,228,23,2017-08-17,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15046,20229,GO-20179013178,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,11,2017-08-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15047,20243,GO-20179015564,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,0,2017-09-23,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15048,20254,GO-20179016829,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,8,2017-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15049,20255,GO-20179016829,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,8,2017-10-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15050,20267,GO-20179018357,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,14,2017-10-27,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15051,20270,GO-20171997977,B&E,2017-10-23,2017,October,Monday,23,296,0,2017-11-04,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15052,20277,GO-20179021054,THEFT UNDER - BICYCLE,2017-12-01,2017,December,Friday,1,335,20,2017-12-01,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15053,20281,GO-20179021396,THEFT UNDER - BICYCLE,2017-12-05,2017,December,Tuesday,5,339,9,2017-12-05,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15054,20310,GO-20189017732,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,8,2018-06-07,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15055,20311,GO-20181037579,B&E W'INTENT,2018-06-07,2018,June,Thursday,7,158,6,2018-06-08,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15056,20314,GO-20189018168,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,17,2018-06-11,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15057,20320,GO-20189019748,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,9,2018-06-22,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15058,20329,GO-20181275429,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,19,2018-07-13,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15059,20360,GO-20189028228,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,17,2018-08-28,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15060,13082,GO-20179012153,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,1,2017-08-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15061,20385,GO-20159003079,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,14,2015-05-25,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15062,20417,GO-20151261771,THEFT UNDER,2015-03-01,2015,March,Sunday,1,60,0,2015-07-24,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15063,20420,GO-20159004993,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,9,2015-07-26,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15064,20425,GO-20159005598,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,17,2015-08-10,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)}",Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -15065,12856,GO-20162181976,THEFT UNDER - BICYCLE,2016-12-05,2016,December,Monday,5,340,14,2016-12-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15066,13072,GO-20179010441,THEFT UNDER,2017-07-16,2017,July,Sunday,16,197,17,2017-07-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15067,13077,GO-20179011067,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,15,2017-07-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15068,13097,GO-20171622326,THEFT UNDER - BICYCLE,2017-09-03,2017,September,Sunday,3,246,14,2017-09-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15069,13104,GO-20179015429,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,18,2017-09-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15070,24849,GO-2015714987,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,5,2015-04-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15071,13105,GO-20179015436,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,21,2017-09-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15072,13110,GO-20179016157,THEFT UNDER - BICYCLE,2017-09-30,2017,September,Saturday,30,273,1,2017-09-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15073,13114,GO-20179016819,THEFT UNDER,2017-10-04,2017,October,Wednesday,4,277,23,2017-10-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15074,13131,GO-20179021510,THEFT UNDER - BICYCLE,2017-11-29,2017,November,Wednesday,29,333,2,2017-12-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15075,13135,GO-20173197617,THEFT UNDER - BICYCLE,2017-12-09,2017,December,Saturday,9,343,8,2017-12-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15076,13151,GO-2018791577,THEFT OF EBIKE UNDER $5000,2018-05-02,2018,May,Wednesday,2,122,11,2018-05-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15077,13158,GO-2018914856,B&E,2018-05-21,2018,May,Monday,21,141,13,2018-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15078,12710,GO-20161950978,THEFT UNDER - BICYCLE,2016-10-22,2016,October,Saturday,22,296,15,2016-11-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15079,13159,GO-2018914856,B&E,2018-05-21,2018,May,Monday,21,141,13,2018-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15080,13163,GO-20189016895,THEFT UNDER,2018-05-24,2018,May,Thursday,24,144,20,2018-05-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15081,13166,GO-20189018381,THEFT UNDER,2018-06-11,2018,June,Monday,11,162,23,2018-06-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15082,90,GO-20179001855,THEFT UNDER - BICYCLE,2017-02-05,2017,February,Sunday,5,36,12,2017-02-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15083,13167,GO-20189019001,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,12,2018-06-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15084,13174,GO-20189020391,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,10,2018-06-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15085,13180,GO-20189021987,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,9,2018-07-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15086,13181,GO-20189022090,THEFT UNDER,2018-07-10,2018,July,Tuesday,10,191,7,2018-07-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15087,13182,GO-20189022209,THEFT UNDER,2018-07-12,2018,July,Thursday,12,193,14,2018-07-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15088,17864,GO-20181338474,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,14,2018-07-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15089,13189,GO-20189024997,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,20,2018-08-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15090,13197,GO-20189027079,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,12,2018-08-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15091,13206,GO-20189028734,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,8,2018-08-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15092,13208,GO-20181631705,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,19,2018-09-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15093,13209,GO-20181650502,B&E W'INTENT,2018-06-22,2018,June,Friday,22,173,18,2018-09-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15094,13215,GO-20189030492,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,10,2018-09-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15095,13218,GO-20189031885,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,21,2018-09-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15096,13241,GO-20199011005,THEFT UNDER - BICYCLE,2019-04-07,2019,April,Sunday,7,97,20,2019-04-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15097,13262,GO-20199020810,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,0,2019-07-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15098,13282,GO-201526537,THEFT UNDER,2015-01-05,2015,January,Monday,5,5,20,2015-01-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15099,13295,GO-20159002738,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,7,2015-05-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15100,13299,GO-20159002968,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,18,2015-05-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15101,13302,GO-2015906721,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,19,2015-05-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15102,13303,GO-2015914478,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,19,2015-06-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15103,13318,GO-20159004102,THEFT UNDER,2015-06-27,2015,June,Saturday,27,178,0,2015-07-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15104,102,GO-2017338940,THEFT UNDER - BICYCLE,2017-02-15,2017,February,Wednesday,15,46,9,2017-02-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15105,13320,GO-20159004231,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,19,2015-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15106,13322,GO-20159005071,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,13,2015-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15107,13324,GO-20159005385,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,7,2015-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15108,13327,GO-20159005469,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,16,2015-08-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15109,13339,GO-20159007080,MISCHIEF UNDER,2015-09-11,2015,September,Friday,11,254,19,2015-09-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15110,13347,GO-20151942977,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,20,2015-11-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15111,13364,GO-20169003407,THEFT UNDER,2016-04-13,2016,April,Wednesday,13,104,17,2016-04-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15112,13370,GO-20169003955,THEFT UNDER - BICYCLE,2016-04-28,2016,April,Thursday,28,119,23,2016-04-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15113,13380,GO-20161023435,THEFT OF EBIKE UNDER $5000,2016-06-12,2016,June,Sunday,12,164,16,2016-06-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15114,13382,GO-20169005856,THEFT UNDER,2016-05-27,2016,May,Friday,27,148,0,2016-06-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15115,13386,GO-20169006743,THEFT UNDER,2016-07-05,2016,July,Tuesday,5,187,9,2016-07-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15116,13422,GO-20169010962,THEFT UNDER,2016-09-21,2016,September,Wednesday,21,265,13,2016-09-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15117,13440,GO-20179002076,THEFT UNDER - BICYCLE,2017-02-12,2017,February,Sunday,12,43,6,2017-02-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15118,13456,GO-20179006917,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,17,2017-05-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15119,13622,GO-20142351871,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,8,2014-06-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15120,13635,GO-20149004968,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,9,2014-07-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15121,13636,GO-20149005003,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,19,2014-07-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15122,13647,GO-20149005995,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,20,2014-08-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15123,13651,GO-20149006170,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,15,2014-08-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15124,14266,GO-20201043992,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,21,2020-06-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15125,14274,GO-20209016005,THEFT FROM MOTOR VEHICLE UNDER,2020-06-23,2020,June,Tuesday,23,175,20,2020-06-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15126,14304,GO-20201624134,THEFT OF EBIKE UNDER $5000,2020-08-28,2020,August,Friday,28,241,16,2020-08-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15127,14318,GO-20201747753,B&E,2020-09-15,2020,September,Tuesday,15,259,0,2020-09-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15128,14340,GO-20209029853,THEFT UNDER,2020-11-17,2020,November,Tuesday,17,322,0,2020-11-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15129,14452,GO-20189028122,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,0,2018-08-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15130,14465,GO-20189034025,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,23,2018-10-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15131,14478,GO-20189038552,THEFT UNDER - BICYCLE,2018-11-16,2018,November,Friday,16,320,14,2018-11-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15132,14522,GO-20191126737,THEFT UNDER - BICYCLE,2019-06-16,2019,June,Sunday,16,167,14,2019-06-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15133,14562,GO-20199026465,THEFT UNDER - BICYCLE,2019-06-14,2019,June,Friday,14,165,12,2019-08-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15134,14614,GO-20209002466,THEFT UNDER,2020-01-20,2020,January,Monday,20,20,20,2020-01-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15135,14615,GO-20209003558,B&E,2020-01-24,2020,January,Friday,24,24,1,2020-01-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15136,14617,GO-20209006475,THEFT UNDER,2020-01-31,2020,January,Friday,31,31,13,2020-02-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15137,14678,GO-20179011106,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,6,2017-07-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15138,14680,GO-20179011130,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,21,2017-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15139,14682,GO-20179011166,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,15,2017-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15140,14709,GO-20179014065,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,16,2017-09-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15141,14734,GO-20179017304,THEFT UNDER - BICYCLE,2017-10-16,2017,October,Monday,16,289,3,2017-10-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15142,14765,GO-20189008357,THEFT UNDER,2018-03-17,2018,March,Saturday,17,76,9,2018-03-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15143,14767,GO-2018497816,THEFT UNDER - BICYCLE,2018-03-14,2018,March,Wednesday,14,73,1,2018-03-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15144,14772,GO-2018664018,THEFT UNDER - BICYCLE,2018-03-24,2018,March,Saturday,24,83,1,2018-04-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15145,14785,GO-2018913648,THEFT OF EBIKE OVER $5000,2018-05-21,2018,May,Monday,21,141,7,2018-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15146,14803,GO-20189019102,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,0,2018-06-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15147,14824,GO-20181340459,PROPERTY - FOUND,2018-07-22,2018,July,Sunday,22,203,19,2018-07-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15148,15329,GO-20149004604,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,14,2014-07-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15149,15339,GO-20142613531,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,18,2014-08-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15150,15353,GO-20149006363,THEFT UNDER,2014-08-16,2014,August,Saturday,16,228,2,2014-08-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15151,15354,GO-20142823095,B&E W'INTENT,2014-09-02,2014,September,Tuesday,2,245,0,2014-09-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15152,15361,GO-20149006735,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,20,2014-09-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15153,15365,GO-20142995268,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,9,2014-09-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15154,15386,GO-20143502172,THEFT UNDER,2014-12-16,2014,December,Tuesday,16,350,19,2014-12-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15155,15388,GO-2015253741,THEFT UNDER,2014-12-23,2014,December,Tuesday,23,357,21,2015-02-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15156,15411,GO-20151056737,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,8,2015-06-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15157,15462,GO-20151890262,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,9,2015-11-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15158,15480,GO-20169001048,THEFT UNDER,2016-01-27,2016,January,Wednesday,27,27,20,2016-02-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15159,15483,GO-20169001882,THEFT UNDER,2016-02-28,2016,February,Sunday,28,59,18,2016-02-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15160,15522,GO-20169007431,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,21,2016-07-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15161,15529,GO-20169008164,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,20,2016-08-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15162,15543,GO-20169009379,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,18,2016-08-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15163,15561,GO-20169011242,THEFT OF EBIKE UNDER $5000,2016-09-27,2016,September,Tuesday,27,271,23,2016-09-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15164,9949,GO-20151139257,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,0,2015-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15165,15562,GO-20169011344,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,21,2016-09-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15166,15570,GO-20169012698,THEFT UNDER,2016-10-28,2016,October,Friday,28,302,0,2016-10-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15167,15583,GO-2017362566,THEFT UNDER - BICYCLE,2017-02-27,2017,February,Monday,27,58,8,2017-02-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15168,316,GO-2017771132,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,16,2017-05-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15169,2002,GO-2018165137,THEFT OF EBIKE UNDER $5000,2018-01-26,2018,January,Friday,26,26,19,2018-01-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15170,24865,GO-2015974325,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,8,2015-06-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15171,24880,GO-20159004778,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,13,2015-07-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15172,24907,GO-20169002669,THEFT UNDER,2016-02-01,2016,February,Monday,1,32,17,2016-03-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15173,24913,GO-2016713440,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,9,2016-04-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15174,24917,GO-2016802101,THEFT UNDER - BICYCLE,2016-05-09,2016,May,Monday,9,130,13,2016-05-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15175,24919,GO-20169004430,THEFT UNDER,2016-05-11,2016,May,Wednesday,11,132,9,2016-05-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15176,24928,GO-20169005350,THEFT UNDER,2016-06-02,2016,June,Thursday,2,154,14,2016-06-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15177,17869,GO-20189024710,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,19,2018-07-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15178,12726,GO-20169013001,THEFT UNDER - BICYCLE,2016-10-29,2016,October,Saturday,29,303,19,2016-11-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15179,2070,GO-2018436119,THEFT UNDER - BICYCLE,2018-03-08,2018,March,Thursday,8,67,16,2018-03-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15180,24955,GO-20169008283,THEFT UNDER,2016-08-03,2016,August,Wednesday,3,216,19,2016-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15181,15606,GO-20179006400,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,14,2017-05-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15182,10040,GO-20151209846,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,12,2015-07-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15183,10068,GO-20151255077,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,16,2015-07-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15184,24964,GO-20169009664,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,16,2016-08-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15185,10093,GO-20151259857,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,17,2015-07-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15186,17909,GO-20181737084,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,10,2018-09-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15187,12738,GO-20161984937,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,16,2016-11-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15188,10102,GO-20159005018,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,15,2015-07-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15189,24973,GO-20161634363,THEFT OVER - BICYCLE,2016-09-14,2016,September,Wednesday,14,258,9,2016-09-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15190,2086,GO-20189008390,THEFT UNDER,2018-03-17,2018,March,Saturday,17,76,14,2018-03-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15191,18096,GO-20179010442,THEFT UNDER,2017-07-17,2017,July,Monday,17,198,15,2017-07-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15192,15607,GO-20179006400,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,14,2017-05-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15193,24974,GO-20169010477,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,8,2016-09-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15194,12773,GO-20162043578,THEFT UNDER - BICYCLE,2016-11-08,2016,November,Tuesday,8,313,15,2016-11-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15195,25203,GO-20169005475,THEFT UNDER,2016-06-07,2016,June,Tuesday,7,159,20,2016-06-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15196,25216,GO-20169006312,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,15,2016-06-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15197,25217,GO-20169006380,THEFT UNDER,2016-06-25,2016,June,Saturday,25,177,1,2016-06-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15198,25222,GO-20169006776,THEFT UNDER,2016-07-05,2016,July,Tuesday,5,187,23,2016-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15199,25227,GO-20169007388,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,17,2016-07-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15200,25260,GO-20169010755,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,22,2016-09-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15201,25265,GO-20161685254,ROBBERY - OTHER,2016-09-22,2016,September,Thursday,22,266,6,2016-09-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15202,25266,GO-20161685254,ROBBERY - OTHER,2016-09-22,2016,September,Thursday,22,266,6,2016-09-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15203,25274,GO-20169011550,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,11,2016-10-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15204,25305,GO-20179007212,THEFT UNDER,2017-05-29,2017,May,Monday,29,149,8,2017-05-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15205,25307,GO-20179007793,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,2,2017-06-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15206,25308,GO-20179007970,THEFT UNDER,2017-06-12,2017,June,Monday,12,163,21,2017-06-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15207,25798,GO-20209029287,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,20,2020-11-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15208,18,GO-20162225941,THEFT UNDER - BICYCLE,2016-12-10,2016,December,Saturday,10,345,17,2016-12-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15209,49,GO-20179000560,THEFT UNDER - BICYCLE,2017-01-12,2017,January,Thursday,12,12,11,2017-01-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15210,2093,GO-20189008695,THEFT UNDER,2018-03-19,2018,March,Monday,19,78,13,2018-03-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15211,10110,GO-20159005052,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,10,2015-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15212,15647,GO-20199022601,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,8,2019-07-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15213,18137,GO-20169009308,THEFT UNDER,2016-08-22,2016,August,Monday,22,235,22,2016-08-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15214,53,GO-2017106750,THEFT UNDER - BICYCLE,2017-01-13,2017,January,Friday,13,13,15,2017-01-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15215,58,GO-20179000961,THEFT UNDER - BICYCLE,2017-01-20,2017,January,Friday,20,20,22,2017-01-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15216,66,GO-20179001207,THEFT UNDER - BICYCLE,2017-01-25,2017,January,Wednesday,25,25,11,2017-01-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15217,124,GO-2017381681,THEFT UNDER - BICYCLE,2017-02-27,2017,February,Monday,27,58,18,2017-03-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15218,146,GO-2017426330,THEFT OF EBIKE UNDER $5000,2017-03-08,2017,March,Wednesday,8,67,17,2017-03-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15219,163,GO-2017496977,THEFT UNDER - BICYCLE,2017-03-14,2017,March,Tuesday,14,73,16,2017-03-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15220,199,GO-2017601512,THEFT UNDER - BICYCLE,2017-03-28,2017,March,Tuesday,28,87,19,2017-04-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15221,205,GO-2017629907,THEFT UNDER - BICYCLE,2017-04-01,2017,April,Saturday,1,91,15,2017-04-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15222,245,GO-20179004875,THEFT UNDER,2017-04-18,2017,April,Tuesday,18,108,13,2017-04-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15223,287,GO-20179005345,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,21,2017-04-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15224,299,GO-2017750729,CARRYING CONCEALED WEAPON,2017-04-29,2017,April,Saturday,29,119,4,2017-04-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15225,443,GO-2017895942,THEFT OF EBIKE UNDER $5000,2017-05-20,2017,May,Saturday,20,140,6,2017-05-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15226,453,GO-20179006845,THEFT UNDER - BICYCLE,2017-05-22,2017,May,Monday,22,142,15,2017-05-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15227,465,GO-20179006927,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,14,2017-05-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15228,517,GO-20179007362,THEFT UNDER - BICYCLE,2017-05-30,2017,May,Tuesday,30,150,16,2017-06-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15229,550,GO-20171007961,THEFT UNDER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,15,2017-06-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15230,575,GO-20179007843,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,22,2017-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15231,592,GO-20179007942,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,14,2017-06-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15232,626,GO-20171071694,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,11,2017-06-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15233,835,GO-20171247660,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,17,2017-07-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15234,845,GO-20171224251,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,18,2017-07-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15235,861,GO-20171279929,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,19,2017-07-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15236,882,GO-20171294617,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,4,2017-07-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15237,891,GO-20171296762,THEFT UNDER - BICYCLE,2017-07-17,2017,July,Monday,17,198,9,2017-07-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15238,901,GO-20171300549,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,20,2017-07-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15239,948,GO-20171326846,THEFT UNDER - BICYCLE,2017-07-17,2017,July,Monday,17,198,17,2017-07-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15240,1082,GO-20171431996,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,13,2017-08-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15241,1093,GO-20179011977,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,11,2017-08-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15242,1141,GO-20171466392,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,10,2017-08-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15243,1147,GO-20179012425,THEFT UNDER,2017-08-13,2017,August,Sunday,13,225,10,2017-08-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15244,1149,GO-20171471446,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,12,2017-08-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15245,1157,GO-20171478172,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,14,2017-08-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15246,1165,GO-20171484453,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,21,2017-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15247,1219,GO-20171530135,B&E,2017-08-03,2017,August,Thursday,3,215,4,2017-08-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15248,1220,GO-20171530135,B&E,2017-08-03,2017,August,Thursday,3,215,4,2017-08-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15249,1315,GO-20179014022,THEFT UNDER,2017-08-24,2017,August,Thursday,24,236,19,2017-09-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15250,1342,GO-20179014258,THEFT UNDER,2017-09-07,2017,September,Thursday,7,250,2,2017-09-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15251,1355,GO-20171645614,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,12,2017-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15252,1386,GO-20171665434,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,13,2017-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15253,1406,GO-20171673705,THEFT UNDER - BICYCLE,2017-09-09,2017,September,Saturday,9,252,20,2017-09-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15254,1422,GO-20179014903,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,4,2017-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15255,1434,GO-20179014973,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,14,2017-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15256,1487,GO-20179015453,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,23,2017-09-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15257,1531,GO-20179015847,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,0,2017-09-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15258,1567,GO-20179016244,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,18,2017-10-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15259,1575,GO-20171791072,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,10,2017-10-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15260,1577,GO-20171792583,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,17,2017-10-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15261,1583,GO-20171798444,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,11,2017-10-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15262,1663,GO-20179017248,THEFT UNDER,2017-10-13,2017,October,Friday,13,286,19,2017-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15263,1686,GO-20179017554,B&E,2017-10-13,2017,October,Friday,13,286,0,2017-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15264,1705,GO-20179017748,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,8,2017-10-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15265,1774,GO-20171977446,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,19,2017-11-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15266,1779,GO-20179018705,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,2,2017-11-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15267,1832,GO-20179019496,THEFT UNDER,2017-11-12,2017,November,Sunday,12,316,0,2017-11-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15268,1911,GO-20173135384,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,18,2017-12-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15269,1942,GO-20173225744,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,4,2017-12-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15270,1947,GO-20173233412,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,12,2017-12-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15271,1962,GO-201814562,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,19,2018-01-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15272,15651,GO-20199023112,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,14,2019-07-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15273,2109,GO-20189009554,THEFT UNDER - BICYCLE,2018-03-26,2018,March,Monday,26,85,14,2018-03-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15274,18205,GO-20179006461,THEFT UNDER,2017-05-13,2017,May,Saturday,13,133,3,2017-05-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15275,21315,GO-20189022238,THEFT UNDER,2018-07-10,2018,July,Tuesday,10,191,23,2018-07-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15276,12803,GO-20162066110,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,22,2016-11-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15277,12807,GO-20162072543,THEFT UNDER - BICYCLE,2016-11-11,2016,November,Friday,11,316,8,2016-11-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15278,12810,GO-20169013713,THEFT UNDER - BICYCLE,2016-11-18,2016,November,Friday,18,323,13,2016-11-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15279,12814,GO-20162078505,THEFT UNDER - BICYCLE,2016-11-17,2016,November,Thursday,17,322,0,2016-11-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15280,12817,GO-20162086141,THEFT UNDER - BICYCLE,2016-11-18,2016,November,Friday,18,323,16,2016-11-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15281,12841,GO-20169014145,THEFT UNDER,2016-12-02,2016,December,Friday,2,337,11,2016-12-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15282,12847,GO-20169014198,THEFT UNDER,2016-12-01,2016,December,Thursday,1,336,17,2016-12-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15283,13086,GO-20171473003,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,8,2017-08-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15284,13096,GO-20179013739,THEFT UNDER - BICYCLE,2017-08-28,2017,August,Monday,28,240,13,2017-08-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15285,13103,GO-20171705738,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,15,2017-09-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15286,6130,GO-20209012392,THEFT UNDER,2020-05-01,2020,May,Friday,1,122,19,2020-05-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15287,13115,GO-20171891457,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,21,2017-10-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15288,9752,GO-20159003439,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,10,2015-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15289,13119,GO-20171930669,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,6,2017-10-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15290,13122,GO-20179018355,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,5,2017-10-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15291,13127,GO-20172058712,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,16,2017-11-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15292,13128,GO-20173000047,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,18,2017-11-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15293,13134,GO-20173175010,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,16,2017-12-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15294,13139,GO-2018160903,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,17,2018-01-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15295,13141,GO-2018233043,THEFT UNDER - BICYCLE,2018-01-25,2018,January,Thursday,25,25,20,2018-02-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15296,13144,GO-2018395130,THEFT UNDER - BICYCLE,2018-02-17,2018,February,Saturday,17,48,0,2018-03-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15297,13146,GO-2018519401,THEFT UNDER - BICYCLE,2018-03-13,2018,March,Tuesday,13,72,14,2018-03-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15298,13147,GO-20189009641,THEFT UNDER - BICYCLE,2018-03-26,2018,March,Monday,26,85,16,2018-03-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15299,13153,GO-20189014317,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,22,2018-05-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15300,13157,GO-2018895826,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,21,2018-05-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15301,13165,GO-20189017554,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,22,2018-06-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15302,13190,GO-20181463904,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,8,2018-08-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15303,13213,GO-20189030152,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,15,2018-09-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15304,13225,GO-20181955486,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,18,2018-10-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15305,13229,GO-20182085449,THEFT UNDER - BICYCLE,2018-11-06,2018,November,Tuesday,6,310,9,2018-11-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15306,10176,GO-20159005339,THEFT UNDER,2015-07-25,2015,July,Saturday,25,206,22,2015-08-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15307,15684,GO-20199028344,THEFT UNDER,2019-08-31,2019,August,Saturday,31,243,7,2019-08-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15308,21327,GO-20189025231,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,2,2018-08-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15309,2113,GO-2018557303,THEFT UNDER - BICYCLE,2018-01-08,2018,January,Monday,8,8,9,2018-03-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15310,18216,GO-20171038437,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,10,2017-06-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15311,13265,GO-20199021241,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,16,2019-07-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15312,13268,GO-20143147722,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,11,2014-10-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15313,13294,GO-20159002621,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,8,2015-05-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15314,13307,GO-2015962016,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,17,2015-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15315,13308,GO-2015973090,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,22,2015-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15316,13316,GO-20151071534,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,22,2015-06-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15317,13328,GO-20151388185,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,17,2015-08-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15318,13336,GO-20159006767,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,14,2015-09-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15319,13337,GO-20159006767,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,14,2015-09-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15320,13341,GO-20151616637,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,17,2015-09-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15321,13351,GO-20152146254,THEFT UNDER,2015-11-23,2015,November,Monday,23,327,21,2015-12-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15322,13352,GO-20152146721,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,0,2015-12-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15323,13354,GO-20152159854,THEFT UNDER,2015-11-30,2015,November,Monday,30,334,18,2015-12-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15324,13362,GO-2016613784,THEFT UNDER - BICYCLE,2016-03-30,2016,March,Wednesday,30,90,2,2016-04-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15325,13372,GO-20169004439,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,12,2016-05-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15326,13373,GO-2016872115,THEFT UNDER,2016-05-20,2016,May,Friday,20,141,19,2016-05-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15327,13403,GO-20161424315,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,17,2016-08-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15328,13412,GO-20161542969,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,7,2016-08-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15329,13424,GO-20161724323,THEFT UNDER - BICYCLE,2016-09-25,2016,September,Sunday,25,269,20,2016-09-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15330,13434,GO-20162050684,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,11,2016-11-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15331,13435,GO-20169014024,THEFT UNDER,2016-11-28,2016,November,Monday,28,333,12,2016-11-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15332,13436,GO-20179000132,THEFT UNDER - BICYCLE,2017-01-03,2017,January,Tuesday,3,3,16,2017-01-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15333,13437,GO-20179000727,THEFT UNDER - BICYCLE,2017-01-16,2017,January,Monday,16,16,13,2017-01-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15334,13439,GO-2017140505,THEFT UNDER,2017-01-18,2017,January,Wednesday,18,18,16,2017-01-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15335,13442,GO-2017686041,THEFT UNDER - BICYCLE,2017-04-06,2017,April,Thursday,6,96,13,2017-04-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15336,13445,GO-20179005092,THEFT UNDER,2017-04-20,2017,April,Thursday,20,110,21,2017-04-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15337,13451,GO-2017808756,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,16,2017-05-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15338,13454,GO-2017883990,PROPERTY - FOUND,2017-05-19,2017,May,Friday,19,139,14,2017-05-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15339,13455,GO-20179006740,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,0,2017-05-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15340,13465,GO-20171121117,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,17,2017-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15341,13612,GO-20142209678,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,17,2014-06-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15342,13614,GO-20142248697,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,15,2014-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15343,13616,GO-20142299996,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,17,2014-06-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15344,13648,GO-20142746954,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,8,2014-08-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15345,13649,GO-20149006129,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,17,2014-08-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15346,13653,GO-20142887126,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,9,2014-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15347,13659,GO-20142972253,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,9,2014-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15348,14288,GO-20209018723,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,18,2020-07-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15349,14292,GO-20201448886,THEFT UNDER - BICYCLE,2020-08-02,2020,August,Sunday,2,215,23,2020-08-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15350,14317,GO-20209023243,THEFT UNDER,2020-09-13,2020,September,Sunday,13,257,17,2020-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15351,14323,GO-20201884020,THEFT OF EBIKE UNDER $5000,2020-10-01,2020,October,Thursday,1,275,14,2020-10-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15352,14328,GO-20209026409,THEFT UNDER,2020-10-14,2020,October,Wednesday,14,288,0,2020-10-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15353,14464,GO-20189033281,THEFT UNDER - BICYCLE,2018-10-08,2018,October,Monday,8,281,0,2018-10-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15354,14477,GO-20182057603,B&E W'INTENT,2018-11-07,2018,November,Wednesday,7,311,20,2018-11-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15355,14551,GO-20199024276,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,13,2019-07-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15356,14567,GO-20199027499,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,10,2019-08-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15357,14610,GO-20199042234,THEFT UNDER,2019-11-23,2019,November,Saturday,23,327,1,2019-12-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15358,14625,GO-20209010911,THEFT UNDER,2020-04-10,2020,April,Friday,10,101,21,2020-04-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15359,14673,GO-20179010885,THEFT UNDER,2017-07-23,2017,July,Sunday,23,204,19,2017-07-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15360,14699,GO-20179013174,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,23,2017-08-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15361,14727,GO-20179015771,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,22,2017-09-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15362,14762,GO-20189006517,THEFT UNDER,2018-02-28,2018,February,Wednesday,28,59,0,2018-03-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15363,14774,GO-20189012670,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,19,2018-04-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15364,14779,GO-20189014815,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,22,2018-05-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15365,14780,GO-20189014815,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,22,2018-05-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15366,14789,GO-20189016456,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,20,2018-05-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15367,14816,GO-20189021765,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,12,2018-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15368,14817,GO-20189021781,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,17,2018-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15369,15330,GO-20142424744,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,6,2014-07-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15370,15338,GO-20149005046,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,13,2014-07-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15371,15362,GO-20149006853,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,20,2014-09-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15372,15697,GO-20199029782,THEFT UNDER - BICYCLE,2019-09-01,2019,September,Sunday,1,244,13,2019-09-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15373,15702,GO-20191778208,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15374,15715,GO-20199033033,THEFT UNDER,2019-10-07,2019,October,Monday,7,280,17,2019-10-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15375,15720,GO-20199034051,THEFT UNDER,2019-10-15,2019,October,Tuesday,15,288,8,2019-10-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15376,15735,GO-20199039229,THEFT UNDER,2019-11-28,2019,November,Thursday,28,332,18,2019-11-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15377,16188,GO-20179015751,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,22,2017-09-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15378,15740,GO-20199042041,THEFT UNDER,2019-12-25,2019,December,Wednesday,25,359,16,2019-12-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15379,15755,GO-20209012467,THEFT UNDER,2020-04-23,2020,April,Thursday,23,114,8,2020-05-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15380,15790,GO-20209017193,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,12,2020-07-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15381,15842,GO-20209027458,THEFT UNDER,2020-10-23,2020,October,Friday,23,297,10,2020-10-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15382,15843,GO-20209027555,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,13,2020-10-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15383,16107,GO-20209030275,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,12,2020-11-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15384,16134,GO-20179007192,THEFT UNDER,2017-05-28,2017,May,Sunday,28,148,17,2017-05-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15385,16152,GO-20179008984,THEFT UNDER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,19,2017-06-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15386,16193,GO-20179016621,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,8,2017-10-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15387,16195,GO-20179016870,THEFT UNDER,2017-10-09,2017,October,Monday,9,282,19,2017-10-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15388,16197,GO-20179017245,THEFT UNDER,2017-10-15,2017,October,Sunday,15,288,6,2017-10-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15389,16200,GO-20179017524,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,13,2017-10-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15390,16206,GO-20179018467,THEFT UNDER,2017-10-28,2017,October,Saturday,28,301,20,2017-10-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15391,21347,GO-20189031777,THEFT UNDER,2018-09-24,2018,September,Monday,24,267,10,2018-09-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15392,2130,GO-20189010245,THEFT UNDER - BICYCLE,2018-04-01,2018,April,Sunday,1,91,23,2018-04-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15393,10194,GO-20159005427,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,13,2015-08-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15394,18317,GO-20141537073,THEFT UNDER,2014-02-15,2014,February,Saturday,15,46,18,2014-02-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15395,16210,GO-20179020051,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,14,2017-11-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15396,16213,GO-20179020909,THEFT UNDER,2017-11-28,2017,November,Tuesday,28,332,17,2017-11-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15397,16233,GO-20189013920,THEFT UNDER,2018-05-05,2018,May,Saturday,5,125,17,2018-05-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15398,16262,GO-20189023751,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,4,2018-07-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15399,16266,GO-20189024179,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,12,2018-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15400,16291,GO-20189031188,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,14,2018-09-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15401,16308,GO-20189041411,THEFT UNDER - BICYCLE,2018-12-09,2018,December,Sunday,9,343,18,2018-12-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15402,16312,GO-20199002904,THEFT UNDER - BICYCLE,2019-01-19,2019,January,Saturday,19,19,13,2019-01-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15403,16316,GO-20199013176,THEFT UNDER,2019-04-27,2019,April,Saturday,27,117,12,2019-04-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15404,16318,GO-20199015108,THEFT UNDER,2019-05-15,2019,May,Wednesday,15,135,1,2019-05-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15405,16319,GO-20199015597,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,15,2019-05-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15406,16323,GO-20191069408,THEFT UNDER,2019-06-10,2019,June,Monday,10,161,12,2019-06-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15407,16331,GO-20199021588,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,0,2019-07-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15408,16332,GO-20199021588,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,0,2019-07-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15409,16333,GO-20199021701,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,23,2019-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15410,16371,GO-20199029259,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,14,2019-09-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15411,9765,GO-2015965066,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,14,2015-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15412,16379,GO-20191778203,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15413,16380,GO-20191778203,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15414,16394,GO-20199032309,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,17,2019-10-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15415,16408,GO-20199035846,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,0,2019-10-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15416,16409,GO-20199035846,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,0,2019-10-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15417,16434,GO-20209002363,THEFT UNDER,2020-01-03,2020,January,Friday,3,3,21,2020-01-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15418,16436,GO-2020227735,B&E,2020-02-02,2020,February,Sunday,2,33,4,2020-02-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15419,16440,GO-2020483295,THEFT OF EBIKE UNDER $5000,2020-03-02,2020,March,Monday,2,62,19,2020-03-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15420,16444,GO-2020537314,THEFT UNDER,2020-03-13,2020,March,Friday,13,73,17,2020-03-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15421,16463,GO-20209015586,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,5,2020-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15422,16473,GO-20209016928,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,17,2020-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15423,16489,GO-20209019202,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,1,2020-08-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15424,16546,GO-20149007926,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,10,2014-10-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15425,16547,GO-20149007926,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,10,2014-10-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15426,16555,GO-2015626054,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,10,2015-04-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15427,16563,GO-20159002429,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,18,2015-05-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15428,6151,GO-2020849824,THEFT UNDER - BICYCLE,2020-04-15,2020,April,Wednesday,15,106,12,2020-05-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15429,16582,GO-20159004603,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,23,2015-07-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15430,16587,GO-20159005589,THEFT UNDER,2015-08-10,2015,August,Monday,10,222,3,2015-08-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15431,16591,GO-20159005942,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,9,2015-08-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15432,16596,GO-20159007186,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,7,2015-09-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15433,16598,GO-20159007552,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,1,2015-09-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15434,16609,GO-20159008603,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,9,2015-10-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15435,16614,GO-20151979487,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,9,2015-11-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15436,16616,GO-20159010309,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,11,2015-11-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15437,16636,GO-2016778927,B&E,2016-05-01,2016,May,Sunday,1,122,15,2016-05-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15438,16637,GO-2016801826,THEFT UNDER,2016-05-10,2016,May,Tuesday,10,131,11,2016-05-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15439,16640,GO-20169004698,THEFT UNDER,2016-05-18,2016,May,Wednesday,18,139,9,2016-05-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15440,16643,GO-2016894864,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,14,2016-05-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15441,16860,GO-20149002392,THEFT UNDER,2014-03-27,2014,March,Thursday,27,86,20,2014-03-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15442,16663,GO-20161207019,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,10,2016-07-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15443,16689,GO-20161677047,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,21,2016-09-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15444,16697,GO-20169011640,THEFT UNDER,2016-10-05,2016,October,Wednesday,5,279,23,2016-10-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15445,16710,GO-20169014179,THEFT UNDER,2016-11-28,2016,November,Monday,28,333,19,2016-12-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15446,16711,GO-20162159709,THEFT UNDER,2016-12-05,2016,December,Monday,5,340,23,2016-12-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15447,16712,GO-20169014643,THEFT UNDER - BICYCLE,2016-12-13,2016,December,Tuesday,13,348,21,2016-12-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15448,16716,GO-20179000566,THEFT UNDER - BICYCLE,2016-12-29,2016,December,Thursday,29,364,18,2017-01-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15449,16718,GO-20179001997,THEFT UNDER,2017-01-30,2017,January,Monday,30,30,0,2017-02-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15450,16861,GO-20141889465,THEFT UNDER,2014-04-12,2014,April,Saturday,12,102,14,2014-04-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15451,16862,GO-20149002917,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,11,2014-04-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15452,16886,GO-20149003923,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,9,2014-06-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15453,16887,GO-20142258077,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,20,2014-06-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15454,16897,GO-20142458636,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,18,2014-07-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15455,16911,GO-20142726386,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,9,2014-08-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15456,17326,GO-20209013386,THEFT UNDER - BICYCLE,2020-05-17,2020,May,Sunday,17,138,23,2020-05-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15457,17327,GO-2020933980,THEFT UNDER,2020-05-19,2020,May,Tuesday,19,140,10,2020-05-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15458,17376,GO-20209020725,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,17,2020-08-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15459,17399,GO-20209025734,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,14,2020-10-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15460,17409,GO-20209030004,THEFT UNDER,2020-11-18,2020,November,Wednesday,18,323,21,2020-11-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15461,17539,GO-2019196260,THEFT OF EBIKE UNDER $5000,2018-04-18,2018,April,Wednesday,18,108,21,2019-01-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15462,17605,GO-20199023167,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,22,2019-07-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15463,17607,GO-20199023213,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,13,2019-07-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15464,17621,GO-20191536386,B&E,2019-08-13,2019,August,Tuesday,13,225,10,2019-08-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15465,21466,GO-2017377277,POSSESSION PROPERTY OBC UNDER,2017-03-01,2017,March,Wednesday,1,60,14,2017-03-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15466,17626,GO-20199026581,THEFT UNDER - BICYCLE,2019-08-17,2019,August,Saturday,17,229,0,2019-08-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15467,17628,GO-20199027541,THEFT UNDER - BICYCLE,2019-08-24,2019,August,Saturday,24,236,15,2019-08-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15468,17644,GO-20191847154,THEFT UNDER - BICYCLE,2019-09-24,2019,September,Tuesday,24,267,17,2019-09-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15469,17653,GO-20199033670,THEFT UNDER - BICYCLE,2019-10-10,2019,October,Thursday,10,283,14,2019-10-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15470,17701,GO-2020543007,THEFT UNDER - BICYCLE,2020-03-15,2020,March,Sunday,15,75,22,2020-03-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15471,17823,GO-20189017589,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,13,2018-06-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15472,17829,GO-20181081400,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,13,2018-06-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15473,17834,GO-20189019073,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,20,2018-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15474,21374,GO-20169005264,THEFT UNDER - BICYCLE,2016-05-31,2016,May,Tuesday,31,152,22,2016-06-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15475,21385,GO-20169006189,THEFT UNDER,2016-06-01,2016,June,Wednesday,1,153,7,2016-06-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15476,21394,GO-20169006719,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,23,2016-07-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15477,21398,GO-20169007315,THEFT UNDER,2016-07-17,2016,July,Sunday,17,199,22,2016-07-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15478,21421,GO-20161615056,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,11,2016-09-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15479,21445,GO-20169013051,THEFT UNDER - BICYCLE,2016-11-06,2016,November,Sunday,6,311,15,2016-11-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15480,21460,GO-20179001931,THEFT UNDER - BICYCLE,2017-02-13,2017,February,Monday,13,44,11,2017-02-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15481,21462,GO-20179002145,THEFT OVER - BICYCLE,2017-02-18,2017,February,Saturday,18,49,9,2017-02-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15482,21479,GO-2017837568,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,18,2017-05-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15483,21485,GO-2017910701,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,18,2017-05-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15484,21495,GO-20179007725,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,14,2017-06-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15485,21501,GO-20179008375,THEFT UNDER,2017-06-17,2017,June,Saturday,17,168,10,2017-06-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15486,21788,GO-20141267465,THEFT UNDER,2013-09-30,2013,September,Monday,30,273,0,2014-01-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15487,21859,GO-20159002623,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,1,2015-05-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15488,21864,GO-2015836543,B&E,2015-05-19,2015,May,Tuesday,19,139,9,2015-05-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15489,10195,GO-20159005427,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,13,2015-08-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15490,21875,GO-20159003618,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,19,2015-06-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15491,21895,GO-20159004717,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,7,2015-07-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15492,21908,GO-20159005615,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,19,2015-08-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15493,9857,GO-20159003861,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,13,2015-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15494,21915,GO-20151457301,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,9,2015-08-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15495,21936,GO-20159009979,THEFT UNDER,2015-11-16,2015,November,Monday,16,320,9,2015-11-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15496,21939,GO-20152156876,B&E,2015-12-15,2015,December,Tuesday,15,349,23,2015-12-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15497,18336,GO-20142180120,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,18,2014-05-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15498,21952,GO-20169002878,THEFT UNDER,2016-03-29,2016,March,Tuesday,29,89,20,2016-03-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15499,21958,GO-2016759238,THEFT UNDER - BICYCLE,2016-05-03,2016,May,Tuesday,3,124,16,2016-05-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15500,21959,GO-2016805239,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,19,2016-05-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15501,22157,GO-20179008789,THEFT OF EBIKE UNDER $5000,2017-06-22,2017,June,Thursday,22,173,8,2017-06-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15502,22613,GO-20199024608,THEFT UNDER,2019-08-01,2019,August,Thursday,1,213,1,2019-08-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15503,22615,GO-20199025122,THEFT UNDER,2019-08-06,2019,August,Tuesday,6,218,0,2019-08-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15504,22624,GO-20199026695,THEFT UNDER - BICYCLE,2019-08-17,2019,August,Saturday,17,229,20,2019-08-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15505,22627,GO-20199027209,THEFT UNDER,2019-08-21,2019,August,Wednesday,21,233,14,2019-08-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15506,22638,GO-20199028203,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,15,2019-08-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15507,22647,GO-20191778223,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15508,22695,GO-20209007819,THEFT UNDER,2020-03-05,2020,March,Thursday,5,65,8,2020-03-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15509,22752,GO-20209018609,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,17,2020-07-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15510,22780,GO-20209024306,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,18,2020-09-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15511,2168,GO-2018692806,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,18,2018-04-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15512,22790,GO-20209026773,THEFT UNDER,2020-10-15,2020,October,Thursday,15,289,1,2020-10-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15513,23019,GO-20179007288,THEFT UNDER - BICYCLE,2017-05-25,2017,May,Thursday,25,145,15,2017-05-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15514,23030,GO-20179008556,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,9,2017-06-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15515,23033,GO-20171144943,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,12,2017-06-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15516,23053,GO-20179013195,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,0,2017-08-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15517,23054,GO-20179013195,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,0,2017-08-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15518,23056,GO-20179014820,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,10,2017-09-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15519,23068,GO-20171855366,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,19,2017-10-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15520,23074,GO-20179018379,B&E,2017-10-27,2017,October,Friday,27,300,12,2017-10-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15521,9702,GO-2015921898,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,21,2015-06-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15522,23082,GO-20179019441,THEFT UNDER - BICYCLE,2017-11-07,2017,November,Tuesday,7,311,15,2017-11-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15523,23084,GO-20179020108,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,16,2017-11-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15524,23103,GO-20189013966,THEFT UNDER,2018-05-05,2018,May,Saturday,5,125,22,2018-05-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15525,23110,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,18,2018-06-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15526,23111,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,18,2018-06-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15527,23112,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,18,2018-06-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15528,23113,GO-20189017711,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,18,2018-06-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15529,15497,GO-20169004482,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,22,2016-05-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15530,23115,GO-20189018529,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,12,2018-06-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15531,23118,GO-20189019512,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,13,2018-06-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15532,23119,GO-20189019588,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,9,2018-06-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15533,23133,GO-20181392553,B&E,2018-07-27,2018,July,Friday,27,208,18,2018-07-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15534,23158,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04,2018,October,Thursday,4,277,13,2018-10-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15535,23159,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04,2018,October,Thursday,4,277,13,2018-10-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15536,23160,GO-20189033340,POSSESSION PROPERTY OBC UNDER,2018-10-04,2018,October,Thursday,4,277,13,2018-10-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15537,23163,GO-20181885059,THEFT OF EBIKE UNDER $5000,2018-10-10,2018,October,Wednesday,10,283,13,2018-10-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15538,23176,GO-2019914985,THEFT OF EBIKE UNDER $5000,2019-05-19,2019,May,Sunday,19,139,18,2019-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15539,23181,GO-20199017919,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,16,2019-06-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15540,23194,GO-20199022411,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,16,2019-07-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15541,23380,GO-20149002826,THEFT UNDER,2014-04-12,2014,April,Saturday,12,102,13,2014-04-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15542,23797,GO-20201163426,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,3,2020-06-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15543,23800,GO-20209016545,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,20,2020-06-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15544,6184,GO-20209013103,THEFT UNDER,2020-04-25,2020,April,Saturday,25,116,0,2020-05-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15545,23827,GO-20209021675,THEFT UNDER,2020-08-28,2020,August,Friday,28,241,3,2020-08-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15546,23862,GO-20209029863,THEFT UNDER,2020-11-16,2020,November,Monday,16,321,21,2020-11-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15547,23865,GO-20209030830,THEFT UNDER,2020-11-27,2020,November,Friday,27,332,2,2020-11-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15548,24001,GO-20189039662,THEFT UNDER - BICYCLE,2018-11-20,2018,November,Tuesday,20,324,23,2018-11-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15549,24016,GO-2019191137,B&E,2018-11-01,2018,November,Thursday,1,305,12,2019-01-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15550,24035,GO-2019890140,THEFT UNDER - BICYCLE,2019-05-09,2019,May,Thursday,9,129,21,2019-05-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15551,24040,GO-20199015723,THEFT UNDER,2019-05-04,2019,May,Saturday,4,124,9,2019-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15552,24041,GO-20199015723,THEFT UNDER,2019-05-04,2019,May,Saturday,4,124,9,2019-05-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15553,24056,GO-20191196063,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,3,2019-06-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15554,24060,GO-20199020886,THEFT UNDER - BICYCLE,2019-07-03,2019,July,Wednesday,3,184,12,2019-07-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15555,24072,GO-20199022856,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,17,2019-07-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15556,24113,GO-20199034744,THEFT UNDER - BICYCLE,2019-10-21,2019,October,Monday,21,294,18,2019-10-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15557,24124,GO-20199037447,THEFT UNDER,2019-11-11,2019,November,Monday,11,315,3,2019-11-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15558,24221,GO-20179013687,THEFT UNDER,2017-08-29,2017,August,Tuesday,29,241,20,2017-08-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15559,24267,GO-20179021391,THEFT UNDER,2017-12-05,2017,December,Tuesday,5,339,20,2017-12-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15560,24273,GO-201892527,THEFT UNDER - BICYCLE,2018-01-11,2018,January,Thursday,11,11,22,2018-01-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15561,24300,GO-20189013729,THEFT UNDER - BICYCLE,2018-04-28,2018,April,Saturday,28,118,2,2018-05-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15562,24351,GO-20189024875,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,14,2018-08-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15563,24361,GO-20181495937,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,2,2018-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15564,24373,GO-20189027157,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,8,2018-08-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15565,24378,GO-20189028913,THEFT UNDER - BICYCLE,2018-09-02,2018,September,Sunday,2,245,18,2018-09-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15566,24379,GO-20189029009,THEFT UNDER - BICYCLE,2018-09-02,2018,September,Sunday,2,245,19,2018-09-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15567,24585,GO-20179010410,THEFT UNDER,2017-07-15,2017,July,Saturday,15,196,23,2017-07-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15568,24588,GO-20141318595,THEFT UNDER,2014-01-10,2014,January,Friday,10,10,9,2014-01-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15569,24592,GO-20141609988,B&E,2013-11-27,2013,November,Wednesday,27,331,12,2014-02-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15570,24621,GO-20149004868,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,0,2014-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15571,24633,GO-20149005294,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,19,2014-07-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15572,24737,GO-20159005822,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,19,2015-08-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15573,24780,GO-2016320616,THEFT UNDER - BICYCLE,2016-02-22,2016,February,Monday,22,53,18,2016-02-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15574,24796,GO-20142423346,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,12,2014-07-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15575,24805,GO-20149005331,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,10,2014-07-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15576,10197,GO-20159005431,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,19,2015-08-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15577,18348,GO-20149004729,THEFT FROM MOTOR VEHICLE UNDER,2014-07-06,2014,July,Sunday,6,187,3,2014-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15578,10251,GO-20151403682,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,18,2015-08-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15579,10266,GO-20159005814,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,18,2015-08-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15580,10268,GO-20159005834,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,0,2015-08-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15581,10348,GO-20159006390,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,9,2015-08-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15582,10358,GO-20159006450,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,14,2015-08-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15583,2302,GO-2018867855,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,11,2018-05-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15584,10371,GO-20159006541,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,16,2015-08-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15585,10451,GO-20151587477,THEFT UNDER,2015-09-13,2015,September,Sunday,13,256,20,2015-09-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15586,10521,GO-20159007549,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,23,2015-09-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15587,10564,GO-20159007918,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,13,2015-09-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15588,9884,GO-20151065995,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,17,2015-06-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15589,10575,GO-20159007993,THEFT UNDER,2015-09-29,2015,September,Tuesday,29,272,9,2015-10-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15590,10576,GO-20159007993,THEFT UNDER,2015-09-29,2015,September,Tuesday,29,272,9,2015-10-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15591,16255,GO-20189022112,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,16,2018-07-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15592,10607,GO-20159008361,THEFT UNDER,2015-10-08,2015,October,Thursday,8,281,8,2015-10-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15593,10616,GO-20151758467,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,23,2015-10-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15594,10631,GO-20159008577,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,20,2015-10-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15595,10641,GO-20159008613,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,23,2015-10-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15596,2194,GO-20189012662,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,9,2018-04-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15597,10677,GO-20151826084,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,9,2015-10-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15598,10692,GO-20151847596,PROPERTY - RECOVERED,2015-10-24,2015,October,Saturday,24,297,20,2015-10-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15599,2924,GO-20189023485,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,20,2018-07-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15600,10731,GO-20159009411,THEFT UNDER,2015-10-12,2015,October,Monday,12,285,11,2015-11-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15601,10736,GO-20159009525,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,17,2015-11-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15602,10829,GO-20152067459,THEFT UNDER,2015-11-27,2015,November,Friday,27,331,21,2015-12-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15603,10839,GO-20159010567,THEFT UNDER,2015-12-05,2015,December,Saturday,5,339,18,2015-12-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15604,10851,GO-20159010705,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,9,2015-09-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15605,10862,GO-20159010821,THEFT UNDER,2015-12-10,2015,December,Thursday,10,344,22,2015-12-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15606,10968,GO-2016203110,B&E W'INTENT,2016-02-01,2016,February,Monday,1,32,0,2016-02-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15607,11014,GO-2016346670,THEFT UNDER,2016-02-27,2016,February,Saturday,27,58,17,2016-02-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15608,11017,GO-20169001800,THEFT UNDER,2016-02-25,2016,February,Thursday,25,56,21,2016-02-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15609,11030,GO-20169002162,THEFT UNDER,2016-03-08,2016,March,Tuesday,8,68,23,2016-03-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15610,11035,GO-20169002193,THEFT UNDER,2016-03-08,2016,March,Tuesday,8,68,10,2016-03-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15611,11038,GO-20169002215,THEFT UNDER,2016-03-08,2016,March,Tuesday,8,68,19,2016-03-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15612,11044,GO-20169002323,THEFT UNDER,2016-03-11,2016,March,Friday,11,71,18,2016-03-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15613,11065,GO-20169002553,THEFT UNDER,2016-03-19,2016,March,Saturday,19,79,15,2016-03-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15614,11070,GO-20169002644,THEFT UNDER,2016-03-15,2016,March,Tuesday,15,75,17,2016-03-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15615,11075,GO-2016511407,THEFT UNDER - BICYCLE,2016-03-21,2016,March,Monday,21,81,9,2016-03-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15616,11079,GO-20169002815,THEFT UNDER - BICYCLE,2016-03-27,2016,March,Sunday,27,87,22,2016-03-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15617,11088,GO-2016477701,THEFT UNDER - BICYCLE,2016-03-20,2016,March,Sunday,20,80,1,2016-03-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15618,11106,GO-20169003099,THEFT UNDER,2016-04-04,2016,April,Monday,4,95,15,2016-04-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15619,11121,GO-20169003221,THEFT UNDER,2016-04-09,2016,April,Saturday,9,100,21,2016-04-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15620,11144,GO-2016655675,THEFT UNDER,2016-04-17,2016,April,Sunday,17,108,12,2016-04-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15621,11152,GO-20142449355,PROPERTY - FOUND,2014-07-07,2014,July,Monday,7,188,13,2014-07-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15622,11187,GO-20169003738,THEFT UNDER - BICYCLE,2016-04-23,2016,April,Saturday,23,114,14,2016-04-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15623,11242,GO-20169004055,THEFT UNDER,2016-05-01,2016,May,Sunday,1,122,17,2016-05-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15624,11252,GO-20169004117,THEFT UNDER,2016-05-03,2016,May,Tuesday,3,124,21,2016-05-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15625,11268,GO-20169004232,THEFT UNDER,2016-04-29,2016,April,Friday,29,120,12,2016-05-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15626,11269,GO-20169004232,THEFT UNDER,2016-04-29,2016,April,Friday,29,120,12,2016-05-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15627,11333,GO-2016854015,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,17,2016-05-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15628,11335,GO-2016864370,PROPERTY - FOUND,2016-05-19,2016,May,Thursday,19,140,6,2016-05-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15629,11430,GO-20169005249,THEFT UNDER - BICYCLE,2016-05-31,2016,May,Tuesday,31,152,21,2016-06-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15630,11513,GO-20161029727,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,9,2016-06-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15631,11537,GO-20161038019,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,19,2016-06-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15632,11548,GO-20169005864,THEFT UNDER,2016-02-20,2016,February,Saturday,20,51,19,2016-06-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15633,11553,GO-20161050897,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,15,2016-06-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15634,11571,GO-20169005977,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,11,2016-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15635,11582,GO-20169006024,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,18,2016-06-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15636,11587,GO-20169006058,THEFT UNDER,2016-06-20,2016,June,Monday,20,172,0,2016-06-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15637,11611,GO-20169006199,THEFT UNDER,2016-06-22,2016,June,Wednesday,22,174,0,2016-06-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15638,11686,GO-20169006655,THEFT UNDER,2016-07-01,2016,July,Friday,1,183,22,2016-07-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15639,11714,GO-20169006750,THEFT UNDER,2016-07-04,2016,July,Monday,4,186,2,2016-07-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15640,11720,GO-20161185026,THEFT UNDER,2016-07-06,2016,July,Wednesday,6,188,19,2016-07-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15641,11764,GO-20169006987,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,2,2016-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15642,11766,GO-20169006995,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,19,2016-07-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15643,11773,GO-20161196117,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,11,2016-07-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15644,11786,GO-20161206638,THEFT OF EBIKE UNDER $5000,2016-07-10,2016,July,Sunday,10,192,0,2016-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15645,11792,GO-20161209954,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,18,2016-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15646,3431,GO-20189029730,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,9,2018-09-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15647,11857,GO-20169007495,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,9,2016-07-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15648,11864,GO-20169007545,THEFT UNDER,2016-07-20,2016,July,Wednesday,20,202,20,2016-07-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15649,11905,GO-20169007731,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,8,2016-07-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15650,11937,GO-20169007731,THEFT UNDER - BICYCLE,2016-07-25,2016,July,Monday,25,207,8,2016-07-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15651,12040,GO-20169008451,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,1,2016-08-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15652,12061,GO-20161411760,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,20,2016-08-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15653,12151,GO-20169009123,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,21,2016-08-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15654,12238,GO-20169009764,THEFT UNDER - BICYCLE,2016-08-31,2016,August,Wednesday,31,244,18,2016-09-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15655,12272,GO-20161576615,B&E,2016-09-05,2016,September,Monday,5,249,11,2016-09-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15656,12301,GO-20169010158,THEFT UNDER,2016-09-07,2016,September,Wednesday,7,251,4,2016-09-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15657,12305,GO-20161603706,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,11,2016-09-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15658,12326,GO-20169010342,THEFT UNDER,2016-08-23,2016,August,Tuesday,23,236,4,2016-09-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15659,12381,GO-20169010625,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,9,2016-09-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15660,12461,GO-20161700231,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,21,2016-09-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15661,12513,GO-20161737444,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,22,2016-09-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15662,12514,GO-20161737866,THEFT OF EBIKE UNDER $5000,2016-09-30,2016,September,Friday,30,274,10,2016-09-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15663,12530,GO-20161752099,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,12,2016-10-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15664,12559,GO-20161776244,PROPERTY - LOST,2016-02-03,2016,February,Wednesday,3,34,12,2016-10-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15665,12583,GO-20169011795,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,0,2016-10-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15666,12621,GO-20169012071,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,8,2016-10-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15667,12769,GO-20169013482,THEFT UNDER - BICYCLE,2016-11-15,2016,November,Tuesday,15,320,21,2016-11-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15668,12770,GO-20162038123,OBSTRUCT PEACE OFFICER,2016-11-16,2016,November,Wednesday,16,321,15,2016-11-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15669,12781,GO-20169013559,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,22,2016-11-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15670,12796,GO-20162055788,THEFT UNDER - BICYCLE,2016-11-18,2016,November,Friday,18,323,13,2016-11-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15671,12808,GO-20169013705,THEFT UNDER - BICYCLE,2016-11-21,2016,November,Monday,21,326,23,2016-11-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15672,12837,GO-20169014091,THEFT UNDER - BICYCLE,2016-12-01,2016,December,Thursday,1,336,8,2016-12-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15673,2199,GO-20189012756,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,19,2018-04-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15674,2276,GO-20189014267,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,17,2018-05-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15675,9894,GO-20159003956,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,15,2015-06-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15676,2315,GO-20189015010,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,6,2018-05-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15677,2343,GO-2018895004,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,13,2018-05-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15678,2374,GO-20189015880,THEFT UNDER,2018-05-22,2018,May,Tuesday,22,142,18,2018-05-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15679,2407,GO-2018959781,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,21,2018-05-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15680,2415,GO-2018966828,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,23,2018-05-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15681,2482,GO-20181029965,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,17,2018-06-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15682,2606,GO-20181113777,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,16,2018-06-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15683,2697,GO-20181168087,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,17,2018-06-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15684,2739,GO-20189021004,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,11,2018-07-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15685,2780,GO-20189021573,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,20,2018-07-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15686,18375,GO-20149007464,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,1,2014-10-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15687,2791,GO-20189021764,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15688,2819,GO-20181275568,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,6,2018-07-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15689,2823,GO-20189022124,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,10,2018-07-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15690,2843,GO-20189022422,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,1,2018-07-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15691,2931,GO-20181349994,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,18,2018-07-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15692,2980,GO-20189024080,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,19,2018-07-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15693,2986,GO-20181371705,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,9,2018-07-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15694,3017,GO-20181364315,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,19,2018-07-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15695,3021,GO-20189024480,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,8,2018-07-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15696,3022,GO-20189024480,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,8,2018-07-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15697,3034,GO-20181399325,THEFT OF EBIKE UNDER $5000,2018-07-29,2018,July,Sunday,29,210,9,2018-07-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15698,3043,GO-20189024724,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,21,2018-08-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15699,3141,GO-20189025789,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,8,2018-08-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15700,3142,GO-20189025789,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,8,2018-08-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15701,3148,GO-20189025845,THEFT UNDER,2018-08-10,2018,August,Friday,10,222,2,2018-08-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15702,3222,GO-20189026595,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,15,2018-08-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15703,3252,GO-20189027056,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,15,2018-08-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15704,3256,GO-20181535910,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,10,2018-08-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15705,3352,GO-20189028503,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,16,2018-08-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15706,3377,GO-20181609465,THEFT UNDER - BICYCLE,2018-08-31,2018,August,Friday,31,243,0,2018-08-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15707,3439,GO-20181682211,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,22,2018-09-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15708,3485,GO-20189030639,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,20,2018-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15709,3496,GO-20189030848,THEFT UNDER,2018-09-17,2018,September,Monday,17,260,16,2018-09-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15710,3514,GO-20181717207,THEFT FROM MOTOR VEHICLE OVER,2018-09-14,2018,September,Friday,14,257,21,2018-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15711,3515,GO-20181717207,THEFT FROM MOTOR VEHICLE OVER,2018-09-14,2018,September,Friday,14,257,21,2018-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15712,3525,GO-20181748050,THEFT UNDER - BICYCLE,2018-09-16,2018,September,Sunday,16,259,19,2018-09-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15713,3576,GO-20189032351,THEFT UNDER,2018-09-23,2018,September,Sunday,23,266,12,2018-09-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15714,3662,GO-20181873074,B&E,2018-10-09,2018,October,Tuesday,9,282,19,2018-10-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15715,3663,GO-20181873074,B&E,2018-10-09,2018,October,Tuesday,9,282,19,2018-10-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15716,3679,GO-20189033784,THEFT UNDER,2018-10-12,2018,October,Friday,12,285,7,2018-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15717,3702,GO-20189034130,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,3,2018-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15718,3710,GO-20181916358,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,13,2018-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15719,3730,GO-20189034778,THEFT UNDER,2018-10-19,2018,October,Friday,19,292,15,2018-10-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15720,3731,GO-20189034776,THEFT UNDER,2018-10-19,2018,October,Friday,19,292,14,2018-10-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15721,3761,GO-20189035569,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,23,2018-10-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15722,3773,GO-20181983533,B&E,2018-10-26,2018,October,Friday,26,299,21,2018-10-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15723,3792,GO-20189036359,THEFT UNDER - BICYCLE,2018-10-28,2018,October,Sunday,28,301,23,2018-10-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15724,3814,GO-20182050130,THEFT UNDER,2018-10-29,2018,October,Monday,29,302,19,2018-11-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15725,3907,GO-20189040250,THEFT UNDER - SHOPLIFTING,2018-11-28,2018,November,Wednesday,28,332,23,2018-11-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15726,4118,GO-20199010060,THEFT UNDER - BICYCLE,2019-03-28,2019,March,Thursday,28,87,21,2019-03-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15727,4119,GO-20199010060,THEFT UNDER - BICYCLE,2019-03-28,2019,March,Thursday,28,87,21,2019-03-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15728,4153,GO-2019612620,THEFT UNDER - BICYCLE,2019-03-28,2019,March,Thursday,28,87,21,2019-04-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15729,4154,GO-2019652530,ASSAULT - FORCE/THRT/IMPEDE,2019-04-05,2019,April,Friday,5,95,19,2019-04-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15730,4189,GO-2019721855,B&E,2019-04-21,2019,April,Sunday,21,111,18,2019-04-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15731,4260,GO-2019841434,THEFT UNDER - BICYCLE,2019-05-03,2019,May,Friday,3,123,8,2019-05-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15732,4499,GO-20199018729,THEFT UNDER - BICYCLE,2019-06-14,2019,June,Friday,14,165,22,2019-06-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15733,4518,GO-20199018994,THEFT UNDER - BICYCLE,2019-06-17,2019,June,Monday,17,168,17,2019-06-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15734,4525,GO-20199019034,THEFT UNDER,2019-06-12,2019,June,Wednesday,12,163,0,2019-06-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15735,4677,GO-20199021170,B&E,2019-07-05,2019,July,Friday,5,186,2,2019-07-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15736,4779,GO-20199022410,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,8,2019-07-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15737,4793,GO-20191347110,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,2,2019-07-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15738,4820,GO-20191368209,B&E,2019-07-20,2019,July,Saturday,20,201,16,2019-07-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15739,4836,GO-20191381637,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,16,2019-07-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15740,4969,GO-20191482208,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,12,2019-08-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15741,5030,GO-20199025745,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,19,2019-08-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15742,5214,GO-20199028501,THEFT UNDER,2019-09-02,2019,September,Monday,2,245,14,2019-09-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15743,5288,GO-20199029387,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,12,2019-09-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15744,5294,GO-20199029555,THEFT UNDER - BICYCLE,2019-09-09,2019,September,Monday,9,252,17,2019-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15745,5295,GO-20199029555,THEFT UNDER - BICYCLE,2019-09-09,2019,September,Monday,9,252,17,2019-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15746,5339,GO-20191779454,THEFT UNDER - BICYCLE,2019-09-13,2019,September,Friday,13,256,13,2019-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15747,5340,GO-20191758452,B&E,2019-09-13,2019,September,Friday,13,256,12,2019-09-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15748,5341,GO-20199030197,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,22,2019-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15749,5359,GO-20191795458,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,9,2019-09-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15750,5388,GO-20191837875,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,17,2019-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15751,5407,GO-20191853824,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,10,2019-09-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15752,5408,GO-20191854517,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,15,2019-09-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15753,5497,GO-20199033349,THEFT UNDER - BICYCLE,2019-10-10,2019,October,Thursday,10,283,9,2019-10-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15754,5549,GO-20199034461,THEFT UNDER,2019-10-18,2019,October,Friday,18,291,18,2019-10-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15755,5688,GO-20199037427,THEFT UNDER,2019-11-14,2019,November,Thursday,14,318,6,2019-11-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15756,5861,GO-20209003572,THEFT UNDER,2020-01-29,2020,January,Wednesday,29,29,16,2020-01-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15757,5919,GO-20209006499,THEFT UNDER,2020-02-22,2020,February,Saturday,22,53,16,2020-02-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15758,5924,GO-20209006499,THEFT UNDER,2020-02-22,2020,February,Saturday,22,53,16,2020-02-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15759,5958,GO-20209008760,THEFT UNDER,2020-03-12,2020,March,Thursday,12,72,14,2020-03-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15760,5979,GO-2020579019,B&E,2020-03-15,2020,March,Sunday,15,75,19,2020-03-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15761,6243,GO-20209013867,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,17,2020-05-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15762,9931,GO-20159004155,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,17,2015-07-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15763,9989,GO-20159004430,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,15,2015-07-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15764,9990,GO-20159004441,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,17,2015-07-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15765,10060,GO-20159004779,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,18,2015-07-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15766,10094,GO-20159004971,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,3,2015-07-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15767,10109,GO-20159005050,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,0,2015-07-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15768,10243,GO-20151394104,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,18,2015-08-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15769,10278,GO-20159005891,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,18,2015-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15770,10300,GO-20151438539,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,10,2015-08-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15771,10302,GO-20151420199,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,10,2015-08-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15772,10340,GO-20159006326,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,18,2015-08-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15773,10388,GO-20159006653,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,19,2015-09-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15774,10399,GO-20151544699,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,8,2015-09-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15775,10424,GO-20151562347,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,12,2015-09-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15776,10460,GO-20151593383,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,10,2015-09-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15777,10501,GO-20151631866,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,18,2015-09-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15778,10507,GO-20159007483,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,19,2015-09-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15779,10556,GO-20151682620,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,9,2015-09-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15780,10610,GO-20159008375,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,16,2015-10-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15781,10620,GO-20159008466,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,19,2015-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15782,10632,GO-20151778093,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,9,2015-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15783,10658,GO-20151810587,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,2,2015-10-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15784,10659,GO-20151805256,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,20,2015-10-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15785,10667,GO-20151816899,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,23,2015-10-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15786,10702,GO-20151857224,THEFT UNDER,2015-10-25,2015,October,Sunday,25,298,18,2015-10-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15787,10783,GO-20151977496,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,5,2015-11-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15788,10787,GO-20151983802,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,11,2015-11-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15789,10799,GO-20159010022,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,23,2015-11-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15790,10845,GO-20159010620,THEFT UNDER,2015-11-01,2015,November,Sunday,1,305,1,2015-11-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15791,10852,GO-20152116254,THEFT UNDER,2015-11-20,2015,November,Friday,20,324,16,2015-12-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15792,10857,GO-20159010773,THEFT UNDER,2015-12-09,2015,December,Wednesday,9,343,12,2015-12-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15793,10869,GO-20152124501,THEFT UNDER,2015-11-23,2015,November,Monday,23,327,13,2015-12-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15794,10871,GO-20152141940,THEFT UNDER,2015-11-16,2015,November,Monday,16,320,9,2015-12-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15795,10882,GO-20152144215,THEFT UNDER,2015-11-26,2015,November,Thursday,26,330,12,2015-12-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15796,10947,GO-2016145197,THEFT UNDER,2016-01-22,2016,January,Friday,22,22,15,2016-01-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15797,10987,GO-2016255106,THEFT UNDER,2016-02-07,2016,February,Sunday,7,38,15,2016-02-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15798,11028,GO-2016410979,THEFT UNDER,2016-03-07,2016,March,Monday,7,67,10,2016-03-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15799,6244,GO-20209013862,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,23,2020-05-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15800,11067,GO-2016492828,THEFT UNDER - BICYCLE,2016-03-10,2016,March,Thursday,10,70,16,2016-03-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15801,11071,GO-20161188318,THEFT UNDER - BICYCLE,2016-06-24,2016,June,Friday,24,176,9,2016-07-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15802,11078,GO-2016522251,THEFT UNDER - BICYCLE,2016-03-27,2016,March,Sunday,27,87,17,2016-03-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15803,11124,GO-20169003258,THEFT UNDER - BICYCLE,2016-04-08,2016,April,Friday,8,99,8,2016-04-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15804,11161,GO-2017515016,B&E,2017-03-19,2017,March,Sunday,19,78,3,2017-03-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15805,11162,GO-20143280424,THEFT UNDER,2014-11-04,2014,November,Tuesday,4,308,7,2014-11-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15806,11185,GO-20169003724,THEFT UNDER,2016-04-19,2016,April,Tuesday,19,110,9,2016-04-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15807,11190,GO-20169003765,THEFT UNDER,2016-04-23,2016,April,Saturday,23,114,15,2016-04-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15808,11270,GO-2016783502,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,21,2016-05-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15809,11288,GO-2016807506,THEFT UNDER - BICYCLE,2016-05-09,2016,May,Monday,9,130,14,2016-05-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15810,11296,GO-2016815136,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,18,2016-05-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15811,11313,GO-20169004550,THEFT UNDER - BICYCLE,2016-05-14,2016,May,Saturday,14,135,13,2016-05-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15812,11343,GO-20169004760,THEFT UNDER - BICYCLE,2016-05-18,2016,May,Wednesday,18,139,14,2016-05-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15813,11347,GO-2016778135,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,13,2016-05-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15814,11407,GO-2016939829,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,19,2016-05-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15815,11473,GO-20169005487,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,11,2016-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15816,11523,GO-20161025466,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,19,2016-06-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15817,11554,GO-20161051126,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,15,2016-06-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15818,11600,GO-20169006137,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,11,2016-06-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15819,11614,GO-20169006220,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,23,2016-06-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15820,11627,GO-20169006289,THEFT UNDER,2016-06-20,2016,June,Monday,20,172,14,2016-06-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15821,11770,GO-20161219239,THEFT UNDER - BICYCLE,2016-06-30,2016,June,Thursday,30,182,20,2016-07-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15822,11843,GO-20169007393,THEFT UNDER,2016-07-17,2016,July,Sunday,17,199,22,2016-07-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15823,11885,GO-20161294747,THEFT UNDER - BICYCLE,2016-07-15,2016,July,Friday,15,197,22,2016-07-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15824,18422,GO-20151120817,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,22,2015-07-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15825,11944,GO-20169007901,THEFT UNDER - BICYCLE,2016-07-29,2016,July,Friday,29,211,10,2016-07-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15826,11983,GO-20169008141,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,23,2016-08-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15827,12029,GO-20169008407,THEFT UNDER,2016-08-08,2016,August,Monday,8,221,13,2016-08-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15828,12065,GO-20161416329,TRAFFICKING PROPERTY OBC UNDER,2016-08-09,2016,August,Tuesday,9,222,15,2016-08-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15829,12109,GO-20161423746,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,15,2016-08-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15830,12114,GO-20161454117,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,16,2016-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15831,12118,GO-20161453733,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,17,2016-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15832,12131,GO-20161463457,B&E W'INTENT,2016-08-18,2016,August,Thursday,18,231,9,2016-08-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15833,12171,GO-20161492092,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,18,2016-08-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15834,12192,GO-20169009398,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,0,2016-08-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15835,12245,GO-20161552627,PROPERTY - FOUND,2016-08-06,2016,August,Saturday,6,219,21,2016-09-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15836,12298,GO-20161597767,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,15,2016-09-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15837,12321,GO-20169010315,THEFT UNDER,2016-09-11,2016,September,Sunday,11,255,23,2016-09-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15838,12338,GO-20161633273,THEFT OVER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,11,2016-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15839,12345,GO-20169010471,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,16,2016-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15840,12378,GO-20169010626,THEFT OF EBIKE UNDER $5000,2016-09-18,2016,September,Sunday,18,262,5,2016-09-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15841,12393,GO-20161665977,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,15,2016-09-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15842,12410,GO-20161676643,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,17,2016-09-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15843,12416,GO-20169010847,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,10,2016-09-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15844,12476,GO-20161723092,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,18,2016-09-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15845,12479,GO-20161724777,THEFT UNDER - BICYCLE,2016-09-25,2016,September,Sunday,25,269,11,2016-09-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15846,12540,GO-20169011486,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,14,2016-10-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15847,12553,GO-20169011571,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,19,2016-10-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15848,12564,GO-20161780374,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,17,2016-10-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15849,12573,GO-20161784306,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,18,2016-10-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15850,12605,GO-20169011958,THEFT OF EBIKE UNDER $5000,2016-10-09,2016,October,Sunday,9,283,16,2016-10-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15851,12644,GO-20169012323,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,18,2016-10-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15852,12675,GO-20169012559,THEFT UNDER - BICYCLE,2016-10-24,2016,October,Monday,24,298,17,2016-10-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15853,12684,GO-20161910314,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,17,2016-10-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15854,12709,GO-20169012864,THEFT UNDER,2016-11-01,2016,November,Tuesday,1,306,13,2016-11-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15855,18450,GO-20159006414,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,23,2015-08-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15856,18462,GO-20159007763,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,9,2015-09-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15857,18476,GO-20169002408,THEFT UNDER,2016-03-15,2016,March,Tuesday,15,75,18,2016-03-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15858,18499,GO-20169005936,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,1,2016-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15859,18779,GO-20209028560,THEFT UNDER,2020-11-03,2020,November,Tuesday,3,308,15,2020-11-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15860,18781,GO-20202154619,B&E,2020-11-12,2020,November,Thursday,12,317,17,2020-11-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15861,18801,GO-20201849266,THEFT UNDER - BICYCLE,2020-09-10,2020,September,Thursday,10,254,12,2020-09-29,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15862,18815,GO-20201972453,PROPERTY - FOUND,2020-10-17,2020,October,Saturday,17,291,13,2020-10-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15863,18816,GO-20209026968,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,23,2020-10-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15864,19391,GO-2017712504,THEFT UNDER,2017-04-23,2017,April,Sunday,23,113,12,2017-04-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15865,19400,GO-20179006658,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,12,2017-05-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15866,19409,GO-20179008093,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,17,2017-06-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15867,19415,GO-20179008984,THEFT UNDER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,19,2017-06-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15868,19423,GO-20179010528,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,10,2017-07-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15869,19425,GO-20179010647,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,19,2017-07-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15870,19426,GO-20179011140,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,9,2017-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15871,19434,GO-20179012983,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,20,2017-08-21,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15872,19435,GO-20179013277,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,18,2017-08-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15873,19437,GO-20179014430,THEFT UNDER,2017-09-10,2017,September,Sunday,10,253,17,2017-09-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15874,19444,GO-20179016399,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,20,2017-10-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15875,19452,GO-20179017834,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,23,2017-10-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15876,19470,GO-20189006738,THEFT UNDER - BICYCLE,2018-03-02,2018,March,Friday,2,61,10,2018-03-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15877,19478,GO-20189011421,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,5,2018-04-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15878,19487,GO-20189016054,THEFT UNDER,2018-05-23,2018,May,Wednesday,23,143,9,2018-05-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15879,19491,GO-20189016912,THEFT UNDER,2018-05-30,2018,May,Wednesday,30,150,19,2018-05-31,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15880,19498,GO-20189019018,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,14,2018-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15881,19511,GO-20189022640,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,9,2018-07-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15882,6977,GO-20209020441,THEFT UNDER,2020-08-09,2020,August,Sunday,9,222,12,2020-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15883,19512,GO-20189022902,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,9,2018-07-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15884,19526,GO-20189025675,THEFT UNDER,2018-08-09,2018,August,Thursday,9,221,20,2018-08-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15885,19534,GO-20189027195,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,10,2018-08-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15886,19538,GO-20189028815,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,11,2018-09-01,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15887,19562,GO-20189034854,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,17,2018-10-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15888,19585,GO-20199018846,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,20,2019-06-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15889,19778,GO-20149005038,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,12,2014-07-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15890,19784,GO-20149005371,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,7,2014-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15891,19795,GO-20149006142,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,12,2014-08-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15892,19798,GO-20142772907,THEFT UNDER - SHOPLIFTING,2014-08-25,2014,August,Monday,25,237,12,2014-08-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15893,19799,GO-20142772907,THEFT UNDER - SHOPLIFTING,2014-08-25,2014,August,Monday,25,237,12,2014-08-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15894,19835,GO-2015686896,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,19,2015-04-25,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15895,19857,GO-20159004856,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,14,2015-07-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15896,19862,GO-20159005648,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,14,2015-08-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15897,19864,GO-20159005906,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,6,2015-08-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15898,19876,GO-20151729160,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,23,2015-10-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15899,19881,GO-20159009425,THEFT UNDER,2015-11-04,2015,November,Wednesday,4,308,21,2015-11-06,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15900,19884,GO-20159010785,THEFT UNDER,2015-12-10,2015,December,Thursday,10,344,18,2015-12-11,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15901,19902,GO-2016766234,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,7,2016-05-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15902,19903,GO-2016778927,B&E,2016-05-01,2016,May,Sunday,1,122,15,2016-05-07,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15903,19908,GO-2016896023,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,15,2016-05-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15904,19913,GO-20169005330,THEFT UNDER - BICYCLE,2016-05-25,2016,May,Wednesday,25,146,21,2016-06-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15905,19927,GO-20169007524,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,18,2016-07-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15906,19957,GO-20169014031,THEFT UNDER,2016-11-30,2016,November,Wednesday,30,335,10,2016-11-30,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15907,19960,GO-20179000425,THEFT UNDER - BICYCLE,2016-12-28,2016,December,Wednesday,28,363,9,2017-01-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15908,19970,GO-20179003634,THEFT UNDER,2017-03-21,2017,March,Tuesday,21,80,21,2017-03-23,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15909,19971,GO-20179003827,THEFT UNDER - BICYCLE,2017-03-26,2017,March,Sunday,26,85,14,2017-03-26,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15910,20139,GO-20141866845,THEFT UNDER,2014-04-10,2014,April,Thursday,10,100,21,2014-04-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15911,20143,GO-20149002898,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,13,2014-04-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15912,20148,GO-20149003453,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,8,2014-05-20,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15913,20151,GO-20142217825,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,7,2014-06-05,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15914,20152,GO-20142255941,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,12,2014-06-09,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15915,20157,GO-20149004034,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,19,2014-06-13,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15916,20159,GO-20149004176,THEFT UNDER,2014-05-20,2014,May,Tuesday,20,140,9,2014-06-17,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15917,20167,GO-20149004502,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,9,2014-06-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15918,20586,GO-20199021383,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,4,2019-07-08,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15919,20639,GO-20199029811,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,10,2019-09-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15920,20642,GO-20191778220,PROPERTY - FOUND,2019-09-16,2019,September,Monday,16,259,10,2019-09-16,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15921,6313,GO-20201053950,THEFT UNDER - BICYCLE,2020-05-27,2020,May,Wednesday,27,148,12,2020-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15922,20682,GO-20199038692,THEFT UNDER,2019-11-21,2019,November,Thursday,21,325,18,2019-11-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15923,20696,GO-2020537314,THEFT UNDER,2020-03-13,2020,March,Friday,13,73,17,2020-03-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15924,20697,GO-20209010007,THEFT UNDER,2020-03-26,2020,March,Thursday,26,86,18,2020-03-28,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15925,20711,GO-20201014381,THEFT UNDER - BICYCLE,2020-06-02,2020,June,Tuesday,2,154,10,2020-06-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15926,20725,GO-20209016700,THEFT UNDER,2020-07-01,2020,July,Wednesday,1,183,6,2020-07-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15927,20738,GO-20209018732,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,23,2020-07-27,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15928,20740,GO-20209019180,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,23,2020-08-02,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15929,20746,GO-20209020241,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,20,2020-08-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15930,20778,GO-20209023774,THEFT UNDER,2020-09-06,2020,September,Sunday,6,250,10,2020-09-18,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15931,20795,GO-20209020205,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,3,2020-08-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15932,20829,GO-20209028639,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,7,2020-11-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15933,21027,GO-20199023213,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,13,2019-07-22,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15934,21035,GO-20199024895,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,0,2019-08-04,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15935,21096,GO-20199038119,THEFT UNDER,2019-11-19,2019,November,Tuesday,19,323,15,2019-11-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15936,21162,GO-20209017508,THEFT UNDER,2020-07-07,2020,July,Tuesday,7,189,9,2020-07-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15937,6781,GO-20209018801,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,3,2020-07-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15938,21182,GO-20171269102,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,13,2017-07-15,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15939,21191,GO-20171330489,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,16,2017-07-24,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15940,21223,GO-20171844636,THEFT OF EBIKE UNDER $5000,2017-10-10,2017,October,Tuesday,10,283,23,2017-10-14,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15941,21268,GO-20189014652,THEFT UNDER,2018-05-10,2018,May,Thursday,10,130,20,2018-05-12,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15942,21270,GO-20189015530,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,23,2018-05-19,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15943,21280,GO-20189017216,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,18,2018-06-03,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15944,21311,GO-20189021865,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,19,2018-07-10,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)}",Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -15945,6248,GO-20209013895,THEFT UNDER,2020-05-24,2020,May,Sunday,24,145,22,2020-05-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15946,6314,GO-20201053950,THEFT UNDER - BICYCLE,2020-05-27,2020,May,Wednesday,27,148,12,2020-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15947,6347,GO-20209014998,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,23,2020-06-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15948,6429,GO-20209015733,THEFT UNDER,2020-06-16,2020,June,Tuesday,16,168,10,2020-06-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15949,6488,GO-20201185447,B&E,2020-06-27,2020,June,Saturday,27,179,18,2020-06-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15950,6516,GO-20209016668,THEFT UNDER,2020-02-21,2020,February,Friday,21,52,16,2020-07-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15951,6544,GO-20201255056,THEFT UNDER - BICYCLE,2020-07-03,2020,July,Friday,3,185,20,2020-07-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15952,6571,GO-20209017207,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,18,2020-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15953,6580,GO-20209017207,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,18,2020-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15954,7135,GO-20209021838,THEFT UNDER,2020-08-28,2020,August,Friday,28,241,16,2020-08-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15955,7157,GO-20209022101,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,18,2020-09-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15956,7237,GO-20201739559,THEFT UNDER - BICYCLE,2020-09-03,2020,September,Thursday,3,247,10,2020-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15957,7246,GO-20209023257,THEFT UNDER,2020-09-13,2020,September,Sunday,13,257,17,2020-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15958,7275,GO-20209023595,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,12,2020-09-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15959,7299,GO-20209023839,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,23,2020-09-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15960,7329,GO-20201805716,THEFT UNDER - BICYCLE,2020-09-07,2020,September,Monday,7,251,21,2020-09-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15961,7333,GO-20209023776,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,10,2020-09-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15962,7363,GO-20201840942,THEFT UNDER - BICYCLE,2020-09-18,2020,September,Friday,18,262,18,2020-09-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15963,7377,GO-20209024775,THEFT UNDER,2020-09-27,2020,September,Sunday,27,271,13,2020-09-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15964,7388,GO-20209024973,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,6,2020-09-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15965,7403,GO-20209025272,THEFT UNDER - BICYCLE,2020-10-02,2020,October,Friday,2,276,12,2020-10-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15966,7428,GO-20201884807,THEFT UNDER - BICYCLE,2020-10-01,2020,October,Thursday,1,275,9,2020-10-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15967,7580,GO-20202077295,THEFT UNDER,2020-10-28,2020,October,Wednesday,28,302,10,2020-11-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15968,7764,GO-20149001341,THEFT UNDER,2014-02-14,2014,February,Friday,14,45,12,2014-02-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15969,7842,GO-20141908212,THEFT UNDER,2014-04-16,2014,April,Wednesday,16,106,13,2014-04-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15970,8003,GO-20149003676,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,23,2014-05-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15971,8079,GO-20142263772,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,11,2014-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15972,8080,GO-20142263647,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,13,2014-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15973,8086,GO-20142268156,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,16,2014-06-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15974,8089,GO-20142268663,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,16,2014-06-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15975,8099,GO-20142279124,B&E W'INTENT,2014-06-12,2014,June,Thursday,12,163,7,2014-06-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15976,8132,GO-20149004102,THEFT UNDER,2014-06-14,2014,June,Saturday,14,165,3,2014-06-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15977,8148,GO-20149004112,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,15,2014-06-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15978,8186,GO-20149004224,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,18,2014-06-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15979,8192,GO-20149004244,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,14,2014-06-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15980,8206,GO-20149004302,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,10,2014-06-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15981,8221,GO-20142364644,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,10,2014-06-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15982,8283,GO-20149004563,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,22,2014-06-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15983,8284,GO-20149004563,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,22,2014-06-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15984,8298,GO-20142449069,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,18,2014-07-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15985,8324,GO-20142463036,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,12,2014-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15986,8332,GO-20142476050,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,0,2014-07-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15987,8338,GO-20149004678,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,1,2014-07-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15988,8345,GO-20149004698,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,12,2014-07-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15989,8372,GO-20142507384,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,14,2014-07-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15990,8387,GO-20149004876,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,12,2014-07-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15991,8414,GO-20142521309,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,16,2014-07-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15992,8437,GO-20149005036,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,2,2014-07-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15993,8469,GO-20142550228,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,15,2014-07-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15994,8480,GO-20149005220,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,21,2014-07-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15995,8483,GO-20142562693,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,19,2014-07-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15996,8503,GO-20149005279,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,21,2014-07-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15997,8534,GO-20142607883,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,8,2014-07-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15998,8560,GO-20142640512,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,7,2014-08-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -15999,8642,GO-20149005838,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,20,2014-08-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16000,8683,GO-20142746435,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,16,2014-08-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16001,8744,GO-20149006213,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,8,2014-08-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16002,8788,GO-20149006492,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,17,2014-09-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16003,8815,GO-20149006571,THEFT UNDER,2014-09-02,2014,September,Tuesday,2,245,9,2014-09-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16004,8846,GO-20142887284,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,10,2014-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16005,8896,GO-20142921276,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,9,2014-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16006,8929,GO-20142937419,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,18,2014-09-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16007,8963,GO-20149007171,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,9,2014-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16008,8976,GO-20142972035,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,17,2014-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16009,9029,GO-20143065058,THEFT UNDER,2014-10-01,2014,October,Wednesday,1,274,9,2014-10-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16010,9064,GO-20143108902,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,0,2014-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16011,9074,GO-20143116096,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,9,2014-10-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16012,9076,GO-20149007622,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,20,2014-10-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16013,9087,GO-20149007720,THEFT UNDER,2014-10-19,2014,October,Sunday,19,292,13,2014-10-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16014,9088,GO-20143142120,THEFT UNDER,2014-10-20,2014,October,Monday,20,293,14,2014-10-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16015,9127,GO-20143197862,THEFT UNDER,2014-10-19,2014,October,Sunday,19,292,18,2014-10-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16016,9345,GO-2015491194,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,16,2015-03-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16017,9364,GO-2015554250,THEFT UNDER,2015-04-03,2015,April,Friday,3,93,15,2015-04-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16018,9387,GO-2015591983,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,3,2015-04-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16019,9431,GO-20159002047,THEFT UNDER,2014-10-01,2014,October,Wednesday,1,274,12,2015-04-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16020,9439,GO-2015651387,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,9,2015-04-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16021,9459,GO-20159002160,THEFT UNDER,2015-04-22,2015,April,Wednesday,22,112,10,2015-04-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16022,9532,GO-20159002487,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,7,2015-05-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16023,9587,GO-20159002748,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,18,2015-05-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16024,9630,GO-20159002999,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,18,2015-05-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16025,9676,GO-20159003162,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,16,2015-05-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16026,9697,GO-2015918357,B&E W'INTENT,2015-06-01,2015,June,Monday,1,152,8,2015-06-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16027,9718,GO-20159003306,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,16,2015-06-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16028,9747,GO-20159003410,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,14,2015-06-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16029,9750,GO-2015960053,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,15,2015-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16030,15363,GO-20149007048,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,11,2014-09-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16031,15375,GO-20149007692,THEFT UNDER,2014-10-18,2014,October,Saturday,18,291,5,2014-10-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16032,15391,GO-20159001467,THEFT UNDER,2015-03-20,2015,March,Friday,20,79,22,2015-03-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16033,15398,GO-20159003161,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,12,2015-05-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16034,15412,GO-20151070345,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,13,2015-06-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16035,15425,GO-20159004664,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,2,2015-07-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16036,15438,GO-20159005347,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,0,2015-08-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16037,15439,GO-20159005347,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,0,2015-08-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16038,15440,GO-20159005347,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,0,2015-08-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16039,15450,GO-20159007166,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,23,2015-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16040,15463,GO-20151903804,THEFT UNDER - BICYCLE,2015-11-06,2015,November,Friday,6,310,22,2015-11-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16041,15477,GO-20152135166,PROPERTY - FOUND,2015-12-13,2015,December,Sunday,13,347,11,2015-12-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16042,15478,GO-20169000116,THEFT UNDER,2016-01-02,2016,January,Saturday,2,2,19,2016-01-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16043,15509,GO-2016977151,THEFT OF EBIKE UNDER $5000,2016-06-05,2016,June,Sunday,5,157,14,2016-06-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16044,15581,GO-20179001477,THEFT UNDER - BICYCLE,2017-02-01,2017,February,Wednesday,1,32,14,2017-02-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16045,21217,GO-20179015814,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,11,2017-09-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16046,15612,GO-2017996129,POSSESSION PROPERTY OBC UNDER,2017-06-05,2017,June,Monday,5,156,9,2017-06-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16047,15682,GO-20191635077,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,18,2019-08-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16048,15698,GO-20191756648,THEFT UNDER,2019-08-28,2019,August,Wednesday,28,240,19,2019-09-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16049,15744,GO-20209008953,THEFT UNDER,2020-03-14,2020,March,Saturday,14,74,13,2020-03-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16050,15773,GO-20201067623,THEFT UNDER - BICYCLE,2020-06-05,2020,June,Friday,5,157,20,2020-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16051,15830,GO-20209023776,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,10,2020-09-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16052,16126,GO-2017764397,THEFT UNDER - BICYCLE,2017-04-11,2017,April,Tuesday,11,101,17,2017-05-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16053,16132,GO-2017946899,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,7,2017-05-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16054,16141,GO-20171065123,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,18,2017-06-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16055,16160,GO-20179010531,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,10,2017-07-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16056,16171,GO-20171485680,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,12,2017-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16057,16179,GO-20179014530,THEFT UNDER,2017-09-11,2017,September,Monday,11,254,21,2017-09-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16058,16194,GO-20179016828,THEFT UNDER - BICYCLE,2017-10-09,2017,October,Monday,9,282,10,2017-10-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16059,16196,GO-20171854724,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,13,2017-10-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16060,16205,GO-20171963554,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,18,2017-10-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16061,16208,GO-20171982985,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,16,2017-11-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16062,16218,GO-2018147598,THEFT UNDER - BICYCLE,2018-01-14,2018,January,Sunday,14,14,14,2018-01-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16063,16222,GO-2018328336,B&E,2018-02-18,2018,February,Sunday,18,49,2,2018-02-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16064,7834,GO-20141888591,THEFT UNDER,2014-04-13,2014,April,Sunday,13,103,17,2014-04-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16065,16223,GO-2018328336,B&E,2018-02-18,2018,February,Sunday,18,49,2,2018-02-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16066,16242,GO-20181112456,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,17,2018-06-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16067,16275,GO-20181455821,THEFT UNDER,2018-07-30,2018,July,Monday,30,211,16,2018-08-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16068,16278,GO-20189026963,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,12,2018-08-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16069,16288,GO-20181682205,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,18,2018-09-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16070,16290,GO-20181735997,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,16,2018-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16071,16296,GO-20181781592,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,10,2018-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16072,16301,GO-20181929260,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,17,2018-10-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16073,16302,GO-20189035254,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,18,2018-10-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16074,16320,GO-2019975910,THEFT UNDER,2019-05-23,2019,May,Thursday,23,143,13,2019-05-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16075,16336,GO-20191345115,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,11,2019-07-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16076,16348,GO-20199024330,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,17,2019-07-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16077,16389,GO-20199031901,THEFT UNDER,2019-09-24,2019,September,Tuesday,24,267,7,2019-09-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16078,16395,GO-20191903314,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,22,2019-10-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16079,16399,GO-20192002066,THEFT UNDER,2019-10-03,2019,October,Thursday,3,276,17,2019-10-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16080,14738,GO-20179018346,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,23,2017-10-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16081,16410,GO-20192159327,THEFT UNDER,2019-11-03,2019,November,Sunday,3,307,18,2019-11-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16082,16416,GO-20199038553,THEFT UNDER,2019-11-23,2019,November,Saturday,23,327,8,2019-11-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16083,16419,GO-20199039604,THEFT UNDER,2019-11-21,2019,November,Thursday,21,325,19,2019-12-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16084,16442,GO-2020524684,B&E,2020-02-22,2020,February,Saturday,22,53,1,2020-03-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16085,16506,GO-20209021260,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,15,2020-08-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16086,16530,GO-20149006930,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,13,2014-09-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16087,16533,GO-20142971674,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,17,2014-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16088,16537,GO-20143034746,THEFT UNDER,2014-09-29,2014,September,Monday,29,272,11,2014-10-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16089,16538,GO-20143057816,THEFT UNDER,2014-10-04,2014,October,Saturday,4,277,15,2014-10-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16090,16539,GO-20143065247,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,21,2014-10-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16091,16562,GO-2015715930,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,8,2015-04-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16092,16571,GO-2015844912,AGGRAVATED ASLT PEACE OFFICER,2015-05-19,2015,May,Tuesday,19,139,13,2015-05-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16093,16577,GO-20159003729,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,10,2015-06-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16094,16581,GO-20151167664,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,16,2015-07-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16095,16599,GO-20151683067,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,17,2015-09-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16096,16606,GO-20151741394,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,16,2015-10-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16097,16610,GO-20151810997,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,21,2015-10-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16098,16620,GO-201678965,THEFT UNDER,2016-01-11,2016,January,Monday,11,11,11,2016-01-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16099,16629,GO-2016545174,THEFT UNDER,2016-03-22,2016,March,Tuesday,22,82,17,2016-03-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16100,16648,GO-20161049401,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,21,2016-06-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16101,16652,GO-20161074463,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,12,2016-06-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16102,16659,GO-20161166822,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,14,2016-07-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16103,16665,GO-20169007405,THEFT UNDER,2016-07-19,2016,July,Tuesday,19,201,11,2016-07-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16104,16674,GO-20161443369,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,8,2016-08-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16105,16681,GO-20161603509,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,10,2016-09-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16106,16684,GO-20161626016,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,17,2016-09-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16107,16693,GO-20161742456,THEFT OF EBIKE UNDER $5000,2016-09-30,2016,September,Friday,30,274,17,2016-10-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16108,16698,GO-20161780010,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,14,2016-10-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16109,16703,GO-20161980437,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,16,2016-11-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16110,16705,GO-20161998265,THEFT UNDER - BICYCLE,2016-11-03,2016,November,Thursday,3,308,8,2016-11-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16111,16707,GO-20162112469,THEFT UNDER - BICYCLE,2016-11-22,2016,November,Tuesday,22,327,20,2016-11-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16112,16709,GO-20169014145,THEFT UNDER,2016-12-02,2016,December,Friday,2,337,11,2016-12-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16113,16878,GO-20149003637,THEFT UNDER,2014-05-29,2014,May,Thursday,29,149,13,2014-05-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16114,16879,GO-20142206212,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,9,2014-06-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16115,16882,GO-20149003897,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,15,2014-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16116,16884,GO-20142261263,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,14,2014-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16117,16906,GO-20142608233,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,13,2014-07-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16118,17339,GO-20201100614,THEFT UNDER - BICYCLE,2020-06-13,2020,June,Saturday,13,165,17,2020-06-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16119,17379,GO-20209021478,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,20,2020-08-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16120,17515,GO-20189032958,THEFT UNDER - BICYCLE,2018-10-04,2018,October,Thursday,4,277,6,2018-10-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16121,17518,GO-20189034007,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,15,2018-10-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16122,17520,GO-20189034319,THEFT UNDER - BICYCLE,2018-10-15,2018,October,Monday,15,288,18,2018-10-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16123,17525,GO-20189037616,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,18,2018-11-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16124,17526,GO-20189037616,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,18,2018-11-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16125,17527,GO-20189037616,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,18,2018-11-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16126,17545,GO-20199008576,THEFT UNDER - BICYCLE,2019-03-17,2019,March,Sunday,17,76,11,2019-03-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16127,17637,GO-20191769918,THEFT OF EBIKE UNDER $5000,2019-09-14,2019,September,Saturday,14,257,22,2019-09-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16128,17669,GO-20199037427,THEFT UNDER,2019-11-14,2019,November,Thursday,14,318,6,2019-11-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16129,17742,GO-20179016153,THEFT UNDER - BICYCLE,2017-09-30,2017,September,Saturday,30,273,10,2017-09-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16130,17790,GO-20189003826,THEFT UNDER - BICYCLE,2018-02-03,2018,February,Saturday,3,34,14,2018-02-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16131,15319,GO-20142185570,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,13,2014-05-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16132,1420,GO-20171682799,B&E,2017-09-16,2017,September,Saturday,16,259,14,2017-09-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16133,1439,GO-20179015034,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,17,2017-09-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16134,21219,GO-20179016501,THEFT UNDER,2017-10-04,2017,October,Wednesday,4,277,0,2017-10-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16135,1496,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,7,2017-09-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16136,21230,GO-20179018714,THEFT UNDER - BICYCLE,2017-10-31,2017,October,Tuesday,31,304,10,2017-11-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16137,1497,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,7,2017-09-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16138,21245,GO-20189002780,THEFT UNDER - BICYCLE,2018-01-27,2018,January,Saturday,27,27,17,2018-01-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16139,1538,GO-20171754657,B&E,2017-09-16,2017,September,Saturday,16,259,12,2017-09-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16140,21246,GO-20189002980,THEFT UNDER - BICYCLE,2018-01-29,2018,January,Monday,29,29,22,2018-01-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16141,1539,GO-20171754657,B&E,2017-09-16,2017,September,Saturday,16,259,12,2017-09-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16142,21260,GO-20189012423,THEFT UNDER,2018-04-20,2018,April,Friday,20,110,0,2018-04-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16143,15320,GO-20149003752,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,12,2014-06-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16144,14768,GO-2018563701,THEFT UNDER - BICYCLE,2018-03-29,2018,March,Thursday,29,88,6,2018-03-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16145,1554,GO-20171759754,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,6,2017-09-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16146,17345,GO-20209016470,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,21,2020-06-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16147,21291,GO-20189018241,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,23,2018-06-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16148,15325,GO-20149004463,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,23,2014-06-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16149,7843,GO-20149002899,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,16,2014-04-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16150,7963,GO-20142127554,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,8,2014-05-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16151,1585,GO-20179016423,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,19,2017-10-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16152,17796,GO-20189012029,THEFT UNDER,2018-04-17,2018,April,Tuesday,17,107,20,2018-04-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16153,8152,GO-20149004136,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,10,2014-06-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16154,15328,GO-20142409955,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,19,2014-07-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16155,1599,GO-20179016607,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,22,2017-10-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16156,21296,GO-20189019551,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,8,2018-06-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16157,14771,GO-20189011482,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,0,2018-04-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16158,21393,GO-20161140344,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,22,2016-06-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16159,17843,GO-20189020331,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,14,2018-06-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16160,14792,GO-20189017175,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,1,2018-06-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16161,15336,GO-20149004997,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,21,2014-07-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16162,22653,GO-20191889306,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,16,2019-10-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16163,8395,GO-20149004910,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,19,2014-07-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16164,1608,GO-20179016683,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,22,2017-10-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16165,6368,GO-20201067092,THEFT UNDER - BICYCLE,2020-06-09,2020,June,Tuesday,9,161,20,2020-06-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16166,21402,GO-20169008371,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,23,2016-08-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16167,17850,GO-20189021758,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,8,2018-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16168,14801,GO-20189018640,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,12,2018-06-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16169,17878,GO-20189025789,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,8,2018-08-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16170,14805,GO-20189019422,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,12,2018-06-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16171,1655,GO-20171858826,POSSESSION PROPERTY OBC UNDER,2017-10-13,2017,October,Friday,13,286,23,2017-10-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16172,6453,GO-20209016025,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,0,2020-06-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16173,17893,GO-20189028503,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,16,2018-08-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16174,14812,GO-20189020434,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,4,2018-06-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16175,21433,GO-20169011266,THEFT UNDER,2016-09-27,2016,September,Tuesday,27,271,15,2016-09-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16176,8440,GO-20142507653,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,17,2014-07-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16177,15337,GO-20149005025,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,22,2014-07-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16178,6468,GO-20209016104,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,22,2020-06-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16179,21372,GO-20169005104,THEFT UNDER,2016-05-29,2016,May,Sunday,29,150,3,2016-05-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16180,1749,GO-20179018263,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,11,2017-10-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16181,17895,GO-20189028642,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,15,2018-08-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16182,15310,GO-20141894745,THEFT UNDER,2014-04-10,2014,April,Thursday,10,100,11,2014-04-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16183,21376,GO-20169005520,THEFT UNDER,2016-06-06,2016,June,Monday,6,158,15,2016-06-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16184,1810,GO-20179019110,THEFT UNDER - BICYCLE,2017-11-07,2017,November,Tuesday,7,311,17,2017-11-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16185,15348,GO-20142683801,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,5,2014-08-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16186,8532,GO-20142604373,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,1,2014-07-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16187,6499,GO-20209016510,THEFT UNDER,2020-06-27,2020,June,Saturday,27,179,23,2020-06-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16188,21451,GO-20169014307,THEFT UNDER,2016-12-06,2016,December,Tuesday,6,341,9,2016-12-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16189,6898,GO-20209019661,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,11,2020-08-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16190,18194,GO-20179004024,THEFT UNDER - BICYCLE,2017-03-31,2017,March,Friday,31,90,6,2017-03-31,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16191,15311,GO-20141936048,THEFT UNDER,2014-04-21,2014,April,Monday,21,111,10,2014-04-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16192,1817,GO-20172023736,B&E,2017-11-07,2017,November,Tuesday,7,311,0,2017-11-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16193,25298,GO-2017732960,FRAUD OVER,2017-04-26,2017,April,Wednesday,26,116,14,2017-04-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16194,21487,GO-20179007076,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,21,2017-05-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16195,21395,GO-20169006857,THEFT UNDER,2016-07-05,2016,July,Tuesday,5,187,19,2016-07-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16196,6927,GO-20209019811,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,22,2020-08-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16197,18410,GO-20159003134,PROPERTY - FOUND,2015-05-26,2015,May,Tuesday,26,146,13,2015-05-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16198,15327,GO-20142409251,B&E,2014-07-01,2014,July,Tuesday,1,182,18,2014-07-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16199,8620,GO-20142688075,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,0,2014-08-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16200,15374,GO-20143133833,THEFT UNDER,2014-10-18,2014,October,Saturday,18,291,19,2014-10-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16201,1941,GO-20179022276,THEFT UNDER,2017-07-26,2017,July,Wednesday,26,207,18,2017-12-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16202,25300,GO-20179006016,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,10,2017-05-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16203,21488,GO-20179007124,THEFT UNDER,2017-05-27,2017,May,Saturday,27,147,21,2017-05-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16204,21490,GO-20179007361,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,17,2017-06-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16205,21817,GO-20149005792,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,12,2014-08-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16206,21823,GO-20149006211,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,16,2014-08-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16207,21824,GO-20149006344,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,9,2014-08-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16208,21837,GO-20142971906,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,12,2014-09-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16209,21844,GO-20149008330,THEFT UNDER,2014-11-21,2014,November,Friday,21,325,14,2014-11-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16210,21850,GO-20159001564,THEFT UNDER,2015-03-25,2015,March,Wednesday,25,84,9,2015-03-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16211,21884,GO-20151113317,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,13,2015-07-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16212,21891,GO-20151192846,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,22,2015-07-14,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16213,21909,GO-20159005664,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,1,2015-08-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16214,21925,GO-20159007610,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,23,2015-09-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16215,21934,GO-20151823839,THEFT UNDER,2015-10-22,2015,October,Thursday,22,295,20,2015-10-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16216,21946,GO-20169002302,THEFT UNDER - BICYCLE,2016-03-13,2016,March,Sunday,13,73,15,2016-03-13,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16217,21955,GO-20169003753,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,23,2016-04-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16218,23807,GO-20209017487,THEFT UNDER,2020-03-23,2020,March,Monday,23,83,18,2020-07-13,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16219,23834,GO-20209023048,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,17,2020-09-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16220,23838,GO-20201769299,THEFT UNDER - BICYCLE,2020-09-16,2020,September,Wednesday,16,260,22,2020-09-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16221,23839,GO-20201769299,THEFT UNDER - BICYCLE,2020-09-16,2020,September,Wednesday,16,260,22,2020-09-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16222,23842,GO-20209024733,THEFT UNDER,2020-09-27,2020,September,Sunday,27,271,17,2020-09-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16223,24005,GO-20189042046,THEFT UNDER - BICYCLE,2018-11-13,2018,November,Tuesday,13,317,13,2018-12-14,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16224,24027,GO-20199010354,THEFT UNDER - BICYCLE,2019-04-01,2019,April,Monday,1,91,15,2019-04-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16225,24030,GO-2019805488,B&E OUT,2019-04-29,2019,April,Monday,29,119,0,2019-05-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16226,24039,GO-20199015708,THEFT UNDER,2019-05-19,2019,May,Sunday,19,139,20,2019-05-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16227,24045,GO-20199017348,THEFT UNDER - BICYCLE,2019-06-01,2019,June,Saturday,1,152,1,2019-06-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16228,24055,GO-20199020521,THEFT UNDER - BICYCLE,2019-06-29,2019,June,Saturday,29,180,19,2019-06-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16229,24095,GO-20199027981,THEFT UNDER - BICYCLE,2019-08-28,2019,August,Wednesday,28,240,1,2019-08-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16230,24181,GO-20209014374,THEFT UNDER,2020-05-30,2020,May,Saturday,30,151,12,2020-06-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16231,24185,GO-20209014854,THEFT UNDER,2020-06-05,2020,June,Friday,5,157,18,2020-06-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16232,24259,GO-20179019144,THEFT UNDER - BICYCLE,2017-11-07,2017,November,Tuesday,7,311,23,2017-11-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16233,24268,GO-20179021598,THEFT UNDER - BICYCLE,2017-12-07,2017,December,Thursday,7,341,7,2017-12-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16234,24278,GO-20189005485,THEFT UNDER,2018-02-18,2018,February,Sunday,18,49,3,2018-02-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16235,24279,GO-20189005485,THEFT UNDER,2018-02-18,2018,February,Sunday,18,49,3,2018-02-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16236,24280,GO-20189006285,THEFT UNDER - BICYCLE,2018-02-27,2018,February,Tuesday,27,58,16,2018-02-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16237,24290,GO-20189009941,THEFT UNDER,2018-03-29,2018,March,Thursday,29,88,6,2018-03-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16238,24309,GO-20189016771,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,8,2018-05-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16239,24381,GO-20189029120,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,17,2018-09-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16240,24388,GO-20189031995,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,0,2018-09-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16241,24595,GO-20149003272,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,14,2014-05-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16242,24600,GO-20149003687,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,17,2014-05-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16243,24609,GO-20149004349,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,23,2014-06-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16244,24611,GO-20142389756,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,17,2014-06-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16245,24628,GO-20149005093,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,5,2014-07-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16246,24629,GO-20149005116,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,11,2014-07-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16247,24636,GO-20149005943,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,17,2014-08-17,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16248,24643,GO-20142799404,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,18,2014-08-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16249,24638,GO-20149006224,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,2,2014-08-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16250,24644,GO-20149006497,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,16,2014-09-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16251,24645,GO-20149006497,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,16,2014-09-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16252,24659,GO-20149007366,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,9,2014-10-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16253,24663,GO-20143053072,PROPERTY - FOUND,2014-10-08,2014,October,Wednesday,8,281,9,2014-10-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16254,24675,GO-20149008046,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,14,2014-11-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16255,24682,GO-2015546848,THEFT UNDER,2015-04-02,2015,April,Thursday,2,92,10,2015-04-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16256,24700,GO-20159003070,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,0,2015-05-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16257,24979,GO-20169011909,THEFT UNDER,2016-10-11,2016,October,Tuesday,11,285,18,2016-10-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16258,24713,GO-20159003847,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,23,2015-06-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16259,24729,GO-20159005038,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,18,2015-07-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16260,24730,GO-20151325373,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,23,2015-08-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16261,24754,GO-20159007194,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,12,2015-09-14,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16262,24757,GO-20159008122,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,23,2015-10-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16263,24766,GO-20159008620,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,21,2015-10-17,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16264,24767,GO-20159008829,THEFT UNDER,2015-10-20,2015,October,Tuesday,20,293,13,2015-10-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16265,25183,GO-20169003095,THEFT UNDER,2016-04-05,2016,April,Tuesday,5,96,20,2016-04-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16266,25196,GO-20169005074,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,9,2016-05-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16267,25211,GO-20169006061,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,12,2016-06-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16268,25215,GO-20169006186,THEFT UNDER,2016-06-21,2016,June,Tuesday,21,173,23,2016-06-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16269,25223,GO-20169006786,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,21,2016-07-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16270,25243,GO-20169008787,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,12,2016-08-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16271,25257,GO-20169010178,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,11,2016-09-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16272,25272,GO-20161744612,B&E,2016-09-28,2016,September,Wednesday,28,272,22,2016-10-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16273,25278,GO-20169012139,THEFT UNDER - BICYCLE,2016-10-16,2016,October,Sunday,16,290,16,2016-10-16,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16274,25287,GO-20169015078,THEFT UNDER - BICYCLE,2016-12-25,2016,December,Sunday,25,360,13,2016-12-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16275,25291,GO-2017403944,B&E,2017-03-02,2017,March,Thursday,2,61,23,2017-03-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16276,25303,GO-20179006543,B&E,2017-05-17,2017,May,Wednesday,17,137,18,2017-05-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16277,48,GO-20161180827,B&E,2016-07-04,2016,July,Monday,4,186,23,2016-07-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16278,99,GO-2017330581,THEFT UNDER - BICYCLE,2017-02-22,2017,February,Wednesday,22,53,4,2017-02-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16279,159,GO-20179003409,THEFT UNDER,2017-03-15,2017,March,Wednesday,15,74,18,2017-03-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16280,178,GO-20179003961,THEFT UNDER - BICYCLE,2017-03-28,2017,March,Tuesday,28,87,19,2017-03-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16281,236,GO-2017672624,B&E,2017-04-15,2017,April,Saturday,15,105,17,2017-04-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16282,352,GO-20179006039,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,15,2017-05-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16283,482,GO-20179007064,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,17,2017-05-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16284,752,GO-20179009192,THEFT UNDER,2017-06-28,2017,June,Wednesday,28,179,1,2017-06-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16285,803,GO-20171223872,THEFT OF EBIKE UNDER $5000,2017-07-07,2017,July,Friday,7,188,20,2017-07-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16286,925,GO-20171298615,THEFT UNDER,2017-07-19,2017,July,Wednesday,19,200,6,2017-07-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16287,937,GO-20179010723,THEFT OVER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,14,2017-07-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16288,1186,GO-20179012797,THEFT UNDER - BICYCLE,2017-08-17,2017,August,Thursday,17,229,23,2017-08-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16289,1203,GO-20179012958,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,0,2017-08-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16290,1205,GO-20179012797,THEFT UNDER - BICYCLE,2017-08-17,2017,August,Thursday,17,229,23,2017-08-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16291,1270,GO-20179013642,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,10,2017-08-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16292,7229,GO-20209022928,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,21,2020-09-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16293,25302,GO-20179006546,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,2,2017-05-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16294,1978,GO-201865266,B&E,2017-12-24,2017,December,Sunday,24,358,12,2018-01-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16295,21409,GO-20169009039,THEFT UNDER,2016-08-16,2016,August,Tuesday,16,229,21,2016-08-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16296,18495,GO-20169005200,THEFT UNDER,2016-05-30,2016,May,Monday,30,151,21,2016-06-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16297,21422,GO-20161621018,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,22,2016-09-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16298,21435,GO-20169011958,THEFT OF EBIKE UNDER $5000,2016-10-09,2016,October,Sunday,9,283,16,2016-10-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16299,15359,GO-20142839803,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,9,2014-09-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16300,7272,GO-20209023551,THEFT UNDER,2020-09-17,2020,September,Thursday,17,261,15,2020-09-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16301,18773,GO-20209027942,THEFT UNDER,2020-10-28,2020,October,Wednesday,28,302,10,2020-10-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16302,1979,GO-201865266,B&E,2017-12-24,2017,December,Sunday,24,358,12,2018-01-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16303,25304,GO-2017947902,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,18,2017-05-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16304,15396,GO-2015774311,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,17,2015-05-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16305,8636,GO-20149005793,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,2,2014-08-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16306,21441,GO-20161892341,THEFT OF EBIKE UNDER $5000,2016-10-24,2016,October,Monday,24,298,14,2016-10-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16307,15372,GO-20143120263,B&E,2014-10-14,2014,October,Tuesday,14,287,14,2014-10-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16308,7418,GO-20201895950,THEFT UNDER,2020-10-05,2020,October,Monday,5,279,15,2020-10-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16309,18792,GO-20209032336,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,19,2020-12-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16310,2005,GO-20189002745,THEFT UNDER,2018-01-27,2018,January,Saturday,27,27,14,2018-01-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16311,25802,GO-20202208352,THEFT UNDER - BICYCLE,2020-11-04,2020,November,Wednesday,4,309,16,2020-11-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16312,85,GO-20179001712,THEFT UNDER - BICYCLE,2017-02-07,2017,February,Tuesday,7,38,22,2017-02-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16313,17340,GO-20209015582,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,23,2020-06-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16314,8684,GO-20149006042,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,21,2014-08-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16315,15402,GO-20159003313,THEFT UNDER,2015-06-03,2015,June,Wednesday,3,154,7,2015-06-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16316,93,GO-20179002111,THEFT UNDER - BICYCLE,2017-02-17,2017,February,Friday,17,48,18,2017-02-17,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16317,2045,GO-20189005787,THEFT UNDER - BICYCLE,2017-12-25,2017,December,Monday,25,359,12,2018-02-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16318,7427,GO-20209025767,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,8,2020-10-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16319,8686,GO-20149006064,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,15,2014-08-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16320,15384,GO-20149008621,THEFT UNDER,2014-12-06,2014,December,Saturday,6,340,12,2014-12-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16321,19405,GO-20179007154,THEFT UNDER,2017-05-28,2017,May,Sunday,28,148,23,2017-05-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16322,21448,GO-20162039061,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,18,2016-11-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16323,19418,GO-20171201232,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,19,2017-07-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16324,2125,GO-20189010158,THEFT UNDER - BICYCLE,2017-11-21,2017,November,Tuesday,21,325,20,2018-04-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16325,134,GO-20179002783,THEFT UNDER - BICYCLE,2017-03-03,2017,March,Friday,3,62,23,2017-03-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16326,7447,GO-20209026151,THEFT UNDER,2020-10-08,2020,October,Thursday,8,282,1,2020-10-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16327,21452,GO-20162198347,B&E,2016-12-12,2016,December,Monday,12,347,4,2016-12-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16328,8816,GO-20142854232,B&E,2014-09-05,2014,September,Friday,5,248,20,2014-09-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16329,15413,GO-20159003946,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,7,2015-06-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16330,15416,GO-20151102021,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,22,2015-06-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16331,19430,GO-20179011741,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,7,2017-08-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16332,2167,GO-2018681502,THEFT UNDER - BICYCLE,2018-04-13,2018,April,Friday,13,103,20,2018-04-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16333,174,GO-20179003855,THEFT UNDER - BICYCLE,2017-03-20,2017,March,Monday,20,79,15,2017-03-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16334,7455,GO-20209026251,THEFT UNDER,2020-10-11,2020,October,Sunday,11,285,23,2020-10-13,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16335,21453,GO-20162198347,B&E,2016-12-12,2016,December,Monday,12,347,4,2016-12-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16336,15441,GO-20159005635,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,8,2015-08-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16337,15475,GO-20159010550,THEFT UNDER,2015-12-03,2015,December,Thursday,3,337,0,2015-12-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16338,15500,GO-20169004747,THEFT UNDER,2016-05-19,2016,May,Thursday,19,140,18,2016-05-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16339,15504,GO-2016968737,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,23,2016-06-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16340,15505,GO-2016968737,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,23,2016-06-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16341,15506,GO-2016968737,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,23,2016-06-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16342,15515,GO-20161123180,THEFT UNDER - BICYCLE,2016-06-25,2016,June,Saturday,25,177,18,2016-06-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16343,15550,GO-20169010147,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,13,2016-09-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16344,15566,GO-20169012110,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,11,2016-10-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16345,15576,GO-20169013569,THEFT UNDER - BICYCLE,2016-11-15,2016,November,Tuesday,15,320,1,2016-11-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16346,17351,GO-20209016935,THEFT UNDER,2020-07-04,2020,July,Saturday,4,186,23,2020-07-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16347,17353,GO-20209017298,THEFT UNDER,2020-07-10,2020,July,Friday,10,192,20,2020-07-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16348,17354,GO-20209017571,THEFT UNDER,2020-07-12,2020,July,Sunday,12,194,10,2020-07-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16349,17357,GO-20201368992,B&E,2020-07-22,2020,July,Wednesday,22,204,20,2020-07-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16350,17358,GO-20201368992,B&E,2020-07-22,2020,July,Wednesday,22,204,20,2020-07-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16351,17384,GO-20209022034,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,3,2020-09-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16352,17392,GO-20209023957,THEFT UNDER,2020-09-20,2020,September,Sunday,20,264,21,2020-09-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16353,17401,GO-20209026766,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,12,2020-10-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16354,17405,GO-20202058880,MISCHIEF UNDER,2020-10-26,2020,October,Monday,26,300,17,2020-10-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16355,17411,GO-20202228751,THEFT UNDER - BICYCLE,2020-11-19,2020,November,Thursday,19,324,19,2020-11-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16356,17413,GO-20209030843,THEFT UNDER,2020-11-26,2020,November,Thursday,26,331,17,2020-11-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16357,17556,GO-20199012427,THEFT UNDER,2019-04-19,2019,April,Friday,19,109,2,2019-04-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16358,17557,GO-2019706250,THEFT UNDER,2019-04-19,2019,April,Friday,19,109,7,2019-04-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16359,17583,GO-20199019254,THEFT UNDER - BICYCLE,2019-06-16,2019,June,Sunday,16,167,1,2019-06-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16360,17590,GO-20199020822,THEFT UNDER,2019-06-24,2019,June,Monday,24,175,0,2019-07-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16361,17591,GO-20199020907,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,7,2019-07-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16362,17594,GO-20199022240,THEFT UNDER - BICYCLE,2019-07-13,2019,July,Saturday,13,194,1,2019-07-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16363,17597,GO-20191318278,THEFT UNDER - BICYCLE,2019-07-14,2019,July,Sunday,14,195,11,2019-07-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16364,17599,GO-20199022748,THEFT UNDER,2019-07-18,2019,July,Thursday,18,199,7,2019-07-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16365,17612,GO-20199024397,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,14,2019-07-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16366,17613,GO-20199024397,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,14,2019-07-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16367,17635,GO-20199029244,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,2,2019-09-09,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16368,17638,GO-20199030084,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,19,2019-09-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16369,17703,GO-2020623781,THEFT UNDER,2020-03-25,2020,March,Wednesday,25,85,14,2020-03-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16370,17709,GO-20209011772,THEFT UNDER,2020-04-22,2020,April,Wednesday,22,113,18,2020-04-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16371,17711,GO-20209012004,THEFT UNDER,2020-04-21,2020,April,Tuesday,21,112,14,2020-04-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16372,17720,GO-20171568912,THEFT OF EBIKE UNDER $5000,2017-08-29,2017,August,Tuesday,29,241,22,2017-08-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16373,17748,GO-20171851614,B&E,2017-06-28,2017,June,Wednesday,28,179,8,2017-10-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16374,17752,GO-20179018528,THEFT UNDER - BICYCLE,2017-10-29,2017,October,Sunday,29,302,2,2017-10-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16375,17771,GO-20179020969,THEFT UNDER,2017-11-20,2017,November,Monday,20,324,7,2017-12-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16376,17802,GO-2018769996,THEFT FROM MOTOR VEHICLE UNDER,2018-04-29,2018,April,Sunday,29,119,19,2018-04-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16377,17806,GO-20189013768,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,10,2018-05-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16378,17807,GO-20189013891,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,23,2018-05-05,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16379,17827,GO-20189018623,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,23,2018-06-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16380,17828,GO-20189018623,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,23,2018-06-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16381,17845,GO-20189020443,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,19,2018-06-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16382,17848,GO-20189020859,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,11,2018-07-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16383,17854,GO-20181269534,B&E,2018-07-12,2018,July,Thursday,12,193,5,2018-07-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16384,17857,GO-20189022262,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,10,2018-07-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16385,18175,GO-20169012726,THEFT UNDER,2016-10-23,2016,October,Sunday,23,297,11,2016-10-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16386,17862,GO-20189023685,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,3,2018-07-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16387,17865,GO-20189024180,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,23,2018-07-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16388,17877,GO-20189025661,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,15,2018-08-09,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16389,17881,GO-20189026449,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,21,2018-08-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16390,17886,GO-20189027070,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,20,2018-08-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16391,17903,GO-20181676617,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,23,2018-09-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16392,18102,GO-20179011454,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,23,2017-08-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16393,19457,GO-20179018405,THEFT UNDER,2017-10-27,2017,October,Friday,27,300,5,2017-10-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16394,18103,GO-20179011454,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,23,2017-08-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16395,18112,GO-20179012802,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,22,2017-08-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16396,18124,GO-20161213237,THEFT UNDER - BICYCLE,2016-07-10,2016,July,Sunday,10,192,18,2016-07-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16397,18125,GO-20169007165,THEFT UNDER,2016-07-13,2016,July,Wednesday,13,195,11,2016-07-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16398,18135,GO-20161447725,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,16,2016-08-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16399,18144,GO-20169009783,THEFT UNDER - BICYCLE,2016-08-13,2016,August,Saturday,13,226,9,2016-09-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16400,18151,GO-20169010831,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,22,2016-09-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16401,18163,GO-20169011288,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,10,2016-09-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16402,18182,GO-201798746,B&E,2017-01-17,2017,January,Tuesday,17,17,3,2017-01-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16403,18209,GO-2017879132,B&E,2017-05-17,2017,May,Wednesday,17,137,6,2017-05-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16404,18350,GO-20149004923,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,12,2014-07-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16405,18384,GO-20149008755,THEFT UNDER,2014-12-12,2014,December,Friday,12,346,18,2014-12-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16406,18392,GO-20159001921,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,1,2015-04-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16407,18408,GO-20159003111,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,2,2015-05-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16408,18421,GO-20159004151,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,3,2015-07-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16409,18426,GO-20151178546,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,19,2015-07-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16410,18478,GO-2016678594,THEFT UNDER - BICYCLE,2016-04-21,2016,April,Thursday,21,112,1,2016-04-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16411,18482,GO-2016745876,THEFT UNDER - BICYCLE,2016-05-01,2016,May,Sunday,1,122,17,2016-05-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16412,20784,GO-20201409602,B&E,2020-07-29,2020,July,Wednesday,29,211,5,2020-07-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16413,20785,GO-20201409602,B&E,2020-07-29,2020,July,Wednesday,29,211,5,2020-07-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16414,20786,GO-20201409602,B&E,2020-07-29,2020,July,Wednesday,29,211,5,2020-07-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16415,20787,GO-20201409602,B&E,2020-07-29,2020,July,Wednesday,29,211,5,2020-07-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16416,20793,GO-20209020001,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,22,2020-08-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16417,20799,GO-20201580249,B&E,2020-08-20,2020,August,Thursday,20,233,22,2020-08-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16418,20803,GO-20209022380,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,18,2020-09-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16419,20810,GO-20209022644,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,0,2020-09-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16420,20817,GO-20209024825,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,10,2020-09-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16421,21454,GO-20162198347,B&E,2016-12-12,2016,December,Monday,12,347,4,2016-12-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16422,19432,GO-20171463939,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,12,2017-08-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16423,2169,GO-20189011482,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,0,2018-04-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16424,320,GO-20179005603,THEFT UNDER - BICYCLE,2017-05-02,2017,May,Tuesday,2,122,0,2017-05-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16425,21455,GO-20162198347,B&E,2016-12-12,2016,December,Monday,12,347,4,2016-12-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16426,2251,GO-20189013768,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,10,2018-05-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16427,2293,GO-20189014645,THEFT UNDER,2018-05-12,2018,May,Saturday,12,132,12,2018-05-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16428,7541,GO-20209027601,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,17,2020-10-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16429,21496,GO-20179007808,THEFT UNDER,2017-06-09,2017,June,Friday,9,160,15,2017-06-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16430,19466,GO-20173200832,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,16,2017-12-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16431,2298,GO-20189014790,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,21,2018-05-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16432,414,GO-20179006563,THEFT UNDER - BICYCLE,2017-05-06,2017,May,Saturday,6,126,1,2017-05-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16433,7585,GO-20209028394,THEFT UNDER,2020-10-28,2020,October,Wednesday,28,302,12,2020-11-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16434,21804,GO-20149004755,THEFT UNDER,2014-06-23,2014,June,Monday,23,174,20,2014-07-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16435,21806,GO-20149004931,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,15,2014-07-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16436,21881,GO-20159003894,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,14,2015-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16437,21883,GO-20159003945,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,16,2015-06-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16438,21913,GO-20151438539,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,10,2015-08-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16439,21948,GO-20169002468,THEFT UNDER,2016-03-10,2016,March,Thursday,10,70,19,2016-03-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16440,22158,GO-20179008817,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,6,2017-06-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16441,22606,GO-20191390368,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,0,2019-07-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16442,22655,GO-20191897138,THEFT UNDER - BICYCLE,2019-09-24,2019,September,Tuesday,24,267,10,2019-10-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16443,22696,GO-20209008713,THEFT UNDER,2020-03-12,2020,March,Thursday,12,72,22,2020-03-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16444,23008,GO-20179003987,THEFT UNDER - BICYCLE,2017-03-25,2017,March,Saturday,25,84,22,2017-03-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16445,23014,GO-2017871963,PROPERTY - FOUND,2017-05-17,2017,May,Wednesday,17,137,20,2017-05-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16446,23021,GO-20171017174,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,1,2017-06-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16447,23022,GO-20179007776,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,13,2017-06-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16448,23034,GO-20179008937,THEFT UNDER - BICYCLE,2017-06-25,2017,June,Sunday,25,176,20,2017-06-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16449,23035,GO-20179008968,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,18,2017-06-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16450,23045,GO-20171425185,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,12,2017-08-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16451,23050,GO-20179012492,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,14,2017-08-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16452,23052,GO-20171531398,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,15,2017-08-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16453,23064,GO-20179016463,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,21,2017-10-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16454,23134,GO-20181399309,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,16,2018-07-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16455,23140,GO-20189026768,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,12,2018-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16456,23147,GO-20181674942,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,13,2018-09-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16457,23155,GO-20189032568,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,15,2018-10-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16458,23161,GO-20181878914,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,13,2018-10-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16459,23167,GO-20189036167,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,9,2018-10-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16460,23187,GO-20199021150,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,9,2019-07-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16461,23858,GO-20209027882,THEFT UNDER,2020-10-26,2020,October,Monday,26,300,22,2020-10-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16462,23863,GO-20209029892,THEFT UNDER,2020-11-16,2020,November,Monday,16,321,13,2020-11-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16463,23989,GO-20189034076,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,21,2018-10-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16464,24034,GO-20199015106,THEFT UNDER - BICYCLE,2019-05-15,2019,May,Wednesday,15,135,9,2019-05-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16465,24077,GO-20199024276,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,13,2019-07-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16466,24102,GO-20191779454,THEFT UNDER - BICYCLE,2019-09-13,2019,September,Friday,13,256,13,2019-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16467,24125,GO-20199037474,THEFT UNDER,2019-11-14,2019,November,Thursday,14,318,13,2019-11-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16468,24130,GO-20199039421,THEFT UNDER,2019-11-30,2019,November,Saturday,30,334,16,2019-11-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16469,24131,GO-20199039421,THEFT UNDER,2019-11-30,2019,November,Saturday,30,334,16,2019-11-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16470,24170,GO-20209012821,THEFT UNDER,2020-05-02,2020,May,Saturday,2,123,15,2020-05-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16471,24190,GO-20209015640,THEFT UNDER,2020-06-18,2020,June,Thursday,18,170,0,2020-06-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16472,24343,GO-20189022838,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,18,2018-07-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16473,24353,GO-20189024950,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,13,2018-08-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16474,24354,GO-20189024950,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,13,2018-08-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16475,24364,GO-20189026485,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,0,2018-08-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16476,24608,GO-20142337758,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,21,2014-06-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16477,24612,GO-20149004498,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,17,2014-06-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16478,8817,GO-20142854232,B&E,2014-09-05,2014,September,Friday,5,248,20,2014-09-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16479,24614,GO-20149004599,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,18,2014-07-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16480,24616,GO-20142431728,THEFT FROM MOTOR VEHICLE OVER,2014-07-04,2014,July,Friday,4,185,16,2014-07-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16481,24634,GO-20149005365,THEFT UNDER,2013-11-14,2013,November,Thursday,14,318,16,2014-07-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16482,15414,GO-20159003946,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,7,2015-06-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16483,24639,GO-20149006224,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,2,2014-08-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16484,24640,GO-20149006224,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,2,2014-08-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16485,24709,GO-20159003753,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,8,2015-06-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16486,24734,GO-20151397913,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,18,2015-08-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16487,24745,GO-20151513247,B&E,2015-09-02,2015,September,Wednesday,2,245,11,2015-09-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16488,24759,GO-20151760034,B&E,2015-10-11,2015,October,Sunday,11,284,20,2015-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16489,24760,GO-20151760034,B&E,2015-10-11,2015,October,Sunday,11,284,20,2015-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16490,24761,GO-20151760034,B&E,2015-10-11,2015,October,Sunday,11,284,20,2015-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16491,24762,GO-20151760034,B&E,2015-10-11,2015,October,Sunday,11,284,20,2015-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16492,24763,GO-20151760034,B&E,2015-10-11,2015,October,Sunday,11,284,20,2015-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16493,24764,GO-20151760034,B&E,2015-10-11,2015,October,Sunday,11,284,20,2015-10-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16494,24785,GO-20149004016,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,13,2014-06-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16495,24797,GO-20142463182,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,19,2014-07-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16496,24804,GO-20142562513,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,19,2014-07-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16497,24819,GO-20142753726,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,10,2014-08-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16498,24835,GO-20143108519,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,16,2014-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16499,24836,GO-20149007596,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,18,2014-10-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16500,24844,GO-2015469580,THEFT UNDER,2015-03-19,2015,March,Thursday,19,78,17,2015-03-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16501,24863,GO-2015929770,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,8,2015-06-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16502,24871,GO-20151054102,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,13,2015-06-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16503,24876,GO-20151168905,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,16,2015-07-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16504,24894,GO-20159007713,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,15,2015-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16505,24898,GO-20159010830,THEFT UNDER,2015-12-10,2015,December,Thursday,10,344,22,2015-12-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16506,24903,GO-2016203451,THEFT UNDER,2016-02-01,2016,February,Monday,1,32,12,2016-02-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16507,24905,GO-20169002233,THEFT UNDER,2016-03-11,2016,March,Friday,11,71,12,2016-03-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16508,24910,GO-2016642713,FTC PROBATION ORDER,2016-03-30,2016,March,Wednesday,30,90,13,2016-04-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16509,24932,GO-20161074920,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,9,2016-06-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16510,24965,GO-20161537027,THEFT UNDER - BICYCLE,2016-08-26,2016,August,Friday,26,239,16,2016-08-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16511,24969,GO-20161615525,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,21,2016-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16512,24970,GO-20161615525,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,21,2016-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16513,24972,GO-20161633679,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,12,2016-09-14,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16514,25228,GO-20169007437,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,21,2016-07-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16515,25244,GO-20169008908,THEFT UNDER,2016-08-16,2016,August,Tuesday,16,229,9,2016-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16516,25267,GO-20169011005,THEFT UNDER - BICYCLE,2016-09-22,2016,September,Thursday,22,266,20,2016-09-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16517,25282,GO-20169012914,THEFT UNDER,2016-10-30,2016,October,Sunday,30,304,21,2016-11-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16518,25285,GO-20169013473,THEFT UNDER,2016-11-12,2016,November,Saturday,12,317,21,2016-11-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16519,25290,GO-20179002663,THEFT UNDER - BICYCLE,2016-12-01,2016,December,Thursday,1,336,0,2017-03-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16520,19467,GO-20173220610,THEFT UNDER - BICYCLE,2017-10-13,2017,October,Friday,13,286,10,2017-12-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16521,7618,GO-20209029297,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,3,2020-11-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16522,477,GO-20179007019,THEFT UNDER,2017-05-25,2017,May,Thursday,25,145,22,2017-05-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16523,2330,GO-20189015222,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,23,2018-05-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16524,2424,GO-20189016758,THEFT UNDER - BICYCLE,2018-05-29,2018,May,Tuesday,29,149,23,2018-05-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16525,2577,GO-20189018640,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,12,2018-06-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16526,2589,GO-20189018950,THEFT UNDER,2018-06-13,2018,June,Wednesday,13,164,0,2018-06-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16527,2629,GO-20189019489,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,23,2018-06-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16528,2733,GO-20189020859,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,11,2018-07-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16529,19587,GO-20191133447,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,11,2019-06-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16530,2750,GO-20189021122,THEFT UNDER - BICYCLE,2018-06-01,2018,June,Friday,1,152,11,2018-07-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16531,2767,GO-20189021392,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,9,2018-07-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16532,2821,GO-20189022135,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,7,2018-07-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16533,2917,GO-20189023440,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,0,2018-07-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16534,7801,GO-20141802880,THEFT UNDER,2014-03-31,2014,March,Monday,31,90,16,2014-03-31,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16535,2970,GO-20189023968,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,18,2018-07-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16536,19469,GO-2018185673,THEFT UNDER - BICYCLE,2017-11-25,2017,November,Saturday,25,329,17,2018-01-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16537,480,GO-20179007055,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,23,2017-05-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16538,7824,GO-20141859602,THEFT UNDER,2014-04-09,2014,April,Wednesday,9,99,17,2014-04-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16539,2971,GO-20189023968,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,18,2018-07-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16540,19502,GO-20181161842,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,19,2018-06-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16541,485,GO-20179007085,THEFT UNDER,2017-05-27,2017,May,Saturday,27,147,20,2017-05-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16542,8882,GO-20149006862,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,13,2014-09-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16543,15428,GO-20159004708,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,23,2015-07-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16544,19503,GO-20189020366,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,19,2018-06-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16545,15429,GO-20159004708,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,23,2015-07-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16546,19505,GO-20181166930,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,23,2018-06-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16547,15486,GO-20169002914,THEFT UNDER - BICYCLE,2016-03-27,2016,March,Sunday,27,87,1,2016-03-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16548,15487,GO-20169003010,THEFT UNDER - BICYCLE,2016-04-02,2016,April,Saturday,2,93,14,2016-04-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16549,15525,GO-20169007641,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,2,2016-07-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16550,15547,GO-2016373904,PROPERTY - FOUND,2016-08-04,2016,August,Thursday,4,217,23,2016-09-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16551,15585,GO-20179003049,THEFT UNDER,2017-03-09,2017,March,Thursday,9,68,23,2017-03-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16552,15601,GO-20179005016,THEFT UNDER - BICYCLE,2017-04-20,2017,April,Thursday,20,110,23,2017-04-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16553,15603,GO-20179005540,THEFT UNDER - BICYCLE,2017-04-30,2017,April,Sunday,30,120,5,2017-05-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16554,15613,GO-20179008037,THEFT UNDER,2017-06-12,2017,June,Monday,12,163,9,2017-06-13,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16555,15616,GO-20179008435,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,23,2017-06-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16556,17325,GO-20209013151,THEFT UNDER,2020-05-14,2020,May,Thursday,14,135,0,2020-05-14,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16557,17338,GO-20209015425,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,9,2020-06-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16558,17352,GO-20209017006,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,23,2020-07-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16559,17368,GO-20209019511,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,17,2020-08-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16560,17375,GO-20209020707,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,14,2020-08-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16561,17381,GO-20209021738,THEFT UNDER,2020-08-29,2020,August,Saturday,29,242,6,2020-08-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16562,17569,GO-20199016059,THEFT UNDER - BICYCLE,2019-05-14,2019,May,Tuesday,14,134,17,2019-05-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16563,8907,GO-20142930911,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,21,2014-09-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16564,486,GO-20179007085,THEFT UNDER,2017-05-27,2017,May,Saturday,27,147,20,2017-05-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16565,3103,GO-20181450963,THEFT UNDER,2018-08-06,2018,August,Monday,6,218,6,2018-08-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16566,7894,GO-20142038838,THEFT UNDER,2014-04-30,2014,April,Wednesday,30,120,18,2014-05-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16567,17570,GO-20199016203,THEFT UNDER - BICYCLE,2019-05-20,2019,May,Monday,20,140,12,2019-05-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16568,17578,GO-20191105157,THEFT UNDER,2019-06-14,2019,June,Friday,14,165,20,2019-06-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16569,17596,GO-20199022283,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,1,2019-07-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16570,17598,GO-20199022706,THEFT UNDER,2019-07-17,2019,July,Wednesday,17,198,8,2019-07-17,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16571,17610,GO-20199023590,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,2,2019-07-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16572,17642,GO-20199030996,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,14,2019-09-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16573,17649,GO-20199032721,THEFT UNDER - BICYCLE,2019-10-03,2019,October,Thursday,3,276,0,2019-10-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16574,17664,GO-20192165751,THEFT UNDER - BICYCLE,2019-11-09,2019,November,Saturday,9,313,0,2019-11-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16575,17665,GO-20192165751,THEFT UNDER - BICYCLE,2019-11-09,2019,November,Saturday,9,313,0,2019-11-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16576,17666,GO-20192165751,THEFT UNDER - BICYCLE,2019-11-09,2019,November,Saturday,9,313,0,2019-11-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16577,17686,GO-20209004213,THEFT UNDER,2020-02-04,2020,February,Tuesday,4,35,8,2020-02-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16578,17689,GO-20209006993,THEFT UNDER,2020-02-26,2020,February,Wednesday,26,57,8,2020-02-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16579,17698,GO-20209007403,THEFT UNDER - BICYCLE,2020-03-01,2020,March,Sunday,1,61,11,2020-03-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16580,17704,GO-20209010597,THEFT UNDER - BICYCLE,2020-04-05,2020,April,Sunday,5,96,12,2020-04-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16581,17713,GO-20209012163,THEFT UNDER,2020-04-28,2020,April,Tuesday,28,119,21,2020-04-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16582,17718,GO-20179013498,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,23,2017-08-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16583,17721,GO-20179013775,THEFT UNDER - BICYCLE,2017-08-30,2017,August,Wednesday,30,242,18,2017-08-31,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16584,19812,GO-20142971597,THEFT UNDER,2014-09-22,2014,September,Monday,22,265,13,2014-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16585,17764,GO-20179019571,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,20,2017-11-14,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16586,17792,GO-20189006001,THEFT UNDER - BICYCLE,2018-02-25,2018,February,Sunday,25,56,15,2018-02-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16587,17810,GO-20189015058,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,21,2018-05-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16588,17813,GO-20189015521,THEFT UNDER - BICYCLE,2018-05-18,2018,May,Friday,18,138,19,2018-05-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16589,17852,GO-20189021855,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,1,2018-07-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16590,17855,GO-20189022156,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,2,2018-07-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16591,17872,GO-20189025048,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,21,2018-08-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16592,19964,GO-2017121119,THEFT UNDER - BICYCLE,2017-01-19,2017,January,Thursday,19,19,14,2017-01-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16593,17902,GO-20189030011,THEFT UNDER - BICYCLE,2018-09-10,2018,September,Monday,10,253,23,2018-09-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16594,18088,GO-20179009930,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,2,2017-07-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16595,18095,GO-20179010474,THEFT UNDER,2017-07-15,2017,July,Saturday,15,196,8,2017-07-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16596,18121,GO-20169006650,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,0,2016-07-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16597,18122,GO-20169006688,THEFT UNDER,2016-07-04,2016,July,Monday,4,186,11,2016-07-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16598,18158,GO-20161688382,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,14,2016-09-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16599,18164,GO-20169011416,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,16,2016-10-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16600,18171,GO-20161854738,THEFT UNDER - SHOPLIFTING,2016-10-18,2016,October,Tuesday,18,292,16,2016-10-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16601,18178,GO-20169013643,THEFT UNDER - BICYCLE,2016-11-20,2016,November,Sunday,20,325,8,2016-11-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16602,18179,GO-20162152991,THEFT UNDER - BICYCLE,2016-12-01,2016,December,Thursday,1,336,0,2016-12-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16603,18181,GO-20169015117,THEFT UNDER - BICYCLE,2016-12-26,2016,December,Monday,26,361,15,2016-12-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16604,18193,GO-20179004008,THEFT UNDER - BICYCLE,2017-03-29,2017,March,Wednesday,29,88,19,2017-03-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16605,18198,GO-20179004928,THEFT UNDER,2017-04-19,2017,April,Wednesday,19,109,1,2017-04-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16606,18200,GO-20179005736,THEFT UNDER - BICYCLE,2017-05-02,2017,May,Tuesday,2,122,17,2017-05-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16607,18207,GO-20179006599,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,15,2017-05-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16608,20650,GO-20191840341,THEFT UNDER,2019-09-13,2019,September,Friday,13,256,9,2019-09-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16609,18208,GO-20179006599,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,15,2017-05-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16610,18220,GO-20179008682,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,21,2017-06-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16611,18377,GO-20143200633,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,19,2014-10-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16612,18389,GO-2015545190,THEFT UNDER,2015-04-02,2015,April,Thursday,2,92,0,2015-04-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16613,18397,GO-20159002215,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,7,2015-04-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16614,18406,GO-20159003076,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,0,2015-05-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16615,18407,GO-2015880108,PROPERTY - FOUND,2015-05-26,2015,May,Tuesday,26,146,18,2015-05-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16616,18452,GO-20151519019,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,22,2015-09-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16617,18461,GO-20159007756,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,15,2015-09-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16618,18471,GO-20159011284,THEFT UNDER,2015-12-24,2015,December,Thursday,24,358,13,2015-12-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16619,18474,GO-20169001307,THEFT UNDER,2016-02-09,2016,February,Tuesday,9,40,14,2016-02-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16620,18477,GO-2016564841,THEFT UNDER,2016-03-29,2016,March,Tuesday,29,89,12,2016-04-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16621,18488,GO-2016883596,B&E,2016-05-21,2016,May,Saturday,21,142,22,2016-05-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16622,20789,GO-20209018972,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,5,2020-07-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16623,20801,GO-20209021834,THEFT UNDER,2020-08-29,2020,August,Saturday,29,242,20,2020-08-31,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16624,20825,GO-20209027384,THEFT UNDER,2020-10-21,2020,October,Wednesday,21,295,19,2020-10-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16625,20830,GO-20209028670,THEFT UNDER,2020-10-28,2020,October,Wednesday,28,302,12,2020-11-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16626,20839,GO-20209030855,THEFT UNDER,2020-11-25,2020,November,Wednesday,25,330,1,2020-11-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16627,20968,GO-20189039238,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,21,2018-11-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16628,21018,GO-20199021219,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,1,2019-07-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16629,21020,GO-20199021505,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,18,2019-07-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16630,21056,GO-20199028736,THEFT UNDER - BICYCLE,2019-08-31,2019,August,Saturday,31,243,22,2019-09-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16631,21062,GO-20199029818,THEFT UNDER - BICYCLE,2019-09-09,2019,September,Monday,9,252,2,2019-09-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16632,20827,GO-20209028150,THEFT UNDER,2020-10-30,2020,October,Friday,30,304,19,2020-10-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16633,21064,GO-20191775818,THEFT UNDER - BICYCLE,2019-09-12,2019,September,Thursday,12,255,13,2019-09-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16634,21068,GO-20199031341,THEFT UNDER - BICYCLE,2019-09-19,2019,September,Thursday,19,262,21,2019-09-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16635,21088,GO-20199034877,THEFT UNDER - BICYCLE,2019-10-22,2019,October,Tuesday,22,295,19,2019-10-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16636,21116,GO-2020513405,THEFT UNDER,2020-03-10,2020,March,Tuesday,10,70,8,2020-03-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16637,21129,GO-2020791945,THEFT UNDER - BICYCLE,2020-04-26,2020,April,Sunday,26,117,11,2020-04-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16638,21133,GO-2020848204,THEFT UNDER - BICYCLE,2020-05-06,2020,May,Wednesday,6,127,2,2020-05-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16639,21144,GO-20209014989,THEFT UNDER,2020-06-02,2020,June,Tuesday,2,154,20,2020-06-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16640,21152,GO-20209016135,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,13,2020-06-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16641,19517,GO-20181349963,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,21,2018-07-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16642,19524,GO-20181420346,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,21,2018-08-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16643,19525,GO-20189025578,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,13,2018-08-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16644,19556,GO-20181794187,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,14,2018-09-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16645,19558,GO-20189033154,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,21,2018-10-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16646,19582,GO-20199017384,THEFT UNDER,2019-06-03,2019,June,Monday,3,154,17,2019-06-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16647,19583,GO-20191033890,THEFT UNDER,2019-05-31,2019,May,Friday,31,151,4,2019-06-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16648,19592,GO-20201857305,THEFT OF EBIKE UNDER $5000,2020-09-25,2020,September,Friday,25,269,13,2020-09-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16649,19779,GO-20142550392,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,14,2014-07-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16650,19782,GO-20149005235,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,17,2014-07-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16651,19786,GO-20149005816,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,9,2014-08-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16652,19790,GO-20142746627,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,11,2014-08-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16653,19807,GO-20142886624,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,11,2014-09-11,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16654,19808,GO-20142914564,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,21,2014-09-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16655,19809,GO-20142914708,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,19,2014-09-15,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16656,7909,GO-20149003291,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,2,2014-05-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16657,19814,GO-20143009518,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,8,2014-09-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16658,19827,GO-2015491501,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,17,2015-03-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16659,19828,GO-20159001717,THEFT UNDER,2015-04-03,2015,April,Friday,3,93,15,2015-04-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16660,19832,GO-2015658836,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,10,2015-04-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16661,19851,GO-20151141724,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,11,2015-07-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16662,19868,GO-20159006510,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,10,2015-08-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16663,19872,GO-20151602832,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,14,2015-09-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16664,8949,GO-20149007124,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,4,2014-09-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16665,3162,GO-20189025951,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,9,2018-08-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16666,523,GO-20179007432,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,11,2017-06-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16667,19873,GO-20159007456,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,9,2015-09-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16668,19880,GO-20151900838,THEFT UNDER,2015-11-01,2015,November,Sunday,1,305,12,2015-11-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16669,19887,GO-20152225434,THEFT UNDER,2015-12-04,2015,December,Friday,4,338,14,2015-12-29,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16670,19888,GO-201627372,THEFT UNDER,2015-12-18,2015,December,Friday,18,352,14,2016-01-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16671,19914,GO-20169005680,THEFT UNDER,2016-06-10,2016,June,Friday,10,162,13,2016-06-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16672,19921,GO-20161174021,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,12,2016-07-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16673,19923,GO-20161226057,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,8,2016-07-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16674,19944,GO-20161759929,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,21,2016-10-03,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16675,19945,GO-20161765001,THEFT UNDER - BICYCLE,2016-09-22,2016,September,Thursday,22,266,14,2016-10-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16676,19952,GO-20161909156,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,22,2016-10-27,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16677,19953,GO-20161942720,THEFT UNDER - BICYCLE,2016-10-20,2016,October,Thursday,20,294,8,2016-11-01,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16678,19956,GO-20162072943,THEFT UNDER - BICYCLE,2016-11-17,2016,November,Thursday,17,322,14,2016-11-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16679,19962,GO-2017113234,THEFT UNDER - BICYCLE,2017-01-16,2017,January,Monday,16,16,16,2017-01-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16680,20144,GO-20141948084,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,20,2014-04-24,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16681,20146,GO-20142022009,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,9,2014-05-05,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16682,20147,GO-20142066066,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,15,2014-05-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16683,20154,GO-20142263133,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,23,2014-06-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16684,20165,GO-20149004448,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,9,2014-06-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16685,20595,GO-20191345549,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,22,2019-07-18,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16686,20621,GO-20191576798,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,8,2019-08-19,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16687,20649,GO-20191830199,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,10,2019-09-23,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16688,20652,GO-20191854225,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,21,2019-09-26,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16689,20655,GO-20191898632,THEFT UNDER,2019-09-22,2019,September,Sunday,22,265,16,2019-10-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16690,20693,GO-2020206264,THEFT UNDER,2020-01-08,2020,January,Wednesday,8,8,13,2020-01-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16691,20695,GO-20209008445,THEFT UNDER,2020-03-09,2020,March,Monday,9,69,14,2020-03-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16692,20712,GO-20201016579,THEFT UNDER - BICYCLE,2020-05-31,2020,May,Sunday,31,152,23,2020-06-02,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16693,20741,GO-20209019295,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,13,2020-08-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16694,20783,GO-20209018755,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,13,2020-07-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16695,20820,GO-20209025818,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,19,2020-10-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16696,20980,GO-20199000937,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,19,2019-01-08,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16697,20981,GO-20199001175,THEFT UNDER - BICYCLE,2019-01-09,2019,January,Wednesday,9,9,22,2019-01-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16698,21012,GO-20199019324,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,22,2019-06-20,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16699,21016,GO-20199020403,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,21,2019-06-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16700,21043,GO-20199026664,THEFT UNDER - BICYCLE,2019-08-17,2019,August,Saturday,17,229,0,2019-08-17,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16701,21048,GO-20199027317,THEFT UNDER - BICYCLE,2019-08-22,2019,August,Thursday,22,234,15,2019-08-22,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16702,21077,GO-20199033233,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,10,2019-10-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16703,21114,GO-20209007687,THEFT UNDER,2020-02-15,2020,February,Saturday,15,46,4,2020-03-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16704,21163,GO-20209017684,THEFT UNDER,2020-07-14,2020,July,Tuesday,14,196,23,2020-07-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16705,21164,GO-20209017684,THEFT UNDER,2020-07-14,2020,July,Tuesday,14,196,23,2020-07-16,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16706,21197,GO-20179012240,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,19,2017-08-12,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16707,21205,GO-20179013969,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,17,2017-09-04,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16708,21228,GO-20179018171,THEFT UNDER - BICYCLE,2017-10-25,2017,October,Wednesday,25,298,16,2017-10-25,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16709,21229,GO-20171951453,B&E,2017-10-27,2017,October,Friday,27,300,9,2017-10-28,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16710,21240,GO-20179021657,THEFT UNDER,2017-11-29,2017,November,Wednesday,29,333,23,2017-12-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16711,21273,GO-20189015696,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,23,2018-05-21,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16712,21305,GO-20189021395,THEFT UNDER - BICYCLE,2018-07-06,2018,July,Friday,6,187,3,2018-07-06,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16713,21329,GO-20189025767,THEFT UNDER,2018-08-09,2018,August,Thursday,9,221,17,2018-08-09,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16714,21342,GO-20189030313,THEFT UNDER,2018-09-13,2018,September,Thursday,13,256,8,2018-09-13,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16715,21355,GO-20189033161,THEFT UNDER - BICYCLE,2018-10-07,2018,October,Sunday,7,280,0,2018-10-07,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16716,21361,GO-20181873074,B&E,2018-10-09,2018,October,Tuesday,9,282,19,2018-10-10,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16717,21371,GO-20169005104,THEFT UNDER,2016-05-29,2016,May,Sunday,29,150,3,2016-05-30,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)}",University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -16718,8316,GO-20149004629,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,16,2014-07-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16719,3303,GO-20189027704,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,23,2018-08-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16720,8317,GO-20149004629,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,16,2014-07-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16721,3311,GO-20189023440,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,0,2018-07-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16722,8708,GO-20149006171,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,19,2014-08-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16723,707,GO-20171113775,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,8,2017-06-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16724,3318,GO-20189027882,THEFT UNDER,2018-08-24,2018,August,Friday,24,236,19,2018-08-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16725,8728,GO-20149006285,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,21,2014-08-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16726,708,GO-20171113775,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,8,2017-06-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16727,3511,GO-20189031062,THEFT UNDER,2018-09-19,2018,September,Wednesday,19,262,7,2018-09-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16728,8757,GO-20149006341,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,11,2014-08-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16729,727,GO-20179008978,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,22,2017-06-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16730,3512,GO-20189031062,THEFT UNDER,2018-09-19,2018,September,Wednesday,19,262,7,2018-09-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16731,8775,GO-20149006428,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,10,2014-08-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16732,913,GO-20179010558,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,22,2017-07-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16733,3714,GO-20189034419,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,19,2018-10-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16734,3803,GO-20189036540,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,22,2018-11-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16735,5850,GO-2020179519,THEFT UNDER,2020-01-26,2020,January,Sunday,26,26,6,2020-01-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16736,3809,GO-20182037601,B&E,2018-11-04,2018,November,Sunday,4,308,15,2018-11-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16737,4183,GO-20199012427,THEFT UNDER,2019-04-19,2019,April,Friday,19,109,2,2019-04-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16738,4186,GO-20199012562,THEFT UNDER - BICYCLE,2019-04-18,2019,April,Thursday,18,108,16,2019-04-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16739,4187,GO-20199012571,THEFT UNDER,2019-04-21,2019,April,Sunday,21,111,10,2019-04-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16740,4193,GO-20199012813,THEFT UNDER - BICYCLE,2019-04-23,2019,April,Tuesday,23,113,10,2019-04-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16741,4346,GO-2019961155,THEFT UNDER - BICYCLE,2019-05-24,2019,May,Friday,24,144,14,2019-05-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16742,4357,GO-2019973380,THEFT UNDER,2019-03-27,2019,March,Wednesday,27,86,17,2019-05-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16743,4361,GO-20199016521,THEFT UNDER - BICYCLE,2019-05-24,2019,May,Friday,24,144,9,2019-05-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16744,4764,GO-20199020822,THEFT UNDER,2019-06-24,2019,June,Monday,24,175,0,2019-07-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16745,4770,GO-20199022279,THEFT UNDER - BICYCLE,2019-07-14,2019,July,Sunday,14,195,12,2019-07-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16746,4826,GO-20199023093,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,22,2019-07-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16747,5070,GO-20199026258,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,19,2019-08-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16748,5106,GO-20199026833,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,2,2019-08-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16749,5111,GO-20199026930,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,0,2019-08-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16750,8953,GO-20142968023,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,18,2014-09-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16751,5127,GO-20199027200,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,20,2019-08-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16752,5220,GO-20199028559,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,5,2019-09-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16753,5333,GO-20199030157,THEFT FROM MOTOR VEHICLE UNDER,2019-09-13,2019,September,Friday,13,256,22,2019-09-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16754,5444,GO-20199032132,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,18,2019-09-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16755,5661,GO-20199036810,THEFT UNDER,2019-10-29,2019,October,Tuesday,29,302,19,2019-11-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16756,5743,GO-20199039689,THEFT UNDER,2019-12-03,2019,December,Tuesday,3,337,16,2019-12-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16757,5998,GO-20209010088,THEFT UNDER - BICYCLE,2020-03-29,2020,March,Sunday,29,89,14,2020-03-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16758,6109,GO-20209012004,THEFT UNDER,2020-04-21,2020,April,Tuesday,21,112,14,2020-04-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16759,6136,GO-20209012451,THEFT UNDER,2020-05-01,2020,May,Friday,1,122,3,2020-05-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16760,6156,GO-20209012673,THEFT UNDER,2020-05-06,2020,May,Wednesday,6,127,21,2020-05-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16761,6194,GO-20209013279,THEFT UNDER,2020-05-14,2020,May,Thursday,14,135,12,2020-05-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16762,6196,GO-2020901448,B&E,2020-05-15,2020,May,Friday,15,136,4,2020-05-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16763,6316,GO-20209014762,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,5,2020-06-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16764,6332,GO-20209014709,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,3,2020-06-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16765,6364,GO-20209015123,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,10,2020-06-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16766,6567,GO-20201254425,THEFT UNDER - BICYCLE,2020-07-02,2020,July,Thursday,2,184,20,2020-07-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16767,6592,GO-20209017342,THEFT UNDER,2020-07-11,2020,July,Saturday,11,193,20,2020-07-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16768,6740,GO-20201371189,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,14,2020-07-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16769,6761,GO-20209018702,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,15,2020-07-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16770,6850,GO-20209019241,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,8,2020-08-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16771,6859,GO-20201450815,THEFT FROM MOTOR VEHICLE UNDER,2020-07-30,2020,July,Thursday,30,212,20,2020-08-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16772,6877,GO-20209019473,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,10,2020-08-05,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16773,6884,GO-20209019499,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,0,2020-08-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16774,6887,GO-20209019554,THEFT UNDER,2020-08-06,2020,August,Thursday,6,219,14,2020-08-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16775,7032,GO-20201580249,B&E,2020-08-20,2020,August,Thursday,20,233,22,2020-08-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16776,7074,GO-20209021319,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,8,2020-08-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16777,7172,GO-20209022266,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,18,2020-09-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16778,7200,GO-20201699043,THEFT UNDER - BICYCLE,2020-09-07,2020,September,Monday,7,251,19,2020-09-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16779,7239,GO-20209023151,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,20,2020-09-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16780,7324,GO-20209024139,THEFT UNDER,2020-09-23,2020,September,Wednesday,23,267,5,2020-09-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16781,7406,GO-20209025328,THEFT UNDER,2020-10-02,2020,October,Friday,2,276,15,2020-10-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16782,7424,GO-20209025596,THEFT UNDER,2020-10-06,2020,October,Tuesday,6,280,9,2020-10-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16783,7466,GO-20209026358,THEFT UNDER,2020-10-12,2020,October,Monday,12,286,11,2020-10-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16784,7537,GO-20209027533,THEFT UNDER,2020-10-03,2020,October,Saturday,3,277,14,2020-10-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16785,7572,GO-20209028143,THEFT UNDER,2020-10-29,2020,October,Thursday,29,303,14,2020-10-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16786,7594,GO-20209028666,THEFT UNDER,2020-11-02,2020,November,Monday,2,307,17,2020-11-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16787,7613,GO-20209029170,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,13,2020-11-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16788,7663,GO-20209030588,THEFT UNDER,2020-11-24,2020,November,Tuesday,24,329,18,2020-11-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16789,7684,GO-20209031155,THEFT UNDER,2020-12-03,2020,December,Thursday,3,338,13,2020-12-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16790,7749,GO-20141383941,THEFT UNDER,2014-01-09,2014,January,Thursday,9,9,13,2014-01-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16791,8980,GO-20149007216,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,18,2014-09-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16792,9007,GO-20143026974,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,11,2014-10-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16793,9138,GO-20143223273,THEFT FROM MOTOR VEHICLE UNDER,2014-10-31,2014,October,Friday,31,304,15,2014-11-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16794,9140,GO-20143225771,THEFT UNDER,2014-10-31,2014,October,Friday,31,304,17,2014-11-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16795,9195,GO-20143313638,THEFT UNDER,2014-11-15,2014,November,Saturday,15,319,20,2014-11-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16796,9200,GO-20149008366,THEFT UNDER,2014-11-23,2014,November,Sunday,23,327,14,2014-11-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16797,1020,GO-20179011405,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,0,2017-07-31,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16798,9400,GO-20159001890,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,0,2015-04-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16799,8871,GO-20149006797,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,19,2014-09-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16800,1301,GO-20179013948,THEFT UNDER,2017-09-04,2017,September,Monday,4,247,10,2017-09-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16801,1398,GO-20179014709,THEFT UNDER,2017-09-13,2017,September,Wednesday,13,256,20,2017-09-13,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16802,1461,GO-20179015255,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,1,2017-09-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16803,1499,GO-20179015549,THEFT UNDER,2017-09-23,2017,September,Saturday,23,266,8,2017-09-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16804,1588,GO-20179016460,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,7,2017-10-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16805,1613,GO-20179016720,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,0,2017-10-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16806,1703,GO-20179017685,THEFT UNDER - BICYCLE,2017-10-16,2017,October,Monday,16,289,11,2017-10-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16807,1798,GO-20179018937,THEFT UNDER - BICYCLE,2017-11-04,2017,November,Saturday,4,308,9,2017-11-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16808,1963,GO-20189000284,THEFT UNDER,2018-01-04,2018,January,Thursday,4,4,0,2018-01-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16809,1964,GO-20189000284,THEFT UNDER,2018-01-04,2018,January,Thursday,4,4,0,2018-01-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16810,1973,GO-20189000642,THEFT UNDER - BICYCLE,2018-01-09,2018,January,Tuesday,9,9,6,2018-01-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16811,1997,GO-20189001988,THEFT UNDER - BICYCLE,2018-01-20,2018,January,Saturday,20,20,19,2018-01-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16812,2055,GO-20189006285,THEFT UNDER - BICYCLE,2018-02-27,2018,February,Tuesday,27,58,16,2018-02-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16813,2120,GO-2018571782,B&E,2018-03-29,2018,March,Thursday,29,88,18,2018-03-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16814,2181,GO-20189012273,THEFT UNDER,2018-04-19,2018,April,Thursday,19,109,23,2018-04-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16815,2248,GO-20189013695,THEFT UNDER - BICYCLE,2018-05-02,2018,May,Wednesday,2,122,12,2018-05-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16816,2252,GO-20189013887,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,1,2018-05-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16817,2253,GO-20189013887,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,1,2018-05-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16818,2254,GO-20189013887,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,1,2018-05-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16819,2255,GO-20189013887,THEFT UNDER,2018-05-04,2018,May,Friday,4,124,1,2018-05-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16820,2266,GO-20189014058,THEFT UNDER - BICYCLE,2018-05-06,2018,May,Sunday,6,126,15,2018-05-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16821,2363,GO-2018914418,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,23,2018-05-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16822,2381,GO-20189015950,THEFT UNDER - BICYCLE,2018-05-11,2018,May,Friday,11,131,1,2018-05-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16823,2391,GO-20189016186,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,23,2018-05-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16824,2406,GO-20189016429,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,16,2018-05-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16825,2420,GO-20189016186,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,23,2018-05-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16826,2425,GO-2018978538,THEFT UNDER,2018-05-23,2018,May,Wednesday,23,143,12,2018-05-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16827,2462,GO-20189017420,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,0,2018-06-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16828,2470,GO-20189017509,THEFT UNDER,2018-06-04,2018,June,Monday,4,155,17,2018-06-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16829,2502,GO-20189017866,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,13,2018-06-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16830,2525,GO-20189018103,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,23,2018-06-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16831,2741,GO-20189021035,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,21,2018-07-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16832,2771,GO-20181196246,B&E,2018-06-16,2018,June,Saturday,16,167,23,2018-07-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16833,2830,GO-20189022156,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,2,2018-07-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16834,2896,GO-20189023164,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,23,2018-07-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16835,3073,GO-20189025107,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,23,2018-08-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16836,3136,GO-20189025698,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,0,2018-08-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16837,10010,GO-20159004461,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,0,2015-07-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16838,3137,GO-20189025698,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,0,2018-08-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16839,3492,GO-20189030757,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,0,2018-09-17,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16840,3520,GO-20189031267,THEFT UNDER,2018-09-20,2018,September,Thursday,20,263,2,2018-09-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16841,3596,GO-20189032627,THEFT UNDER,2018-09-28,2018,September,Friday,28,271,22,2018-10-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16842,3741,GO-20189035068,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,12,2018-10-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16843,3744,GO-20189035120,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,14,2018-10-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16844,3762,GO-20189035586,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,21,2018-10-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16845,10086,GO-20151269672,THEFT UNDER,2015-07-25,2015,July,Saturday,25,206,14,2015-07-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16846,3831,GO-20182045601,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,23,2018-11-06,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16847,3835,GO-20189037601,THEFT UNDER - BICYCLE,2018-11-08,2018,November,Thursday,8,312,2,2018-11-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16848,3977,GO-20199000135,THEFT UNDER - BICYCLE,2018-12-24,2018,December,Monday,24,358,12,2019-01-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16849,4340,GO-20199016203,THEFT UNDER - BICYCLE,2019-05-20,2019,May,Monday,20,140,12,2019-05-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16850,4405,GO-20199017301,THEFT UNDER,2019-05-12,2019,May,Sunday,12,132,3,2019-06-03,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16851,4407,GO-20199017348,THEFT UNDER - BICYCLE,2019-06-01,2019,June,Saturday,1,152,1,2019-06-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16852,4427,GO-20199017797,THEFT UNDER - BICYCLE,2019-06-03,2019,June,Monday,3,154,20,2019-06-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16853,4507,GO-20199018825,THEFT UNDER - BICYCLE,2019-06-16,2019,June,Sunday,16,167,3,2019-06-16,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16854,4559,GO-20191126244,THEFT UNDER - BICYCLE,2019-06-18,2019,June,Tuesday,18,169,9,2019-06-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16855,4640,GO-20199020521,THEFT UNDER - BICYCLE,2019-06-29,2019,June,Saturday,29,180,19,2019-06-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16856,4641,GO-20199020521,THEFT UNDER - BICYCLE,2019-06-29,2019,June,Saturday,29,180,19,2019-06-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16857,4922,GO-20199024320,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,2,2019-07-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16858,5120,GO-20199027131,THEFT UNDER - BICYCLE,2019-08-18,2019,August,Sunday,18,230,23,2019-08-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16859,5128,GO-20199027204,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,0,2019-08-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16860,5192,GO-20199028216,THEFT UNDER - BICYCLE,2019-08-29,2019,August,Thursday,29,241,23,2019-08-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16861,5474,GO-20199032721,THEFT UNDER - BICYCLE,2019-10-03,2019,October,Thursday,3,276,0,2019-10-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16862,5515,GO-20199033650,THEFT UNDER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,9,2019-10-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16863,5550,GO-20199034530,THEFT UNDER,2019-10-17,2019,October,Thursday,17,290,9,2019-10-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16864,5669,GO-20199036940,THEFT UNDER - BICYCLE,2019-11-02,2019,November,Saturday,2,306,19,2019-11-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16865,5678,GO-20192175755,THEFT UNDER,2019-11-02,2019,November,Saturday,2,306,0,2019-11-11,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16866,5722,GO-20199038568,THEFT UNDER,2019-11-23,2019,November,Saturday,23,327,0,2019-11-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16867,5738,GO-20199039473,THEFT UNDER,2019-11-29,2019,November,Friday,29,333,19,2019-12-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16868,5819,GO-20209001178,THEFT UNDER,2020-01-10,2020,January,Friday,10,10,14,2020-01-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16869,5931,GO-2020412433,B&E,2020-02-27,2020,February,Thursday,27,58,5,2020-02-27,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16870,5934,GO-20209006993,THEFT UNDER,2020-02-26,2020,February,Wednesday,26,57,8,2020-02-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16871,6021,GO-20209010517,THEFT UNDER,2020-04-02,2020,April,Thursday,2,93,13,2020-04-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16872,6119,GO-2020763142,B&E,2020-04-21,2020,April,Tuesday,21,112,0,2020-04-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16873,6122,GO-20209012163,THEFT UNDER,2020-04-28,2020,April,Tuesday,28,119,21,2020-04-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16874,6222,GO-20209013649,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,3,2020-05-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16875,6223,GO-20209013651,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,3,2020-05-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16876,6224,GO-20209013651,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,3,2020-05-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16877,6225,GO-20209013651,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,3,2020-05-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16878,6247,GO-20209013887,THEFT UNDER - BICYCLE,2020-05-22,2020,May,Friday,22,143,17,2020-05-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16879,6317,GO-20209014769,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,4,2020-06-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16880,8879,GO-20149006837,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,12,2014-09-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16881,8925,GO-20149007033,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,8,2014-09-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16882,8926,GO-20149007036,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,3,2014-09-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16883,9020,GO-20149007400,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,12,2014-10-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16884,9113,GO-20143173534,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,14,2014-10-25,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16885,9161,GO-20149008074,B&E,2014-11-05,2014,November,Wednesday,5,309,21,2014-11-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16886,9592,GO-2015817122,THEFT UNDER,2015-05-16,2015,May,Saturday,16,136,14,2015-05-16,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16887,9621,GO-2015842516,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,17,2015-05-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16888,9732,GO-20159003355,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,23,2015-06-05,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16889,9799,GO-20159003585,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,14,2015-06-13,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16890,9847,GO-20151048816,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,16,2015-06-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16891,9983,GO-20151165925,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,21,2015-07-10,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16892,10013,GO-20159004572,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,22,2015-07-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16893,10046,GO-20159004671,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,16,2015-07-17,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16894,10078,GO-20151244550,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,14,2015-07-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16895,10084,GO-20151251113,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,12,2015-07-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16896,10173,GO-20151350112,ROBBERY - MUGGING,2015-08-07,2015,August,Friday,7,219,5,2015-08-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16897,10264,GO-20159005804,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,5,2015-08-14,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16898,10377,GO-20159006582,THEFT UNDER,2015-08-22,2015,August,Saturday,22,234,0,2015-08-31,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16899,10378,GO-20159006588,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,22,2015-08-31,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16900,11642,GO-20169006384,THEFT UNDER,2016-06-26,2016,June,Sunday,26,178,2,2016-06-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16901,10530,GO-20159007616,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,21,2015-09-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16902,10543,GO-20151595200,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,9,2015-09-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16903,10557,GO-20159007872,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,8,2015-09-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16904,10612,GO-20151743243,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,3,2015-10-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16905,10681,GO-20159008926,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,13,2015-10-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16906,10698,GO-20151854240,THEFT UNDER,2015-10-28,2015,October,Wednesday,28,301,8,2015-10-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16907,10795,GO-20159009960,THEFT UNDER,2015-11-20,2015,November,Friday,20,324,1,2015-11-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16908,23810,GO-20209018324,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,22,2020-07-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -16909,10817,GO-20159010234,THEFT UNDER,2015-11-26,2015,November,Thursday,26,330,2,2015-11-26,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16910,10828,GO-20151048816,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,16,2015-06-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16911,11042,GO-2016431029,THEFT UNDER,2016-03-11,2016,March,Friday,11,71,23,2016-03-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16912,11120,GO-2016598227,B&E,2016-04-07,2016,April,Thursday,7,98,19,2016-04-08,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16913,11360,GO-2016892535,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,9,2016-05-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16914,11389,GO-2016920544,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,8,2016-05-28,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16915,11398,GO-20169005073,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,9,2016-05-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16916,11433,GO-20169005273,THEFT UNDER - BICYCLE,2016-06-02,2016,June,Thursday,2,154,2,2016-06-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16917,11476,GO-20169005501,THEFT UNDER - BICYCLE,2016-06-09,2016,June,Thursday,9,161,8,2016-06-09,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16918,11533,GO-20169005821,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,22,2016-06-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16919,11549,GO-20169005872,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,9,2016-06-16,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16920,11551,GO-20161043785,THEFT OF EBIKE UNDER $5000,2016-06-15,2016,June,Wednesday,15,167,10,2016-06-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16921,11682,GO-20169006639,THEFT UNDER - BICYCLE,2016-07-02,2016,July,Saturday,2,184,14,2016-07-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16922,11778,GO-20169007097,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,18,2016-07-12,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16923,11821,GO-20161259819,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,11,2016-07-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16924,12095,GO-20169008775,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,1,2016-08-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16925,12119,GO-20169008912,THEFT UNDER,2016-08-16,2016,August,Tuesday,16,229,22,2016-08-17,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16926,12331,GO-20169010387,THEFT UNDER,2016-08-08,2016,August,Monday,8,221,10,2016-09-13,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16927,12346,GO-20169010469,THEFT UNDER,2016-09-14,2016,September,Wednesday,14,258,9,2016-09-14,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16928,12348,GO-20161639294,THEFT UNDER - BICYCLE,2016-09-14,2016,September,Wednesday,14,258,22,2016-09-15,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16929,12359,GO-20169010538,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,9,2016-09-16,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16930,12386,GO-20169010634,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,12,2016-09-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16931,12401,GO-20169010742,THEFT UNDER - BICYCLE,2016-07-15,2016,July,Friday,15,197,17,2016-09-19,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16932,12786,GO-20169013573,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,3,2016-11-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16933,14272,GO-20209015661,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,23,2020-06-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16934,14290,GO-20209018891,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,16,2020-07-29,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16935,14298,GO-20201554180,THEFT UNDER - BICYCLE,2020-08-13,2020,August,Thursday,13,226,22,2020-08-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16936,14300,GO-20209021202,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,14,2020-08-24,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16937,14305,GO-20201637631,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,1,2020-08-30,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16938,14332,GO-20209027080,THEFT UNDER,2020-10-08,2020,October,Thursday,8,282,21,2020-10-20,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16939,11615,GO-20161085118,THEFT UNDER,2016-06-18,2016,June,Saturday,18,170,12,2016-06-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16940,14457,GO-20189029123,THEFT UNDER - BICYCLE,2018-09-03,2018,September,Monday,3,246,23,2018-09-04,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16941,14502,GO-20199010373,THEFT UNDER - BICYCLE,2019-04-02,2019,April,Tuesday,2,92,11,2019-04-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16942,14510,GO-2019730713,THEFT UNDER,2019-04-14,2019,April,Sunday,14,104,14,2019-04-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16943,14565,GO-20199027408,THEFT UNDER - BICYCLE,2019-08-22,2019,August,Thursday,22,234,23,2019-08-23,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16944,14583,GO-20199030996,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,14,2019-09-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16945,14592,GO-20192031947,THEFT FROM MOTOR VEHICLE UNDER,2019-10-20,2019,October,Sunday,20,293,23,2019-10-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16946,14636,GO-20209013346,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,12,2020-05-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16947,14695,GO-20179012883,THEFT UNDER,2017-08-18,2017,August,Friday,18,230,13,2017-08-21,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16948,14804,GO-20189019194,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,16,2018-06-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16949,14808,GO-20189019815,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,19,2018-06-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16950,14813,GO-20181196246,B&E,2018-06-16,2018,June,Saturday,16,167,23,2018-07-02,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16951,14833,GO-20189025454,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,1,2018-08-07,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16952,14843,GO-20189026937,THEFT UNDER - BICYCLE,2018-08-17,2018,August,Friday,17,229,12,2018-08-18,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16953,14847,GO-20189027465,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,13,2018-08-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16954,14848,GO-20189027465,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,13,2018-08-22,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16955,15306,GO-20141263784,PROPERTY - FOUND,2014-01-01,2014,January,Wednesday,1,1,18,2014-01-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16956,15312,GO-20149003097,THEFT UNDER,2014-05-01,2014,May,Thursday,1,121,9,2014-05-01,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)}",Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -16957,9561,GO-20159002603,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,15,2015-05-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16958,9678,GO-20159003166,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,1,2015-05-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16959,9859,GO-20159003879,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,0,2015-06-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16960,9864,GO-20159003897,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,7,2015-06-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16961,9878,GO-20151072416,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,19,2015-06-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16962,9992,GO-20159004461,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,0,2015-07-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16963,10137,GO-20151306559,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,23,2015-07-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16964,10163,GO-20151302484,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,0,2015-07-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16965,10236,GO-20151391265,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,18,2015-08-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16966,10249,GO-20151401260,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,9,2015-08-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16967,10277,GO-20159005883,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,3,2015-08-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16968,10325,GO-20159006180,THEFT UNDER,2015-08-20,2015,August,Thursday,20,232,0,2015-08-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16969,10326,GO-20159006180,THEFT UNDER,2015-08-20,2015,August,Thursday,20,232,0,2015-08-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16970,10581,GO-20159008041,THEFT UNDER,2015-10-02,2015,October,Friday,2,275,0,2015-10-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16971,10614,GO-20151744326,THEFT UNDER,2015-10-03,2015,October,Saturday,3,276,13,2015-10-09,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16972,10629,GO-20151776888,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,20,2015-10-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16973,10920,GO-20169000324,FTC PROBATION ORDER,2016-01-10,2016,January,Sunday,10,10,7,2016-01-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16974,10923,GO-20169000415,THEFT UNDER,2016-01-12,2016,January,Tuesday,12,12,12,2016-01-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16975,10928,GO-20169000563,THEFT UNDER,2016-01-12,2016,January,Tuesday,12,12,3,2016-01-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16976,10969,GO-2016209692,THEFT UNDER,2016-02-02,2016,February,Tuesday,2,33,8,2016-02-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16977,10989,GO-20169001371,B&E,2016-01-02,2016,January,Saturday,2,2,13,2016-02-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16978,10992,GO-2016278419,THEFT UNDER,2016-02-13,2016,February,Saturday,13,44,16,2016-02-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16979,11090,GO-2016557527,B&E,2016-01-20,2016,January,Wednesday,20,20,12,2016-04-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16980,11204,GO-2016713092,THEFT UNDER - BICYCLE,2016-04-26,2016,April,Tuesday,26,117,17,2016-04-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16981,11259,GO-20169004160,THEFT UNDER,2016-04-21,2016,April,Thursday,21,112,22,2016-05-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16982,11439,GO-2016678594,THEFT UNDER - BICYCLE,2016-04-21,2016,April,Thursday,21,112,1,2016-04-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16983,11498,GO-20169005599,THEFT UNDER,2016-06-10,2016,June,Friday,10,162,10,2016-06-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16984,11538,GO-20161038444,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,21,2016-06-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16985,11550,GO-20169005873,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,8,2016-06-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16986,11592,GO-20169006098,THEFT UNDER,2016-06-20,2016,June,Monday,20,172,11,2016-06-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16987,11699,GO-20161173138,B&E,2016-07-04,2016,July,Monday,4,186,5,2016-07-05,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16988,11700,GO-20161173138,B&E,2016-07-04,2016,July,Monday,4,186,5,2016-07-05,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16989,11725,GO-20161187282,INCIDENT,2016-07-07,2016,July,Thursday,7,189,10,2016-07-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16990,11755,GO-20161187214,THEFT UNDER - BICYCLE,2016-07-07,2016,July,Thursday,7,189,0,2016-07-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16991,11850,GO-20161249504,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,12,2016-07-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16992,12023,GO-20161373808,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,21,2016-08-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16993,12024,GO-20161373808,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,21,2016-08-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16994,12028,GO-20169008404,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,15,2016-08-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16995,12103,GO-20169008806,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,12,2016-08-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16996,12207,GO-20169009531,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,7,2016-08-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16997,12226,GO-20169009630,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,10,2016-08-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16998,12319,GO-20169010288,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,19,2016-09-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -16999,12379,GO-20161659918,B&E,2016-09-17,2016,September,Saturday,17,261,23,2016-09-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17000,12536,GO-20169011465,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,0,2016-10-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17001,12645,GO-20169012318,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,16,2016-10-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17002,12667,GO-20169012459,THEFT UNDER,2016-07-08,2016,July,Friday,8,190,15,2016-10-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17003,12732,GO-20161981569,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,20,2016-11-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17004,12772,GO-20169013509,THEFT UNDER - BICYCLE,2016-11-16,2016,November,Wednesday,16,321,14,2016-11-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17005,14278,GO-20201233461,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,20,2020-07-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17006,14283,GO-20209017611,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,1,2020-07-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17007,14325,GO-20209026183,THEFT UNDER,2020-10-12,2020,October,Monday,12,286,0,2020-10-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17008,14337,GO-20209029209,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,10,2020-11-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17009,14338,GO-20209029327,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,0,2020-11-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17010,21414,GO-20161492042,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,6,2016-08-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17011,14479,GO-20189039913,THEFT UNDER - BICYCLE,2018-11-23,2018,November,Friday,23,327,20,2018-11-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17012,14499,GO-2019514732,B&E,2019-03-21,2019,March,Thursday,21,80,4,2019-03-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17013,14500,GO-2019514732,B&E,2019-03-21,2019,March,Thursday,21,80,4,2019-03-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17014,14521,GO-20199018802,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,7,2019-06-16,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17015,14533,GO-20199020863,THEFT UNDER - BICYCLE,2019-06-22,2019,June,Saturday,22,173,10,2019-07-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17016,14544,GO-20199022353,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,23,2019-07-15,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17017,14561,GO-20191561966,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,0,2019-08-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17018,14580,GO-20199029913,THEFT UNDER - BICYCLE,2019-08-23,2019,August,Friday,23,235,1,2019-09-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17019,14582,GO-20191808358,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,0,2019-09-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17020,14587,GO-20199033311,THEFT UNDER - BICYCLE,2019-10-08,2019,October,Tuesday,8,281,23,2019-10-09,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17021,14603,GO-20199039324,THEFT UNDER,2019-11-29,2019,November,Friday,29,333,0,2019-11-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17022,14624,GO-20209010128,THEFT UNDER - BICYCLE,2020-03-29,2020,March,Sunday,29,89,8,2020-03-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17023,14694,GO-20179012873,THEFT UNDER,2017-08-20,2017,August,Sunday,20,232,1,2017-08-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17024,14704,GO-20179013790,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,2,2017-09-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17025,14714,GO-20179014668,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,18,2017-09-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17026,14722,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,7,2017-09-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17027,14723,GO-20179015531,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,7,2017-09-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17028,14728,GO-20171761979,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,15,2017-09-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17029,14733,GO-20179017159,THEFT UNDER,2017-10-13,2017,October,Friday,13,286,17,2017-10-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17030,21396,GO-20169006868,THEFT UNDER,2016-07-02,2016,July,Saturday,2,184,23,2016-07-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17031,21404,GO-20169008543,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,3,2016-08-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17032,21405,GO-20169008720,THEFT UNDER,2016-08-08,2016,August,Monday,8,221,19,2016-08-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17033,21408,GO-20169008901,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,19,2016-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17034,21410,GO-20161472956,B&E,2016-08-13,2016,August,Saturday,13,226,2,2016-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17035,14329,GO-20201953767,B&E,2020-10-14,2020,October,Wednesday,14,288,22,2020-10-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17036,21431,GO-20169010912,THEFT UNDER,2016-09-21,2016,September,Wednesday,21,265,18,2016-09-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17037,21434,GO-20169011413,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,12,2016-10-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17038,21439,GO-20169012348,THEFT UNDER,2016-10-15,2016,October,Saturday,15,289,8,2016-10-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17039,21442,GO-20161893811,THEFT UNDER - BICYCLE,2016-10-22,2016,October,Saturday,22,296,23,2016-10-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17040,21443,GO-20161955359,THEFT FROM MOTOR VEHICLE OVER,2016-11-02,2016,November,Wednesday,2,307,22,2016-11-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17041,21447,GO-20162030737,THEFT UNDER - BICYCLE,2016-11-14,2016,November,Monday,14,319,23,2016-11-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17042,21470,GO-2017491031,B&E,2017-03-15,2017,March,Wednesday,15,74,18,2017-03-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17043,21475,GO-2017739641,THEFT UNDER - BICYCLE,2017-04-27,2017,April,Thursday,27,117,12,2017-04-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17044,21489,GO-20179007223,THEFT UNDER - BICYCLE,2017-04-03,2017,April,Monday,3,93,10,2017-05-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17045,21494,GO-20179007710,THEFT UNDER - BICYCLE,2017-06-05,2017,June,Monday,5,156,16,2017-06-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17046,21796,GO-20149003410,THEFT UNDER,2014-03-01,2014,March,Saturday,1,60,0,2014-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17047,21802,GO-20149004633,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,20,2014-07-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17048,21805,GO-20149004883,THEFT UNDER,2011-06-04,2011,June,Saturday,4,155,21,2014-07-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17049,21810,GO-20149005157,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,1,2014-07-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17050,21815,GO-20149005644,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,14,2014-08-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17051,21818,GO-20149005786,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,20,2014-08-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17052,21819,GO-20142725547,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,18,2014-08-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17053,21820,GO-20149006009,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,0,2014-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17054,21829,GO-20149006635,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,19,2014-09-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17055,21861,GO-20159002812,B&E,2015-05-15,2015,May,Friday,15,135,18,2015-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17056,21862,GO-20159002812,B&E,2015-05-15,2015,May,Friday,15,135,18,2015-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17057,21863,GO-20159002812,B&E,2015-05-15,2015,May,Friday,15,135,18,2015-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17058,21870,GO-20159003359,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,13,2015-06-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17059,21890,GO-20159004350,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,8,2015-07-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17060,21892,GO-20151210940,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,22,2015-07-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17061,21896,GO-20159005032,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,13,2015-07-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17062,21903,GO-20159005233,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,1,2015-07-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17063,21910,GO-20151423377,INCIDENT,2015-08-18,2015,August,Tuesday,18,230,21,2015-08-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17064,21912,GO-20159005944,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,9,2015-08-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17065,21921,GO-20159007182,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,14,2015-09-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17066,21922,GO-20159007182,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,14,2015-09-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17067,21932,GO-20159008459,THEFT UNDER,2015-10-04,2015,October,Sunday,4,277,12,2015-10-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17068,21941,GO-20169001248,THEFT UNDER,2016-02-06,2016,February,Saturday,6,37,14,2016-02-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17069,21943,GO-20169001480,THEFT UNDER,2016-02-15,2016,February,Monday,15,46,18,2016-02-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17070,21950,GO-20169002651,THEFT UNDER,2016-03-18,2016,March,Friday,18,78,9,2016-03-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17071,21956,GO-20169003985,THEFT UNDER - BICYCLE,2016-04-29,2016,April,Friday,29,120,9,2016-04-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17072,21957,GO-20169004038,THEFT UNDER - BICYCLE,2016-05-01,2016,May,Sunday,1,122,0,2016-05-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17073,23796,GO-20201167987,THEFT OF EBIKE UNDER $5000,2020-06-23,2020,June,Tuesday,23,175,16,2020-06-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17074,23804,GO-20209017064,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,0,2020-07-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17075,23815,GO-20209018785,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,0,2020-07-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17076,23819,GO-20209019520,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,20,2020-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17077,23820,GO-20209020311,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,15,2020-08-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17078,23822,GO-20209020278,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,21,2020-08-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17079,23828,GO-20201621794,THEFT UNDER - BICYCLE,2020-08-23,2020,August,Sunday,23,236,13,2020-09-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17080,23830,GO-20209022400,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,20,2020-09-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17081,23835,GO-20201743886,B&E,2020-08-21,2020,August,Friday,21,234,13,2020-09-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17082,23836,GO-20201743886,B&E,2020-08-21,2020,August,Friday,21,234,13,2020-09-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17083,23843,GO-20209024840,THEFT UNDER,2020-09-25,2020,September,Friday,25,269,10,2020-09-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17084,23844,GO-20209025128,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,21,2020-10-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17085,23853,GO-20201945094,THEFT UNDER - BICYCLE,2020-09-30,2020,September,Wednesday,30,274,18,2020-10-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17086,2700,GO-20189019595,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,9,2018-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17087,23855,GO-20209026861,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,15,2020-10-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17088,23861,GO-20202173124,B&E,2020-11-08,2020,November,Sunday,8,313,13,2020-11-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17089,23986,GO-20189032712,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,6,2018-10-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17090,23996,GO-20189036197,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,19,2018-10-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17091,24000,GO-20189039547,THEFT UNDER - BICYCLE,2018-11-18,2018,November,Sunday,18,322,7,2018-11-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17092,189,GO-2017581231,THEFT UNDER,2017-03-16,2017,March,Thursday,16,75,0,2017-04-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17093,24002,GO-20189039850,THEFT UNDER - BICYCLE,2018-11-20,2018,November,Tuesday,20,324,17,2018-11-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17094,24006,GO-201919236,THEFT UNDER - BICYCLE,2018-12-29,2018,December,Saturday,29,363,13,2019-01-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17095,24009,GO-201926858,THEFT OF EBIKE UNDER $5000,2019-01-04,2019,January,Friday,4,4,11,2019-01-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17096,24010,GO-20199002213,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,11,2019-01-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17097,24014,GO-20199003723,THEFT UNDER - BICYCLE,2019-01-27,2019,January,Sunday,27,27,19,2019-01-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17098,24015,GO-20199003960,THEFT UNDER - BICYCLE,2019-01-25,2019,January,Friday,25,25,9,2019-01-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17099,24017,GO-20199004069,THEFT UNDER - BICYCLE,2019-01-28,2019,January,Monday,28,28,13,2019-01-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17100,24020,GO-2019349657,THEFT UNDER - BICYCLE,2019-01-14,2019,January,Monday,14,14,18,2019-02-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17101,24021,GO-20199007435,THEFT UNDER - BICYCLE,2019-02-18,2019,February,Monday,18,49,18,2019-03-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17102,24022,GO-20199007514,THEFT UNDER - BICYCLE,2019-03-01,2019,March,Friday,1,60,22,2019-03-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17103,24023,GO-20199008182,THEFT UNDER - BICYCLE,2019-03-12,2019,March,Tuesday,12,71,21,2019-03-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17104,24024,GO-20199009535,THEFT UNDER - BICYCLE,2019-03-16,2019,March,Saturday,16,75,14,2019-03-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17105,24025,GO-20199009535,THEFT UNDER - BICYCLE,2019-03-16,2019,March,Saturday,16,75,14,2019-03-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17106,24029,GO-20199013540,THEFT UNDER,2019-04-29,2019,April,Monday,29,119,0,2019-04-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17107,24036,GO-20199015354,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,18,2019-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17108,24042,GO-20199016426,THEFT UNDER - BICYCLE,2019-04-01,2019,April,Monday,1,91,11,2019-05-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17109,24048,GO-20191113005,B&E,2019-06-15,2019,June,Saturday,15,166,22,2019-06-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17110,24049,GO-20199019162,THEFT UNDER - BICYCLE,2019-06-17,2019,June,Monday,17,168,20,2019-06-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17111,24066,GO-20199022469,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,11,2019-07-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17112,24068,GO-20199022802,THEFT UNDER,2019-07-14,2019,July,Sunday,14,195,20,2019-07-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17113,24074,GO-20199023796,THEFT UNDER - BICYCLE,2019-07-24,2019,July,Wednesday,24,205,20,2019-07-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17114,24078,GO-20199024403,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,0,2019-07-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17115,24081,GO-20191489863,B&E,2019-08-06,2019,August,Tuesday,6,218,8,2019-08-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17116,24082,GO-20191489863,B&E,2019-08-06,2019,August,Tuesday,6,218,8,2019-08-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17117,24085,GO-20199025929,THEFT UNDER - BICYCLE,2019-08-12,2019,August,Monday,12,224,11,2019-08-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17118,24087,GO-20191558176,THEFT UNDER - BICYCLE,2019-08-07,2019,August,Wednesday,7,219,12,2019-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17119,24094,GO-20199027716,THEFT UNDER - BICYCLE,2019-08-26,2019,August,Monday,26,238,3,2019-08-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17120,24107,GO-20191850293,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,23,2019-09-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17121,24108,GO-20191850293,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,23,2019-09-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17122,24109,GO-20199032702,THEFT FROM MOTOR VEHICLE UNDER,2019-10-04,2019,October,Friday,4,277,2,2019-10-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17123,24112,GO-20199034727,THEFT UNDER - BICYCLE,2019-10-17,2019,October,Thursday,17,290,9,2019-10-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17124,24116,GO-20199035504,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,11,2019-10-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17125,24117,GO-20199035557,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,13,2019-10-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17126,24118,GO-20199035643,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,6,2019-10-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17127,24126,GO-20199037634,THEFT UNDER,2019-11-15,2019,November,Friday,15,319,10,2019-11-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17128,24139,GO-20199040853,B&E,2019-12-03,2019,December,Tuesday,3,337,0,2019-12-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17129,24149,GO-20209005743,THEFT UNDER,2020-02-13,2020,February,Thursday,13,44,9,2020-02-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17130,24151,GO-20209007666,THEFT UNDER,2020-03-01,2020,March,Sunday,1,61,23,2020-03-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17131,2857,GO-20189022698,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,20,2018-07-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17132,15595,GO-20179004579,THEFT UNDER,2017-04-11,2017,April,Tuesday,11,101,8,2017-04-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17133,14344,GO-20209031684,THEFT UNDER,2020-12-06,2020,December,Sunday,6,341,15,2020-12-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17134,14454,GO-20189028365,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,23,2018-08-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17135,14458,GO-20189030831,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,7,2018-09-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17136,14463,GO-20189033153,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,9,2018-10-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17137,2701,GO-20189020476,FTC PROBATION ORDER,2018-06-22,2018,June,Friday,22,173,18,2018-06-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17138,14480,GO-20182220218,B&E W'INTENT,2018-12-02,2018,December,Sunday,2,336,14,2018-12-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17139,2723,GO-20189020789,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,4,2018-06-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17140,14487,GO-20199001337,THEFT UNDER - BICYCLE,2019-01-05,2019,January,Saturday,5,5,10,2019-01-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17141,190,GO-2017579842,B&E,2017-03-28,2017,March,Tuesday,28,87,0,2017-04-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17142,2740,GO-20189021031,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,22,2018-07-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17143,2755,GO-20189021188,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,18,2018-07-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17144,2768,GO-20189021396,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,1,2018-07-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17145,2769,GO-20189021396,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,1,2018-07-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17146,2802,GO-20189021878,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,20,2018-07-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17147,2848,GO-20189022506,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,17,2018-07-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17148,2861,GO-20189022682,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,21,2018-07-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17149,2881,GO-20189023024,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,21,2018-07-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17150,2909,GO-20189023361,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,19,2018-07-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17151,2910,GO-20189023361,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,19,2018-07-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17152,2914,GO-20181338964,INCIDENT,2018-07-20,2018,July,Friday,20,201,4,2018-07-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17153,2937,GO-20189023024,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,21,2018-07-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17154,2996,GO-20189024207,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,17,2018-07-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17155,2997,GO-20189024207,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,17,2018-07-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17156,3031,GO-20189024611,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,23,2018-07-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17157,3035,GO-20189024624,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,18,2018-07-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17158,15596,GO-20179004794,THEFT UNDER - BICYCLE,2017-04-14,2017,April,Friday,14,104,10,2017-04-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17159,3037,GO-20189024690,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,0,2018-07-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17160,3077,GO-20189025142,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,1,2018-08-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17161,3227,GO-20189026636,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,12,2018-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17162,3267,GO-20189027176,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,22,2018-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17163,3273,GO-20189027176,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,22,2018-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17164,3277,GO-20189027268,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,20,2018-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17165,3283,GO-20189027376,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,16,2018-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17166,3310,GO-20189027176,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,22,2018-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17167,3357,GO-20189028523,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,17,2018-08-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17168,3363,GO-20189028519,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,23,2018-08-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17169,3384,GO-20189028970,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,21,2018-09-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17170,3395,GO-20189029183,THEFT UNDER,2018-09-05,2018,September,Wednesday,5,248,10,2018-09-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17171,3446,GO-20189029974,THEFT UNDER - BICYCLE,2018-08-24,2018,August,Friday,24,236,16,2018-09-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17172,3447,GO-20189030040,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,10,2018-09-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17173,3451,GO-20189030127,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,9,2018-09-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17174,3452,GO-20189030127,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,9,2018-09-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17175,3460,GO-20189030284,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,22,2018-09-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17176,3464,GO-20189030377,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,16,2018-09-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17177,3526,GO-20189031368,THEFT FROM MOTOR VEHICLE UNDER,2018-09-18,2018,September,Tuesday,18,261,22,2018-09-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17178,3540,GO-20189031633,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,18,2018-09-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17179,3558,GO-20189031911,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,20,2018-09-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17180,3587,GO-20189032476,THEFT UNDER,2018-09-28,2018,September,Friday,28,271,19,2018-10-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17181,3602,GO-20181821299,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,9,2018-10-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17182,3701,GO-20189034133,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,18,2018-10-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17183,3726,GO-20189034543,THEFT UNDER,2018-10-07,2018,October,Sunday,7,280,14,2018-10-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17184,3743,GO-20181958798,THEFT UNDER - BICYCLE,2018-10-02,2018,October,Tuesday,2,275,17,2018-10-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17185,3759,GO-20189035450,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,12,2018-10-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17186,3802,GO-20182020024,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,10,2018-11-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17187,3844,GO-20189037902,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,14,2018-11-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17188,3871,GO-20189038582,THEFT UNDER - BICYCLE,2018-10-27,2018,October,Saturday,27,300,8,2018-11-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17189,3891,GO-20182153503,B&E,2018-11-21,2018,November,Wednesday,21,325,18,2018-11-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17190,3897,GO-20189039721,THEFT UNDER - BICYCLE,2018-11-21,2018,November,Wednesday,21,325,17,2018-11-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17191,3902,GO-20189039919,THEFT UNDER - BICYCLE,2018-11-20,2018,November,Tuesday,20,324,9,2018-11-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17192,3909,GO-20189040316,THEFT UNDER - BICYCLE,2018-09-28,2018,September,Friday,28,271,8,2018-11-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17193,3910,GO-20189040381,THEFT UNDER - BICYCLE,2018-11-30,2018,November,Friday,30,334,2,2018-11-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17194,3911,GO-20189040412,THEFT UNDER - BICYCLE,2018-11-23,2018,November,Friday,23,327,11,2018-12-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17195,3912,GO-20182207296,THEFT UNDER - BICYCLE,2018-11-26,2018,November,Monday,26,330,17,2018-12-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17196,3920,GO-20182220218,B&E W'INTENT,2018-12-02,2018,December,Sunday,2,336,14,2018-12-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17197,3926,GO-20182233752,PROPERTY - FOUND,2018-12-05,2018,December,Wednesday,5,339,11,2018-12-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17198,3933,GO-20189041678,THEFT UNDER - BICYCLE,2018-12-11,2018,December,Tuesday,11,345,6,2018-12-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17199,3956,GO-20189043013,THEFT UNDER - BICYCLE,2018-12-17,2018,December,Monday,17,351,17,2018-12-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17200,3961,GO-20189043368,THEFT UNDER - BICYCLE,2018-12-15,2018,December,Saturday,15,349,6,2018-12-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17201,3964,GO-20182361876,THEFT UNDER - BICYCLE,2018-12-25,2018,December,Tuesday,25,359,2,2018-12-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17202,3970,GO-20189043786,THEFT UNDER - BICYCLE,2018-12-30,2018,December,Sunday,30,364,13,2018-12-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17203,3974,GO-20189043786,THEFT UNDER - BICYCLE,2018-12-30,2018,December,Sunday,30,364,13,2018-12-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17204,4000,GO-201972016,B&E,2019-01-10,2019,January,Thursday,10,10,17,2019-01-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17205,4001,GO-201972016,B&E,2019-01-10,2019,January,Thursday,10,10,17,2019-01-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17206,4019,GO-2019150841,B&E,2019-01-14,2019,January,Monday,14,14,9,2019-01-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17207,4022,GO-20199003461,THEFT UNDER - BICYCLE,2019-01-18,2019,January,Friday,18,18,0,2019-01-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17208,4023,GO-20199003461,THEFT UNDER - BICYCLE,2019-01-18,2019,January,Friday,18,18,0,2019-01-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17209,4031,GO-20199004200,THEFT UNDER - BICYCLE,2019-02-01,2019,February,Friday,1,32,16,2019-02-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17210,4038,GO-20199004711,THEFT UNDER - BICYCLE,2019-02-05,2019,February,Tuesday,5,36,13,2019-02-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17211,4039,GO-2019240037,THEFT UNDER - BICYCLE,2019-01-31,2019,January,Thursday,31,31,10,2019-02-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17212,4041,GO-20199004805,THEFT UNDER - SHOPLIFTING,2019-02-07,2019,February,Thursday,7,38,20,2019-02-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17213,4050,GO-20199005486,THEFT UNDER - BICYCLE,2019-02-07,2019,February,Thursday,7,38,1,2019-02-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17214,4055,GO-2019307195,THEFT UNDER - BICYCLE,2019-02-16,2019,February,Saturday,16,47,23,2019-02-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17215,4060,GO-20199006307,THEFT UNDER - BICYCLE,2019-02-13,2019,February,Wednesday,13,44,15,2019-02-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17216,4066,GO-20199006515,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,22,2019-02-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17217,4084,GO-20199007779,THEFT UNDER - BICYCLE,2019-03-08,2019,March,Friday,8,67,17,2019-03-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17218,4087,GO-20199007928,THEFT UNDER - BICYCLE,2019-03-01,2019,March,Friday,1,60,0,2019-03-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17219,4100,GO-20199008976,THEFT UNDER - BICYCLE,2019-03-01,2019,March,Friday,1,60,15,2019-03-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17220,4103,GO-20199009315,THEFT UNDER - BICYCLE,2018-12-14,2018,December,Friday,14,348,9,2019-03-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17221,4106,GO-20199009567,THEFT UNDER - BICYCLE,2019-03-23,2019,March,Saturday,23,82,7,2019-03-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17222,4120,GO-2019586697,B&E,2019-03-27,2019,March,Wednesday,27,86,16,2019-04-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17223,4121,GO-2019538672,B&E W'INTENT,2019-03-23,2019,March,Saturday,23,82,0,2019-03-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17224,4122,GO-2019538672,B&E W'INTENT,2019-03-23,2019,March,Saturday,23,82,0,2019-03-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17225,4123,GO-2019538672,B&E W'INTENT,2019-03-23,2019,March,Saturday,23,82,0,2019-03-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17226,4137,GO-2019608240,THEFT UNDER - BICYCLE,2019-04-04,2019,April,Thursday,4,94,18,2019-04-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17227,4139,GO-20199011032,THEFT UNDER - BICYCLE,2019-04-07,2019,April,Sunday,7,97,20,2019-04-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17228,4151,GO-2019646689,B&E,2019-03-30,2019,March,Saturday,30,89,14,2019-04-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17229,4166,GO-20199011824,THEFT UNDER,2019-04-13,2019,April,Saturday,13,103,23,2019-04-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17230,4168,GO-20199011976,THEFT UNDER - BICYCLE,2019-04-14,2019,April,Sunday,14,104,4,2019-04-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17231,4173,GO-20199011976,THEFT UNDER - BICYCLE,2019-04-14,2019,April,Sunday,14,104,4,2019-04-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17232,4199,GO-20199012974,THEFT UNDER - BICYCLE,2019-04-24,2019,April,Wednesday,24,114,6,2019-04-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17233,4206,GO-2019694050,B&E,2019-04-14,2019,April,Sunday,14,104,19,2019-04-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17234,4214,GO-20199013377,THEFT UNDER - BICYCLE,2019-04-28,2019,April,Sunday,28,118,21,2019-04-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17235,4215,GO-20199013394,THEFT UNDER - BICYCLE,2019-03-26,2019,March,Tuesday,26,85,16,2019-04-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17236,4216,GO-20199013422,THEFT UNDER,2019-04-01,2019,April,Monday,1,91,12,2019-04-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17237,4271,GO-20199014877,THEFT UNDER - BICYCLE,2019-05-11,2019,May,Saturday,11,131,9,2019-05-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17238,4272,GO-20199014877,THEFT UNDER - BICYCLE,2019-05-11,2019,May,Saturday,11,131,9,2019-05-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17239,15597,GO-20179004794,THEFT UNDER - BICYCLE,2017-04-14,2017,April,Friday,14,104,10,2017-04-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17240,14492,GO-20199003741,THEFT UNDER - BICYCLE,2019-01-04,2019,January,Friday,4,4,9,2019-01-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17241,14495,GO-20199007366,THEFT UNDER - BICYCLE,2019-03-05,2019,March,Tuesday,5,64,17,2019-03-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17242,194,GO-20179004162,B&E,2017-04-02,2017,April,Sunday,2,92,20,2017-04-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17243,14497,GO-20199008405,THEFT UNDER - BICYCLE,2019-02-27,2019,February,Wednesday,27,58,0,2019-03-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17244,14498,GO-2019484415,THEFT UNDER - BICYCLE,2019-02-01,2019,February,Friday,1,32,12,2019-03-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17245,14507,GO-20199012460,THEFT UNDER - BICYCLE,2019-04-05,2019,April,Friday,5,95,17,2019-04-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17246,14511,GO-2019744799,B&E,2019-03-29,2019,March,Friday,29,88,19,2019-04-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17247,14512,GO-20199013890,B&E,2019-04-22,2019,April,Monday,22,112,11,2019-05-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17248,14517,GO-20199017646,THEFT UNDER - BICYCLE,2019-06-05,2019,June,Wednesday,5,156,17,2019-06-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17249,14518,GO-20191043870,B&E,2019-04-29,2019,April,Monday,29,119,12,2019-06-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17250,14526,GO-20199020096,B&E,2019-06-25,2019,June,Tuesday,25,176,16,2019-06-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17251,14527,GO-20199020096,B&E,2019-06-25,2019,June,Tuesday,25,176,16,2019-06-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17252,14546,GO-20199022900,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,4,2019-07-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17253,14553,GO-20191442532,B&E,2019-07-20,2019,July,Saturday,20,201,9,2019-08-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17254,14563,GO-20199026798,THEFT UNDER - BICYCLE,2019-08-17,2019,August,Saturday,17,229,0,2019-08-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17255,14569,GO-20199027810,THEFT UNDER - BICYCLE,2019-08-26,2019,August,Monday,26,238,1,2019-08-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17256,14572,GO-20191676984,B&E,2019-08-24,2019,August,Saturday,24,236,18,2019-09-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17257,14574,GO-20191679469,THEFT UNDER - BICYCLE,2019-09-02,2019,September,Monday,2,245,14,2019-09-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17258,14578,GO-20199029525,THEFT UNDER - BICYCLE,2019-09-04,2019,September,Wednesday,4,247,16,2019-09-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17259,14579,GO-20199029525,THEFT UNDER - BICYCLE,2019-09-04,2019,September,Wednesday,4,247,16,2019-09-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17260,14589,GO-20199033545,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,22,2019-10-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17261,14593,GO-20199034727,THEFT UNDER - BICYCLE,2019-10-17,2019,October,Thursday,17,290,9,2019-10-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17262,15600,GO-2017685388,THEFT UNDER - BICYCLE,2017-04-14,2017,April,Friday,14,104,9,2017-04-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17263,14595,GO-20199035418,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,23,2019-10-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17264,14596,GO-20199035504,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,11,2019-10-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17265,14600,GO-20199036365,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,20,2019-11-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17266,14604,GO-20192329916,THEFT UNDER - BICYCLE,2019-11-23,2019,November,Saturday,23,327,9,2019-12-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17267,14613,GO-2020122925,B&E W'INTENT,2019-12-22,2019,December,Sunday,22,356,0,2020-01-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17268,14618,GO-2020428102,B&E W'INTENT,2020-02-27,2020,February,Thursday,27,58,0,2020-02-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17269,14619,GO-2020437191,THEFT UNDER - BICYCLE,2020-02-01,2020,February,Saturday,1,32,10,2020-03-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17270,14631,GO-20209012194,THEFT UNDER,2020-04-29,2020,April,Wednesday,29,120,19,2020-04-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17271,14640,GO-20209013614,THEFT UNDER,2020-05-15,2020,May,Friday,15,136,15,2020-05-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17272,14646,GO-20209014219,THEFT UNDER - BICYCLE,2020-05-27,2020,May,Wednesday,27,148,3,2020-05-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17273,14668,GO-20179010004,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,21,2017-07-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17274,14677,GO-20179011030,THEFT UNDER - BICYCLE,2017-07-24,2017,July,Monday,24,205,21,2017-07-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17275,14689,GO-20179012513,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,22,2017-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17276,14690,GO-20179012517,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,8,2017-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17277,14691,GO-20179012589,THEFT UNDER,2017-08-15,2017,August,Tuesday,15,227,22,2017-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17278,14702,GO-20179013372,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,15,2017-08-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17279,14713,GO-20171646714,THEFT FROM MOTOR VEHICLE UNDER,2017-09-03,2017,September,Sunday,3,246,19,2017-09-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17280,14716,GO-20179014982,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,22,2017-09-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17281,14719,GO-20179015198,THEFT UNDER,2017-09-18,2017,September,Monday,18,261,19,2017-09-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17282,14721,GO-20171722673,THEFT UNDER,2017-09-22,2017,September,Friday,22,265,9,2017-09-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17283,14748,GO-20179021985,FTC PROBATION ORDER,2017-11-21,2017,November,Tuesday,21,325,8,2017-12-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17284,14755,GO-20189001768,THEFT UNDER - BICYCLE,2018-01-18,2018,January,Thursday,18,18,1,2018-01-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17285,14759,GO-20189004304,THEFT UNDER,2018-02-06,2018,February,Tuesday,6,37,19,2018-02-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17286,14777,GO-20189014535,THEFT UNDER - BICYCLE,2018-05-09,2018,May,Wednesday,9,129,17,2018-05-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17287,14782,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,18,2018-05-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17288,14811,GO-20189020438,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,23,2018-06-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17289,14818,GO-20189022047,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,15,2018-07-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17290,14832,GO-20189025368,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,22,2018-08-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17291,14836,GO-20189026705,THEFT UNDER,2018-08-02,2018,August,Thursday,2,214,0,2018-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17292,14841,GO-20181498470,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,21,2018-08-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17293,14842,GO-20181498470,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,21,2018-08-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17294,15309,GO-20149002814,THEFT UNDER,2014-04-13,2014,April,Sunday,13,103,12,2014-04-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17295,15318,GO-20149003719,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,20,2014-05-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17296,15326,GO-20149004466,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,20,2014-06-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17297,15333,GO-20149004734,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,19,2014-07-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17298,15340,GO-20142588064,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,2,2014-07-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17299,15349,GO-20142728130,B&E,2014-07-30,2014,July,Wednesday,30,211,0,2014-08-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17300,15358,GO-20142812236,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,5,2014-08-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17301,15399,GO-20159003265,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,15,2015-06-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17302,15408,GO-20159003823,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,10,2015-06-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17303,15419,GO-20159004207,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,22,2015-07-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17304,15421,GO-20159004409,B&E,2015-06-14,2015,June,Sunday,14,165,16,2015-07-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17305,15422,GO-20159004409,B&E,2015-06-14,2015,June,Sunday,14,165,16,2015-07-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17306,15430,GO-20159004729,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,7,2015-07-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17307,15431,GO-20151241756,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,5,2015-07-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17308,15435,GO-20159005227,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,11,2015-07-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17309,15442,GO-20159005847,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,22,2015-08-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17310,15443,GO-20159005867,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,23,2015-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17311,15445,GO-20151521660,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,13,2015-09-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17312,15456,GO-20159007392,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,6,2015-09-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17313,15460,GO-20151784187,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,22,2015-10-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17314,15464,GO-20159009543,THEFT UNDER,2015-10-31,2015,October,Saturday,31,304,21,2015-11-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17315,15465,GO-20159009604,THEFT UNDER,2015-11-10,2015,November,Tuesday,10,314,15,2015-11-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17316,15468,GO-20151987093,THEFT UNDER,2015-11-19,2015,November,Thursday,19,323,10,2015-11-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17317,15481,GO-20169001249,THEFT UNDER,2016-01-31,2016,January,Sunday,31,31,16,2016-02-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17318,15484,GO-2016437151,THEFT UNDER,2016-03-13,2016,March,Sunday,13,73,13,2016-03-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17319,15488,GO-20169003101,THEFT UNDER,2016-04-01,2016,April,Friday,1,92,16,2016-04-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17320,15492,GO-20169003636,THEFT UNDER - BICYCLE,2016-04-18,2016,April,Monday,18,109,4,2016-04-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17321,15496,GO-2016806943,THEFT UNDER - BICYCLE,2016-05-11,2016,May,Wednesday,11,132,4,2016-05-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17322,15501,GO-20169005085,THEFT UNDER - BICYCLE,2016-05-29,2016,May,Sunday,29,150,2,2016-05-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17323,15512,GO-20169006050,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,16,2016-06-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17324,15541,GO-20169009153,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,21,2016-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17325,15542,GO-20169009235,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,22,2016-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17326,15551,GO-20161604040,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,12,2016-09-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17327,15554,GO-20169010451,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,20,2016-09-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17328,15569,GO-20169012376,B&E,2016-10-19,2016,October,Wednesday,19,293,13,2016-10-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17329,15574,GO-20161998580,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,20,2016-11-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17330,15582,GO-20179001652,THEFT UNDER - BICYCLE,2017-02-02,2017,February,Thursday,2,33,9,2017-02-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17331,15586,GO-20179003323,B&E,2017-03-02,2017,March,Thursday,2,61,5,2017-03-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17332,15587,GO-20179003504,THEFT UNDER - BICYCLE,2017-03-20,2017,March,Monday,20,79,16,2017-03-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17333,15591,GO-20179003946,THEFT UNDER - BICYCLE,2017-03-26,2017,March,Sunday,26,85,7,2017-03-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17334,15593,GO-20179004204,THEFT FROM MOTOR VEHICLE UNDER,2017-04-04,2017,April,Tuesday,4,94,5,2017-04-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17335,15604,GO-20179005854,THEFT UNDER - BICYCLE,2017-05-04,2017,May,Thursday,4,124,1,2017-05-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17336,15615,GO-20179008294,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,18,2017-06-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17337,17333,GO-20209014650,THEFT UNDER,2020-06-04,2020,June,Thursday,4,156,22,2020-06-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17338,17347,GO-20209016520,THEFT UNDER,2020-06-20,2020,June,Saturday,20,172,4,2020-06-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17339,17360,GO-20209018491,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,0,2020-07-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17340,17361,GO-20209018616,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,3,2020-07-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17341,17365,GO-20209019171,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,18,2020-08-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17342,17369,GO-20209019519,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,20,2020-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17343,17371,GO-20209019681,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,11,2020-08-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17344,17380,GO-20209021705,THEFT UNDER,2020-08-23,2020,August,Sunday,23,236,15,2020-08-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17345,17387,GO-20201666974,B&E,2020-08-20,2020,August,Thursday,20,233,0,2020-09-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17346,17388,GO-20209022400,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,20,2020-09-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17347,17408,GO-20202122139,B&E,2020-11-07,2020,November,Saturday,7,312,13,2020-11-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17348,17415,GO-20209031477,THEFT UNDER,2020-12-06,2020,December,Sunday,6,341,23,2020-12-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17349,17516,GO-20189032974,THEFT UNDER - BICYCLE,2018-10-04,2018,October,Thursday,4,277,8,2018-10-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17350,17521,GO-20189034739,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,3,2018-10-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17351,17522,GO-20189034804,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,23,2018-10-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17352,17524,GO-20189037137,THEFT UNDER - BICYCLE,2018-10-28,2018,October,Sunday,28,301,19,2018-11-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17353,17529,GO-20189038439,THEFT UNDER - BICYCLE,2018-11-09,2018,November,Friday,9,313,7,2018-11-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17354,17531,GO-20189040248,THEFT UNDER - SHOPLIFTING,2018-11-27,2018,November,Tuesday,27,331,18,2018-11-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17355,17532,GO-20189040361,THEFT UNDER - BICYCLE,2018-11-30,2018,November,Friday,30,334,6,2018-11-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17356,17533,GO-20189040486,THEFT UNDER,2018-12-01,2018,December,Saturday,1,335,21,2018-12-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17357,17543,GO-20199007595,THEFT UNDER - BICYCLE,2019-02-28,2019,February,Thursday,28,59,19,2019-03-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17358,17544,GO-20199007618,THEFT UNDER - BICYCLE,2019-02-24,2019,February,Sunday,24,55,12,2019-03-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17359,17548,GO-20199010236,THEFT UNDER - BICYCLE,2019-03-31,2019,March,Sunday,31,90,18,2019-03-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17360,17550,GO-2019604195,PROPERTY - FOUND,2019-04-04,2019,April,Thursday,4,94,8,2019-04-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17361,17551,GO-20199011207,THEFT UNDER - BICYCLE,2019-01-25,2019,January,Friday,25,25,17,2019-04-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17362,17552,GO-20199011524,THEFT UNDER - BICYCLE,2019-04-10,2019,April,Wednesday,10,100,0,2019-04-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17363,17553,GO-20199011824,THEFT UNDER,2019-04-13,2019,April,Saturday,13,103,23,2019-04-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17364,17554,GO-20199011993,THEFT UNDER - BICYCLE,2019-03-18,2019,March,Monday,18,77,21,2019-04-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17365,17555,GO-20199012021,THEFT UNDER,2019-04-15,2019,April,Monday,15,105,18,2019-04-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17366,17558,GO-20199013424,THEFT UNDER,2019-04-15,2019,April,Monday,15,105,12,2019-04-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17367,17563,GO-20199015053,THEFT UNDER - BICYCLE,2019-05-14,2019,May,Tuesday,14,134,15,2019-05-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17368,17568,GO-20199015969,THEFT UNDER,2019-04-23,2019,April,Tuesday,23,113,18,2019-05-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17369,17580,GO-20199018920,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,11,2019-06-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17370,17585,GO-20199019985,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,20,2019-06-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17371,17586,GO-20199020017,THEFT UNDER - BICYCLE,2019-06-25,2019,June,Tuesday,25,176,1,2019-06-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17372,17589,GO-20191221044,B&E,2019-06-28,2019,June,Friday,28,179,18,2019-07-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17373,17617,GO-20199024890,THEFT UNDER,2019-08-02,2019,August,Friday,2,214,23,2019-08-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17374,17629,GO-20199027789,THEFT UNDER - BICYCLE,2019-08-23,2019,August,Friday,23,235,12,2019-08-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17375,17631,GO-20199028094,THEFT UNDER,2019-08-19,2019,August,Monday,19,231,7,2019-08-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17376,17632,GO-20199028490,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,23,2019-09-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17377,17633,GO-20199028658,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,17,2019-09-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17378,17646,GO-20199032032,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,7,2019-09-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17379,17650,GO-20191956073,B&E,2019-10-10,2019,October,Thursday,10,283,5,2019-10-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17380,17672,GO-20199039106,THEFT UNDER,2019-11-27,2019,November,Wednesday,27,331,23,2019-11-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17381,17674,GO-20199039569,THEFT UNDER,2019-12-01,2019,December,Sunday,1,335,20,2019-12-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17382,17678,GO-20192520014,B&E,2019-12-24,2019,December,Tuesday,24,358,15,2019-12-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17383,17679,GO-20192520014,B&E,2019-12-24,2019,December,Tuesday,24,358,15,2019-12-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17384,17684,GO-20209001860,B&E,2020-01-11,2020,January,Saturday,11,11,6,2020-01-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17385,17699,GO-20209007558,THEFT UNDER - BICYCLE,2020-03-02,2020,March,Monday,2,62,9,2020-03-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17386,17706,GO-20209011436,THEFT UNDER - BICYCLE,2020-04-11,2020,April,Saturday,11,102,15,2020-04-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17387,17714,GO-20171524065,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,23,2017-08-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17388,17750,GO-20179018133,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,18,2017-10-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17389,17797,GO-20189012224,THEFT UNDER,2018-04-20,2018,April,Friday,20,110,8,2018-04-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17390,17800,GO-20189012594,THEFT UNDER,2018-04-21,2018,April,Saturday,21,111,14,2018-04-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17391,17801,GO-20189013197,THEFT UNDER - BICYCLE,2018-04-09,2018,April,Monday,9,99,23,2018-04-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17392,17805,GO-20189013507,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,16,2018-05-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17393,17816,GO-20189016499,THEFT UNDER - BICYCLE,2018-05-26,2018,May,Saturday,26,146,12,2018-05-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17394,17821,GO-20189017188,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,11,2018-06-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17395,17830,GO-20189018714,THEFT UNDER,2018-06-13,2018,June,Wednesday,13,164,11,2018-06-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17396,17836,GO-20189019713,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,17,2018-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17397,17837,GO-20189019577,THEFT UNDER - SHOPLIFTING,2018-06-18,2018,June,Monday,18,169,0,2018-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17398,17866,GO-20189024451,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,16,2018-07-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17399,17867,GO-20189024451,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,16,2018-07-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17400,17880,GO-20189026102,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,20,2018-08-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17401,17883,GO-20189026495,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,14,2018-08-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17402,17884,GO-20181514165,B&E,2018-07-17,2018,July,Tuesday,17,198,9,2018-08-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17403,17885,GO-20189026765,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,15,2018-08-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17404,17897,GO-20189029015,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,23,2018-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17405,17901,GO-20189029523,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,16,2018-09-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17406,17913,GO-20189032038,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,17,2018-09-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17407,18080,GO-20179009001,THEFT UNDER - BICYCLE,2017-06-25,2017,June,Sunday,25,176,23,2017-06-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17408,18081,GO-20179009097,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,17,2017-06-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17409,18085,GO-20179009628,THEFT UNDER - BICYCLE,2017-07-05,2017,July,Wednesday,5,186,22,2017-07-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17410,18089,GO-20179010022,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,11,2017-07-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17411,18109,GO-20179012584,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,9,2017-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17412,18115,GO-20179012964,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,7,2017-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17413,18117,GO-20161109671,B&E W'INTENT,2016-06-19,2016,June,Sunday,19,171,16,2016-06-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17414,18127,GO-20169007396,THEFT UNDER - BICYCLE,2016-07-14,2016,July,Thursday,14,196,10,2016-07-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17415,18139,GO-20161487092,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,22,2016-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17416,18143,GO-20169009609,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,13,2016-08-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17417,18145,GO-20169009891,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,19,2016-09-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17418,18146,GO-20169009937,B&E,2016-08-31,2016,August,Wednesday,31,244,19,2016-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17419,18147,GO-20169009937,B&E,2016-08-31,2016,August,Wednesday,31,244,19,2016-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17420,18150,GO-20169010344,FTC PROBATION ORDER,2016-09-12,2016,September,Monday,12,256,9,2016-09-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17421,18169,GO-20169011888,THEFT UNDER,2016-10-02,2016,October,Sunday,2,276,0,2016-10-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17422,18170,GO-20169012174,THEFT UNDER,2016-10-14,2016,October,Friday,14,288,20,2016-10-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17423,18174,GO-20169012722,THEFT UNDER - BICYCLE,2016-10-28,2016,October,Friday,28,302,8,2016-10-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17424,18176,GO-20161943422,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,15,2016-11-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17425,18183,GO-20179001378,THEFT UNDER - BICYCLE,2017-01-27,2017,January,Friday,27,27,18,2017-01-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17426,18184,GO-20179001538,THEFT UNDER - BICYCLE,2017-01-01,2017,January,Sunday,1,1,9,2017-02-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17427,18185,GO-20179001652,THEFT UNDER - BICYCLE,2017-02-02,2017,February,Thursday,2,33,9,2017-02-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17428,18190,GO-20179003333,THEFT UNDER,2017-03-11,2017,March,Saturday,11,70,17,2017-03-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17429,18201,GO-20179005740,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,15,2017-05-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17430,18215,GO-20171016284,THEFT OF EBIKE UNDER $5000,2017-06-07,2017,June,Wednesday,7,158,19,2017-06-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17431,9874,GO-20151062996,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,10,2015-06-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17432,206,GO-2017628485,THEFT UNDER - BICYCLE,2017-04-09,2017,April,Sunday,9,99,21,2017-04-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17433,20826,GO-20209027808,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,0,2020-10-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17434,18319,GO-20149002607,THEFT UNDER,2013-03-18,2013,March,Monday,18,77,14,2014-04-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17435,6874,GO-20209019446,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,12,2020-08-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17436,9911,GO-20151100165,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,18,2015-06-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17437,9932,GO-20151118869,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,22,2015-07-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17438,9979,GO-20159004363,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,18,2015-07-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17439,9997,GO-20151186163,THEFT OVER,2015-07-10,2015,July,Friday,10,191,12,2015-07-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17440,10003,GO-20159004522,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,20,2015-07-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17441,10023,GO-20159004593,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,15,2015-07-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17442,10031,GO-20151199726,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,22,2015-07-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17443,10119,GO-20159005072,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,2,2015-07-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17444,10287,GO-20159005933,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,15,2015-08-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17445,10295,GO-20159005966,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,12,2015-08-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17446,10307,GO-20159006010,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,17,2015-08-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17447,10322,GO-20159006177,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,18,2015-08-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17448,10332,GO-20159006265,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,1,2015-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17449,10345,GO-20151499060,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,20,2015-08-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17450,10402,GO-20159006758,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,11,2015-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17451,10404,GO-20159006760,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,2,2015-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17452,10409,GO-20151545603,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,18,2015-09-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17453,10415,GO-20159006833,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,18,2015-09-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17454,10461,GO-20151569110,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,3,2015-09-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17455,10462,GO-20151569110,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,3,2015-09-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17456,10488,GO-20159007354,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,12,2015-09-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17457,10513,GO-20151623466,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,14,2015-09-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17458,10539,GO-20159007700,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,9,2015-09-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17459,10548,GO-20159007761,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,14,2015-09-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17460,10567,GO-20159007951,THEFT UNDER,2015-09-29,2015,September,Tuesday,29,272,9,2015-09-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17461,10585,GO-20151708801,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,22,2015-10-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17462,10606,GO-20159008355,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,17,2015-10-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17463,10624,GO-20151763791,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,0,2015-10-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17464,10626,GO-20151769826,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,18,2015-10-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17465,10663,GO-20151807313,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,12,2015-10-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17466,10739,GO-20159009553,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,14,2015-11-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17467,10743,GO-20159009604,THEFT UNDER,2015-11-10,2015,November,Tuesday,10,314,15,2015-11-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17468,10753,GO-20151937282,B&E,2015-11-11,2015,November,Wednesday,11,315,3,2015-11-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17469,10790,GO-20159009916,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,19,2015-11-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17470,10808,GO-20159010144,THEFT UNDER,2015-11-24,2015,November,Tuesday,24,328,15,2015-11-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17471,10846,GO-20152109977,B&E,2015-11-25,2015,November,Wednesday,25,329,0,2015-12-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17472,10924,GO-201670780,B&E,2015-09-27,2015,September,Sunday,27,270,16,2016-01-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17473,11001,GO-20169001591,THEFT UNDER,2016-01-30,2016,January,Saturday,30,30,18,2016-02-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17474,11018,GO-20169001819,THEFT UNDER,2015-12-17,2015,December,Thursday,17,351,14,2016-02-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17475,11019,GO-2016371413,THEFT UNDER,2016-03-02,2016,March,Wednesday,2,62,7,2016-03-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17476,11083,GO-2016539415,THEFT UNDER,2016-01-01,2016,January,Friday,1,1,12,2016-03-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17477,11105,GO-20169003094,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,9,2016-04-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17478,11160,GO-20142802641,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,21,2014-08-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17479,11165,GO-20169003641,B&E,2016-04-20,2016,April,Wednesday,20,111,21,2016-04-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17480,11176,GO-2016684282,B&E,2016-04-21,2016,April,Thursday,21,112,18,2016-04-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17481,11179,GO-2016684282,B&E,2016-04-21,2016,April,Thursday,21,112,18,2016-04-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17482,11284,GO-2016805119,THEFT UNDER,2016-05-06,2016,May,Friday,6,127,19,2016-05-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17483,11329,GO-2016861004,THEFT UNDER - BICYCLE,2016-05-19,2016,May,Thursday,19,140,9,2016-05-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17484,11368,GO-20169004918,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,22,2016-05-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17485,11409,GO-20169005140,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,11,2016-05-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17486,12454,GO-20161710296,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,6,2016-09-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17487,11454,GO-2016976185,THEFT UNDER - BICYCLE,2016-06-05,2016,June,Sunday,5,157,0,2016-06-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17488,11456,GO-20169005404,THEFT UNDER,2016-06-04,2016,June,Saturday,4,156,14,2016-06-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17489,11458,GO-20169005418,THEFT UNDER,2016-06-06,2016,June,Monday,6,158,14,2016-06-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17490,11519,GO-20161028108,B&E,2016-06-13,2016,June,Monday,13,165,11,2016-06-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17491,11524,GO-20169005764,THEFT UNDER,2016-06-13,2016,June,Monday,13,165,8,2016-06-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17492,11598,GO-20169006126,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,2,2016-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17493,11703,GO-20161175331,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,19,2016-07-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17494,11744,GO-20169006893,THEFT UNDER,2016-07-08,2016,July,Friday,8,190,0,2016-07-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17495,11758,GO-20161188756,THEFT UNDER - BICYCLE,2016-07-02,2016,July,Saturday,2,184,21,2016-07-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17496,11767,GO-20169007011,THEFT UNDER - BICYCLE,2016-07-09,2016,July,Saturday,9,191,12,2016-07-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17497,11788,GO-20169007125,THEFT UNDER,2016-07-13,2016,July,Wednesday,13,195,8,2016-07-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17498,11804,GO-20169007194,THEFT UNDER,2016-07-14,2016,July,Thursday,14,196,1,2016-07-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17499,11823,GO-20161263344,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,22,2016-07-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17500,11896,GO-20169007698,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,21,2016-07-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17501,12001,GO-20169008237,THEFT UNDER - BICYCLE,2016-07-29,2016,July,Friday,29,211,1,2016-08-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17502,12035,GO-20169008436,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,10,2016-08-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17503,12036,GO-20169008436,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,10,2016-08-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17504,12046,GO-20169008497,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,2,2016-08-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17505,12081,GO-20169008718,THEFT UNDER - BICYCLE,2016-08-13,2016,August,Saturday,13,226,9,2016-08-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17506,12108,GO-20169008824,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,21,2016-08-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17507,12162,GO-20169009166,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,6,2016-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17508,12186,GO-20161491880,THEFT UNDER - BICYCLE,2016-08-22,2016,August,Monday,22,235,19,2016-08-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17509,12236,GO-20169009737,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,12,2016-08-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17510,12268,GO-20161579626,THEFT UNDER - BICYCLE,2016-08-31,2016,August,Wednesday,31,244,16,2016-09-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17511,12276,GO-20169010077,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,16,2016-09-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17512,12289,GO-20161583213,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,9,2016-09-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17513,12391,GO-20161662211,THEFT UNDER - BICYCLE,2016-09-18,2016,September,Sunday,18,262,8,2016-09-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17514,12414,GO-20161676482,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,9,2016-09-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17515,12430,GO-20169010934,THEFT UNDER,2016-09-21,2016,September,Wednesday,21,265,18,2016-09-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17516,12432,GO-20161667262,B&E,2016-08-01,2016,August,Monday,1,214,12,2016-09-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17517,12437,GO-20169011022,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,20,2016-09-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17518,12438,GO-20169011022,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,20,2016-09-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17519,12500,GO-20161730567,B&E,2016-07-27,2016,July,Wednesday,27,209,21,2016-09-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17520,12526,GO-20161750861,B&E,2016-09-25,2016,September,Sunday,25,269,0,2016-10-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17521,12592,GO-20169011869,THEFT UNDER,2016-10-11,2016,October,Tuesday,11,285,4,2016-10-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17522,12651,GO-20169012348,THEFT UNDER,2016-10-15,2016,October,Saturday,15,289,8,2016-10-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17523,12676,GO-20169012602,THEFT UNDER - BICYCLE,2016-10-25,2016,October,Tuesday,25,299,18,2016-10-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17524,12703,GO-20169012803,THEFT UNDER,2016-10-25,2016,October,Tuesday,25,299,21,2016-10-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17525,12750,GO-20169013254,THEFT UNDER,2016-10-24,2016,October,Monday,24,298,19,2016-11-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17526,12756,GO-20169013254,THEFT UNDER,2016-10-24,2016,October,Monday,24,298,19,2016-11-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17527,14267,GO-20209014730,THEFT UNDER,2020-05-29,2020,May,Friday,29,150,13,2020-06-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17528,14271,GO-20209015382,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,4,2020-06-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17529,14286,GO-20209018365,B&E,2020-07-23,2020,July,Thursday,23,205,19,2020-07-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17530,14289,GO-20209018784,THEFT UNDER,2020-06-27,2020,June,Saturday,27,179,8,2020-07-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17531,14303,GO-20209021578,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,19,2020-08-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17532,14311,GO-20209022400,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,20,2020-09-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17533,14319,GO-20209023392,THEFT UNDER,2020-09-08,2020,September,Tuesday,8,252,10,2020-09-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17534,14321,GO-20209023906,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,16,2020-09-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17535,6876,GO-20209019459,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,0,2020-08-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17536,20831,GO-20209028850,THEFT UNDER,2020-11-06,2020,November,Friday,6,311,12,2020-11-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17537,20832,GO-20209029128,THEFT UNDER,2020-11-01,2020,November,Sunday,1,306,5,2020-11-09,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17538,18326,GO-20142069863,B&E W'INTENT,2014-05-12,2014,May,Monday,12,132,23,2014-05-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17539,223,GO-20179004716,THEFT UNDER,2016-11-20,2016,November,Sunday,20,325,18,2017-04-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17540,20989,GO-20199011201,THEFT UNDER - BICYCLE,2019-03-30,2019,March,Saturday,30,89,1,2019-04-09,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17541,21010,GO-20199019154,THEFT UNDER - BICYCLE,2019-06-18,2019,June,Tuesday,18,169,8,2019-06-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17542,21011,GO-20199019154,THEFT UNDER - BICYCLE,2019-06-18,2019,June,Tuesday,18,169,8,2019-06-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17543,21028,GO-20199023634,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,10,2019-07-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17544,21071,GO-20199032019,THEFT UNDER - BICYCLE,2019-09-29,2019,September,Sunday,29,272,22,2019-09-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17545,21072,GO-20199032063,THEFT UNDER,2019-07-12,2019,July,Friday,12,193,21,2019-09-30,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17546,21085,GO-20199034823,THEFT UNDER - BICYCLE,2019-10-21,2019,October,Monday,21,294,23,2019-10-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17547,21087,GO-20199034915,THEFT UNDER - BICYCLE,2019-10-20,2019,October,Sunday,20,293,17,2019-10-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17548,21089,GO-20199035065,THEFT UNDER - BICYCLE,2019-10-18,2019,October,Friday,18,291,10,2019-10-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17549,21107,GO-20209004000,THEFT UNDER,2020-01-31,2020,January,Friday,31,31,21,2020-02-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17550,21125,GO-20209011427,THEFT UNDER,2020-04-18,2020,April,Saturday,18,109,3,2020-04-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17551,21136,GO-20209013312,THEFT UNDER,2020-05-10,2020,May,Sunday,10,131,13,2020-05-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17552,21143,GO-20209014709,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,3,2020-06-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17553,21170,GO-20179009107,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,10,2017-06-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17554,21189,GO-20179010780,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,1,2017-07-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17555,21198,GO-20179012915,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,22,2017-08-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17556,4273,GO-20199014877,THEFT UNDER - BICYCLE,2019-05-11,2019,May,Saturday,11,131,9,2019-05-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17557,6882,GO-20209019520,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,20,2020-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17558,21271,GO-20189015573,THEFT UNDER - BICYCLE,2018-05-19,2018,May,Saturday,19,139,9,2018-05-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17559,21274,GO-20189015851,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,9,2018-05-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17560,21279,GO-20189016997,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,23,2018-06-01,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17561,21359,GO-20181869880,B&E,2018-10-10,2018,October,Wednesday,10,283,6,2018-10-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17562,21360,GO-20181869880,B&E,2018-10-10,2018,October,Wednesday,10,283,6,2018-10-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17563,21386,GO-20169006226,THEFT UNDER,2016-06-22,2016,June,Wednesday,22,174,8,2016-06-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17564,21415,GO-20169009465,THEFT UNDER - BICYCLE,2016-08-26,2016,August,Friday,26,239,9,2016-08-26,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17565,21418,GO-20161587992,THEFT OF EBIKE UNDER $5000,2016-09-07,2016,September,Wednesday,7,251,2,2016-09-07,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17566,21424,GO-20161622118,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,19,2016-09-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17567,21440,GO-20169012557,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,11,2016-10-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17568,21449,GO-20169013648,THEFT UNDER - BICYCLE,2016-11-11,2016,November,Friday,11,316,21,2016-11-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17569,21458,GO-20179000507,THEFT UNDER,2017-01-11,2017,January,Wednesday,11,11,12,2017-01-11,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17570,21463,GO-20179002229,THEFT UNDER,2017-02-20,2017,February,Monday,20,51,12,2017-02-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17571,21791,GO-20149001446,THEFT UNDER,2014-02-19,2014,February,Wednesday,19,50,23,2014-02-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17572,21836,GO-20149007183,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,8,2014-09-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17573,21842,GO-20143150517,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,3,2014-10-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17574,21848,GO-2015214268,B&E,2015-02-05,2015,February,Thursday,5,36,1,2015-02-05,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17575,21878,GO-20151031585,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,0,2015-06-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17576,21885,GO-20159004101,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,15,2015-07-02,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17577,21886,GO-20151123524,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,23,2015-07-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17578,21897,GO-20159005045,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,1,2015-07-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17579,21899,GO-20151291510,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,22,2015-07-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17580,21901,GO-20159005194,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,15,2015-07-31,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17581,21917,GO-20151488020,B&E,2015-08-27,2015,August,Thursday,27,239,15,2015-08-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17582,21918,GO-20159006410,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,1,2015-08-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17583,21938,GO-20159010658,THEFT UNDER,2015-12-08,2015,December,Tuesday,8,342,22,2015-12-09,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17584,21953,GO-20169003639,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,20,2016-04-20,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17585,21954,GO-20169003729,THEFT UNDER,2016-04-21,2016,April,Thursday,21,112,22,2016-04-23,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17586,21963,GO-20169004504,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,2,2016-05-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17587,23802,GO-20201246805,B&E,2020-05-15,2020,May,Friday,15,136,12,2020-07-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17588,23806,GO-20209017342,THEFT UNDER,2020-07-11,2020,July,Saturday,11,193,20,2020-07-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17589,23823,GO-20209020435,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,23,2020-08-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17590,23824,GO-20209020544,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,0,2020-08-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17591,23833,GO-20209022676,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,16,2020-09-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17592,23840,GO-20201797360,B&E,2020-09-20,2020,September,Sunday,20,264,1,2020-09-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17593,23845,GO-20201885029,THEFT UNDER - BICYCLE,2020-10-01,2020,October,Thursday,1,275,17,2020-10-04,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17594,23857,GO-20209027826,THEFT UNDER,2020-10-27,2020,October,Tuesday,27,301,7,2020-10-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17595,24038,GO-20199015600,THEFT UNDER,2019-05-19,2019,May,Sunday,19,139,1,2019-05-19,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17596,24051,GO-20199019887,THEFT UNDER - BICYCLE,2019-06-23,2019,June,Sunday,23,174,21,2019-06-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17597,24052,GO-20199019887,THEFT UNDER - BICYCLE,2019-06-23,2019,June,Sunday,23,174,21,2019-06-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17598,24053,GO-20191179365,B&E,2019-06-25,2019,June,Tuesday,25,176,13,2019-06-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17599,24061,GO-20199021714,THEFT UNDER - BICYCLE,2019-07-07,2019,July,Sunday,7,188,23,2019-07-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17600,24073,GO-20199023478,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,14,2019-07-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17601,24083,GO-20199025173,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,17,2019-08-06,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17602,24129,GO-20192260888,PROPERTY - FOUND,2019-11-25,2019,November,Monday,25,329,10,2019-11-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17603,24188,GO-20209015351,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,0,2020-06-14,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17604,24199,GO-20179011593,THEFT UNDER,2017-07-28,2017,July,Friday,28,209,17,2017-08-03,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17605,24229,GO-20179014602,THEFT UNDER,2017-09-12,2017,September,Tuesday,12,255,9,2017-09-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17606,24233,GO-20179015717,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,21,2017-09-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17607,24241,GO-20179016865,THEFT UNDER,2017-10-08,2017,October,Sunday,8,281,22,2017-10-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17608,24251,GO-20179018022,THEFT UNDER,2017-10-24,2017,October,Tuesday,24,297,3,2017-10-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17609,24260,GO-20179019166,THEFT UNDER,2017-11-07,2017,November,Tuesday,7,311,22,2017-11-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17610,24264,GO-20173039323,FRAUD - IDENTITY/PERS W-INT,2017-11-20,2017,November,Monday,20,324,17,2017-11-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17611,24287,GO-20189009076,THEFT UNDER - BICYCLE,2018-03-20,2018,March,Tuesday,20,79,22,2018-03-22,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17612,24289,GO-20189009815,THEFT UNDER,2018-03-27,2018,March,Tuesday,27,86,1,2018-03-28,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17613,24293,GO-20189011482,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,0,2018-04-13,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17614,24304,GO-20189014645,THEFT UNDER,2018-05-12,2018,May,Saturday,12,132,12,2018-05-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17615,24382,GO-20189029232,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,9,2018-09-05,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17616,24578,GO-20171145997,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,22,2017-06-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17617,24598,GO-20149003632,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,2,2014-05-27,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17618,24604,GO-20142276093,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,13,2014-06-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17619,24635,GO-20149005784,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,12,2014-08-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17620,24642,GO-20149006395,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,0,2014-08-29,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17621,24698,GO-20159002863,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,17,2015-05-18,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17622,24715,GO-20159003949,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,19,2015-06-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17623,24775,GO-20159011068,THEFT UNDER,2015-12-16,2015,December,Wednesday,16,350,1,2015-12-17,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17624,25200,GO-20169005352,TRAFFICKING PROPERTY OBC UNDER,2016-06-03,2016,June,Friday,3,155,20,2016-06-05,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17625,25206,GO-2016996973,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,15,2016-06-08,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17626,25213,GO-20169006149,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,17,2016-06-21,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17627,25232,GO-20161347661,B&E,2016-07-30,2016,July,Saturday,30,212,0,2016-07-31,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17628,25240,GO-20161411604,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,10,2016-08-10,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17629,25251,GO-20161505085,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,0,2016-08-25,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17630,185,GO-20179004043,B&E,2017-03-30,2017,March,Thursday,30,89,21,2017-03-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17631,25259,GO-20161624612,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,16,2016-09-12,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17632,25292,GO-2017520854,B&E,2017-03-17,2017,March,Friday,17,76,19,2017-03-24,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)}",Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -17633,21,GO-20169014786,THEFT UNDER - BICYCLE,2016-12-15,2016,December,Thursday,15,350,17,2016-12-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17634,44,GO-20179000489,THEFT UNDER,2017-01-08,2017,January,Sunday,8,8,20,2017-01-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17635,46,GO-201764413,THEFT UNDER - BICYCLE,2017-01-10,2017,January,Tuesday,10,10,21,2017-01-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17636,83,GO-2017237216,THEFT UNDER - BICYCLE,2017-02-05,2017,February,Sunday,5,36,23,2017-02-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17637,120,GO-20179002592,THEFT UNDER - BICYCLE,2016-11-22,2016,November,Tuesday,22,327,2,2017-02-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17638,168,GO-20179003710,THEFT UNDER - BICYCLE,2017-03-17,2017,March,Friday,17,76,1,2017-03-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17639,18329,GO-20142128141,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,18,2014-05-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17640,4275,GO-2019876719,B&E,2019-05-10,2019,May,Friday,10,130,18,2019-05-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17641,18340,GO-20142296884,THEFT OVER,2014-05-10,2014,May,Saturday,10,130,19,2014-06-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17642,4281,GO-2019887325,B&E,2019-05-05,2019,May,Sunday,5,125,19,2019-05-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17643,18343,GO-20142400943,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,19,2014-06-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17644,4294,GO-20199015410,B&E,2019-05-06,2019,May,Monday,6,126,19,2019-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17645,18345,GO-20149004631,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,12,2014-07-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17646,4326,GO-20199015964,THEFT UNDER - BICYCLE,2019-05-22,2019,May,Wednesday,22,142,9,2019-05-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17647,18351,GO-20149005028,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,20,2014-07-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17648,4332,GO-2019883433,B&E,2019-05-07,2019,May,Tuesday,7,127,19,2019-05-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17649,18352,GO-20149005114,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,12,2014-07-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17650,4356,GO-20199016466,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,0,2019-05-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17651,18361,GO-20149006047,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,16,2014-08-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17652,4388,GO-20199017030,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,14,2019-05-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17653,305,GO-2017759528,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,17,2017-04-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17654,6964,GO-20209019681,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,11,2020-08-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17655,311,GO-20179005517,THEFT UNDER - BICYCLE,2017-04-01,2017,April,Saturday,1,91,0,2017-05-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17656,319,GO-20179005597,THEFT UNDER - BICYCLE,2017-05-02,2017,May,Tuesday,2,122,15,2017-05-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17657,6976,GO-20209020451,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,15,2020-08-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17658,326,GO-20179005699,THEFT UNDER - BICYCLE,2017-02-01,2017,February,Wednesday,1,32,0,2017-05-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17659,18364,GO-20149006317,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,7,2014-08-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17660,4404,GO-20199017215,THEFT UNDER - BICYCLE,2019-02-03,2019,February,Sunday,3,34,10,2019-06-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17661,6996,GO-20201539437,THEFT UNDER - BICYCLE,2020-08-10,2020,August,Monday,10,223,18,2020-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17662,18365,GO-20149006393,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,17,2014-08-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17663,4435,GO-20199017902,THEFT UNDER - BICYCLE,2019-06-08,2019,June,Saturday,8,159,19,2019-06-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17664,7058,GO-20209021146,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,0,2020-08-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17665,18390,GO-20159001805,THEFT UNDER,2015-04-07,2015,April,Tuesday,7,97,11,2015-04-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17666,4442,GO-20199018000,THEFT UNDER - BICYCLE,2019-06-10,2019,June,Monday,10,161,0,2019-06-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17667,7105,GO-20201623422,B&E,2020-08-28,2020,August,Friday,28,241,9,2020-08-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17668,18391,GO-20159001829,THEFT UNDER,2015-04-08,2015,April,Wednesday,8,98,20,2015-04-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17669,4453,GO-20199018150,THEFT UNDER - BICYCLE,2019-06-08,2019,June,Saturday,8,159,9,2019-06-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17670,7106,GO-20201623422,B&E,2020-08-28,2020,August,Friday,28,241,9,2020-08-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17671,18393,GO-20159001936,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,21,2015-04-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17672,4472,GO-20199018403,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,22,2019-06-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17673,7111,GO-20209021642,B&E,2020-08-27,2020,August,Thursday,27,240,4,2020-08-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17674,18394,GO-2015629883,THEFT UNDER,2015-03-07,2015,March,Saturday,7,66,0,2015-04-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17675,18395,GO-20159002021,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,22,2015-04-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17676,18423,GO-20151132704,B&E,2015-05-22,2015,May,Friday,22,142,8,2015-07-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17677,18441,GO-20159005377,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,20,2015-08-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17678,18446,GO-20151437606,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,13,2015-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17679,18447,GO-20159006034,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,21,2015-08-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17680,18467,GO-20159008872,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,23,2015-10-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17681,18468,GO-20159009237,THEFT UNDER,2015-11-01,2015,November,Sunday,1,305,13,2015-11-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17682,18472,GO-20169000422,THEFT UNDER,2016-01-11,2016,January,Monday,11,11,7,2016-01-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17683,18473,GO-20169000864,THEFT UNDER,2016-01-26,2016,January,Tuesday,26,26,21,2016-01-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17684,18475,GO-20169001570,THEFT UNDER,2016-02-20,2016,February,Saturday,20,51,1,2016-02-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17685,18483,GO-2016766006,THEFT UNDER,2016-04-30,2016,April,Saturday,30,121,18,2016-05-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17686,18486,GO-20169004495,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,20,2016-05-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17687,18487,GO-2016870683,THEFT UNDER - BICYCLE,2016-05-20,2016,May,Friday,20,141,14,2016-05-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17688,18498,GO-20169005757,THEFT UNDER,2016-06-12,2016,June,Sunday,12,164,3,2016-06-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17689,18500,GO-20161055600,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,18,2016-06-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17690,18504,GO-20161105830,THEFT UNDER - BICYCLE,2016-06-25,2016,June,Saturday,25,177,18,2016-06-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17691,332,GO-20179005771,THEFT UNDER,2017-04-29,2017,April,Saturday,29,119,17,2017-05-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17692,18505,GO-20161109671,B&E W'INTENT,2016-06-19,2016,June,Sunday,19,171,16,2016-06-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17693,20781,GO-20209018678,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,12,2020-07-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17694,20794,GO-20209020076,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,12,2020-08-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17695,20804,GO-20209022468,THEFT UNDER,2020-09-05,2020,September,Saturday,5,249,6,2020-09-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17696,20811,GO-20209022853,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,4,2020-09-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17697,20821,GO-20209026207,THEFT UNDER,2020-10-03,2020,October,Saturday,3,277,8,2020-10-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17698,20824,GO-20209027175,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,0,2020-10-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17699,20833,GO-20209029604,THEFT UNDER,2020-11-14,2020,November,Saturday,14,319,14,2020-11-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17700,20838,GO-20209030819,THEFT UNDER,2020-11-26,2020,November,Thursday,26,331,15,2020-11-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17701,20841,GO-20209032453,THEFT UNDER,2020-12-19,2020,December,Saturday,19,354,0,2020-12-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17702,20971,GO-20189040011,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,7,2018-11-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17703,20973,GO-20189040042,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,7,2018-11-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17704,20978,GO-20189043730,THEFT UNDER - BICYCLE,2018-12-30,2018,December,Sunday,30,364,11,2018-12-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17705,20983,GO-20199004043,THEFT UNDER - BICYCLE,2019-01-25,2019,January,Friday,25,25,20,2019-01-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17706,20986,GO-20199005693,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,15,2019-02-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17707,20987,GO-20199006584,THEFT UNDER - BICYCLE,2019-02-22,2019,February,Friday,22,53,15,2019-02-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17708,20991,GO-2019744842,THEFT UNDER - BICYCLE,2019-04-17,2019,April,Wednesday,17,107,15,2019-04-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17709,20995,GO-20199015377,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,3,2019-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17710,21000,GO-20199016689,THEFT UNDER - BICYCLE,2019-05-24,2019,May,Friday,24,144,22,2019-05-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17711,21017,GO-20199021145,THEFT UNDER - BICYCLE,2019-07-05,2019,July,Friday,5,186,14,2019-07-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17712,21022,GO-20199022071,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,15,2019-07-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17713,21026,GO-20199023203,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,22,2019-07-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17714,21037,GO-20199025080,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,3,2019-08-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17715,21038,GO-20191487530,B&E,2018-07-07,2018,July,Saturday,7,188,12,2019-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17716,21044,GO-20199026893,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,21,2019-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17717,21045,GO-20199026944,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,23,2019-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17718,21046,GO-20199027325,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,17,2019-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17719,21047,GO-20199027325,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,17,2019-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17720,21051,GO-20199027803,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,21,2019-08-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17721,21053,GO-20199028307,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,6,2019-08-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17722,21054,GO-20191590229,PROPERTY - LOST,2019-08-21,2019,August,Wednesday,21,233,7,2019-08-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17723,21055,GO-20191676984,B&E,2019-08-24,2019,August,Saturday,24,236,18,2019-09-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17724,21058,GO-20199029372,THEFT FROM MOTOR VEHICLE UNDER,2019-09-06,2019,September,Friday,6,249,7,2019-09-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17725,21067,GO-20199031257,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,21,2019-09-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17726,21084,GO-20199034467,THEFT UNDER - BICYCLE,2019-10-19,2019,October,Saturday,19,292,14,2019-10-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17727,21090,GO-20199035504,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,11,2019-10-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17728,21092,GO-20199036669,THEFT UNDER - BICYCLE,2019-11-05,2019,November,Tuesday,5,309,10,2019-11-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17729,21094,GO-20199037585,THEFT UNDER,2019-11-13,2019,November,Wednesday,13,317,2,2019-11-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17730,21095,GO-20192214469,B&E,2019-11-07,2019,November,Thursday,7,311,18,2019-11-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17731,21104,GO-202071342,THEFT OF EBIKE UNDER $5000,2019-12-01,2019,December,Sunday,1,335,10,2020-01-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17732,21112,GO-20209007558,THEFT UNDER - BICYCLE,2020-03-02,2020,March,Monday,2,62,9,2020-03-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17733,21117,GO-20209009147,THEFT UNDER,2020-03-16,2020,March,Monday,16,76,9,2020-03-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17734,21120,GO-20209010025,THEFT UNDER - BICYCLE,2020-03-28,2020,March,Saturday,28,88,12,2020-03-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17735,21141,GO-20209014503,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,20,2020-06-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17736,21142,GO-20209014700,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,13,2020-06-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17737,21165,GO-20209017856,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,21,2020-07-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17738,21176,GO-20179009412,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,16,2017-07-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17739,21180,GO-20179010075,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,18,2017-07-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17740,21181,GO-20179010075,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,18,2017-07-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17741,21183,GO-20179010305,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,9,2017-07-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17742,21186,GO-20171308490,THEFT OF EBIKE OVER $5000,2017-07-20,2017,July,Thursday,20,201,1,2017-07-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17743,21200,GO-20179013038,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,19,2017-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17744,21203,GO-20179013538,THEFT UNDER,2017-08-27,2017,August,Sunday,27,239,10,2017-08-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17745,21204,GO-20179013636,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,8,2017-08-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17746,21213,GO-20179014529,THEFT UNDER,2017-09-11,2017,September,Monday,11,254,22,2017-09-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17747,21222,GO-20179016883,THEFT UNDER,2017-10-07,2017,October,Saturday,7,280,20,2017-10-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17748,21226,GO-20171923508,B&E W'INTENT,2017-10-20,2017,October,Friday,20,293,15,2017-10-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17749,21227,GO-20171923508,B&E W'INTENT,2017-10-20,2017,October,Friday,20,293,15,2017-10-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17750,21256,GO-20189009008,THEFT UNDER - BICYCLE,2018-03-16,2018,March,Friday,16,75,14,2018-03-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17751,21264,GO-20189013974,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,19,2018-05-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17752,21276,GO-20189016423,THEFT UNDER - BICYCLE,2018-05-26,2018,May,Saturday,26,146,20,2018-05-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17753,21295,GO-20189019447,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,3,2018-06-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17754,21328,GO-20189025334,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,10,2018-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17755,21356,GO-20189033205,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,22,2018-10-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17756,21357,GO-20189033205,THEFT UNDER - BICYCLE,2018-10-06,2018,October,Saturday,6,279,22,2018-10-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17757,21358,GO-20189033335,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,2,2018-10-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17758,21364,GO-20189034531,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,9,2018-10-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17759,4482,GO-20199018548,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,9,2019-06-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17760,7132,GO-20209021705,THEFT UNDER,2020-08-23,2020,August,Sunday,23,236,15,2020-08-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17761,7176,GO-20209022277,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,12,2020-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17762,7179,GO-20201674240,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,16,2020-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17763,7181,GO-20209022405,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,12,2020-09-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17764,7192,GO-20209022486,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,13,2020-09-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17765,4483,GO-20199018548,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,9,2019-06-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17766,7221,GO-20209022805,THEFT UNDER - BICYCLE,2020-09-09,2020,September,Wednesday,9,253,17,2020-09-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17767,4552,GO-20191043870,B&E,2019-04-29,2019,April,Monday,29,119,12,2019-06-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17768,7230,GO-20201728019,THEFT OVER - BICYCLE,2020-08-29,2020,August,Saturday,29,242,12,2020-09-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17769,4561,GO-20199019436,THEFT UNDER - BICYCLE,2019-06-19,2019,June,Wednesday,19,170,12,2019-06-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17770,7321,GO-20209024096,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,23,2020-09-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17771,7389,GO-20209025025,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,15,2020-09-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17772,4566,GO-20199019492,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,13,2019-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17773,7472,GO-20201945094,THEFT UNDER - BICYCLE,2020-09-30,2020,September,Wednesday,30,274,18,2020-10-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17774,4632,GO-20199020364,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,21,2019-06-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17775,4778,GO-20199022399,THEFT UNDER,2019-05-25,2019,May,Saturday,25,145,20,2019-07-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17776,4797,GO-20199022815,THEFT UNDER,2019-07-17,2019,July,Wednesday,17,198,23,2019-07-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17777,4816,GO-20199023022,THEFT UNDER,2019-07-17,2019,July,Wednesday,17,198,18,2019-07-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17778,4835,GO-20199023208,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,17,2019-07-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17779,4842,GO-20199023313,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,23,2019-07-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17780,4861,GO-20191392962,THEFT OF EBIKE UNDER $5000,2019-07-23,2019,July,Tuesday,23,204,18,2019-07-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17781,4888,GO-20191408780,THEFT UNDER - BICYCLE,2019-07-13,2019,July,Saturday,13,194,12,2019-07-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17782,4920,GO-20199024293,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,23,2019-07-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17783,4947,GO-20199024548,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,12,2019-07-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17784,4960,GO-20191470271,B&E,2019-07-16,2019,July,Tuesday,16,197,21,2019-08-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17785,5003,GO-20199025408,THEFT UNDER - BICYCLE,2019-08-07,2019,August,Wednesday,7,219,19,2019-08-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17786,5020,GO-20199025593,THEFT UNDER - BICYCLE,2019-08-04,2019,August,Sunday,4,216,17,2019-08-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17787,5037,GO-20199025763,THEFT UNDER - BICYCLE,2019-08-10,2019,August,Saturday,10,222,12,2019-08-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17788,5099,GO-20199026767,THEFT UNDER - BICYCLE,2019-08-16,2019,August,Friday,16,228,23,2019-08-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17789,5113,GO-20199026957,THEFT UNDER - BICYCLE,2019-08-18,2019,August,Sunday,18,230,8,2019-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17790,5114,GO-20199026961,THEFT UNDER - BICYCLE,2019-08-07,2019,August,Wednesday,7,219,0,2019-08-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17791,5121,GO-20199027113,THEFT UNDER - BICYCLE,2019-08-20,2019,August,Tuesday,20,232,4,2019-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17792,5165,GO-20199027692,THEFT UNDER - BICYCLE,2019-08-26,2019,August,Monday,26,238,11,2019-08-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17793,5235,GO-20191679515,THEFT UNDER - BICYCLE,2019-09-01,2019,September,Sunday,1,244,21,2019-09-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17794,5247,GO-20199028872,THEFT UNDER - BICYCLE,2019-09-04,2019,September,Wednesday,4,247,6,2019-09-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17795,5251,GO-20199028908,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,20,2019-09-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17796,5266,GO-20199029126,THEFT UNDER,2019-09-07,2019,September,Saturday,7,250,1,2019-09-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17797,5275,GO-20191727079,THEFT OF EBIKE UNDER $5000,2019-09-06,2019,September,Friday,6,249,17,2019-09-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17798,5316,GO-20191763944,B&E,2019-09-13,2019,September,Friday,13,256,6,2019-09-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17799,5348,GO-20199030329,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,10,2019-09-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17800,5494,GO-20199033295,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,8,2019-10-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17801,5506,GO-20191951383,THEFT UNDER - BICYCLE,2019-09-24,2019,September,Tuesday,24,267,8,2019-10-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17802,5510,GO-20199033545,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,22,2019-10-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17803,5527,GO-20199034019,THEFT UNDER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,11,2019-10-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17804,5551,GO-20199034536,THEFT UNDER - BICYCLE,2019-10-20,2019,October,Sunday,20,293,2,2019-10-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17805,5604,GO-20199035418,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,23,2019-10-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17806,5663,GO-20192158070,B&E,2019-11-07,2019,November,Thursday,7,311,3,2019-11-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17807,5690,GO-20192200900,B&E,2019-11-13,2019,November,Wednesday,13,317,22,2019-11-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17808,5695,GO-20199037696,THEFT UNDER,2019-11-11,2019,November,Monday,11,315,20,2019-11-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17809,391,GO-2017848778,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,23,2017-05-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17810,5742,GO-20199039569,THEFT UNDER,2019-12-01,2019,December,Sunday,1,335,20,2019-12-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17811,5746,GO-20199039809,THEFT UNDER - BICYCLE,2019-11-20,2019,November,Wednesday,20,324,18,2019-12-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17812,5783,GO-20199041902,THEFT UNDER,2019-12-23,2019,December,Monday,23,357,17,2019-12-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17813,5784,GO-20199041902,THEFT UNDER,2019-12-23,2019,December,Monday,23,357,17,2019-12-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17814,5800,GO-20209000241,THEFT UNDER,2019-12-22,2019,December,Sunday,22,356,12,2020-01-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17815,5805,GO-20209000385,THEFT UNDER,2019-12-27,2019,December,Friday,27,361,17,2020-01-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17816,5810,GO-202043164,B&E W'INTENT,2019-12-27,2019,December,Friday,27,361,12,2020-01-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17817,5811,GO-202043164,B&E W'INTENT,2019-12-27,2019,December,Friday,27,361,12,2020-01-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17818,5828,GO-202093142,THEFT UNDER,2020-01-07,2020,January,Tuesday,7,7,5,2020-01-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17819,5829,GO-202093142,THEFT UNDER,2020-01-07,2020,January,Tuesday,7,7,5,2020-01-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17820,5834,GO-2020108283,THEFT UNDER,2020-01-16,2020,January,Thursday,16,16,13,2020-01-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17821,5900,GO-20209005762,THEFT UNDER,2020-01-24,2020,January,Friday,24,24,15,2020-02-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17822,5946,GO-20209007558,THEFT UNDER - BICYCLE,2020-03-02,2020,March,Monday,2,62,9,2020-03-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17823,5988,GO-20209009733,THEFT UNDER,2020-03-24,2020,March,Tuesday,24,84,6,2020-03-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17824,5994,GO-20209009919,THEFT UNDER,2020-03-21,2020,March,Saturday,21,81,17,2020-03-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17825,5999,GO-20209009852,THEFT FROM MOTOR VEHICLE UNDER,2020-03-24,2020,March,Tuesday,24,84,16,2020-03-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17826,6011,GO-2020437191,THEFT UNDER - BICYCLE,2020-02-01,2020,February,Saturday,1,32,10,2020-03-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17827,6056,GO-20209010993,THEFT UNDER,2020-04-03,2020,April,Friday,3,94,6,2020-04-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17828,6058,GO-20209011025,THEFT UNDER,2020-04-05,2020,April,Sunday,5,96,17,2020-04-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17829,6071,GO-20209011314,THEFT UNDER,2020-04-13,2020,April,Monday,13,104,17,2020-04-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17830,6074,GO-20209011382,THEFT UNDER,2020-04-11,2020,April,Saturday,11,102,14,2020-04-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17831,6078,GO-2020743011,THEFT UNDER,2020-04-13,2020,April,Monday,13,104,14,2020-04-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17832,6083,GO-20209011538,THEFT UNDER,2020-04-17,2020,April,Friday,17,108,11,2020-04-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17833,6096,GO-2020778804,B&E,2020-04-24,2020,April,Friday,24,115,10,2020-04-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17834,6111,GO-20209012024,THEFT UNDER,2020-04-27,2020,April,Monday,27,118,23,2020-04-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17835,6134,GO-2020743011,THEFT UNDER,2020-04-13,2020,April,Monday,13,104,14,2020-04-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17836,6150,GO-20209012595,THEFT UNDER,2020-05-06,2020,May,Wednesday,6,127,18,2020-05-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17837,6171,GO-20209012998,THEFT UNDER,2020-05-06,2020,May,Wednesday,6,127,19,2020-05-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17838,6193,GO-20209013276,THEFT UNDER - BICYCLE,2020-05-16,2020,May,Saturday,16,137,11,2020-05-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17839,6215,GO-20209013592,THEFT UNDER,2020-05-16,2020,May,Saturday,16,137,21,2020-05-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17840,6264,GO-20209014103,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,10,2020-05-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17841,6266,GO-20209014111,THEFT UNDER - BICYCLE,2020-05-27,2020,May,Wednesday,27,148,21,2020-05-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17842,6361,GO-20209015122,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,7,2020-06-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17843,6412,GO-20209015553,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,11,2020-06-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17844,6420,GO-20201115808,THEFT UNDER - BICYCLE,2020-06-16,2020,June,Tuesday,16,168,21,2020-06-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17845,6435,GO-20201148535,THEFT UNDER - BICYCLE,2020-06-21,2020,June,Sunday,21,173,15,2020-06-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17846,6461,GO-20209016084,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,0,2020-06-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17847,6497,GO-20209016484,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,18,2020-06-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17848,6521,GO-20209016719,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,2,2020-07-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17849,6537,GO-20209016927,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,20,2020-07-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17850,6538,GO-20209016719,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,2,2020-07-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17851,6643,GO-20209017763,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,11,2020-07-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17852,6717,GO-20209018365,B&E,2020-07-23,2020,July,Thursday,23,205,19,2020-07-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17853,6745,GO-20209018612,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,9,2020-07-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17854,6763,GO-20201376057,THEFT UNDER - BICYCLE,2020-07-23,2020,July,Thursday,23,205,22,2020-07-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17855,6766,GO-20209018721,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,21,2020-07-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17856,6801,GO-20209018858,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,18,2020-07-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17857,7522,GO-20209026948,THEFT UNDER,2020-10-16,2020,October,Friday,16,290,20,2020-10-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17858,7591,GO-20209028587,THEFT UNDER,2020-11-01,2020,November,Sunday,1,306,0,2020-11-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17859,7622,GO-20202145530,THEFT OVER - BICYCLE,2020-11-02,2020,November,Monday,2,307,16,2020-11-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17860,7623,GO-20202145530,THEFT OVER - BICYCLE,2020-11-02,2020,November,Monday,2,307,16,2020-11-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17861,7627,GO-20202139809,B&E,2020-11-11,2020,November,Wednesday,11,316,4,2020-11-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17862,7641,GO-20209029666,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,21,2020-11-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17863,7685,GO-20209030819,THEFT UNDER,2020-11-26,2020,November,Thursday,26,331,15,2020-11-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17864,7708,GO-20209032291,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,20,2020-12-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17865,7845,GO-20149002950,THEFT UNDER,2014-04-20,2014,April,Sunday,20,110,11,2014-04-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17866,7862,GO-20149003009,THEFT UNDER,2014-04-25,2014,April,Friday,25,115,14,2014-04-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17867,7872,GO-20141980914,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,17,2014-04-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17868,7897,GO-20149003248,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,9,2014-05-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17869,7908,GO-20149003285,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,17,2014-05-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17870,7938,GO-20149003402,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,21,2014-05-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17871,7984,GO-20142150849,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,13,2014-05-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17872,7993,GO-20149003636,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,12,2014-05-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17873,7999,GO-20149003670,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,23,2014-05-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17874,8027,GO-20142206712,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,17,2014-06-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17875,8118,GO-20149004033,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,10,2014-06-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17876,8119,GO-20149004033,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,10,2014-06-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17877,8130,GO-20149003962,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,0,2014-06-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17878,8137,GO-20149004068,B&E W'INTENT,2014-06-13,2014,June,Friday,13,164,23,2014-06-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17879,8145,GO-20149004111,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,18,2014-06-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17880,8153,GO-20149004137,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,16,2014-06-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17881,8187,GO-20149004233,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,23,2014-06-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17882,8236,GO-20149004398,PROPERTY - LOST,2014-06-19,2014,June,Thursday,19,170,22,2014-06-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17883,8354,GO-20142462491,THEFT OVER,2014-07-02,2014,July,Wednesday,2,183,0,2014-07-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17884,8432,GO-20149005023,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,6,2014-07-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17885,8456,GO-20149005124,SUSPICIOUS INCIDENT,2014-07-15,2014,July,Tuesday,15,196,15,2014-07-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17886,8461,GO-20149005161,THEFT UNDER,2014-07-20,2014,July,Sunday,20,201,14,2014-07-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17887,8481,GO-20149005230,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,19,2014-07-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17888,8508,GO-20149005326,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,12,2014-07-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17889,8596,GO-20149005670,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,19,2014-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17890,8606,GO-20142653621,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,16,2014-08-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17891,8622,GO-20149005738,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,22,2014-08-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17892,8628,GO-20142678925,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,19,2014-08-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17893,8630,GO-20142694576,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,18,2014-08-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17894,8732,GO-20142552818,B&E W'INTENT,2014-07-23,2014,July,Wednesday,23,204,0,2014-07-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17895,8746,GO-20149006238,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,20,2014-08-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17896,8749,GO-20149006331,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,18,2014-08-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17897,8771,GO-20149006408,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,21,2014-08-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17898,8799,GO-20142840572,FRAUD OVER,2014-09-04,2014,September,Thursday,4,247,11,2014-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17899,8800,GO-20142840572,FRAUD OVER,2014-09-04,2014,September,Thursday,4,247,11,2014-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17900,8801,GO-20142840572,FRAUD OVER,2014-09-04,2014,September,Thursday,4,247,11,2014-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17901,8802,GO-20142840572,FRAUD OVER,2014-09-04,2014,September,Thursday,4,247,11,2014-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17902,8803,GO-20142840572,FRAUD OVER,2014-09-04,2014,September,Thursday,4,247,11,2014-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17903,8805,GO-20149006552,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,0,2014-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17904,8809,GO-20149006563,THEFT UNDER,2014-08-30,2014,August,Saturday,30,242,21,2014-09-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17905,8863,GO-20149006766,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,19,2014-09-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17906,8958,GO-20142972420,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,0,2014-09-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17907,9018,GO-20143042417,THEFT UNDER,2014-10-04,2014,October,Saturday,4,277,15,2014-10-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17908,9093,GO-20143149549,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,19,2014-10-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17909,9122,GO-20149007867,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,17,2014-10-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17910,9220,GO-20143442996,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,9,2014-12-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17911,9221,GO-20143442996,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,9,2014-12-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17912,9254,GO-20159000154,THEFT UNDER,2015-01-08,2015,January,Thursday,8,8,1,2015-01-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17913,9264,GO-20159000276,THEFT UNDER,2015-01-12,2015,January,Monday,12,12,13,2015-01-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17914,9282,GO-20159000518,THEFT UNDER,2015-01-24,2015,January,Saturday,24,24,17,2015-01-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17915,9295,GO-20159000872,THEFT UNDER,2015-02-14,2015,February,Saturday,14,45,21,2015-02-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17916,9296,GO-20159000872,THEFT UNDER,2015-02-14,2015,February,Saturday,14,45,21,2015-02-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17917,9337,GO-20159001448,THEFT UNDER,2015-03-21,2015,March,Saturday,21,80,9,2015-03-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17918,9368,GO-20159001705,THEFT UNDER,2015-04-04,2015,April,Saturday,4,94,11,2015-04-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17919,9384,GO-20159001803,THEFT UNDER,2014-12-16,2014,December,Tuesday,16,350,14,2015-04-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17920,9507,GO-2015732555,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,20,2015-05-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17921,9509,GO-20159002397,B&E,2015-05-01,2015,May,Friday,1,121,9,2015-05-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17922,9510,GO-20159002397,B&E,2015-05-01,2015,May,Friday,1,121,9,2015-05-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17923,9553,GO-2015766163,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,12,2015-05-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17924,9586,GO-20159002745,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,19,2015-05-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17925,9589,GO-20159002760,B&E,2015-05-13,2015,May,Wednesday,13,133,19,2015-05-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17926,9631,GO-20159002998,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,18,2015-05-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17927,9651,GO-20159003077,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,14,2015-05-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17928,9655,GO-20159003101,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,18,2015-05-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17929,9657,GO-20159003110,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,1,2015-05-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17930,9658,GO-20159003113,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,17,2015-05-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17931,9660,GO-20159003121,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,17,2015-05-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17932,9667,GO-20159003140,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,13,2015-05-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17933,9828,GO-20159003719,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,9,2015-06-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17934,9873,GO-20151062996,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,10,2015-06-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17935,439,GO-20179006792,THEFT UNDER - BICYCLE,2017-05-22,2017,May,Monday,22,142,18,2017-05-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17936,502,GO-20179007197,THEFT UNDER,2017-05-11,2017,May,Thursday,11,131,17,2017-05-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17937,1255,GO-20179013460,THEFT UNDER,2017-08-21,2017,August,Monday,21,233,13,2017-08-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17938,510,GO-20179007310,THEFT UNDER,2017-05-27,2017,May,Saturday,27,147,17,2017-05-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17939,585,GO-20171043474,B&E,2017-06-06,2017,June,Tuesday,6,157,17,2017-06-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17940,586,GO-20171043474,B&E,2017-06-06,2017,June,Tuesday,6,157,17,2017-06-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17941,641,GO-20179008283,THEFT UNDER,2017-06-17,2017,June,Saturday,17,168,8,2017-06-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17942,655,GO-20171103091,B&E,2017-06-14,2017,June,Wednesday,14,165,21,2017-06-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17943,684,GO-20179008653,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,21,2017-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17944,697,GO-20179008774,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,1,2017-06-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17945,753,GO-20179009198,THEFT UNDER - BICYCLE,2017-03-01,2017,March,Wednesday,1,60,21,2017-06-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17946,769,GO-20179009371,THEFT UNDER - BICYCLE,2017-06-27,2017,June,Tuesday,27,178,3,2017-07-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17947,793,GO-20171196692,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,12,2017-07-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17948,930,GO-20171315865,FTC PROBATION ORDER,2017-07-22,2017,July,Saturday,22,203,12,2017-07-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17949,969,GO-20179010982,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,13,2017-07-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17950,970,GO-20179010987,THEFT UNDER,2017-07-21,2017,July,Friday,21,202,8,2017-07-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17951,1008,GO-20179011334,THEFT UNDER,2017-07-29,2017,July,Saturday,29,210,20,2017-07-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17952,1018,GO-20179011403,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,7,2017-07-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17953,1063,GO-20179011811,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,18,2017-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17954,1088,GO-20179011972,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,7,2017-08-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17955,1145,GO-20179012350,THEFT UNDER,2017-08-06,2017,August,Sunday,6,218,15,2017-08-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17956,1146,GO-20171468484,THEFT OF EBIKE UNDER $5000,2017-08-10,2017,August,Thursday,10,222,16,2017-08-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17957,1171,GO-20179012614,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,5,2017-08-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17958,1200,GO-20179012926,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,13,2017-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17959,1201,GO-20179012942,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,3,2017-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17960,1204,GO-20179012964,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,7,2017-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17961,1208,GO-20179012986,THEFT UNDER,2017-08-16,2017,August,Wednesday,16,228,22,2017-08-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17962,1283,GO-20179013807,THEFT UNDER - BICYCLE,2017-08-30,2017,August,Wednesday,30,242,22,2017-09-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17963,1299,GO-20171591322,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,14,2017-09-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17964,1325,GO-20179014089,THEFT UNDER,2017-09-06,2017,September,Wednesday,6,249,8,2017-09-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17965,1343,GO-20179014269,THEFT UNDER,2017-09-02,2017,September,Saturday,2,245,22,2017-09-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17966,1376,GO-20177021717,THEFT OVER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,7,2017-09-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17967,1378,GO-20179014529,THEFT UNDER,2017-09-11,2017,September,Monday,11,254,22,2017-09-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17968,1498,GO-20179015545,THEFT UNDER,2017-09-20,2017,September,Wednesday,20,263,10,2017-09-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17969,1520,GO-20179015724,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,23,2017-09-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17970,1555,GO-20179016117,THEFT UNDER - BICYCLE,2017-09-30,2017,September,Saturday,30,273,18,2017-09-30,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17971,1630,GO-20179016883,THEFT UNDER,2017-10-07,2017,October,Saturday,7,280,20,2017-10-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17972,1646,GO-20179016952,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,22,2017-10-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17973,1649,GO-20171834003,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,7,2017-10-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17974,1656,GO-20179017141,THEFT UNDER - BICYCLE,2017-10-13,2017,October,Friday,13,286,6,2017-10-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17975,1661,GO-20179017240,THEFT UNDER,2017-10-13,2017,October,Friday,13,286,10,2017-10-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17976,1666,GO-20179017295,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,20,2017-10-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17977,1678,GO-20179017460,THEFT UNDER,2017-10-12,2017,October,Thursday,12,285,17,2017-10-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17978,1730,GO-20179018029,THEFT UNDER - BICYCLE,2017-10-23,2017,October,Monday,23,296,18,2017-10-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17979,1733,GO-20179018041,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,12,2017-10-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17980,1747,GO-20179018226,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,17,2017-10-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17981,1748,GO-20179018247,THEFT UNDER - BICYCLE,2017-10-16,2017,October,Monday,16,289,0,2017-10-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17982,1769,GO-20171967007,B&E,2017-10-29,2017,October,Sunday,29,302,14,2017-10-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17983,1770,GO-20171967007,B&E,2017-10-29,2017,October,Sunday,29,302,14,2017-10-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17984,1812,GO-20172011419,THEFT UNDER - BICYCLE,2017-11-02,2017,November,Thursday,2,306,23,2017-11-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17985,1841,GO-20179019638,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,5,2017-11-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17986,1853,GO-20173018259,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,2,2017-11-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17987,1897,GO-20173096074,B&E,2017-09-16,2017,September,Saturday,16,259,17,2017-11-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17988,1906,GO-20179021164,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,9,2017-12-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17989,1933,GO-20179021926,THEFT UNDER - BICYCLE,2017-12-11,2017,December,Monday,11,345,19,2017-12-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17990,1940,GO-20179022257,THEFT UNDER,2017-12-08,2017,December,Friday,8,342,8,2017-12-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17991,1950,GO-20179022643,THEFT UNDER - BICYCLE,2017-11-09,2017,November,Thursday,9,313,15,2017-12-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17992,1959,GO-20179023056,THEFT UNDER,2017-12-13,2017,December,Wednesday,13,347,21,2017-12-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17993,1986,GO-20189001111,THEFT UNDER - BICYCLE,2018-01-13,2018,January,Saturday,13,13,16,2018-01-13,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17994,1991,GO-20189001631,THEFT UNDER - BICYCLE,2018-01-09,2018,January,Tuesday,9,9,10,2018-01-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17995,1992,GO-20189001631,THEFT UNDER - BICYCLE,2018-01-09,2018,January,Tuesday,9,9,10,2018-01-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17996,2000,GO-20189002355,THEFT UNDER,2018-01-18,2018,January,Thursday,18,18,16,2018-01-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17997,2027,GO-20189004398,THEFT UNDER,2018-02-11,2018,February,Sunday,11,42,0,2018-02-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17998,2047,GO-20189006014,THEFT UNDER - BICYCLE,2018-02-25,2018,February,Sunday,25,56,18,2018-02-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -17999,2052,GO-20189006196,THEFT UNDER - BICYCLE,2018-02-25,2018,February,Sunday,25,56,10,2018-02-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18000,2149,GO-20189011230,THEFT UNDER,2018-04-11,2018,April,Wednesday,11,101,7,2018-04-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18001,2172,GO-20189012063,THEFT UNDER,2018-04-18,2018,April,Wednesday,18,108,19,2018-04-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18002,2173,GO-20189012095,THEFT UNDER,2018-04-13,2018,April,Friday,13,103,22,2018-04-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18003,2177,GO-20189012165,THEFT UNDER - BICYCLE,2018-04-17,2018,April,Tuesday,17,107,12,2018-04-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18004,2182,GO-2018708388,B&E,2018-04-13,2018,April,Friday,13,103,0,2018-04-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18005,2183,GO-2018708388,B&E,2018-04-13,2018,April,Friday,13,103,0,2018-04-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18006,2185,GO-2018719819,B&E,2018-04-15,2018,April,Sunday,15,105,0,2018-04-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18007,2186,GO-2018719819,B&E,2018-04-15,2018,April,Sunday,15,105,0,2018-04-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18008,2188,GO-20189012485,THEFT UNDER - BICYCLE,2018-04-22,2018,April,Sunday,22,112,18,2018-04-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18009,2197,GO-20189012727,THEFT UNDER - BICYCLE,2018-04-22,2018,April,Sunday,22,112,22,2018-04-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18010,2205,GO-2018752080,THEFT UNDER - BICYCLE,2018-04-27,2018,April,Friday,27,117,0,2018-04-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18011,2214,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07,2018,April,Saturday,7,97,21,2018-04-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18012,2215,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07,2018,April,Saturday,7,97,21,2018-04-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18013,2216,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07,2018,April,Saturday,7,97,21,2018-04-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18014,2217,GO-20189013176,THEFT UNDER - BICYCLE,2018-04-07,2018,April,Saturday,7,97,21,2018-04-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18015,2219,GO-20189013213,THEFT UNDER - BICYCLE,2018-04-29,2018,April,Sunday,29,119,11,2018-04-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18016,2250,GO-20189013756,THEFT UNDER - BICYCLE,2018-04-28,2018,April,Saturday,28,118,9,2018-05-04,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18017,2262,GO-20189013974,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,19,2018-05-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18018,2328,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,18,2018-05-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18019,2362,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,18,2018-05-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18020,2443,GO-20189017185,THEFT UNDER - SHOPLIFTING,2018-06-02,2018,June,Saturday,2,153,23,2018-06-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18021,2554,GO-20181052234,THEFT UNDER - BICYCLE,2018-06-05,2018,June,Tuesday,5,156,21,2018-06-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18022,2615,GO-20181118196,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,3,2018-06-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18023,2639,GO-20189019595,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,9,2018-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18024,4697,GO-20199021369,THEFT UNDER - BICYCLE,2019-07-07,2019,July,Sunday,7,188,9,2019-07-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18025,4706,GO-20191275521,B&E,2019-06-30,2019,June,Sunday,30,181,10,2019-07-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18026,4806,GO-20199022902,THEFT UNDER,2019-07-15,2019,July,Monday,15,196,1,2019-07-19,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18027,4942,GO-20199024523,THEFT UNDER,2019-07-11,2019,July,Thursday,11,192,12,2019-07-31,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18028,4989,GO-20191497534,THEFT UNDER - BICYCLE,2019-07-24,2019,July,Wednesday,24,205,12,2019-08-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18029,15207,GO-20189006366,THEFT UNDER - BICYCLE,2018-02-21,2018,February,Wednesday,21,52,20,2018-02-28,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18030,5124,GO-20199027182,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,6,2019-08-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18031,5231,GO-20199028720,THEFT UNDER - BICYCLE,2019-09-01,2019,September,Sunday,1,244,13,2019-09-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18032,5374,GO-20199031015,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,7,2019-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18033,5378,GO-20199031102,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,7,2019-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18034,5409,GO-20199031571,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,17,2019-09-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18035,5461,GO-20191906055,THEFT UNDER - BICYCLE,2019-10-02,2019,October,Wednesday,2,275,23,2019-10-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18036,5481,GO-20199032854,THEFT UNDER - BICYCLE,2019-10-07,2019,October,Monday,7,280,9,2019-10-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18037,5540,GO-20191736438,PROPERTY - FOUND,2019-09-10,2019,September,Tuesday,10,253,14,2019-09-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18038,5543,GO-20192011007,THEFT UNDER - BICYCLE,2019-10-17,2019,October,Thursday,17,290,11,2019-10-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18039,5556,GO-20199034613,THEFT UNDER - BICYCLE,2019-10-13,2019,October,Sunday,13,286,5,2019-10-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18040,5719,GO-20199038462,THEFT UNDER,2019-11-22,2019,November,Friday,22,326,13,2019-11-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18041,5857,GO-20209003440,THEFT UNDER,2020-01-28,2020,January,Tuesday,28,28,8,2020-01-29,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18042,5937,GO-2020434974,THEFT UNDER,2020-03-01,2020,March,Sunday,1,61,0,2020-03-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18043,6246,GO-20209013886,THEFT UNDER - BICYCLE,2020-05-23,2020,May,Saturday,23,144,7,2020-05-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18044,6255,GO-20209013960,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,7,2020-05-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18045,6735,GO-20209018536,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,23,2020-07-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18046,6795,GO-20209018834,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,23,2020-07-29,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18047,1225,GO-20171528099,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,11,2017-08-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18048,6861,GO-20209019321,THEFT UNDER,2020-08-02,2020,August,Sunday,2,215,7,2020-08-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18049,6955,GO-20201524969,THEFT OF EBIKE UNDER $5000,2020-08-13,2020,August,Thursday,13,226,20,2020-08-14,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18050,6968,GO-20209020297,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,14,2020-08-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18051,6975,GO-20209020420,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,14,2020-08-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18052,7028,GO-20209020927,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,17,2020-08-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18053,7163,GO-20201668040,THEFT OF EBIKE UNDER $5000,2020-08-31,2020,August,Monday,31,244,4,2020-09-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18054,7195,GO-20209022520,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,0,2020-09-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18055,7319,GO-20209024073,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,0,2020-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18056,7320,GO-20209024073,THEFT UNDER,2020-09-21,2020,September,Monday,21,265,0,2020-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18057,7382,GO-20209024819,THEFT FROM MOTOR VEHICLE UNDER,2020-09-27,2020,September,Sunday,27,271,18,2020-09-28,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18058,7525,GO-20209027328,THEFT UNDER,2020-10-21,2020,October,Wednesday,21,295,12,2020-10-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18059,7542,GO-20209027635,THEFT UNDER,2020-10-22,2020,October,Thursday,22,296,0,2020-10-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18060,7598,GO-20209028880,THEFT UNDER,2020-11-04,2020,November,Wednesday,4,309,10,2020-11-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18061,7625,GO-20209029369,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,18,2020-11-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18062,7707,GO-20209032270,THEFT UNDER,2020-12-16,2020,December,Wednesday,16,351,22,2020-12-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18063,7826,GO-20141858506,THEFT UNDER,2014-04-03,2014,April,Thursday,3,93,12,2014-04-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18064,24187,GO-20209014985,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,19,2020-06-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18065,7965,GO-20142142275,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,11,2014-05-24,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18066,8017,GO-20149003730,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,19,2014-06-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18067,8162,GO-20142317581,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,17,2014-06-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18068,8243,GO-20149004421,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,22,2014-06-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18069,8564,GO-20149005553,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,18,2014-08-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18070,8690,GO-20149006066,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,12,2014-08-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18071,9186,GO-20143296324,THEFT UNDER,2014-11-13,2014,November,Thursday,13,317,20,2014-11-13,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18072,9223,GO-20143447263,THEFT UNDER,2014-12-04,2014,December,Thursday,4,338,15,2014-12-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18073,9237,GO-20143533658,THEFT UNDER,2014-12-18,2014,December,Thursday,18,352,17,2014-12-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18074,9273,GO-2015136116,THEFT UNDER,2015-01-23,2015,January,Friday,23,23,13,2015-01-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18075,10100,GO-20151263516,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,17,2015-07-24,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18076,10189,GO-20159005416,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,19,2015-08-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18077,10407,GO-20159006791,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,19,2015-09-05,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18078,10476,GO-20159007245,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,20,2015-09-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18079,10520,GO-20159007545,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,15,2015-09-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18080,10522,GO-20159007550,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,23,2015-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18081,10550,GO-20159007770,THEFT UNDER,2015-09-25,2015,September,Friday,25,268,12,2015-09-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18082,10623,GO-20159003649,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,20,2015-06-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18083,10668,GO-20151817208,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,8,2015-10-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18084,10669,GO-20151817208,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,8,2015-10-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18085,10860,GO-20152124405,B&E W'INTENT,2015-11-21,2015,November,Saturday,21,325,0,2015-12-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18086,10861,GO-20152124405,B&E W'INTENT,2015-11-21,2015,November,Saturday,21,325,0,2015-12-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18087,10911,GO-201636299,B&E W'INTENT,2015-12-19,2015,December,Saturday,19,353,0,2016-01-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18088,11009,GO-2016326082,THEFT UNDER - BICYCLE,2016-02-23,2016,February,Tuesday,23,54,8,2016-02-24,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18089,11034,GO-20169002178,THEFT UNDER,2016-03-10,2016,March,Thursday,10,70,10,2016-03-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18090,11279,GO-2016797099,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,16,2016-05-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18091,11619,GO-20169006240,THEFT UNDER,2016-06-22,2016,June,Wednesday,22,174,12,2016-06-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18092,11780,GO-20169007106,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,7,2016-07-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18093,11782,GO-20161203287,THEFT OF EBIKE UNDER $5000,2016-06-12,2016,June,Sunday,12,164,16,2016-07-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18094,12073,GO-20161408255,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,17,2016-08-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18095,12715,GO-20169012930,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,10,2016-11-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18096,12862,GO-20162188411,PROPERTY - FOUND,2016-12-10,2016,December,Saturday,10,345,10,2016-12-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18097,14268,GO-20209014957,THEFT UNDER,2020-06-06,2020,June,Saturday,6,158,12,2020-06-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18098,14299,GO-20209020850,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,22,2020-08-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18099,14470,GO-20189035138,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,22,2018-10-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18100,14485,GO-201920076,B&E,2018-01-02,2018,January,Tuesday,2,2,17,2019-01-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18101,14494,GO-20199006205,THEFT UNDER - BICYCLE,2019-02-04,2019,February,Monday,4,35,10,2019-02-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18102,14504,GO-20199011682,THEFT UNDER - BICYCLE,2019-04-12,2019,April,Friday,12,102,15,2019-04-13,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18103,14520,GO-20199018148,THEFT UNDER - BICYCLE,2019-06-11,2019,June,Tuesday,11,162,4,2019-06-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18104,14530,GO-20191199402,B&E W'INTENT,2019-06-06,2019,June,Thursday,6,157,20,2019-06-28,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18105,14534,GO-20199020916,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,22,2019-07-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18106,14535,GO-20199020916,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,22,2019-07-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18107,14536,GO-20199020916,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,22,2019-07-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18108,14558,GO-20199025174,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,10,2019-08-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18109,14560,GO-20199025611,THEFT UNDER,2019-08-05,2019,August,Monday,5,217,14,2019-08-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18110,14584,GO-20199031015,THEFT UNDER,2019-09-12,2019,September,Thursday,12,255,7,2019-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18111,14609,GO-20192493793,THEFT UNDER - BICYCLE,2019-12-24,2019,December,Tuesday,24,358,13,2019-12-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18112,14621,GO-2020606396,B&E,2020-03-26,2020,March,Thursday,26,86,0,2020-03-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18113,14628,GO-20209011649,THEFT UNDER,2020-04-18,2020,April,Saturday,18,109,14,2020-04-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18114,14638,GO-20209013423,THEFT UNDER,2020-05-17,2020,May,Sunday,17,138,1,2020-05-19,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18115,14665,GO-20179009379,THEFT UNDER,2017-07-03,2017,July,Monday,3,184,18,2017-07-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18116,14671,GO-20179010288,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,9,2017-07-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18117,14701,GO-20179013272,THEFT UNDER - BICYCLE,2016-11-27,2016,November,Sunday,27,332,20,2017-08-24,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18118,14706,GO-20179013922,THEFT UNDER,2017-09-02,2017,September,Saturday,2,245,18,2017-09-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18119,14712,GO-20179014314,THEFT UNDER,2017-08-18,2017,August,Friday,18,230,16,2017-09-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18120,14720,GO-20179015445,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,16,2017-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18121,14725,GO-20171712868,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,19,2017-09-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18122,14796,GO-20189017689,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,0,2018-06-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18123,14834,GO-20189026121,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,17,2018-08-13,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18124,15060,GO-20149004796,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,9,2014-07-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18125,15069,GO-20149006334,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,13,2014-08-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18126,15101,GO-20151460070,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,16,2015-08-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18127,21362,GO-20189034164,THEFT UNDER,2018-10-13,2018,October,Saturday,13,286,21,2018-10-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18128,7990,GO-20142156194,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,17,2014-05-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18129,1302,GO-20179013958,THEFT UNDER,2017-09-02,2017,September,Saturday,2,245,14,2017-09-04,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18130,21384,GO-20169006177,THEFT UNDER,2016-06-19,2016,June,Sunday,19,171,23,2016-06-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18131,24164,GO-2020719682,THEFT UNDER - BICYCLE,2020-04-11,2020,April,Saturday,11,102,10,2020-04-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18132,24194,GO-20179010901,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,14,2017-07-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18133,15350,GO-20149006284,THEFT UNDER,2014-08-22,2014,August,Friday,22,234,18,2014-08-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18134,8043,GO-20142218680,B&E W'INTENT,2014-01-03,2014,January,Friday,3,3,19,2014-06-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18135,8431,GO-20149005021,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,15,2014-07-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18136,8464,GO-20149005165,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,23,2014-07-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18137,8591,GO-20149005641,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,13,2014-08-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18138,8811,GO-20149006568,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,21,2014-09-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18139,8989,GO-20143001036,THEFT UNDER,2014-09-27,2014,September,Saturday,27,270,21,2014-09-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18140,8991,GO-20143003658,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,13,2014-09-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18141,9211,GO-20143417934,THEFT UNDER,2014-12-03,2014,December,Wednesday,3,337,0,2014-12-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18142,9212,GO-20143417934,THEFT UNDER,2014-12-03,2014,December,Wednesday,3,337,0,2014-12-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18143,9389,GO-20159001834,THEFT UNDER,2015-04-09,2015,April,Thursday,9,99,9,2015-04-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18144,9393,GO-20159001877,THEFT UNDER,2015-04-12,2015,April,Sunday,12,102,11,2015-04-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18145,9406,GO-20159001943,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,9,2015-04-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18146,9409,GO-20159001948,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,2,2015-04-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18147,9411,GO-20159001956,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,21,2015-04-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18148,9412,GO-20159001948,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,2,2015-04-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18149,9426,GO-20159002032,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,18,2015-04-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18150,9457,GO-20159002150,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,19,2015-04-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18151,9470,GO-2015684893,THEFT UNDER,2015-03-22,2015,March,Sunday,22,81,16,2015-04-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18152,9544,GO-2015758766,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,13,2015-05-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18153,9600,GO-20159002847,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,13,2015-05-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18154,9670,GO-20159002847,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,13,2015-05-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18155,9920,GO-20159004087,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,3,2015-07-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18156,10008,GO-20159004469,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,22,2015-07-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18157,10244,GO-20159005652,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,7,2015-08-11,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18158,10542,GO-20159007715,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,8,2015-09-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18159,10608,GO-20151738263,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,20,2015-10-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18160,10674,GO-20159008874,THEFT UNDER,2015-10-17,2015,October,Saturday,17,290,16,2015-10-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18161,10758,GO-20159009663,THEFT UNDER,2015-10-02,2015,October,Friday,2,275,1,2015-11-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18162,10859,GO-20159010780,THEFT UNDER,2015-12-10,2015,December,Thursday,10,344,14,2015-12-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18163,10867,GO-20152140260,THEFT UNDER,2015-11-29,2015,November,Sunday,29,333,8,2015-12-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18164,11193,GO-2016700526,THEFT UNDER,2016-04-24,2016,April,Sunday,24,115,17,2016-04-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18165,11231,GO-2016736823,THEFT UNDER - BICYCLE,2016-04-29,2016,April,Friday,29,120,16,2016-04-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18166,11474,GO-2016989427,THEFT UNDER - BICYCLE,2016-06-04,2016,June,Saturday,4,156,17,2016-06-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18167,11594,GO-20169006102,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,22,2016-06-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18168,11731,GO-20161177818,B&E,2016-06-29,2016,June,Wednesday,29,181,9,2016-07-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18169,11742,GO-20169006873,THEFT UNDER,2016-04-28,2016,April,Thursday,28,119,20,2016-07-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18170,11757,GO-20161206347,LIQUOR - INTOXICATED,2016-07-10,2016,July,Sunday,10,192,5,2016-07-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18171,12037,GO-20169008438,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,20,2016-08-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18172,12196,GO-20169009451,THEFT UNDER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,15,2016-08-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18173,12231,GO-20169009676,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,21,2016-08-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18174,12327,GO-20169010345,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,16,2016-09-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18175,12363,GO-20161647903,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,17,2016-09-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18176,12452,GO-20169011091,THEFT UNDER,2016-09-25,2016,September,Sunday,25,269,17,2016-09-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18177,12458,GO-20169011118,B&E,2016-09-25,2016,September,Sunday,25,269,9,2016-09-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18178,12493,GO-20169011281,THEFT UNDER,2016-09-26,2016,September,Monday,26,270,15,2016-09-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18179,12609,GO-20169011997,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,18,2016-10-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18180,12640,GO-20161858661,THEFT UNDER,2016-10-18,2016,October,Tuesday,18,292,23,2016-10-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18181,12647,GO-20161864520,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,21,2016-10-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18182,12804,GO-20162068804,B&E,2016-10-01,2016,October,Saturday,1,275,0,2016-11-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18183,14301,GO-20209021359,THEFT UNDER,2020-08-25,2020,August,Tuesday,25,238,20,2020-08-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18184,14310,GO-20201679740,B&E,2020-09-01,2020,September,Tuesday,1,245,16,2020-09-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18185,14322,GO-20209024341,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,10,2020-09-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18186,14324,GO-20209025723,THEFT UNDER,2020-10-02,2020,October,Friday,2,276,17,2020-10-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18187,14333,GO-20209028152,THEFT UNDER,2020-10-29,2020,October,Thursday,29,303,15,2020-10-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18188,14336,GO-20209028949,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,0,2020-11-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18189,14481,GO-20182267468,B&E,2018-11-14,2018,November,Wednesday,14,318,18,2018-12-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18190,14482,GO-20189042620,THEFT UNDER - BICYCLE,2018-12-10,2018,December,Monday,10,344,12,2018-12-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18191,14489,GO-2019124027,THEFT UNDER - BICYCLE,2019-01-02,2019,January,Wednesday,2,2,12,2019-01-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18192,14506,GO-20199012185,THEFT UNDER - BICYCLE,2019-04-15,2019,April,Monday,15,105,0,2019-04-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18193,14539,GO-20199022108,THEFT UNDER - BICYCLE,2019-02-16,2019,February,Saturday,16,47,10,2019-07-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18194,14616,GO-20209003550,THEFT UNDER,2020-01-29,2020,January,Wednesday,29,29,0,2020-01-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18195,14629,GO-20209011930,THEFT UNDER,2020-04-23,2020,April,Thursday,23,114,15,2020-04-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18196,14675,GO-20171333779,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,4,2017-07-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18197,14679,GO-20179011131,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,10,2017-07-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18198,14736,GO-20179017952,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,20,2017-10-23,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18199,14740,GO-20179019239,THEFT UNDER,2017-11-08,2017,November,Wednesday,8,312,18,2017-11-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18200,14746,GO-20179020671,THEFT UNDER - BICYCLE,2017-11-27,2017,November,Monday,27,331,2,2017-11-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18201,14798,GO-20189017982,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,18,2018-06-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18202,15050,GO-20142114389,B&E,2014-05-17,2014,May,Saturday,17,137,12,2014-05-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18203,15067,GO-20142753015,B&E,2014-08-22,2014,August,Friday,22,234,0,2014-08-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18204,15074,GO-20149006867,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,4,2014-09-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18205,15119,GO-20169004966,THEFT UNDER - BICYCLE,2016-05-23,2016,May,Monday,23,144,21,2016-05-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18206,15131,GO-20161429271,THEFT UNDER - BICYCLE,2016-08-13,2016,August,Saturday,13,226,4,2016-08-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18207,15167,GO-20179004641,THEFT UNDER,2017-04-12,2017,April,Wednesday,12,102,21,2017-04-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18208,15192,GO-20179013795,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,16,2017-09-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18209,15230,GO-20189024361,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,21,2018-07-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18210,15231,GO-20189024361,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,21,2018-07-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18211,15256,GO-20199003764,THEFT UNDER - BICYCLE,2019-01-28,2019,January,Monday,28,28,10,2019-01-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18212,15281,GO-20199027203,THEFT UNDER,2019-08-21,2019,August,Wednesday,21,233,19,2019-08-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18213,15289,GO-20199036746,THEFT UNDER,2019-10-03,2019,October,Thursday,3,276,22,2019-11-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18214,15297,GO-20209010140,THEFT UNDER,2020-03-16,2020,March,Monday,16,76,15,2020-03-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18215,15383,GO-20143403101,B&E,2014-11-30,2014,November,Sunday,30,334,20,2014-12-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18216,15385,GO-20149008700,THEFT UNDER,2014-12-04,2014,December,Thursday,4,338,9,2014-12-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18217,15392,GO-2015625005,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,2,2015-04-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18218,15451,GO-20159007168,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,8,2015-09-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18219,15503,GO-20169005299,THEFT UNDER,2016-06-02,2016,June,Thursday,2,154,22,2016-06-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18220,15511,GO-20169005679,THEFT UNDER,2016-06-12,2016,June,Sunday,12,164,15,2016-06-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18221,15534,GO-20169008325,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,0,2016-08-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18222,15563,GO-20161738600,THEFT OF EBIKE UNDER $5000,2016-09-28,2016,September,Wednesday,28,272,23,2016-09-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18223,15590,GO-20179003912,THEFT UNDER - BICYCLE,2017-03-27,2017,March,Monday,27,86,1,2017-03-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18224,15594,GO-20179004278,THEFT UNDER - BICYCLE,2017-03-29,2017,March,Wednesday,29,88,19,2017-04-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18225,15614,GO-20179008080,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,20,2017-06-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18226,17322,GO-20209012749,THEFT UNDER - BICYCLE,2020-05-05,2020,May,Tuesday,5,126,17,2020-05-08,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18227,17541,GO-2019349834,B&E,2019-02-15,2019,February,Friday,15,46,12,2019-02-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18228,17587,GO-20199020444,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,19,2019-06-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18229,17609,GO-20199023489,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,1,2019-07-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18230,17652,GO-20199033525,THEFT UNDER - BICYCLE,2019-09-24,2019,September,Tuesday,24,267,13,2019-10-11,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18231,17655,GO-20191977169,THEFT UNDER - BICYCLE,2019-10-13,2019,October,Sunday,13,286,4,2019-10-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18232,24234,GO-20179015785,THEFT UNDER,2017-09-21,2017,September,Thursday,21,264,22,2017-09-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18233,1446,GO-20179015081,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,19,2017-09-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18234,1522,GO-20179011287,THEFT UNDER,2017-07-29,2017,July,Saturday,29,210,1,2017-07-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18235,21593,GO-20149006161,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,15,2014-08-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18236,1735,GO-20179018091,THEFT UNDER,2017-10-22,2017,October,Sunday,22,295,23,2017-10-24,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18237,24244,GO-20179017080,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,11,2017-10-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18238,15393,GO-20159001967,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,10,2015-04-16,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18239,24166,GO-2020761373,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,14,2020-04-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18240,24167,GO-2020761373,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,14,2020-04-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18241,24173,GO-20209013182,THEFT UNDER,2020-05-15,2020,May,Friday,15,136,9,2020-05-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18242,24174,GO-20209013246,THEFT UNDER,2020-05-02,2020,May,Saturday,2,123,12,2020-05-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18243,24176,GO-20209013322,THEFT UNDER - BICYCLE,2020-05-16,2020,May,Saturday,16,137,15,2020-05-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18244,24180,GO-20209014352,THEFT UNDER,2020-05-24,2020,May,Sunday,24,145,0,2020-06-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18245,24184,GO-20209014659,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,14,2020-06-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18246,24198,GO-20179011590,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,16,2017-08-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18247,24203,GO-20179011802,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,15,2017-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18248,24210,GO-20179012584,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,9,2017-08-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18249,24226,GO-20171648789,B&E,2017-08-26,2017,August,Saturday,26,238,18,2017-09-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18250,24227,GO-20171648789,B&E,2017-08-26,2017,August,Saturday,26,238,18,2017-09-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18251,24235,GO-20179015891,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,1,2017-09-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18252,24238,GO-20179016288,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,20,2017-10-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18253,24240,GO-20179016813,THEFT UNDER,2017-10-04,2017,October,Wednesday,4,277,0,2017-10-09,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18254,24254,GO-20171938873,THEFT UNDER - BICYCLE,2017-10-23,2017,October,Monday,23,296,19,2017-10-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18255,24255,GO-20171938873,THEFT UNDER - BICYCLE,2017-10-23,2017,October,Monday,23,296,19,2017-10-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18256,24262,GO-20179019752,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,8,2017-11-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18257,24274,GO-20189002531,THEFT UNDER,2018-01-20,2018,January,Saturday,20,20,10,2018-01-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18258,24277,GO-20189005056,THEFT UNDER,2018-01-28,2018,January,Sunday,28,28,21,2018-02-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18259,24286,GO-20189009008,THEFT UNDER - BICYCLE,2018-03-16,2018,March,Friday,16,75,14,2018-03-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18260,24288,GO-20189009200,B&E,2018-03-21,2018,March,Wednesday,21,80,17,2018-03-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18261,24307,GO-20189015210,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,18,2018-05-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18262,24314,GO-20181114054,POSSESSION PROPERTY OBC UNDER,2018-06-19,2018,June,Tuesday,19,170,12,2018-06-19,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18263,24322,GO-20189020486,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,2,2018-06-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18264,24323,GO-20189020486,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,2,2018-06-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18265,24324,GO-20189020558,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,16,2018-06-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18266,24325,GO-20189020686,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,18,2018-06-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18267,1861,GO-20179020010,THEFT UNDER - BICYCLE,2017-11-19,2017,November,Sunday,19,323,15,2017-11-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18268,21605,GO-20149008929,THEFT UNDER,2014-12-23,2014,December,Tuesday,23,357,19,2014-12-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18269,24245,GO-20171862227,THEFT UNDER - BICYCLE,2017-10-13,2017,October,Friday,13,286,19,2017-10-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18270,15455,GO-20151619775,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,14,2015-09-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18271,24333,GO-20189021483,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,17,2018-07-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18272,24358,GO-20181440591,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,2,2018-08-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18273,24365,GO-20189026564,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18274,24385,GO-20189030377,THEFT UNDER - BICYCLE,2018-09-12,2018,September,Wednesday,12,255,16,2018-09-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18275,24387,GO-20189030820,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,12,2018-09-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18276,24390,GO-20189032712,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,6,2018-10-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18277,24594,GO-20142033991,THEFT UNDER,2014-04-19,2014,April,Saturday,19,109,18,2014-05-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18278,24599,GO-20149003656,THEFT UNDER,2014-04-15,2014,April,Tuesday,15,105,13,2014-05-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18279,24607,GO-20149004220,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,19,2014-06-18,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18280,24610,GO-20149004375,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,23,2014-06-23,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18281,24615,GO-20142422430,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,10,2014-07-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18282,24617,GO-20142483816,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,17,2014-07-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18283,24624,GO-20149004994,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,21,2014-07-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18284,24631,GO-20149005212,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,15,2014-07-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18285,24637,GO-20142748192,B&E,2014-08-20,2014,August,Wednesday,20,232,18,2014-08-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18286,24641,GO-20149006361,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,10,2014-08-27,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18287,24656,GO-20149007224,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,10,2014-09-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18288,17656,GO-20199034082,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,13,2019-10-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18289,11659,GO-20169006500,THEFT UNDER - BICYCLE,2016-06-09,2016,June,Thursday,9,161,19,2016-06-28,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18290,24669,GO-20149007653,THEFT UNDER,2014-10-17,2014,October,Friday,17,290,17,2014-10-17,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18291,24680,GO-20159000112,THEFT UNDER,2015-01-06,2015,January,Tuesday,6,6,18,2015-01-07,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18292,24681,GO-20159000485,THEFT UNDER,2015-01-25,2015,January,Sunday,25,25,16,2015-01-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18293,24688,GO-20159001966,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,18,2015-04-16,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18294,24691,GO-20159002111,THEFT UNDER,2015-04-11,2015,April,Saturday,11,101,14,2015-04-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18295,24693,GO-20159002270,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,14,2015-04-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18296,24697,GO-20159002736,THEFT UNDER,2015-02-27,2015,February,Friday,27,58,18,2015-05-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18297,24701,GO-2015874429,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,20,2015-05-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18298,24704,GO-20159003426,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,23,2015-06-08,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18299,24716,GO-20151092094,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,8,2015-06-29,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18300,24718,GO-20159004221,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,21,2015-07-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18301,24727,GO-20159004865,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,8,2015-07-22,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18302,24731,GO-20159005354,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,10,2015-08-05,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18303,24733,GO-20159005627,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,9,2015-08-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18304,24755,GO-20159007452,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,12,2015-09-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18305,24758,GO-20159008425,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,11,2015-10-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18306,24768,GO-20159008996,THEFT OVER,2015-10-24,2015,October,Saturday,24,297,17,2015-10-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18307,24777,GO-201687783,THEFT UNDER,2015-12-21,2015,December,Monday,21,355,9,2016-01-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18308,25187,GO-20169004414,THEFT UNDER - BICYCLE,2016-05-08,2016,May,Sunday,8,129,1,2016-05-11,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18309,25188,GO-2016818862,THEFT UNDER,2016-05-12,2016,May,Thursday,12,133,1,2016-05-12,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18310,25198,GO-2016955473,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,19,2016-06-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18311,25199,GO-20169005317,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,2,2016-06-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18312,25201,GO-20169005368,THEFT UNDER,2016-06-03,2016,June,Friday,3,155,0,2016-06-06,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18313,25210,GO-20169006043,THEFT UNDER,2016-06-18,2016,June,Saturday,18,170,18,2016-06-20,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18314,25212,GO-20169006118,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,10,2016-06-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18315,25218,GO-20169006465,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,18,2016-06-28,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18316,25226,GO-20161240308,B&E,2016-07-10,2016,July,Sunday,10,192,4,2016-07-15,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18317,25229,GO-20169007540,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,19,2016-07-21,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18318,25230,GO-20169007671,THEFT UNDER - BICYCLE,2016-07-02,2016,July,Saturday,2,184,10,2016-07-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18319,25242,GO-20169008707,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,4,2016-08-14,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18320,25250,GO-20169009438,THEFT UNDER - BICYCLE,2016-08-22,2016,August,Monday,22,235,8,2016-08-24,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18321,25258,GO-20169010238,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,19,2016-09-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18322,25270,GO-20169011123,THEFT UNDER,2016-09-23,2016,September,Friday,23,267,20,2016-09-26,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18323,25281,GO-20169012549,B&E,2016-10-19,2016,October,Wednesday,19,293,3,2016-10-25,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18324,25286,GO-20169014124,THEFT UNDER - BICYCLE,2016-12-01,2016,December,Thursday,1,336,17,2016-12-02,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18325,25289,GO-2017191426,THEFT UNDER - BICYCLE,2017-01-27,2017,January,Friday,27,27,17,2017-01-31,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18326,25294,GO-20179004068,THEFT UNDER,2017-04-01,2017,April,Saturday,1,91,12,2017-04-01,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18327,25295,GO-2017588835,FRAUD OVER,2017-03-05,2017,March,Sunday,5,64,18,2017-04-03,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18328,25296,GO-2017631386,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,6,2017-04-10,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)}",Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -18329,143,GO-2017420146,THEFT OF EBIKE UNDER $5000,2017-03-07,2017,March,Tuesday,7,66,5,2017-03-08,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18330,277,GO-20179005225,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,15,2017-04-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18331,304,GO-2017759223,THEFT UNDER - BICYCLE,2017-04-26,2017,April,Wednesday,26,116,3,2017-04-30,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18332,381,GO-2017841893,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,8,2017-05-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18333,407,GO-20179006491,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,0,2017-05-17,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18334,468,GO-2017921386,THEFT UNDER,2017-05-24,2017,May,Wednesday,24,144,20,2017-05-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18335,469,GO-2017921386,THEFT UNDER,2017-05-24,2017,May,Wednesday,24,144,20,2017-05-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18336,476,GO-2017930988,THEFT UNDER - BICYCLE,2017-05-26,2017,May,Friday,26,146,11,2017-05-26,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18337,653,GO-20179008442,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,19,2017-06-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18338,656,GO-20179008456,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,22,2017-06-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18339,659,GO-20179008503,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,2,2017-06-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18340,923,GO-20171296001,THEFT OF EBIKE UNDER $5000,2017-07-11,2017,July,Tuesday,11,192,12,2017-07-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18341,932,GO-20179010701,THEFT UNDER,2017-07-19,2017,July,Wednesday,19,200,17,2017-07-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18342,1070,GO-20179011882,B&E,2017-06-25,2017,June,Sunday,25,176,4,2017-08-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18343,1155,GO-20179012502,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,1,2017-08-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18344,2064,GO-20189006854,THEFT UNDER,2018-03-04,2018,March,Sunday,4,63,20,2018-03-05,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18345,2239,GO-20189013578,THEFT UNDER,2018-04-30,2018,April,Monday,30,120,13,2018-05-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18346,2441,GO-20189017119,THEFT UNDER,2018-06-02,2018,June,Saturday,2,153,9,2018-06-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18347,2721,GO-20189020767,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,1,2018-06-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18348,17707,GO-20209011756,THEFT UNDER,2020-04-22,2020,April,Wednesday,22,113,0,2020-04-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18349,17757,GO-20179018951,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,18,2017-11-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18350,17762,GO-20179019463,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,20,2017-11-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18351,17774,GO-20173179706,PROPERTY - FOUND,2017-12-12,2017,December,Tuesday,12,346,7,2017-12-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18352,17775,GO-20173179706,PROPERTY - FOUND,2017-12-12,2017,December,Tuesday,12,346,7,2017-12-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18353,17776,GO-20173179706,PROPERTY - FOUND,2017-12-12,2017,December,Tuesday,12,346,7,2017-12-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18354,17777,GO-20173179706,PROPERTY - FOUND,2017-12-12,2017,December,Tuesday,12,346,7,2017-12-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18355,17799,GO-2018714655,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,14,2018-04-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18356,17803,GO-20189013301,THEFT UNDER - BICYCLE,2018-04-27,2018,April,Friday,27,117,20,2018-04-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18357,17819,GO-20189016913,THEFT UNDER - BICYCLE,2018-05-29,2018,May,Tuesday,29,149,20,2018-05-31,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18358,17820,GO-20189017138,THEFT UNDER - BICYCLE,2018-05-30,2018,May,Wednesday,30,150,15,2018-06-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18359,17851,GO-20189021763,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,9,2018-07-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18360,18082,GO-20171168618,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,20,2017-06-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18361,18100,GO-20179011277,THEFT UNDER,2017-07-28,2017,July,Friday,28,209,3,2017-07-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18362,18106,GO-20179011678,THEFT UNDER - BICYCLE,2017-08-03,2017,August,Thursday,3,215,23,2017-08-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18363,18116,GO-20179012973,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,9,2017-08-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18364,18148,GO-20169010039,THEFT UNDER,2016-09-06,2016,September,Tuesday,6,250,14,2016-09-06,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18365,18160,GO-20169011118,B&E,2016-09-25,2016,September,Sunday,25,269,9,2016-09-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18366,18189,GO-20179003147,THEFT UNDER - BICYCLE,2017-03-12,2017,March,Sunday,12,71,10,2017-03-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18367,18195,GO-20179004109,THEFT UNDER - BICYCLE,2017-03-29,2017,March,Wednesday,29,88,13,2017-04-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18368,18308,GO-20201978150,THEFT OF EBIKE UNDER $5000,2020-10-15,2020,October,Thursday,15,289,12,2020-10-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18369,18330,GO-20142157133,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,21,2014-05-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18370,18337,GO-20149003729,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,17,2014-06-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18371,18338,GO-20142209693,B&E W'INTENT,2014-06-02,2014,June,Monday,2,153,22,2014-06-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18372,18346,GO-20149004668,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,14,2014-07-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18373,18363,GO-20149006302,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,9,2014-08-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18374,15457,GO-20159007481,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,20,2015-09-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18375,21608,GO-2015751544,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,18,2015-05-06,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18376,24256,GO-20179018666,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,12,2017-11-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18377,11749,GO-20169006930,THEFT UNDER,2016-07-08,2016,July,Friday,8,190,8,2016-07-09,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18378,2757,GO-20189021236,THEFT UNDER - BICYCLE,2018-07-03,2018,July,Tuesday,3,184,18,2018-07-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18379,3218,GO-20189026573,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,10,2018-08-16,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18380,18379,GO-20143230026,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,9,2014-11-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18381,18380,GO-20143230026,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,9,2014-11-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18382,18434,GO-20159005030,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,5,2015-07-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18383,18479,GO-20169003670,THEFT UNDER,2016-04-16,2016,April,Saturday,16,107,19,2016-04-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18384,18497,GO-20161024910,THEFT OF EBIKE UNDER $5000,2016-06-11,2016,June,Saturday,11,163,0,2016-06-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18385,18514,GO-20149004456,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,7,2014-06-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18386,18539,GO-20159004469,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,22,2015-07-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18387,18549,GO-20159005872,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,16,2015-08-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18388,18550,GO-20159005872,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,16,2015-08-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18389,18615,GO-20171748117,THEFT UNDER,2017-09-23,2017,September,Saturday,23,266,23,2017-09-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18390,18625,GO-20179018307,THEFT UNDER - BICYCLE,2017-10-26,2017,October,Thursday,26,299,21,2017-10-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18391,18645,GO-20189024373,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,21,2018-07-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18392,18672,GO-20199016796,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,8,2019-05-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18393,18691,GO-20199031246,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,0,2019-09-23,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18394,20792,GO-20209019713,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,17,2020-08-08,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18395,20797,GO-20209020265,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,16,2020-08-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18396,20798,GO-20209020735,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,8,2020-08-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18397,20818,GO-20209025142,THEFT UNDER,2020-09-30,2020,September,Wednesday,30,274,10,2020-10-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18398,20970,GO-20189039918,THEFT UNDER - BICYCLE,2018-11-27,2018,November,Tuesday,27,331,8,2018-11-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18399,21002,GO-2019983756,THEFT UNDER - BICYCLE,2019-05-28,2019,May,Tuesday,28,148,21,2019-05-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18400,21066,GO-20199030736,THEFT UNDER - BICYCLE,2019-09-19,2019,September,Thursday,19,262,13,2019-09-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18401,21076,GO-20199033027,THEFT UNDER - BICYCLE,2019-10-06,2019,October,Sunday,6,279,9,2019-10-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18402,21078,GO-20199033364,THEFT UNDER,2019-10-03,2019,October,Thursday,3,276,11,2019-10-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18403,21109,GO-20209004798,THEFT UNDER,2020-02-07,2020,February,Friday,7,38,16,2020-02-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18404,21134,GO-20209012744,THEFT UNDER,2020-04-30,2020,April,Thursday,30,121,23,2020-05-08,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18405,21148,GO-20201126715,THEFT UNDER - BICYCLE,2020-06-19,2020,June,Friday,19,171,5,2020-06-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18406,21155,GO-20209016982,THEFT UNDER,2020-06-24,2020,June,Wednesday,24,176,17,2020-07-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18407,21156,GO-20201249582,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,12,2020-07-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18408,21161,GO-20209017414,THEFT UNDER,2020-07-12,2020,July,Sunday,12,194,20,2020-07-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18409,21208,GO-20179014112,THEFT UNDER,2017-09-02,2017,September,Saturday,2,245,22,2017-09-06,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18410,21218,GO-20179016250,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,23,2017-10-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18411,21236,GO-20173035533,B&E,2017-10-17,2017,October,Tuesday,17,290,0,2017-11-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18412,21237,GO-20179020002,THEFT UNDER,2017-11-16,2017,November,Thursday,16,320,14,2017-11-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18413,21253,GO-20189006155,THEFT UNDER - BICYCLE,2018-02-26,2018,February,Monday,26,57,17,2018-02-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18414,21259,GO-20189010375,THEFT UNDER - BICYCLE,2018-02-01,2018,February,Thursday,1,32,17,2018-04-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18415,21261,GO-20189013178,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,15,2018-04-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18416,21266,GO-20189014523,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,0,2018-05-11,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18417,21302,GO-20189020696,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,17,2018-06-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18418,21304,GO-20189021046,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,2,2018-07-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18419,21366,GO-20189036285,THEFT UNDER - BICYCLE,2018-10-21,2018,October,Sunday,21,294,14,2018-10-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18420,21380,GO-20169005933,THEFT UNDER,2016-06-16,2016,June,Thursday,16,168,17,2016-06-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18421,21392,GO-20169006578,THEFT UNDER,2016-06-28,2016,June,Tuesday,28,180,17,2016-06-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18422,21400,GO-20169007729,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,14,2016-07-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18423,21438,GO-20161853567,THEFT UNDER - BICYCLE,2016-10-18,2016,October,Tuesday,18,292,10,2016-10-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18424,21473,GO-20179004500,THEFT UNDER,2017-03-26,2017,March,Sunday,26,85,20,2017-04-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18425,21573,GO-20149000553,THEFT UNDER,2014-01-18,2014,January,Saturday,18,18,4,2014-01-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18426,21585,GO-20142211590,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,9,2014-06-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18427,21614,GO-20151060021,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,21,2015-06-23,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18428,21672,GO-20179006684,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,12,2017-05-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18429,21681,GO-20179012622,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,22,2017-08-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18430,21741,GO-20199020948,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,8,2019-07-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18431,21755,GO-20199027203,THEFT UNDER,2019-08-21,2019,August,Wednesday,21,233,19,2019-08-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18432,21760,GO-20199032999,THEFT UNDER,2019-10-07,2019,October,Monday,7,280,13,2019-10-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18433,21843,GO-20149007786,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,18,2014-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18434,21855,GO-2015684546,THEFT UNDER,2015-03-25,2015,March,Wednesday,25,84,17,2015-04-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18435,21873,GO-2015984598,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,12,2015-06-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18436,21874,GO-2015984598,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,12,2015-06-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18437,21902,GO-20159005228,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,22,2015-07-31,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18438,21964,GO-2016857389,PROPERTY - FOUND,2016-05-18,2016,May,Wednesday,18,139,19,2016-05-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18439,21965,GO-20169004790,THEFT UNDER,2016-04-06,2016,April,Wednesday,6,97,12,2016-05-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18440,21968,GO-20201468498,THEFT OF EBIKE UNDER $5000,2020-08-05,2020,August,Wednesday,5,218,21,2020-08-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18441,24026,GO-20199010252,THEFT UNDER - BICYCLE,2019-03-28,2019,March,Thursday,28,87,0,2019-04-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18442,24031,GO-20199013994,THEFT UNDER - BICYCLE,2019-02-25,2019,February,Monday,25,56,8,2019-05-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18443,24044,GO-20199016724,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,18,2019-05-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18444,24058,GO-20199020806,THEFT UNDER - BICYCLE,2019-07-03,2019,July,Wednesday,3,184,1,2019-07-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18445,24093,GO-20191628276,THEFT OF EBIKE UNDER $5000,2019-08-25,2019,August,Sunday,25,237,12,2019-08-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18446,24099,GO-20199029887,THEFT UNDER - BICYCLE,2019-09-13,2019,September,Friday,13,256,4,2019-09-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18447,24100,GO-20199029901,THEFT UNDER - BICYCLE,2019-09-13,2019,September,Friday,13,256,14,2019-09-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18448,24146,GO-20209003203,THEFT UNDER,2020-01-24,2020,January,Friday,24,24,3,2020-01-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18449,24147,GO-20209003203,THEFT UNDER,2020-01-24,2020,January,Friday,24,24,3,2020-01-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18450,24148,GO-20209004967,THEFT UNDER,2020-02-08,2020,February,Saturday,8,39,11,2020-02-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18451,24153,GO-20209009107,THEFT UNDER,2020-03-13,2020,March,Friday,13,73,23,2020-03-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18452,24172,GO-20209013139,THEFT UNDER,2020-05-12,2020,May,Tuesday,12,133,14,2020-05-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18453,24316,GO-20189019584,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,20,2018-06-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18454,24366,GO-20189026696,THEFT UNDER,2018-08-13,2018,August,Monday,13,225,20,2018-08-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18455,24380,GO-20189029088,THEFT UNDER - BICYCLE,2018-08-31,2018,August,Friday,31,243,14,2018-09-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18456,24596,GO-20149003306,THEFT UNDER,2014-05-11,2014,May,Sunday,11,131,23,2014-05-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18457,24632,GO-20142553465,B&E,2014-07-18,2014,July,Friday,18,199,14,2014-07-23,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18458,24655,GO-20149006963,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,18,2014-09-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18459,15485,GO-2016475027,B&E,2016-02-27,2016,February,Saturday,27,58,0,2016-03-19,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18460,24660,GO-20143041815,THEFT UNDER - SHOPLIFTING,2014-10-04,2014,October,Saturday,4,277,14,2014-10-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18461,24671,GO-20149007687,THEFT UNDER,2014-10-19,2014,October,Sunday,19,292,16,2014-10-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18462,15523,GO-20169007463,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,12,2016-07-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18463,15524,GO-20169007554,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,19,2016-07-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18464,12075,GO-20169008661,THEFT UNDER,2016-08-12,2016,August,Friday,12,225,17,2016-08-13,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18465,15532,GO-20169008271,B&E,2016-08-05,2016,August,Friday,5,218,16,2016-08-05,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18466,15544,GO-20169009390,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,18,2016-08-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18467,12177,GO-20169009263,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,19,2016-08-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18468,24672,GO-20149007776,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,12,2014-10-23,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18469,21640,GO-2016663082,THEFT UNDER,2016-04-18,2016,April,Monday,18,109,17,2016-04-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18470,15584,GO-20169011225,THEFT UNDER,2016-09-26,2016,September,Monday,26,270,9,2016-09-28,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18471,12202,GO-20169009504,THEFT UNDER - BICYCLE,2016-08-22,2016,August,Monday,22,235,20,2016-08-27,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18472,24673,GO-20149007975,THEFT UNDER,2014-10-30,2014,October,Thursday,30,303,20,2014-11-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18473,3024,GO-20189024487,THEFT UNDER,2018-07-30,2018,July,Monday,30,211,8,2018-07-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18474,3251,GO-20189026996,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,15,2018-08-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18475,21644,GO-20169006204,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,8,2016-06-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18476,15611,GO-2017973226,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,23,2017-06-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18477,12431,GO-20161692541,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,3,2016-09-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18478,24677,GO-20149008563,THEFT UNDER,2014-11-28,2014,November,Friday,28,332,18,2014-12-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18479,3038,GO-20189024703,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,1,2018-07-31,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18480,3433,GO-20189029816,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,4,2018-09-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18481,3434,GO-20189029816,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,4,2018-09-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18482,3787,GO-20189036157,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,21,2018-10-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18483,3848,GO-20189038045,THEFT UNDER - BICYCLE,2018-11-13,2018,November,Tuesday,13,317,4,2018-11-13,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18484,3876,GO-20189038789,THEFT UNDER,2018-11-14,2018,November,Wednesday,14,318,21,2018-11-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18485,3913,GO-20189040492,THEFT UNDER,2018-12-01,2018,December,Saturday,1,335,10,2018-12-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18486,4082,GO-20199007727,THEFT UNDER - BICYCLE,2019-03-08,2019,March,Friday,8,67,20,2019-03-09,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18487,4126,GO-20199010511,THEFT UNDER - BICYCLE,2019-03-27,2019,March,Wednesday,27,86,9,2019-04-03,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18488,4349,GO-20199016346,THEFT UNDER - BICYCLE,2019-05-25,2019,May,Saturday,25,145,23,2019-05-26,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18489,4467,GO-20199018360,THEFT UNDER - BICYCLE,2019-06-09,2019,June,Sunday,9,160,0,2019-06-12,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18490,4557,GO-20199019388,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,5,2019-06-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18491,4837,GO-20191382309,B&E W'INTENT,2019-07-17,2019,July,Wednesday,17,198,8,2019-07-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18492,4858,GO-20191390323,B&E W'INTENT,2019-07-23,2019,July,Tuesday,23,204,22,2019-07-24,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18493,4887,GO-20191381614,THEFT FROM MOTOR VEHICLE UNDER,2019-07-22,2019,July,Monday,22,203,21,2019-07-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18494,4930,GO-20199024375,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,8,2019-07-30,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18495,5133,GO-20191600386,B&E,2019-05-05,2019,May,Sunday,5,125,8,2019-08-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18496,5134,GO-20191600386,B&E,2019-05-05,2019,May,Sunday,5,125,8,2019-08-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18497,5150,GO-20199027523,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,20,2019-08-24,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18498,5455,GO-20191899549,ROBBERY - OTHER,2019-10-02,2019,October,Wednesday,2,275,17,2019-10-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18499,5628,GO-20199036000,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,6,2019-10-31,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18500,5632,GO-20192119516,THEFT UNDER - BICYCLE,2019-10-31,2019,October,Thursday,31,304,15,2019-11-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18501,5673,GO-20192175455,B&E W'INTENT,2019-11-09,2019,November,Saturday,9,313,20,2019-11-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18502,5707,GO-20199037981,THEFT UNDER,2019-11-14,2019,November,Thursday,14,318,19,2019-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18503,5768,GO-20199041145,THEFT UNDER,2019-12-13,2019,December,Friday,13,347,2,2019-12-16,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18504,5773,GO-20199041530,THEFT UNDER,2019-12-19,2019,December,Thursday,19,353,23,2019-12-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18505,5831,GO-2020101157,THEFT UNDER - BICYCLE,2020-01-15,2020,January,Wednesday,15,15,13,2020-01-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18506,5926,GO-2020393042,THEFT OF EBIKE UNDER $5000,2020-02-24,2020,February,Monday,24,55,14,2020-02-24,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18507,5996,GO-20209010027,THEFT UNDER,2020-03-27,2020,March,Friday,27,87,21,2020-03-28,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18508,6040,GO-20209010751,THEFT UNDER,2020-04-01,2020,April,Wednesday,1,92,8,2020-04-08,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18509,6079,GO-20209011497,THEFT UNDER,2020-04-19,2020,April,Sunday,19,110,13,2020-04-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18510,6658,GO-20201340145,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,22,2020-07-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18511,6659,GO-20201340145,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,22,2020-07-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18512,6802,GO-20209018877,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,20,2020-07-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18513,6804,GO-20209018895,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,12,2020-07-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18514,6809,GO-20209018929,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,7,2020-07-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18515,6895,GO-20209019609,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,2,2020-08-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18516,6954,GO-20201522565,B&E,2020-08-13,2020,August,Thursday,13,226,22,2020-08-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18517,7000,GO-20209020599,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,15,2020-08-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18518,7292,GO-20209023799,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,15,2020-09-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18519,7498,GO-20201979581,B&E,2020-10-18,2020,October,Sunday,18,292,20,2020-10-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18520,7505,GO-20201959752,THEFT OF EBIKE UNDER $5000,2020-10-11,2020,October,Sunday,11,285,21,2020-10-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18521,7709,GO-20209032419,THEFT UNDER,2020-12-19,2020,December,Saturday,19,354,0,2020-12-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18522,7825,GO-20149002656,THEFT UNDER,2014-04-09,2014,April,Wednesday,9,99,13,2014-04-09,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18523,7836,GO-20149002830,THEFT UNDER,2014-04-13,2014,April,Sunday,13,103,22,2014-04-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18524,7869,GO-20141963213,THEFT UNDER,2014-04-26,2014,April,Saturday,26,116,10,2014-04-28,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18525,7903,GO-20142051227,THEFT UNDER,2014-02-19,2014,February,Wednesday,19,50,19,2014-05-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18526,7904,GO-20142051227,THEFT UNDER,2014-02-19,2014,February,Wednesday,19,50,19,2014-05-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18527,8094,GO-20142257115,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,18,2014-06-09,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18528,8238,GO-20149004402,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,16,2014-06-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18529,8396,GO-20149004913,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,18,2014-07-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18530,8468,GO-20142544504,B&E,2014-07-18,2014,July,Friday,18,199,23,2014-07-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18531,8592,GO-20149005649,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,12,2014-08-05,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18532,8674,GO-20142731194,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,16,2014-08-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18533,8678,GO-20149006011,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,0,2014-08-16,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18534,8870,GO-20149006794,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,12,2014-09-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18535,8935,GO-20142948323,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,19,2014-09-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18536,9383,GO-2015591732,THEFT UNDER,2015-04-06,2015,April,Monday,6,96,20,2015-04-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18537,9497,GO-20159002365,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,20,2015-05-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18538,9584,GO-20159002739,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,23,2015-05-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18539,9585,GO-20159002739,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,23,2015-05-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18540,9805,GO-20159003619,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,14,2015-06-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18541,9927,GO-20151115071,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,8,2015-07-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18542,9945,GO-20151129033,THEFT UNDER,2015-03-01,2015,March,Sunday,1,60,0,2015-07-04,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18543,10065,GO-20151234970,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,12,2015-07-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18544,10083,GO-20159004893,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,3,2015-07-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18545,10092,GO-20159004953,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,17,2015-07-24,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18546,10099,GO-20159004974,THEFT UNDER,2015-07-25,2015,July,Saturday,25,206,16,2015-07-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18547,10155,GO-20159005204,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,20,2015-07-31,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18548,10317,GO-20159006116,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,12,2015-08-21,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18549,10392,GO-20159006680,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,21,2015-09-03,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18550,10394,GO-20151545606,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,10,2015-09-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18551,10439,GO-20151575768,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,17,2015-09-12,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18552,10546,GO-20151669926,B&E,2015-09-07,2015,September,Monday,7,250,12,2015-09-27,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18553,10604,GO-20151733781,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,21,2015-10-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18554,10605,GO-20151733781,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,21,2015-10-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18555,10615,GO-20159008422,THEFT UNDER,2015-10-08,2015,October,Thursday,8,281,14,2015-10-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18556,10651,GO-20159008697,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,2,2015-10-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18557,10670,GO-20159008861,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,22,2015-10-21,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18558,10850,GO-20159010683,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,16,2015-09-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18559,10917,GO-20169000270,THEFT UNDER,2016-01-08,2016,January,Friday,8,8,8,2016-01-09,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18560,10962,GO-20152078978,THEFT UNDER,2015-11-24,2015,November,Tuesday,24,328,10,2015-12-04,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18561,11029,GO-20169002152,THEFT UNDER - BICYCLE,2016-03-09,2016,March,Wednesday,9,69,10,2016-03-09,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18562,11342,GO-20169004750,THEFT UNDER - BICYCLE,2016-05-15,2016,May,Sunday,15,136,12,2016-05-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18563,11352,GO-20169004810,THEFT UNDER,2016-05-21,2016,May,Saturday,21,142,0,2016-05-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18564,11482,GO-20161002216,THEFT UNDER - BICYCLE,2015-12-19,2015,December,Saturday,19,353,5,2016-06-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18565,11561,GO-20169005915,THEFT UNDER,2016-06-16,2016,June,Thursday,16,168,20,2016-06-17,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18566,11581,GO-20169006021,THEFT UNDER,2016-06-19,2016,June,Sunday,19,171,14,2016-06-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18567,11609,GO-20169006177,THEFT UNDER,2016-06-19,2016,June,Sunday,19,171,23,2016-06-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18568,24679,GO-20143528218,B&E,2014-11-20,2014,November,Thursday,20,324,17,2014-12-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18569,3082,GO-20189025162,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,0,2018-08-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18570,24683,GO-2015551753,B&E,2015-04-02,2015,April,Thursday,2,92,20,2015-04-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18571,12465,GO-20169011169,THEFT UNDER,2016-09-26,2016,September,Monday,26,270,21,2016-09-27,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18572,15617,GO-20179008603,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,8,2017-06-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18573,17318,GO-2020819988,B&E,2020-02-01,2020,February,Saturday,1,32,0,2020-05-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18574,17319,GO-20209012316,THEFT UNDER,2020-04-28,2020,April,Tuesday,28,119,18,2020-05-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18575,17320,GO-20209012316,THEFT UNDER,2020-04-28,2020,April,Tuesday,28,119,18,2020-05-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18576,17355,GO-20209017593,THEFT UNDER,2020-07-13,2020,July,Monday,13,195,3,2020-07-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18577,17374,GO-20209020297,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,14,2020-08-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18578,17407,GO-20209028724,B&E,2020-10-14,2020,October,Wednesday,14,288,23,2020-11-05,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18579,17528,GO-20189037738,THEFT UNDER - BICYCLE,2018-11-11,2018,November,Sunday,11,315,13,2018-11-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18580,17559,GO-2019788347,THEFT UNDER,2019-05-01,2019,May,Wednesday,1,121,20,2019-05-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18581,17573,GO-20199016552,THEFT UNDER - BICYCLE,2019-05-24,2019,May,Friday,24,144,18,2019-05-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18582,17577,GO-20199017495,THEFT UNDER - BICYCLE,2019-05-31,2019,May,Friday,31,151,22,2019-06-05,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18583,17611,GO-20199023897,THEFT UNDER - BICYCLE,2019-07-24,2019,July,Wednesday,24,205,18,2019-07-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18584,17618,GO-20199024906,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,5,2019-08-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18585,17636,GO-20191755197,PROPERTY - FOUND,2019-09-11,2019,September,Wednesday,11,254,22,2019-09-13,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18586,17640,GO-20199030483,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,1,2019-09-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18587,17651,GO-20199033403,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,21,2019-10-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18588,17671,GO-20192287970,THEFT UNDER,2019-11-24,2019,November,Sunday,24,328,12,2019-11-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18589,17722,GO-20179013843,THEFT UNDER - BICYCLE,2017-08-31,2017,August,Thursday,31,243,13,2017-09-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18590,17733,GO-20179015066,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,11,2017-09-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18591,17737,GO-20179015445,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,16,2017-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18592,17782,GO-201884767,B&E W'INTENT,2018-01-13,2018,January,Saturday,13,13,15,2018-01-14,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18593,17809,GO-20189015034,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,13,2018-05-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18594,12541,GO-20169011495,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,17,2016-10-03,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18595,24684,GO-2015551753,B&E,2015-04-02,2015,April,Thursday,2,92,20,2015-04-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18596,21658,GO-20161873885,THEFT UNDER - BICYCLE,2016-10-21,2016,October,Friday,21,295,14,2016-10-21,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18597,3116,GO-20189025555,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,22,2018-08-08,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18598,17887,GO-20189027109,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,14,2018-08-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18599,17888,GO-20189027256,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,0,2018-08-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18600,17894,GO-20189028615,THEFT UNDER,2018-08-30,2018,August,Thursday,30,242,18,2018-08-30,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18601,18083,GO-20171206340,THEFT OF EBIKE UNDER $5000,2017-07-05,2017,July,Wednesday,5,186,18,2017-07-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18602,18092,GO-20171285618,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,0,2017-07-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18603,18108,GO-20179011973,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,20,2017-08-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18604,18119,GO-20169006527,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,13,2016-06-29,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18605,18130,GO-20161356183,THEFT OF EBIKE UNDER $5000,2016-07-28,2016,July,Thursday,28,210,21,2016-08-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18606,18138,GO-20169009334,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,19,2016-08-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18607,18140,GO-20169009439,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,19,2016-08-24,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18608,18173,GO-20169012537,THEFT UNDER - BICYCLE,2016-10-24,2016,October,Monday,24,298,1,2016-10-24,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18609,18206,GO-2017867564,B&E,2017-05-14,2017,May,Sunday,14,134,0,2017-05-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18610,18333,GO-20142151396,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,2,2014-05-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18611,18349,GO-20142502136,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,12,2014-07-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18612,18381,GO-20149007997,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,12,2014-11-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18613,18436,GO-20151304370,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,18,2015-07-30,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18614,18439,GO-20151302941,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,8,2015-07-30,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18615,18524,GO-20143532995,THEFT UNDER,2014-12-20,2014,December,Saturday,20,354,10,2014-12-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18616,18525,GO-20143532995,THEFT UNDER,2014-12-20,2014,December,Saturday,20,354,10,2014-12-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18617,18674,GO-20199020739,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,17,2019-07-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18618,18675,GO-20199020739,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,17,2019-07-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18619,20814,GO-20209023436,THEFT UNDER,2020-09-08,2020,September,Tuesday,8,252,15,2020-09-16,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18620,20815,GO-20209024213,THEFT UNDER,2020-09-02,2020,September,Wednesday,2,246,19,2020-09-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18621,20823,GO-20209026848,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,10,2020-10-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18622,20835,GO-20209030131,THEFT UNDER,2020-11-19,2020,November,Thursday,19,324,23,2020-11-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18623,20982,GO-20199001379,THEFT UNDER - BICYCLE,2019-01-01,2019,January,Tuesday,1,1,11,2019-01-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18624,20996,GO-2019932006,PROPERTY - FOUND,2019-05-22,2019,May,Wednesday,22,142,9,2019-05-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18625,20997,GO-2019932006,PROPERTY - FOUND,2019-05-22,2019,May,Wednesday,22,142,9,2019-05-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18626,21024,GO-20199022865,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,0,2019-07-19,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18627,21025,GO-20199023005,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,19,2019-07-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18628,21060,GO-20191745102,THEFT UNDER - BICYCLE,2019-06-05,2019,June,Wednesday,5,156,12,2019-09-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18629,21074,GO-20199032850,THEFT UNDER - BICYCLE,2019-10-05,2019,October,Saturday,5,278,11,2019-10-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18630,21075,GO-20191932763,PROPERTY - FOUND,2019-10-07,2019,October,Monday,7,280,10,2019-10-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18631,21103,GO-20209000886,THEFT UNDER,2020-01-07,2020,January,Tuesday,7,7,12,2020-01-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18632,21151,GO-20209015939,THEFT UNDER,2020-06-20,2020,June,Saturday,20,172,22,2020-06-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18633,21159,GO-20201284774,B&E,2020-06-27,2020,June,Saturday,27,179,12,2020-07-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18634,21160,GO-20209017397,THEFT UNDER,2020-07-12,2020,July,Sunday,12,194,13,2020-07-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18635,21175,GO-20179009401,THEFT UNDER,2017-06-30,2017,June,Friday,30,181,21,2017-07-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18636,21233,GO-20172029056,THEFT UNDER - BICYCLE,2017-11-06,2017,November,Monday,6,310,18,2017-11-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18637,21255,GO-2018462851,THEFT UNDER - BICYCLE,2018-03-10,2018,March,Saturday,10,69,4,2018-03-13,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18638,21306,GO-20189021526,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,12,2018-07-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18639,21307,GO-20189021526,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,12,2018-07-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18640,21338,GO-20189028316,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,12,2018-08-28,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18641,21351,GO-20181801568,THEFT UNDER,2018-09-28,2018,September,Friday,28,271,16,2018-09-29,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18642,21375,GO-2016990056,THEFT OF EBIKE UNDER $5000,2016-06-06,2016,June,Monday,6,158,3,2016-06-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18643,21382,GO-20169006010,THEFT UNDER,2016-06-15,2016,June,Wednesday,15,167,18,2016-06-19,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18644,21389,GO-20169006527,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,13,2016-06-29,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18645,21397,GO-20161234869,THEFT UNDER,2016-07-14,2016,July,Thursday,14,196,2,2016-07-14,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18646,21469,GO-2017477684,THEFT UNDER,2017-03-06,2017,March,Monday,6,65,20,2017-03-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18647,21589,GO-20149004005,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,15,2014-06-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18648,21624,GO-20159008408,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,0,2015-10-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18649,21675,GO-20179009278,THEFT UNDER - BICYCLE,2015-06-20,2015,June,Saturday,20,171,21,2017-07-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18650,21790,GO-20141472644,THEFT UNDER,2014-02-04,2014,February,Tuesday,4,35,17,2014-02-05,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18651,21828,GO-20142849101,ROBBERY - MUGGING,2014-09-05,2014,September,Friday,5,248,12,2014-09-05,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18652,21833,GO-20149006903,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,13,2014-09-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18653,21866,GO-2015860639,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,23,2015-05-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18654,21876,GO-20159003649,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,20,2015-06-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18655,21937,GO-20159010375,THEFT UNDER,2015-11-30,2015,November,Monday,30,334,20,2015-12-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18656,21944,GO-20169002177,THEFT UNDER - BICYCLE,2015-12-09,2015,December,Wednesday,9,343,6,2016-03-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18657,21978,GO-20201819598,FTC WITH CONDITIONS,2020-09-25,2020,September,Friday,25,269,9,2020-09-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18658,23808,GO-20201283552,PROPERTY - FOUND,2020-07-12,2020,July,Sunday,12,194,9,2020-07-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18659,23846,GO-20201884443,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,12,2020-10-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18660,23852,GO-20209026075,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,13,2020-10-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18661,24003,GO-20189040278,THEFT UNDER - BICYCLE,2018-11-29,2018,November,Thursday,29,333,12,2018-11-29,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18662,24047,GO-20199018228,THEFT UNDER - BICYCLE,2019-06-10,2019,June,Monday,10,161,17,2019-06-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18663,21665,GO-2017725922,THEFT UNDER - BICYCLE,2017-04-25,2017,April,Tuesday,25,115,13,2017-04-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18664,3253,GO-20181516262,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,3,2018-08-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18665,21676,GO-20179009657,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,14,2017-07-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18666,3285,GO-20189027394,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,0,2018-08-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18667,21678,GO-20179010172,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,16,2017-07-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18668,3306,GO-20189027715,THEFT UNDER,2018-08-22,2018,August,Wednesday,22,234,12,2018-08-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18669,21680,GO-20171429231,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,14,2017-08-08,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18670,3338,GO-20189028183,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,12,2018-08-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18671,21687,GO-20179015818,THEFT UNDER,2017-09-26,2017,September,Tuesday,26,269,12,2017-09-26,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18672,3403,GO-20189029283,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,2,2018-09-06,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18673,3443,GO-20189029986,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,15,2018-09-11,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18674,21688,GO-20179015818,THEFT UNDER,2017-09-26,2017,September,Tuesday,26,269,12,2017-09-26,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18675,24685,GO-2015551753,B&E,2015-04-02,2015,April,Thursday,2,92,20,2015-04-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18676,3509,GO-20189031051,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,2,2018-09-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18677,21695,GO-20189009448,THEFT UNDER,2018-03-25,2018,March,Sunday,25,84,18,2018-03-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18678,3633,GO-20189033170,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,14,2018-10-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18679,12594,GO-20161813071,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,14,2016-10-12,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18680,24706,GO-2015993145,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,19,2015-06-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18681,21701,GO-20181044759,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,19,2018-06-12,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18682,3660,GO-20189033567,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,15,2018-10-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18683,12699,GO-20169012752,THEFT UNDER,2016-10-29,2016,October,Saturday,29,303,16,2016-10-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18684,24714,GO-20151035082,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,23,2015-06-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18685,21714,GO-20189027574,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,20,2018-08-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18686,3849,GO-20189038046,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,11,2018-11-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18687,24739,GO-20159005986,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,12,2015-08-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18688,12783,GO-20162048496,B&E,2016-11-16,2016,November,Wednesday,16,321,23,2016-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18689,21726,GO-20199011546,THEFT UNDER,2019-04-11,2019,April,Thursday,11,101,19,2019-04-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18690,3879,GO-20182135967,THEFT UNDER - BICYCLE,2018-10-28,2018,October,Sunday,28,301,11,2018-11-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18691,24748,GO-20159006635,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,22,2015-09-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18692,12784,GO-20162048496,B&E,2016-11-16,2016,November,Wednesday,16,321,23,2016-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18693,4005,GO-20199001635,THEFT UNDER - BICYCLE,2019-01-13,2019,January,Sunday,13,13,18,2019-01-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18694,21756,GO-20199028817,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,14,2019-09-05,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18695,12790,GO-20162042670,B&E,2016-11-17,2016,November,Thursday,17,322,17,2016-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18696,25006,GO-20149008281,THEFT UNDER,2014-11-19,2014,November,Wednesday,19,323,7,2014-11-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18697,4020,GO-20199003405,THEFT UNDER - BICYCLE,2019-01-24,2019,January,Thursday,24,24,16,2019-01-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18698,21785,GO-20209014597,THEFT UNDER,2020-05-22,2020,May,Friday,22,143,8,2020-06-04,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18699,12791,GO-20162042670,B&E,2016-11-17,2016,November,Thursday,17,322,17,2016-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18700,25125,GO-20189027715,THEFT UNDER,2018-08-22,2018,August,Wednesday,22,234,12,2018-08-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18701,4068,GO-20199006680,THEFT UNDER - BICYCLE,2019-02-01,2019,February,Friday,1,32,11,2019-02-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18702,25141,GO-20191276823,THEFT OVER,2019-07-05,2019,July,Friday,5,186,23,2019-07-08,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18703,4125,GO-20199010453,THEFT UNDER - BICYCLE,2019-04-02,2019,April,Tuesday,2,92,19,2019-04-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18704,25142,GO-20191276823,THEFT OVER,2019-07-05,2019,July,Friday,5,186,23,2019-07-08,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18705,21900,GO-20159005081,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,18,2015-07-28,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18706,4197,GO-20199012905,THEFT UNDER,2019-04-22,2019,April,Monday,22,112,15,2019-04-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18707,21935,GO-20159009042,THEFT UNDER,2015-10-26,2015,October,Monday,26,299,9,2015-10-26,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18708,25195,GO-2016914545,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,8,2016-05-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18709,23851,GO-20201926773,THEFT FROM MOTOR VEHICLE UNDER,2020-10-10,2020,October,Saturday,10,284,17,2020-10-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18710,12792,GO-20162042670,B&E,2016-11-17,2016,November,Thursday,17,322,17,2016-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18711,23998,GO-20189036805,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,18,2018-11-04,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18712,12793,GO-20162048496,B&E,2016-11-16,2016,November,Wednesday,16,321,23,2016-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18713,24032,GO-20199014214,THEFT UNDER,2019-05-07,2019,May,Tuesday,7,127,0,2019-05-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18714,24097,GO-20199028675,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,22,2019-09-04,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18715,12794,GO-20162048496,B&E,2016-11-16,2016,November,Wednesday,16,321,23,2016-11-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18716,25235,GO-20169008466,THEFT UNDER - BICYCLE,2016-08-06,2016,August,Saturday,6,219,21,2016-08-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18717,14291,GO-20201433630,THEFT OF EBIKE UNDER $5000,2020-08-01,2020,August,Saturday,1,214,13,2020-08-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18718,24261,GO-20179019701,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,1,2017-11-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18719,4200,GO-2019673055,THEFT OF EBIKE UNDER $5000,2019-04-14,2019,April,Sunday,14,104,11,2019-04-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18720,24403,GO-20201688689,THEFT UNDER - BICYCLE,2020-09-02,2020,September,Wednesday,2,246,17,2020-09-06,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18721,14307,GO-20201656635,B&E,2020-07-29,2020,July,Wednesday,29,211,20,2020-09-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18722,25252,GO-20169009691,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,11,2016-08-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18723,4268,GO-2019868952,THEFT UNDER - BICYCLE,2019-05-10,2019,May,Friday,10,130,18,2019-05-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18724,24630,GO-20149005152,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,1,2014-07-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18725,14308,GO-20201656635,B&E,2020-07-29,2020,July,Wednesday,29,211,20,2020-09-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18726,25280,GO-20161864520,THEFT UNDER - BICYCLE,2016-10-19,2016,October,Wednesday,19,293,21,2016-10-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18727,4378,GO-2019983756,THEFT UNDER - BICYCLE,2019-05-28,2019,May,Tuesday,28,148,21,2019-05-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18728,24676,GO-20149008306,THEFT UNDER,2014-11-19,2014,November,Wednesday,19,323,17,2014-11-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18729,14309,GO-20201656635,B&E,2020-07-29,2020,July,Wednesday,29,211,20,2020-09-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18730,25284,GO-20169013386,B&E,2016-11-02,2016,November,Wednesday,2,307,12,2016-11-14,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18731,4400,GO-20199017185,THEFT UNDER,2019-05-13,2019,May,Monday,13,133,23,2019-06-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18732,4401,GO-20199017186,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,7,2019-06-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18733,4600,GO-20199020037,THEFT UNDER,2019-06-24,2019,June,Monday,24,175,0,2019-06-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18734,4635,GO-20199020394,THEFT UNDER,2019-06-28,2019,June,Friday,28,179,8,2019-06-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18735,4772,GO-20199022271,THEFT UNDER,2019-07-13,2019,July,Saturday,13,194,18,2019-07-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18736,4787,GO-20199022587,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,3,2019-07-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18737,4863,GO-20191365073,THEFT UNDER,2019-07-17,2019,July,Wednesday,17,198,23,2019-07-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18738,4892,GO-20199023849,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,21,2019-07-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18739,4938,GO-20199024492,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,14,2019-07-31,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18740,4939,GO-20199024506,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,14,2019-07-31,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18741,5040,GO-20199022587,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,3,2019-07-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18742,5056,GO-20199026099,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,0,2019-08-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18743,5125,GO-20199027186,THEFT UNDER - BICYCLE,2019-08-18,2019,August,Sunday,18,230,18,2019-08-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18744,5367,GO-20199030627,THEFT UNDER - BICYCLE,2019-09-16,2019,September,Monday,16,259,19,2019-09-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18745,5427,GO-20199031896,THEFT UNDER,2019-09-23,2019,September,Monday,23,266,23,2019-09-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18746,5561,GO-20199034688,THEFT UNDER - BICYCLE,2019-10-19,2019,October,Saturday,19,292,19,2019-10-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18747,5573,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18748,5574,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18749,5575,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18750,5576,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18751,5577,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18752,5578,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18753,5579,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18754,5580,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18755,5581,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18756,5582,GO-20192056126,PROPERTY - FOUND,2019-10-24,2019,October,Thursday,24,297,19,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18757,5590,GO-20199035131,THEFT UNDER - BICYCLE,2019-10-24,2019,October,Thursday,24,297,18,2019-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18758,5815,GO-202055457,B&E,2020-01-04,2020,January,Saturday,4,4,10,2020-01-04,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18759,5832,GO-20209001681,THEFT UNDER,2020-01-14,2020,January,Tuesday,14,14,10,2020-01-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18760,5887,GO-20209004967,THEFT UNDER,2020-02-08,2020,February,Saturday,8,39,11,2020-02-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18761,5990,GO-20209009788,THEFT UNDER,2020-03-24,2020,March,Tuesday,24,84,17,2020-03-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18762,6044,GO-20209010848,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,15,2020-04-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18763,6067,GO-20209011215,THEFT UNDER - BICYCLE,2020-04-12,2020,April,Sunday,12,103,14,2020-04-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18764,6125,GO-20209012242,THEFT UNDER,2020-04-30,2020,April,Thursday,30,121,0,2020-04-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18765,6175,GO-2020890602,THEFT OVER - BICYCLE,2020-04-15,2020,April,Wednesday,15,106,17,2020-05-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18766,6234,GO-20209013761,THEFT UNDER,2020-05-23,2020,May,Saturday,23,144,23,2020-05-23,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18767,6295,GO-20209014466,THEFT UNDER,2020-05-31,2020,May,Sunday,31,152,13,2020-06-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18768,6345,GO-20209014925,THEFT UNDER,2020-06-08,2020,June,Monday,8,160,21,2020-06-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18769,6366,GO-20201064040,THEFT UNDER - BICYCLE,2020-06-07,2020,June,Sunday,7,159,8,2020-06-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18770,6425,GO-20209015701,THEFT UNDER,2020-06-18,2020,June,Thursday,18,170,17,2020-06-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18771,6449,GO-20209015984,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,22,2020-06-23,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18772,6504,GO-20209016575,THEFT UNDER,2020-06-29,2020,June,Monday,29,181,17,2020-06-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18773,6515,GO-20209016657,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,0,2020-07-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18774,6543,GO-20209016974,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,18,2020-07-06,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18775,6554,GO-20209017055,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,9,2020-07-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18776,6600,GO-20209017398,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,19,2020-07-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18777,6628,GO-20209017615,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,18,2020-07-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18778,6629,GO-20209017615,THEFT UNDER,2020-06-28,2020,June,Sunday,28,180,18,2020-07-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18779,6673,GO-20201347280,B&E,2020-06-29,2020,June,Monday,29,181,14,2020-07-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18780,6674,GO-20201347280,B&E,2020-06-29,2020,June,Monday,29,181,14,2020-07-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18781,6695,GO-20201362694,B&E,2020-07-05,2020,July,Sunday,5,187,10,2020-07-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18782,6696,GO-20201362694,B&E,2020-07-05,2020,July,Sunday,5,187,10,2020-07-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18783,6760,GO-20209018708,THEFT UNDER,2020-07-12,2020,July,Sunday,12,194,20,2020-07-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18784,6797,GO-20209018841,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,23,2020-07-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18785,6812,GO-20209018954,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,8,2020-07-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18786,6856,GO-20209019269,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,18,2020-08-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18787,6905,GO-20209019713,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,17,2020-08-08,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18788,6910,GO-20209019721,THEFT UNDER,2020-08-09,2020,August,Sunday,9,222,0,2020-08-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18789,6912,GO-20209019737,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,11,2020-08-09,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18790,7003,GO-20209020706,THEFT FROM MOTOR VEHICLE UNDER,2020-08-14,2020,August,Friday,14,227,1,2020-08-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18791,7010,GO-20201567569,THEFT UNDER,2020-08-01,2020,August,Saturday,1,214,15,2020-08-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18792,7085,GO-20209021433,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,12,2020-08-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18793,7171,GO-20209022254,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,16,2020-09-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18794,7358,GO-20209024556,THEFT UNDER,2020-09-23,2020,September,Wednesday,23,267,14,2020-09-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18795,7536,GO-20209027525,THEFT UNDER,2020-10-23,2020,October,Friday,23,297,12,2020-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18796,7539,GO-20209027554,THEFT UNDER,2020-10-23,2020,October,Friday,23,297,23,2020-10-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18797,7584,GO-20202072445,THEFT UNDER - BICYCLE,2020-10-31,2020,October,Saturday,31,305,20,2020-11-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18798,7646,GO-20209030034,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,9,2020-11-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18799,7716,GO-20209032859,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,19,2020-12-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18800,7717,GO-20209032860,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,15,2020-12-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18801,7726,GO-2017510128,THEFT UNDER - BICYCLE,2017-03-12,2017,March,Sunday,12,71,10,2017-03-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18802,7745,GO-20141333599,THEFT UNDER,2014-01-13,2014,January,Monday,13,13,6,2014-01-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18803,7817,GO-20149002580,THEFT UNDER,2014-04-04,2014,April,Friday,4,94,22,2014-04-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18804,7861,GO-20141952954,THEFT UNDER,2014-04-24,2014,April,Thursday,24,114,11,2014-04-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18805,25297,GO-2017663171,B&E,2017-04-15,2017,April,Saturday,15,105,5,2017-04-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18806,24703,GO-20159003208,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,20,2015-05-30,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18807,25309,GO-20179008290,THEFT UNDER - BICYCLE,2017-06-15,2017,June,Thursday,15,166,23,2017-06-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18808,25375,GO-20209017384,THEFT UNDER,2020-07-11,2020,July,Saturday,11,193,15,2020-07-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18809,24736,GO-20151420456,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,22,2015-08-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18810,127,GO-20179002686,THEFT OF EBIKE UNDER $5000,2017-02-19,2017,February,Sunday,19,50,2,2017-03-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18811,14343,GO-20209031113,THEFT UNDER,2020-11-30,2020,November,Monday,30,335,1,2020-12-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18812,25010,GO-20159002457,THEFT UNDER,2015-05-04,2015,May,Monday,4,124,14,2015-05-05,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18813,14462,GO-20189032418,THEFT UNDER,2018-09-29,2018,September,Saturday,29,272,22,2018-09-30,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18814,14483,GO-20182344536,THEFT OF EBIKE UNDER $5000,2018-12-18,2018,December,Tuesday,18,352,19,2018-12-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18815,25051,GO-20169007069,THEFT UNDER - BICYCLE,2016-07-08,2016,July,Friday,8,190,9,2016-07-12,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18816,14548,GO-20191428342,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,12,2019-07-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18817,251,GO-20179004985,THEFT UNDER - BICYCLE,2017-04-14,2017,April,Friday,14,104,3,2017-04-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18818,25058,GO-20169010389,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,9,2016-09-13,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18819,290,GO-20179005389,THEFT UNDER - BICYCLE,2017-04-20,2017,April,Thursday,20,110,4,2017-04-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18820,321,GO-2017554599,B&E,2017-03-24,2017,March,Friday,24,83,0,2017-03-29,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18821,25063,GO-20161880973,THEFT OVER - BICYCLE,2016-10-22,2016,October,Saturday,22,296,18,2016-10-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18822,323,GO-2017779258,THEFT UNDER - BICYCLE,2017-05-02,2017,May,Tuesday,2,122,8,2017-05-03,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18823,14549,GO-20191428342,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,12,2019-07-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18824,25075,GO-20179004900,THEFT UNDER - BICYCLE,2017-04-18,2017,April,Tuesday,18,108,8,2017-04-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18825,335,GO-20179005848,THEFT UNDER - BICYCLE,2011-04-02,2011,April,Saturday,2,92,10,2017-05-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18826,14588,GO-20199033497,THEFT UNDER - BICYCLE,2019-10-11,2019,October,Friday,11,284,0,2019-10-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18827,25085,GO-20179008625,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,17,2017-06-21,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18828,343,GO-20179005807,THEFT UNDER,2017-05-02,2017,May,Tuesday,2,122,0,2017-05-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18829,14591,GO-20199034565,THEFT UNDER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,12,2019-10-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18830,25092,GO-20179011854,THEFT UNDER - BICYCLE,2017-08-07,2017,August,Monday,7,219,15,2017-08-07,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18831,25114,GO-20189018978,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,17,2018-06-16,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18832,25138,GO-2019929174,THEFT UNDER - BICYCLE,2019-05-21,2019,May,Tuesday,21,141,17,2019-05-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18833,25283,GO-20161974886,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,21,2016-11-06,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18834,121,GO-20179002630,THEFT UNDER,2017-02-06,2017,February,Monday,6,37,1,2017-03-01,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18835,183,GO-2017562015,THEFT UNDER - BICYCLE,2017-03-30,2017,March,Thursday,30,89,8,2017-03-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18836,394,GO-20179006351,THEFT UNDER,2017-05-12,2017,May,Friday,12,132,17,2017-05-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18837,484,GO-2017936299,THEFT UNDER - BICYCLE,2017-05-27,2017,May,Saturday,27,147,13,2017-05-27,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18838,524,GO-2017986088,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,20,2017-06-03,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18839,541,GO-20179007542,B&E,2017-05-31,2017,May,Wednesday,31,151,22,2017-06-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18840,700,GO-20171132501,PROPERTY - FOUND,2017-06-24,2017,June,Saturday,24,175,23,2017-06-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18841,723,GO-20179008963,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,20,2017-06-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18842,725,GO-20179008941,THEFT OF EBIKE UNDER $5000,2017-06-22,2017,June,Thursday,22,173,11,2017-06-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18843,755,GO-20179009234,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,8,2017-06-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18844,756,GO-20179009234,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,8,2017-06-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18845,757,GO-20179009238,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,8,2017-06-30,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18846,836,GO-20171248567,PROPERTY - FOUND,2017-07-11,2017,July,Tuesday,11,192,23,2017-07-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18847,850,GO-20179010128,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,16,2017-07-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18848,958,GO-20179010896,B&E,2017-07-23,2017,July,Sunday,23,204,15,2017-07-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18849,1066,GO-20179011841,THEFT UNDER - BICYCLE,2017-08-07,2017,August,Monday,7,219,0,2017-08-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18850,1130,GO-20179012246,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,17,2017-08-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18851,1139,GO-20179012303,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,0,2017-08-13,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18852,1163,GO-20179012561,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,17,2017-08-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18853,1193,GO-20179012868,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,13,2017-08-20,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18854,1337,GO-20179014219,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,19,2017-09-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18855,1382,GO-20179014592,THEFT UNDER,2017-09-12,2017,September,Tuesday,12,255,16,2017-09-12,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18856,1437,GO-20179015007,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,19,2017-09-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18857,1535,GO-20171736885,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,18,2017-09-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18858,1536,GO-20171736885,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,18,2017-09-24,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18859,1541,GO-20179015968,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,14,2017-09-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18860,1543,GO-20179015986,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,18,2017-09-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18861,1603,GO-20179016623,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,23,2017-10-06,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18862,1610,GO-20179016691,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,18,2017-10-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18863,1637,GO-20179016882,THEFT UNDER,2017-10-08,2017,October,Sunday,8,281,22,2017-10-10,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18864,1662,GO-20179017243,THEFT UNDER,2017-10-09,2017,October,Monday,9,282,19,2017-10-15,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18865,1675,GO-20179017416,THEFT UNDER,2017-10-16,2017,October,Monday,16,289,19,2017-10-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18866,1727,GO-20171911966,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,23,2017-10-22,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18867,1742,GO-20179018206,B&E,2017-10-24,2017,October,Tuesday,24,297,4,2017-10-25,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18868,1763,GO-20179018485,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,19,2017-10-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18869,1771,GO-20179018485,THEFT UNDER - BICYCLE,2017-10-20,2017,October,Friday,20,293,19,2017-10-29,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18870,1797,GO-20179018928,THEFT UNDER,2017-11-05,2017,November,Sunday,5,309,1,2017-11-05,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18871,1858,GO-20173009475,B&E,2017-11-12,2017,November,Sunday,12,316,0,2017-11-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18872,1868,GO-20179020333,B&E,2017-11-12,2017,November,Sunday,12,316,12,2017-11-17,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18873,1917,GO-20179021415,THEFT UNDER - BICYCLE,2017-12-05,2017,December,Tuesday,5,339,21,2017-12-06,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18874,1921,GO-20179021498,THEFT UNDER - BICYCLE,2017-11-20,2017,November,Monday,20,324,16,2017-12-06,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18875,1945,GO-20179022614,THEFT UNDER,2017-11-24,2017,November,Friday,24,328,18,2017-12-19,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18876,2020,GO-20189003735,THEFT UNDER - BICYCLE,2018-02-07,2018,February,Wednesday,7,38,13,2018-02-07,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18877,2049,GO-20189006129,THEFT UNDER - BICYCLE,2018-02-21,2018,February,Wednesday,21,52,15,2018-02-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18878,2061,GO-20189006616,THEFT UNDER,2018-02-23,2018,February,Friday,23,54,16,2018-03-02,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18879,2087,GO-20189008405,THEFT UNDER - BICYCLE,2018-03-17,2018,March,Saturday,17,76,21,2018-03-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18880,2094,GO-20185134040,THEFT UNDER - BICYCLE,2018-03-18,2018,March,Sunday,18,77,12,2018-03-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18881,2105,GO-20189009479,THEFT UNDER,2018-03-09,2018,March,Friday,9,68,8,2018-03-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18882,2165,GO-20189011836,THEFT UNDER - BICYCLE,2018-04-15,2018,April,Sunday,15,105,17,2018-04-16,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18883,2189,GO-2018714655,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,14,2018-04-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18884,2203,GO-20189012932,THEFT UNDER - BICYCLE,2018-04-25,2018,April,Wednesday,25,115,18,2018-04-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18885,2204,GO-20189012932,THEFT UNDER - BICYCLE,2018-04-25,2018,April,Wednesday,25,115,18,2018-04-26,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18886,2345,GO-20189015443,THEFT UNDER,2018-05-14,2018,May,Monday,14,134,17,2018-05-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18887,2436,GO-20189016976,THEFT UNDER,2018-05-31,2018,May,Thursday,31,151,10,2018-05-31,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18888,2604,GO-20189019125,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,10,2018-06-18,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18889,2638,GO-20189019591,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,21,2018-06-21,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18890,2707,GO-20189020542,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,18,2018-06-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18891,2708,GO-20189020536,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,20,2018-06-28,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)}",Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -18892,14821,GO-20189022389,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,0,2018-07-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18893,14903,GO-20201870349,B&E,2020-10-02,2020,October,Friday,2,276,1,2020-10-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18894,14906,GO-20201988297,THEFT UNDER - BICYCLE,2020-10-20,2020,October,Tuesday,20,294,7,2020-10-20,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18895,15059,GO-20149004651,THEFT FROM MOTOR VEHICLE UNDER,2014-07-03,2014,July,Thursday,3,184,1,2014-07-03,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18896,15065,GO-20149005318,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,19,2014-07-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18897,15080,GO-20159001872,THEFT UNDER,2015-04-12,2015,April,Sunday,12,102,9,2015-04-13,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18898,15081,GO-2015640328,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,19,2015-04-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18899,15089,GO-20151058077,THEFT OVER,2015-06-20,2015,June,Saturday,20,171,14,2015-06-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18900,15090,GO-20151058077,THEFT OVER,2015-06-20,2015,June,Saturday,20,171,14,2015-06-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18901,15091,GO-20151119830,THEFT OVER,2015-03-05,2015,March,Thursday,5,64,8,2015-07-05,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18902,15104,GO-20151615628,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,13,2015-09-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18903,15126,GO-20169008142,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,14,2016-08-03,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18904,15145,GO-20169010937,THEFT UNDER,2016-09-22,2016,September,Thursday,22,266,9,2016-09-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18905,15154,GO-20162060603,THEFT UNDER - BICYCLE,2016-11-21,2016,November,Monday,21,326,12,2016-11-21,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18906,15155,GO-20162060603,THEFT UNDER - BICYCLE,2016-11-21,2016,November,Monday,21,326,12,2016-11-21,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18907,15175,GO-20179006940,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,17,2017-05-24,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18908,15178,GO-20179008724,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,17,2017-06-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18909,15190,GO-20179012566,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,17,2017-08-16,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18910,15200,GO-20179019407,THEFT UNDER - BICYCLE,2017-11-11,2017,November,Saturday,11,315,12,2017-11-12,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18911,15229,GO-20181313453,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,9,2018-07-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18912,15232,GO-20181410474,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,23,2018-08-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18913,15247,GO-20189036165,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,22,2018-10-30,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18914,15248,GO-20189036509,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,15,2018-11-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18915,15260,GO-20199013295,THEFT UNDER,2019-04-20,2019,April,Saturday,20,110,17,2019-04-27,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18916,15267,GO-20199018104,THEFT UNDER,2019-06-10,2019,June,Monday,10,161,18,2019-06-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18917,15276,GO-20199022607,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,13,2019-07-16,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18918,15278,GO-20199022903,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,1,2019-07-19,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18919,15283,GO-20199029508,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,19,2019-09-10,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18920,15287,GO-20199033318,THEFT UNDER,2019-10-07,2019,October,Monday,7,280,14,2019-10-09,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18921,15295,GO-20209008859,THEFT UNDER,2020-03-12,2020,March,Thursday,12,72,20,2020-03-13,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18922,15296,GO-20209009848,THEFT UNDER,2020-03-26,2020,March,Thursday,26,86,8,2020-03-26,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18923,15351,GO-20149006336,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,13,2014-08-27,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18924,15557,GO-20161690428,THEFT OF EBIKE UNDER $5000,2016-09-22,2016,September,Thursday,22,266,14,2016-09-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18925,17419,GO-20209032824,THEFT UNDER,2020-12-24,2020,December,Thursday,24,359,22,2020-12-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18926,17560,GO-20199013931,THEFT UNDER - BICYCLE,2019-05-03,2019,May,Friday,3,123,18,2019-05-04,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18927,17579,GO-20199018659,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,20,2019-06-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18928,17625,GO-20199026323,THEFT UNDER - BICYCLE,2019-08-10,2019,August,Saturday,10,222,16,2019-08-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18929,17743,GO-20179016231,THEFT UNDER,2017-10-02,2017,October,Monday,2,275,8,2017-10-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18930,17858,GO-20189022265,THEFT UNDER,2018-07-12,2018,July,Thursday,12,193,19,2018-07-13,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18931,17882,GO-20189026464,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,1,2018-08-15,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18932,18120,GO-20169006612,THEFT UNDER,2016-07-01,2016,July,Friday,1,183,15,2016-07-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18933,18210,GO-20179007565,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,12,2017-06-05,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18934,18211,GO-20179007565,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,12,2017-06-05,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18935,18282,GO-20209020599,THEFT UNDER,2020-08-18,2020,August,Tuesday,18,231,15,2020-08-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18936,18307,GO-20201985934,THEFT OF EBIKE UNDER $5000,2020-10-11,2020,October,Sunday,11,285,17,2020-10-21,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18937,18321,GO-20149002853,THEFT UNDER,2013-11-15,2013,November,Friday,15,319,23,2014-04-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18938,18322,GO-20149002853,THEFT UNDER,2013-11-15,2013,November,Friday,15,319,23,2014-04-14,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18939,18339,GO-20142265323,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,0,2014-06-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18940,18456,GO-20159006827,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,0,2015-09-06,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18941,18480,GO-20169003734,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,22,2016-04-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18942,18496,GO-20169005405,THEFT UNDER - BICYCLE,2016-06-06,2016,June,Monday,6,158,21,2016-06-06,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18943,18545,GO-20151282012,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,2,2015-07-27,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18944,18557,GO-20152060170,THEFT UNDER,2015-11-23,2015,November,Monday,23,327,0,2015-12-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18945,18558,GO-20152065135,THEFT UNDER,2015-12-02,2015,December,Wednesday,2,336,11,2015-12-02,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18946,18563,GO-20169003513,THEFT UNDER - BICYCLE,2015-06-01,2015,June,Monday,1,152,11,2016-04-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18947,18569,GO-20169006204,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,8,2016-06-22,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18948,18594,GO-20179005275,THEFT UNDER,2017-04-25,2017,April,Tuesday,25,115,12,2017-04-25,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18949,18599,GO-2017910655,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,17,2017-05-23,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18950,18610,GO-20179011287,THEFT UNDER,2017-07-29,2017,July,Saturday,29,210,1,2017-07-29,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18951,18621,GO-20179017064,THEFT UNDER,2017-10-12,2017,October,Thursday,12,285,17,2017-10-12,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18952,18642,GO-20189021928,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,14,2018-07-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18953,18657,GO-20189031754,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,9,2018-09-24,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18954,18669,GO-2019696204,THEFT UNDER,2019-04-17,2019,April,Wednesday,17,107,17,2019-04-17,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18955,18676,GO-20199023824,THEFT UNDER,2019-07-26,2019,July,Friday,26,207,5,2019-07-26,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18956,18686,GO-20199030312,THEFT UNDER,2019-09-15,2019,September,Sunday,15,258,12,2019-09-17,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18957,18694,GO-20199032211,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,9,2019-10-01,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18958,18702,GO-20209010208,THEFT UNDER,2020-03-31,2020,March,Tuesday,31,91,6,2020-03-31,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18959,20790,GO-20209019567,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,20,2020-08-06,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18960,21029,GO-20199024006,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,11,2019-07-28,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18961,21083,GO-20192014122,ROBBERY WITH WEAPON,2019-10-18,2019,October,Friday,18,291,20,2019-10-18,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18962,21157,GO-20201280127,PROPERTY - FOUND,2020-07-10,2020,July,Friday,10,192,17,2020-07-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18963,21158,GO-20201280127,PROPERTY - FOUND,2020-07-10,2020,July,Friday,10,192,17,2020-07-11,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)}",Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -18964,450,GO-2017902930,THEFT UNDER - BICYCLE,2017-05-22,2017,May,Monday,22,142,16,2017-05-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18965,572,GO-20179007810,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,8,2017-06-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18966,594,GO-20179007945,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,3,2017-06-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18967,881,GO-20179010288,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,9,2017-07-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18968,936,GO-20171305050,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,20,2017-07-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18969,1039,GO-20179011548,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,23,2017-08-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18970,1055,GO-20179011724,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,2,2017-08-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18971,1127,GO-20171427216,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,20,2017-08-12,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18972,1364,GO-20179014314,THEFT UNDER,2017-08-18,2017,August,Friday,18,230,16,2017-09-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18973,1368,GO-20179014476,THEFT UNDER,2017-09-09,2017,September,Saturday,9,252,0,2017-09-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18974,1464,GO-20171709310,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,18,2017-09-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18975,1504,GO-20179015577,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,2,2017-09-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18976,1530,GO-20179015816,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,10,2017-09-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18977,1856,GO-20179019849,THEFT UNDER - BICYCLE,2017-11-15,2017,November,Wednesday,15,319,10,2017-11-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18978,1902,GO-20173114903,B&E,2017-06-23,2017,June,Friday,23,174,0,2017-12-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18979,1903,GO-20173114903,B&E,2017-06-23,2017,June,Friday,23,174,0,2017-12-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18980,1996,GO-20189001995,B&E,2018-01-19,2018,January,Friday,19,19,1,2018-01-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18981,2030,GO-20189004458,FTC PROBATION ORDER,2018-02-12,2018,February,Monday,12,43,3,2018-02-13,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18982,2043,GO-20189005726,THEFT UNDER - BICYCLE,2018-02-16,2018,February,Friday,16,47,8,2018-02-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18983,2097,GO-20189009033,THEFT UNDER - BICYCLE,2018-03-21,2018,March,Wednesday,21,80,11,2018-03-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18984,2098,GO-20189009033,THEFT UNDER - BICYCLE,2018-03-21,2018,March,Wednesday,21,80,11,2018-03-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18985,2318,GO-20189015034,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,13,2018-05-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18986,2801,GO-20189021863,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,11,2018-07-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18987,2901,GO-20181323182,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,12,2018-07-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18988,2938,GO-20189023680,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,11,2018-07-24,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18989,2987,GO-20189024108,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,20,2018-07-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18990,2995,GO-20189024206,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,22,2018-07-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18991,3026,GO-20181395578,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,15,2018-07-30,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18992,3169,GO-20189025995,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,13,2018-08-11,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18993,3186,GO-20189026196,THEFT UNDER,2018-08-13,2018,August,Monday,13,225,9,2018-08-13,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18994,3210,GO-20189026546,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,0,2018-08-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18995,3215,GO-20189026513,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,9,2018-08-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18996,3225,GO-20189026546,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,0,2018-08-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18997,3618,GO-20181838391,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,0,2018-10-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18998,3635,GO-20181858015,THEFT UNDER,2018-10-08,2018,October,Monday,8,281,5,2018-10-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -18999,3652,GO-20181871720,THEFT UNDER - BICYCLE,2018-10-03,2018,October,Wednesday,3,276,6,2018-10-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19000,3667,GO-20181877966,THEFT UNDER - BICYCLE,2018-10-02,2018,October,Tuesday,2,275,15,2018-10-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19001,3878,GO-20189038843,THEFT UNDER,2018-11-19,2018,November,Monday,19,323,13,2018-11-19,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19002,3908,GO-20182182759,THEFT UNDER - BICYCLE,2018-11-26,2018,November,Monday,26,330,21,2018-11-27,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19003,3941,GO-20189042006,THEFT UNDER - BICYCLE,2018-12-11,2018,December,Tuesday,11,345,10,2018-12-14,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19004,3960,GO-20182362087,THEFT UNDER - BICYCLE,2018-12-22,2018,December,Saturday,22,356,13,2018-12-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19005,3987,GO-20199000798,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,18,2019-01-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19006,3997,GO-20199001141,THEFT UNDER - BICYCLE,2019-01-07,2019,January,Monday,7,7,20,2019-01-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19007,4086,GO-20199007872,THEFT UNDER - BICYCLE,2019-03-03,2019,March,Sunday,3,62,19,2019-03-10,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19008,4146,GO-20199011151,THEFT UNDER - BICYCLE,2019-04-06,2019,April,Saturday,6,96,16,2019-04-08,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19009,4149,GO-20199011235,THEFT UNDER - BICYCLE,2019-03-28,2019,March,Thursday,28,87,12,2019-04-09,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19010,4176,GO-20199012190,THEFT UNDER - BICYCLE,2019-04-12,2019,April,Friday,12,102,10,2019-04-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19011,4219,GO-20199013538,THEFT UNDER - BICYCLE,2019-04-21,2019,April,Sunday,21,111,11,2019-04-30,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19012,4289,GO-20199015334,THEFT UNDER,2019-05-14,2019,May,Tuesday,14,134,20,2019-05-16,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19013,4295,GO-20199015443,THEFT UNDER - BICYCLE,2019-05-16,2019,May,Thursday,16,136,19,2019-05-17,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19014,4310,GO-20199015743,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,23,2019-05-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19015,4318,GO-2019923859,THEFT UNDER - BICYCLE,2019-05-20,2019,May,Monday,20,140,12,2019-05-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19016,4368,GO-20199016706,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,10,2019-05-28,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19017,4556,GO-20199019390,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,17,2019-06-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19018,4608,GO-20199020132,THEFT UNDER - BICYCLE,2019-06-25,2019,June,Tuesday,25,176,17,2019-06-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19019,4614,GO-20199020205,THEFT UNDER - BICYCLE,2019-06-18,2019,June,Tuesday,18,169,21,2019-06-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19020,15237,GO-20189027359,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,18,2018-08-21,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19021,15249,GO-20189039509,THEFT UNDER - BICYCLE,2018-11-21,2018,November,Wednesday,21,325,8,2018-11-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19022,15258,GO-20199011027,THEFT UNDER,2019-04-03,2019,April,Wednesday,3,93,18,2019-04-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19023,15259,GO-2019697947,B&E W'INTENT,2019-04-18,2019,April,Thursday,18,108,4,2019-04-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19024,15269,GO-20191143225,THEFT UNDER - BICYCLE,2019-06-20,2019,June,Thursday,20,171,11,2019-06-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19025,15270,GO-20199019875,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,15,2019-06-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19026,15274,GO-20191314105,THEFT UNDER,2019-07-13,2019,July,Saturday,13,194,10,2019-07-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19027,15275,GO-20199022355,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,14,2019-07-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19028,15286,GO-20191927568,THEFT FROM MOTOR VEHICLE UNDER,2019-09-15,2019,September,Sunday,15,258,12,2019-10-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19029,15290,GO-20192487646,B&E W'INTENT,2019-12-24,2019,December,Tuesday,24,358,18,2019-12-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19030,15292,GO-20209002124,THEFT UNDER,2019-10-15,2019,October,Tuesday,15,288,7,2020-01-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19031,15293,GO-20209004694,THEFT UNDER,2020-02-07,2020,February,Friday,7,38,22,2020-02-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19032,15300,GO-20209013220,THEFT UNDER,2020-05-05,2020,May,Tuesday,5,126,20,2020-05-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19033,15301,GO-20209013220,THEFT UNDER,2020-05-05,2020,May,Tuesday,5,126,20,2020-05-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19034,15302,GO-20201083567,FTC WITH CONDITIONS,2020-06-12,2020,June,Friday,12,164,12,2020-06-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19035,15303,GO-20209015371,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,13,2020-06-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19036,15305,GO-20209015736,THEFT UNDER,2020-06-15,2020,June,Monday,15,167,21,2020-06-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19037,18279,GO-20209019486,THEFT UNDER,2020-08-05,2020,August,Wednesday,5,218,9,2020-08-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19038,18284,GO-20209020765,THEFT UNDER,2020-08-13,2020,August,Thursday,13,226,12,2020-08-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19039,18304,GO-20209025603,THEFT UNDER,2020-10-05,2020,October,Monday,5,279,19,2020-10-06,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19040,18314,GO-2020848634,THEFT UNDER - BICYCLE,2020-04-05,2020,April,Sunday,5,96,12,2020-05-06,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19041,18508,GO-20149003228,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,14,2014-05-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19042,18522,GO-20143350237,THEFT UNDER,2014-11-22,2014,November,Saturday,22,326,15,2014-11-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19043,18530,GO-20159002428,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,10,2015-05-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19044,18534,GO-2015892118,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,8,2015-05-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19045,18546,GO-20159005121,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,18,2015-07-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19046,18561,GO-20159011351,THEFT UNDER,2015-12-21,2015,December,Monday,21,355,19,2015-12-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19047,18565,GO-2016930592,THEFT UNDER - BICYCLE,2016-05-29,2016,May,Sunday,29,150,15,2016-05-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19048,18575,GO-20161917243,THEFT UNDER - BICYCLE,2016-10-25,2016,October,Tuesday,25,299,0,2016-10-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19049,18578,GO-20162295341,THEFT UNDER - BICYCLE,2016-12-28,2016,December,Wednesday,28,363,10,2016-12-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19050,18580,GO-2017252006,THEFT UNDER - BICYCLE,2017-02-09,2017,February,Thursday,9,40,17,2017-02-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19051,18581,GO-2017319967,B&E,2017-02-18,2017,February,Saturday,18,49,5,2017-02-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19052,18582,GO-2017319967,B&E,2017-02-18,2017,February,Saturday,18,49,5,2017-02-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19053,18583,GO-2017319967,B&E,2017-02-18,2017,February,Saturday,18,49,5,2017-02-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19054,18584,GO-2017319967,B&E,2017-02-18,2017,February,Saturday,18,49,5,2017-02-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19055,18585,GO-2017319967,B&E,2017-02-18,2017,February,Saturday,18,49,5,2017-02-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19056,18586,GO-2017319967,B&E,2017-02-18,2017,February,Saturday,18,49,5,2017-02-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19057,18589,GO-20179003619,THEFT UNDER - BICYCLE,2017-03-22,2017,March,Wednesday,22,81,9,2017-03-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19058,18600,GO-20179007067,THEFT UNDER,2017-05-23,2017,May,Tuesday,23,143,17,2017-05-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19059,18616,GO-20179016054,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,9,2017-09-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19060,18617,GO-20171808715,PROPERTY - FOUND,2017-10-03,2017,October,Tuesday,3,276,7,2017-10-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19061,18622,GO-20179017415,THEFT UNDER,2017-10-13,2017,October,Friday,13,286,22,2017-10-17,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19062,18628,GO-20189000475,THEFT UNDER - BICYCLE,2018-01-05,2018,January,Friday,5,5,12,2018-01-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19063,18651,GO-20189026865,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,21,2018-08-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19064,18654,GO-20189028209,THEFT UNDER,2018-08-25,2018,August,Saturday,25,237,13,2018-08-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19065,18656,GO-20181751620,B&E,2018-09-17,2018,September,Monday,17,260,22,2018-09-21,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19066,18662,GO-20189043155,THEFT UNDER - BICYCLE,2018-12-20,2018,December,Thursday,20,354,19,2018-12-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19067,18665,GO-20199004423,THEFT UNDER - BICYCLE,2019-01-04,2019,January,Friday,4,4,13,2019-02-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19068,18666,GO-20199008388,THEFT UNDER - BICYCLE,2019-03-15,2019,March,Friday,15,74,12,2019-03-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19069,18668,GO-20199011737,THEFT UNDER,2019-04-08,2019,April,Monday,8,98,14,2019-04-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19070,18671,GO-2019845227,B&E,2019-05-08,2019,May,Wednesday,8,128,16,2019-05-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19071,18681,GO-20191600359,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,20,2019-08-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19072,18688,GO-20199030640,THEFT UNDER,2019-09-18,2019,September,Wednesday,18,261,22,2019-09-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19073,18695,GO-20199033653,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,14,2019-10-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19074,18696,GO-20199040794,THEFT UNDER,2019-12-12,2019,December,Thursday,12,346,17,2019-12-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19075,18701,GO-20209006916,THEFT UNDER,2019-12-29,2019,December,Sunday,29,363,1,2020-02-25,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19076,18703,GO-20209011450,THEFT UNDER,2020-04-18,2020,April,Saturday,18,109,18,2020-04-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19077,21570,GO-20201422439,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,18,2020-07-31,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19078,21577,GO-20142063112,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,8,2014-05-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19079,21597,GO-20149006887,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,17,2014-09-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19080,21598,GO-20149006895,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,18,2014-09-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19081,21606,GO-2015520199,ROBBERY - OTHER,2015-03-28,2015,March,Saturday,28,87,0,2015-03-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19082,21616,GO-20159004148,THEFT UNDER,2015-07-02,2015,July,Thursday,2,183,2,2015-07-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19083,21622,GO-20159007139,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,9,2015-09-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19084,21629,GO-20152098074,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,17,2015-12-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19085,21633,GO-20169001446,THEFT UNDER,2016-02-09,2016,February,Tuesday,9,40,18,2016-02-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19086,21638,GO-20169002869,THEFT UNDER - BICYCLE,2016-03-29,2016,March,Tuesday,29,89,8,2016-03-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19087,21645,GO-20161084996,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,21,2016-06-21,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19088,21649,GO-20169007203,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,18,2016-07-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19089,21651,GO-20161357288,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,20,2016-08-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19090,21663,GO-20179004311,THEFT UNDER - BICYCLE,2017-04-05,2017,April,Wednesday,5,95,17,2017-04-06,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19091,21667,GO-20179005714,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,15,2017-05-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19092,21668,GO-20179005714,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,15,2017-05-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19093,21673,GO-20171026896,B&E,2017-06-09,2017,June,Friday,9,160,9,2017-06-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19094,21677,GO-20179009760,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,17,2017-07-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19095,21692,GO-20179021986,THEFT UNDER - BICYCLE,2017-12-07,2017,December,Thursday,7,341,8,2017-12-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19096,21703,GO-20181092388,THEFT UNDER,2018-06-08,2018,June,Friday,8,159,6,2018-06-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19097,21707,GO-20189023624,THEFT UNDER,2018-07-23,2018,July,Monday,23,204,6,2018-07-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19098,21744,GO-20199022173,THEFT UNDER,2019-07-12,2019,July,Friday,12,193,9,2019-07-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19099,21748,GO-20199024613,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,15,2019-08-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19100,21751,GO-20199025736,THEFT UNDER,2019-08-11,2019,August,Sunday,11,223,12,2019-08-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19101,21758,GO-20191824572,B&E,2019-09-18,2019,September,Wednesday,18,261,16,2019-09-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19102,21761,GO-20199034306,THEFT UNDER,2019-10-17,2019,October,Thursday,17,290,10,2019-10-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19103,21763,GO-20192153261,THEFT OF MOTOR VEHICLE,2019-11-06,2019,November,Wednesday,6,310,7,2019-11-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19104,21770,GO-20209004694,THEFT UNDER,2020-02-07,2020,February,Friday,7,38,22,2020-02-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19105,21772,GO-2020747760,THEFT UNDER,2020-04-16,2020,April,Thursday,16,107,12,2020-04-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19106,21773,GO-2020747760,THEFT UNDER,2020-04-16,2020,April,Thursday,16,107,12,2020-04-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19107,21782,GO-2020961943,THEFT UNDER - BICYCLE,2020-05-22,2020,May,Friday,22,143,19,2020-05-25,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19108,21784,GO-20209014539,THEFT UNDER,2020-05-03,2020,May,Sunday,3,124,0,2020-06-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19109,21983,GO-20209025195,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,2,2020-10-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19110,21985,GO-20201939258,THEFT OF EBIKE UNDER $5000,2020-10-09,2020,October,Friday,9,283,10,2020-10-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19111,24394,GO-20201446663,THEFT UNDER - BICYCLE,2020-07-30,2020,July,Thursday,30,212,13,2020-08-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19112,24395,GO-20209019490,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,21,2020-08-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19113,24411,GO-20202129561,THEFT OVER,2020-04-06,2020,April,Monday,6,97,12,2020-11-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19114,24985,GO-20141919782,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,19,2014-04-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19115,24988,GO-20149003684,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,22,2014-05-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19116,24991,GO-20149004431,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,16,2014-06-25,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19117,24998,GO-20142673990,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,21,2014-08-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19118,25002,GO-20149006394,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,17,2014-08-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19119,25003,GO-20142961377,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,2,2014-09-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19120,24050,GO-20199019593,THEFT UNDER,2019-06-11,2019,June,Tuesday,11,162,17,2019-06-21,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19121,15139,GO-20169009999,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,22,2016-09-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19122,24076,GO-20199023897,THEFT UNDER - BICYCLE,2019-07-24,2019,July,Wednesday,24,205,18,2019-07-26,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19123,24084,GO-20191472269,THEFT UNDER - BICYCLE,2019-08-04,2019,August,Sunday,4,216,14,2019-08-04,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19124,24091,GO-20199027364,THEFT UNDER - BICYCLE,2019-08-22,2019,August,Thursday,22,234,19,2019-08-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19125,24092,GO-20199027432,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,17,2019-08-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19126,24101,GO-20191777138,WEAPON - POSS DANGEROUS PURP,2019-09-16,2019,September,Monday,16,259,6,2019-09-16,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19127,7768,GO-20149001570,THEFT UNDER,2014-02-24,2014,February,Monday,24,55,20,2014-02-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19128,24104,GO-20199031102,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,7,2019-09-22,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19129,24110,GO-20199032952,THEFT UNDER - BICYCLE,2019-10-07,2019,October,Monday,7,280,12,2019-10-07,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19130,24119,GO-20199035877,THEFT UNDER - BICYCLE,2019-10-26,2019,October,Saturday,26,299,12,2019-10-30,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19131,24132,GO-20192324198,PROPERTY - FOUND,2019-12-02,2019,December,Monday,2,336,13,2019-12-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19132,24133,GO-20192324198,PROPERTY - FOUND,2019-12-02,2019,December,Monday,2,336,13,2019-12-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19133,24134,GO-20192324198,PROPERTY - FOUND,2019-12-02,2019,December,Monday,2,336,13,2019-12-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19134,24135,GO-20192324198,PROPERTY - FOUND,2019-12-02,2019,December,Monday,2,336,13,2019-12-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19135,24136,GO-20192324198,PROPERTY - FOUND,2019-12-02,2019,December,Monday,2,336,13,2019-12-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19136,24155,GO-20209010577,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,0,2020-04-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19137,24163,GO-2020718932,THEFT UNDER,2020-04-13,2020,April,Monday,13,104,22,2020-04-15,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19138,24169,GO-2020825140,THEFT UNDER - BICYCLE,2020-05-01,2020,May,Friday,1,122,22,2020-05-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19139,24175,GO-20209013255,THEFT UNDER,2020-05-13,2020,May,Wednesday,13,134,14,2020-05-16,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19140,24236,GO-20171727971,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,12,2017-09-23,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19141,24295,GO-20189013275,THEFT UNDER - BICYCLE,2017-11-19,2017,November,Sunday,19,323,9,2018-04-30,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19142,24306,GO-20189014825,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,18,2018-05-14,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19143,24352,GO-20189024903,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,12,2018-08-02,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19144,24587,GO-20141261431,THEFT UNDER,2014-01-01,2014,January,Wednesday,1,1,7,2014-01-01,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19145,24603,GO-20142299657,THEFT UNDER,2014-06-16,2014,June,Monday,16,167,0,2014-06-16,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19146,24606,GO-20142319125,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,21,2014-06-18,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19147,24670,GO-20143134370,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,0,2014-10-19,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19148,24738,GO-20151434403,THEFT UNDER,2015-08-18,2015,August,Tuesday,18,230,18,2015-08-20,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19149,25193,GO-2016900415,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,11,2016-05-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19150,25194,GO-2016898875,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,20,2016-05-25,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19151,25204,GO-2016979468,THEFT UNDER,2016-06-03,2016,June,Friday,3,155,18,2016-06-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19152,25205,GO-2016979468,THEFT UNDER,2016-06-03,2016,June,Friday,3,155,18,2016-06-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19153,25299,GO-20179005807,THEFT UNDER,2017-05-02,2017,May,Tuesday,2,122,0,2017-05-06,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)}",South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -19154,20,GO-20162214796,THEFT UNDER - BICYCLE,2016-12-12,2016,December,Monday,12,347,16,2016-12-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19155,70,GO-2017167669,THEFT OVER,2017-01-27,2017,January,Friday,27,27,4,2017-01-27,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19156,126,GO-2017382429,THEFT OF EBIKE UNDER $5000,2017-03-01,2017,March,Wednesday,1,60,13,2017-03-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19157,145,GO-2017408406,B&E,2017-03-02,2017,March,Thursday,2,61,0,2017-03-06,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19158,162,GO-2017496629,THEFT UNDER - BICYCLE,2017-01-01,2017,January,Sunday,1,1,0,2017-03-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19159,171,GO-2017534721,THEFT UNDER,2017-03-25,2017,March,Saturday,25,84,21,2017-03-26,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19160,193,GO-2017588524,UNLAWFULLY IN DWELLING-HOUSE,2017-04-03,2017,April,Monday,3,93,19,2017-04-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19161,339,GO-20179005880,THEFT UNDER,2017-05-06,2017,May,Saturday,6,126,16,2017-05-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19162,389,GO-2017843689,B&E W'INTENT,2017-05-12,2017,May,Friday,12,132,22,2017-05-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19163,417,GO-20179006572,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,23,2017-05-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19164,445,GO-20179006808,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,9,2017-05-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19165,581,GO-20179007884,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,17,2017-06-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19166,593,GO-20179007941,THEFT UNDER,2017-06-09,2017,June,Friday,9,160,18,2017-06-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19167,776,GO-20179009411,THEFT UNDER,2017-06-30,2017,June,Friday,30,181,10,2017-07-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19168,817,GO-20179009799,THEFT FROM MOTOR VEHICLE UNDER,2017-07-08,2017,July,Saturday,8,189,22,2017-07-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19169,909,GO-20171301082,B&E,2017-07-20,2017,July,Thursday,20,201,0,2017-07-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19170,910,GO-20171301082,B&E,2017-07-20,2017,July,Thursday,20,201,0,2017-07-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19171,927,GO-20179010656,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,20,2017-07-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19172,940,GO-20171322666,B&E,2017-07-23,2017,July,Sunday,23,204,14,2017-07-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19173,1271,GO-20179013667,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,4,2017-08-30,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19174,1297,GO-20171599747,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,23,2017-09-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19175,1359,GO-20179014422,THEFT UNDER - BICYCLE,2017-09-09,2017,September,Saturday,9,252,19,2017-09-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19176,1391,GO-20179014654,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,22,2017-09-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19177,1432,GO-20179014969,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,21,2017-09-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19178,1491,GO-20171702845,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,22,2017-09-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19179,1492,GO-20171702845,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,22,2017-09-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19180,1507,GO-20171713465,THEFT OVER,2017-09-20,2017,September,Wednesday,20,263,2,2017-09-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19181,1508,GO-20171713465,THEFT OVER,2017-09-20,2017,September,Wednesday,20,263,2,2017-09-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19182,1592,GO-20179016492,THEFT UNDER,2017-10-03,2017,October,Tuesday,3,276,12,2017-10-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19183,1657,GO-20171866482,THEFT OVER,2017-10-14,2017,October,Saturday,14,287,16,2017-10-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19184,1658,GO-20171866482,THEFT OVER,2017-10-14,2017,October,Saturday,14,287,16,2017-10-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19185,1659,GO-20171866482,THEFT OVER,2017-10-14,2017,October,Saturday,14,287,16,2017-10-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19186,1864,GO-20179020124,THEFT UNDER - BICYCLE,2017-11-17,2017,November,Friday,17,321,6,2017-11-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19187,1865,GO-20179020218,THEFT UNDER - BICYCLE,2017-11-19,2017,November,Sunday,19,323,17,2017-11-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19188,2013,GO-2018219718,THEFT UNDER - BICYCLE,2018-02-04,2018,February,Sunday,4,35,13,2018-02-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19189,2144,GO-2018640266,THEFT UNDER - BICYCLE,2018-04-07,2018,April,Saturday,7,97,20,2018-04-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19190,2148,GO-20189011200,THEFT UNDER,2018-04-08,2018,April,Sunday,8,98,12,2018-04-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19191,2200,GO-20189012625,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,2,2018-04-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19192,2361,GO-20189015722,THEFT UNDER - BICYCLE,2018-05-18,2018,May,Friday,18,138,0,2018-05-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19193,2403,GO-2018958694,B&E,2018-05-28,2018,May,Monday,28,148,1,2018-05-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19194,2453,GO-20189017337,THEFT UNDER - BICYCLE,2018-06-02,2018,June,Saturday,2,153,23,2018-06-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19195,2459,GO-20181015422,B&E,2018-06-04,2018,June,Monday,4,155,18,2018-06-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19196,2545,GO-20189018459,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,18,2018-06-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19197,2558,GO-20189018459,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,18,2018-06-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19198,2560,GO-20181063110,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,12,2018-06-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19199,2571,GO-20189018727,THEFT UNDER,2018-06-11,2018,June,Monday,11,162,0,2018-06-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19200,2579,GO-20189018886,THEFT UNDER,2018-06-13,2018,June,Wednesday,13,164,23,2018-06-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19201,2613,GO-20181114860,THEFT UNDER,2018-06-17,2018,June,Sunday,17,168,20,2018-06-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19202,2624,GO-20189019386,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,17,2018-06-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19203,2651,GO-20189019685,THEFT UNDER,2018-06-17,2018,June,Sunday,17,168,5,2018-06-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19204,2652,GO-20189019685,THEFT UNDER,2018-06-17,2018,June,Sunday,17,168,5,2018-06-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19205,2719,GO-20189020720,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,13,2018-06-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19206,2720,GO-20189020731,THEFT UNDER,2018-06-28,2018,June,Thursday,28,179,22,2018-06-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19207,2724,GO-20181195044,B&E,2018-07-01,2018,July,Sunday,1,182,0,2018-07-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19208,2789,GO-20189021751,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,19,2018-07-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19209,2847,GO-20189022471,THEFT UNDER,2018-07-06,2018,July,Friday,6,187,23,2018-07-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19210,2871,GO-20181313181,B&E,2018-07-14,2018,July,Saturday,14,195,5,2018-07-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19211,2905,GO-20189023264,THEFT UNDER,2018-07-20,2018,July,Friday,20,201,11,2018-07-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19212,2983,GO-20189024095,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,21,2018-07-26,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19213,2984,GO-20189024095,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,21,2018-07-26,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19214,3138,GO-20189025701,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,21,2018-08-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19215,3402,GO-20181357428,B&E,2018-07-25,2018,July,Wednesday,25,206,1,2018-07-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19216,3597,GO-20189032648,THEFT UNDER,2018-10-01,2018,October,Monday,1,274,21,2018-10-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19217,3620,GO-20189033015,THEFT UNDER,2018-09-24,2018,September,Monday,24,267,15,2018-10-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19218,3665,GO-20181878133,B&E,2018-10-11,2018,October,Thursday,11,284,3,2018-10-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19219,3889,GO-20182155639,B&E,2018-11-22,2018,November,Thursday,22,326,23,2018-11-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19220,3890,GO-20182155639,B&E,2018-11-22,2018,November,Thursday,22,326,23,2018-11-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19221,3942,GO-20189042159,THEFT UNDER,2018-12-14,2018,December,Friday,14,348,14,2018-12-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19222,133,GO-2017396327,B&E,2017-03-03,2017,March,Friday,3,62,0,2017-03-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19223,25023,GO-20159003593,PROPERTY - RECOVERED,2015-06-12,2015,June,Friday,12,163,11,2015-06-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19224,3946,GO-20182304851,B&E,2018-12-16,2018,December,Sunday,16,350,4,2018-12-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19225,269,GO-2017708462,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,18,2017-04-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19226,3161,GO-20181446368,THEFT OF MOTOR VEHICLE,2018-08-06,2018,August,Monday,6,218,19,2018-08-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19227,7808,GO-20141822406,THEFT UNDER,2014-04-03,2014,April,Thursday,3,93,10,2014-04-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19228,329,GO-20179005761,THEFT UNDER,2017-05-04,2017,May,Thursday,4,124,1,2017-05-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19229,8041,GO-20142209479,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,22,2014-06-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19230,330,GO-20179005761,THEFT UNDER,2017-05-04,2017,May,Thursday,4,124,1,2017-05-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19231,8267,GO-20142315539,POSSESSION PROPERTY OBC UNDER,2014-06-14,2014,June,Saturday,14,165,11,2014-06-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19232,362,GO-2017814836,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,0,2017-05-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19233,8412,GO-20149004952,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,12,2014-07-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19234,452,GO-20179006837,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,10,2017-05-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19235,15151,GO-20169012306,THEFT UNDER - BICYCLE,2016-10-18,2016,October,Tuesday,18,292,16,2016-10-19,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19236,8417,GO-20149004965,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,1,2014-07-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19237,454,GO-20179006852,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,12,2017-05-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19238,25035,GO-20159011127,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,0,2015-12-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19239,15156,GO-20162082557,B&E,2016-11-23,2016,November,Wednesday,23,328,12,2016-11-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19240,8499,GO-20142572533,B&E,2014-07-25,2014,July,Friday,25,206,20,2014-07-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19241,458,GO-20179006866,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,22,2017-05-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19242,25038,GO-20169001423,THEFT UNDER,2016-02-14,2016,February,Sunday,14,45,19,2016-02-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19243,15163,GO-2017634757,THEFT UNDER,2017-03-31,2017,March,Friday,31,90,0,2017-04-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19244,15164,GO-2017634757,THEFT UNDER,2017-03-31,2017,March,Friday,31,90,0,2017-04-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19245,15196,GO-20179017462,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,16,2017-10-18,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19246,15203,GO-20179021445,POSSESSION PROPERTY OBC UNDER,2017-12-13,2017,December,Wednesday,13,347,0,2017-12-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19247,15204,GO-20179021445,POSSESSION PROPERTY OBC UNDER,2017-12-13,2017,December,Wednesday,13,347,0,2017-12-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19248,15214,GO-20189011382,THEFT UNDER - BICYCLE,2018-04-11,2018,April,Wednesday,11,101,9,2018-04-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19249,15222,GO-20181111926,B&E,2018-06-19,2018,June,Tuesday,19,170,3,2018-06-19,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19250,15223,GO-20189021073,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,23,2018-07-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19251,15224,GO-20189021165,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,6,2018-07-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19252,15225,GO-20181250603,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,14,2018-07-09,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19253,15226,GO-20189022101,THEFT UNDER,2018-07-10,2018,July,Tuesday,10,191,22,2018-07-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19254,15238,GO-20189028237,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,11,2018-08-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19255,15245,GO-20181981655,B&E,2018-10-27,2018,October,Saturday,27,300,6,2018-10-27,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19256,15246,GO-20181981655,B&E,2018-10-27,2018,October,Saturday,27,300,6,2018-10-27,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19257,15262,GO-2019858748,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,20,2019-05-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19258,15268,GO-20191104089,THEFT FROM MOTOR VEHICLE OVER,2019-06-15,2019,June,Saturday,15,166,6,2019-06-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19259,3268,GO-20189027180,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,5,2018-08-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19260,4009,GO-2019103354,B&E,2019-01-17,2019,January,Thursday,17,17,2,2019-01-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19261,15284,GO-20191845764,B&E,2019-09-24,2019,September,Tuesday,24,267,22,2019-09-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19262,15285,GO-20191845764,B&E,2019-09-24,2019,September,Tuesday,24,267,22,2019-09-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19263,15304,GO-20209015372,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,21,2020-06-14,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19264,18512,GO-20142386655,B&E,2014-06-24,2014,June,Tuesday,24,175,8,2014-06-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19265,18513,GO-20142386655,B&E,2014-06-24,2014,June,Tuesday,24,175,8,2014-06-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19266,18527,GO-2015612480,THEFT UNDER - SHOPLIFTING,2015-04-13,2015,April,Monday,13,103,19,2015-04-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19267,18529,GO-2015717371,THEFT UNDER,2015-04-23,2015,April,Thursday,23,113,9,2015-04-30,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19268,18533,GO-20159003060,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,20,2015-05-24,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19269,18543,GO-20151243653,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,13,2015-07-21,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19270,18551,GO-20151512286,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,3,2015-09-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19271,18554,GO-20159007946,THEFT UNDER,2015-09-29,2015,September,Tuesday,29,272,18,2015-09-30,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19272,18564,GO-2016803356,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,14,2016-05-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19273,18566,GO-2016975535,B&E,2016-05-28,2016,May,Saturday,28,149,0,2016-06-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19274,18567,GO-20161054329,B&E,2016-06-13,2016,June,Monday,13,165,15,2016-06-17,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19275,18568,GO-20161054329,B&E,2016-06-13,2016,June,Monday,13,165,15,2016-06-17,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19276,18579,GO-20179001023,THEFT UNDER - BICYCLE,2017-01-23,2017,January,Monday,23,23,9,2017-01-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19277,18592,GO-2017705188,B&E,2017-04-18,2017,April,Tuesday,18,108,12,2017-04-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19278,18605,GO-20171274654,THEFT UNDER,2017-07-15,2017,July,Saturday,15,196,9,2017-07-16,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19279,18623,GO-20179017462,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,16,2017-10-18,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19280,18630,GO-20189007971,THEFT UNDER - BICYCLE,2018-03-02,2018,March,Friday,2,61,1,2018-03-14,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19281,18631,GO-20189007971,THEFT UNDER - BICYCLE,2018-03-02,2018,March,Friday,2,61,1,2018-03-14,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19282,18635,GO-20189015055,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,15,2018-05-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19283,18661,GO-20182308932,B&E W'INTENT,2018-12-16,2018,December,Sunday,16,350,22,2018-12-17,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19284,18670,GO-20199014028,THEFT UNDER,2019-02-06,2019,February,Wednesday,6,37,3,2019-05-06,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19285,18677,GO-20199024016,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,10,2019-07-27,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19286,18678,GO-20199024364,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,23,2019-07-30,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19287,18692,GO-20199031761,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,13,2019-09-27,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19288,21600,GO-20143039567,THEFT UNDER,2014-10-04,2014,October,Saturday,4,277,8,2014-10-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19289,21607,GO-20159002252,THEFT UNDER,2015-04-25,2015,April,Saturday,25,115,15,2015-04-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19290,21619,GO-20159004639,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,3,2015-07-16,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19291,21620,GO-20159004783,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,1,2015-07-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19292,21623,GO-20159007946,THEFT UNDER,2015-09-29,2015,September,Tuesday,29,272,18,2015-09-30,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19293,21634,GO-2016295969,THEFT UNDER,2016-02-04,2016,February,Thursday,4,35,19,2016-02-19,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19294,21635,GO-2016295969,THEFT UNDER,2016-02-04,2016,February,Thursday,4,35,19,2016-02-19,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19295,21637,GO-20169002579,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,14,2016-03-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19296,21653,GO-20161594168,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,21,2016-09-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19297,21654,GO-20161594168,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,21,2016-09-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19298,21656,GO-20169011797,THEFT UNDER - BICYCLE,2016-10-09,2016,October,Sunday,9,283,16,2016-10-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19299,21661,GO-2017598374,THEFT UNDER,2017-04-04,2017,April,Tuesday,4,94,22,2017-04-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19300,21662,GO-20179004303,THEFT UNDER,2017-04-05,2017,April,Wednesday,5,95,19,2017-04-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19301,21666,GO-2017779655,THEFT UNDER - BICYCLE,2017-05-02,2017,May,Tuesday,2,122,7,2017-05-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19302,21683,GO-20179014313,THEFT UNDER,2017-09-09,2017,September,Saturday,9,252,3,2017-09-09,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19303,21691,GO-20179020751,THEFT UNDER,2017-10-01,2017,October,Sunday,1,274,11,2017-11-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19304,21697,GO-20189015855,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,1,2018-05-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19305,21710,GO-20189024914,THEFT UNDER,2017-07-28,2017,July,Friday,28,209,8,2018-08-02,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19306,21715,GO-20181744091,FTC PROBATION ORDER,2018-09-20,2018,September,Thursday,20,263,5,2018-09-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19307,21716,GO-20181744091,FTC PROBATION ORDER,2018-09-20,2018,September,Thursday,20,263,5,2018-09-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19308,21717,GO-20189032036,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,9,2018-09-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19309,21740,GO-20199020874,FTC PROBATION ORDER,2019-07-03,2019,July,Wednesday,3,184,11,2019-07-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19310,21743,GO-20199021777,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,22,2019-07-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19311,21746,GO-20191396546,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,20,2019-07-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19312,21747,GO-20199024634,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,15,2019-08-01,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19313,21766,GO-20192262567,THEFT UNDER,2019-11-22,2019,November,Friday,22,326,14,2019-11-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19314,25009,GO-20159001314,THEFT UNDER,2015-03-15,2015,March,Sunday,15,74,12,2015-03-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19315,21767,GO-20199038835,THEFT UNDER,2019-10-17,2019,October,Thursday,17,290,9,2019-11-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19316,21787,GO-20209015655,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,17,2020-06-18,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19317,24401,GO-20209021339,THEFT UNDER,2020-08-25,2020,August,Tuesday,25,238,9,2020-08-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19318,24989,GO-20142212924,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,17,2014-06-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19319,24990,GO-20142212924,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,17,2014-06-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19320,24997,GO-20149005522,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,18,2014-07-31,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19321,24999,GO-20149005928,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,12,2014-08-14,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19322,25001,GO-20142771467,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,15,2014-08-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19323,25039,GO-20169001444,THEFT UNDER,2016-02-04,2016,February,Thursday,4,35,9,2016-02-16,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19324,25046,GO-2016700530,THEFT UNDER,2016-04-24,2016,April,Sunday,24,115,17,2016-04-24,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19325,25052,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,20,2016-08-06,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19326,25053,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,20,2016-08-06,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19327,25060,GO-20169011148,THEFT UNDER,2016-09-24,2016,September,Saturday,24,268,18,2016-09-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19328,25064,GO-20169012489,THEFT UNDER - BICYCLE,2016-10-23,2016,October,Sunday,23,297,21,2016-10-24,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19329,25072,GO-20179003706,THEFT UNDER - BICYCLE,2017-03-21,2017,March,Tuesday,21,80,8,2017-03-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19330,4721,GO-20199021616,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,18,2019-07-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19331,25077,GO-2017707049,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,19,2017-04-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19332,25079,GO-2017785183,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,20,2017-05-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19333,25098,GO-20179015733,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,2,2017-09-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19334,25106,GO-20179018312,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,8,2017-10-27,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19335,25116,GO-20189021602,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,23,2018-07-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19336,25132,GO-20199000355,THEFT UNDER - BICYCLE,2019-01-03,2019,January,Thursday,3,3,18,2019-01-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19337,25161,GO-20191998646,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,16,2019-10-16,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19338,25170,GO-20192282096,B&E,2019-11-26,2019,November,Tuesday,26,330,12,2019-11-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19339,25179,GO-20209015372,THEFT UNDER,2020-06-14,2020,June,Sunday,14,166,21,2020-06-14,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19340,24,GO-20162151593,THEFT OVER,2016-12-03,2016,December,Saturday,3,338,21,2016-12-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19341,25,GO-20162151593,THEFT OVER,2016-12-03,2016,December,Saturday,3,338,21,2016-12-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19342,101,GO-2017319967,B&E,2017-02-18,2017,February,Saturday,18,49,5,2017-02-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19343,25041,GO-20169002690,THEFT UNDER,2016-03-21,2016,March,Monday,21,81,17,2016-03-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19344,471,GO-20179006852,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,12,2017-05-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19345,4241,GO-2019819853,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,17,2019-05-07,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19346,8527,GO-20149005373,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,22,2014-07-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19347,25044,GO-2016687838,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,11,2016-04-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19348,535,GO-20179007492,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,20,2017-06-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19349,4244,GO-2019819853,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,17,2019-05-07,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19350,3269,GO-20189027180,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,5,2018-08-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19351,25054,GO-20161473407,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,19,2016-08-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19352,3280,GO-20189027333,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,11,2018-08-21,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19353,8555,GO-20142607570,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,16,2014-07-31,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19354,25055,GO-20169009485,THEFT UNDER,2016-07-30,2016,July,Saturday,30,212,16,2016-08-25,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19355,3302,GO-20189027705,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,0,2018-08-24,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19356,557,GO-20171016006,THEFT UNDER - BICYCLE,2017-05-25,2017,May,Thursday,25,145,7,2017-06-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19357,4291,GO-20199015383,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,14,2019-05-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19358,8594,GO-20142673804,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,20,2014-08-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19359,25078,GO-20179005313,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,18,2017-04-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19360,3307,GO-20181560758,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,18,2018-08-24,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19361,561,GO-20179007747,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,20,2017-06-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19362,4702,GO-20199021409,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,18,2019-07-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19363,4906,GO-20191427313,B&E W'INTENT,2019-07-22,2019,July,Monday,22,203,22,2019-07-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19364,4971,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,21,2019-08-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19365,4972,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,21,2019-08-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19366,4974,GO-20199025024,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,20,2019-08-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19367,4982,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,21,2019-08-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19368,4983,GO-20191469569,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,21,2019-08-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19369,5044,GO-20199025896,THEFT UNDER,2019-08-10,2019,August,Saturday,10,222,13,2019-08-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19370,5045,GO-20191531926,B&E,2019-08-10,2019,August,Saturday,10,222,11,2019-08-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19371,5171,GO-20199027762,THEFT UNDER,2019-08-25,2019,August,Sunday,25,237,6,2019-08-26,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19372,5180,GO-20191628578,THEFT UNDER - BICYCLE,2019-08-25,2019,August,Sunday,25,237,6,2019-08-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19373,5201,GO-20199028365,THEFT UNDER,2019-08-30,2019,August,Friday,30,242,17,2019-08-31,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19374,5252,GO-20199028970,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,3,2019-09-06,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19375,5287,GO-20191736515,B&E,2019-08-25,2019,August,Sunday,25,237,15,2019-09-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19376,5303,GO-20199029679,THEFT UNDER,2019-09-11,2019,September,Wednesday,11,254,16,2019-09-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19377,5389,GO-20199031272,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,0,2019-09-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19378,5451,GO-20199032266,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,13,2019-10-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19379,5452,GO-20199032266,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,13,2019-10-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19380,5517,GO-20199033685,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,15,2019-10-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19381,5708,GO-20199038030,THEFT UNDER,2019-11-17,2019,November,Sunday,17,321,17,2019-11-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19382,5727,GO-20192288819,B&E,2019-10-29,2019,October,Tuesday,29,302,0,2019-11-27,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19383,5732,GO-20199039187,THEFT UNDER,2019-10-26,2019,October,Saturday,26,299,17,2019-11-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19384,5762,GO-20192408302,B&E,2019-12-13,2019,December,Friday,13,347,20,2019-12-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19385,5879,GO-20209004705,THEFT UNDER,2020-02-08,2020,February,Saturday,8,39,14,2020-02-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19386,5880,GO-20209004744,THEFT UNDER,2020-02-08,2020,February,Saturday,8,39,10,2020-02-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19387,5888,GO-2020287226,THEFT UNDER,2020-02-08,2020,February,Saturday,8,39,4,2020-02-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19388,6145,GO-20209012537,THEFT UNDER,2020-04-27,2020,April,Monday,27,118,2,2020-05-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19389,6509,GO-20201210716,B&E,2020-06-20,2020,June,Saturday,20,172,9,2020-07-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19390,6510,GO-20201210716,B&E,2020-06-20,2020,June,Saturday,20,172,9,2020-07-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19391,6528,GO-20201241179,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,0,2020-07-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19392,6529,GO-20201241179,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,0,2020-07-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19393,6762,GO-20209018410,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,9,2020-07-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19394,6811,GO-20209018950,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,21,2020-07-30,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19395,6858,GO-20201447054,THEFT UNDER - BICYCLE,2020-08-03,2020,August,Monday,3,216,8,2020-08-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19396,6885,GO-20209019057,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,16,2020-07-31,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19397,6991,GO-20209020566,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,20,2020-08-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19398,7053,GO-20209021065,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,14,2020-08-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19399,7092,GO-20209021493,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,22,2020-08-27,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19400,7093,GO-20209021493,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,22,2020-08-27,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19401,7233,GO-20209023020,THEFT UNDER,2020-09-10,2020,September,Thursday,10,254,2,2020-09-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19402,7289,GO-20209023782,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,0,2020-09-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19403,7310,GO-20201789535,THEFT OF EBIKE UNDER $5000,2020-09-13,2020,September,Sunday,13,257,0,2020-09-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19404,7411,GO-20209025391,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,17,2020-10-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19405,7474,GO-20201958922,THEFT UNDER - BICYCLE,2020-10-15,2020,October,Thursday,15,289,15,2020-10-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19406,7513,GO-20201990200,THEFT UNDER - BICYCLE,2020-10-11,2020,October,Sunday,11,285,10,2020-10-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19407,7547,GO-20209027709,THEFT UNDER,2020-10-22,2020,October,Thursday,22,296,17,2020-10-26,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19408,7566,GO-20202052074,THEFT UNDER - BICYCLE,2020-05-01,2020,May,Friday,1,122,12,2020-10-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19409,7583,GO-20202058919,THEFT FROM MOTOR VEHICLE OVER,2020-10-13,2020,October,Tuesday,13,287,2,2020-11-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19410,9461,GO-2015672980,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,22,2015-04-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19411,7670,GO-20202252488,THEFT UNDER - BICYCLE,2020-11-27,2020,November,Friday,27,332,22,2020-11-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19412,7671,GO-20202252488,THEFT UNDER - BICYCLE,2020-11-27,2020,November,Friday,27,332,22,2020-11-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19413,7697,GO-20209031647,THEFT UNDER,2020-12-08,2020,December,Tuesday,8,343,23,2020-12-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19414,7901,GO-20142053081,B&E,2014-05-09,2014,May,Friday,9,129,18,2014-05-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19415,7927,GO-20142076977,THEFT UNDER,2014-05-13,2014,May,Tuesday,13,133,15,2014-05-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19416,8024,GO-20149003748,THEFT UNDER,2014-05-31,2014,May,Saturday,31,151,19,2014-06-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19417,8232,GO-20142349938,B&E,2014-06-17,2014,June,Tuesday,17,168,1,2014-06-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19418,8233,GO-20142349938,B&E,2014-06-17,2014,June,Tuesday,17,168,1,2014-06-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19419,8452,GO-20149005117,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,4,2014-07-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19420,8541,GO-20149005430,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,8,2014-07-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19421,8878,GO-20149006857,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,18,2014-09-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19422,9056,GO-20149007577,THEFT UNDER,2014-10-12,2014,October,Sunday,12,285,13,2014-10-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19423,9130,GO-20143197628,THEFT UNDER,2014-10-26,2014,October,Sunday,26,299,7,2014-10-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19424,9172,GO-20143284135,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,17,2014-11-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19425,9433,GO-20159002052,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,1,2015-04-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19426,9446,GO-2015655103,THEFT UNDER,2015-04-20,2015,April,Monday,20,110,20,2015-04-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19427,9502,GO-20159002372,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,13,2015-05-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19428,9583,GO-2015803110,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,17,2015-05-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19429,9617,GO-20159002942,THEFT UNDER,2014-09-07,2014,September,Sunday,7,250,23,2015-05-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19430,10001,GO-20151182697,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,22,2015-07-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19431,10033,GO-20159004624,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,12,2015-07-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19432,10089,GO-20159004922,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,18,2015-07-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19433,10130,GO-20159005103,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,21,2015-07-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19434,10223,GO-20159005551,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,16,2015-08-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19435,10224,GO-20159005551,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,16,2015-08-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19436,10225,GO-20159005551,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,16,2015-08-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19437,10228,GO-20159005563,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,3,2015-08-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19438,10242,GO-20159005649,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,23,2015-08-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19439,10373,GO-20159006551,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,1,2015-08-31,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19440,10425,GO-20151562105,POSSESSION PROPERTY OBC UNDER,2015-09-09,2015,September,Wednesday,9,252,20,2015-09-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19441,10492,GO-20159007376,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,23,2015-09-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19442,10577,GO-20159007991,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,18,2015-10-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19443,10582,GO-20159008045,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,1,2015-10-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19444,10583,GO-20159008045,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,1,2015-10-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19445,10915,GO-201649151,B&E,2015-01-09,2015,January,Friday,9,9,6,2016-01-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19446,11052,GO-2016453861,THEFT UNDER,2016-03-15,2016,March,Tuesday,15,75,16,2016-03-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19447,11118,GO-2016597081,PROPERTY - FOUND,2016-04-08,2016,April,Friday,8,99,18,2016-04-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19448,11159,GO-20142119431,PROPERTY - FOUND,2014-06-01,2014,June,Sunday,1,152,20,2014-08-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19449,11200,GO-2016706880,THEFT UNDER - BICYCLE,2016-04-21,2016,April,Thursday,21,112,9,2016-04-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19450,11208,GO-20151625636,PROPERTY - FOUND,2015-09-20,2015,September,Sunday,20,263,8,2015-09-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19451,11416,GO-20169005169,THEFT UNDER,2016-05-30,2016,May,Monday,30,151,17,2016-05-30,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19452,11464,GO-2016995420,POSSESSION PROPERTY OBC UNDER,2016-06-08,2016,June,Wednesday,8,160,11,2016-06-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19453,11511,GO-20169005678,THEFT UNDER,2016-06-11,2016,June,Saturday,11,163,12,2016-06-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19454,11597,GO-20161023981,PROPERTY - FOUND,2016-06-12,2016,June,Sunday,12,164,19,2016-06-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19455,11812,GO-20169007239,THEFT UNDER,2016-07-15,2016,July,Friday,15,197,1,2016-07-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19456,11814,GO-20169007257,THEFT UNDER,2016-07-15,2016,July,Friday,15,197,0,2016-07-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19457,563,GO-20179007761,THEFT UNDER,2017-06-08,2017,June,Thursday,8,159,20,2017-06-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19458,3340,GO-20181590250,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,22,2018-08-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19459,8669,GO-20142737441,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,11,2014-08-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19460,21632,GO-2016125303,THEFT UNDER,2016-01-20,2016,January,Wednesday,20,20,12,2016-01-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19461,25081,GO-2017814836,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,0,2017-05-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19462,11849,GO-20169007441,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,23,2016-07-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19463,8776,GO-20142820045,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,14,2014-09-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19464,568,GO-20179007799,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,21,2017-06-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19465,21639,GO-20169003018,THEFT UNDER,2016-04-02,2016,April,Saturday,2,93,12,2016-04-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19466,25082,GO-2017814836,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,0,2017-05-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19467,25084,GO-20179006307,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,20,2017-05-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19468,25086,GO-20179009291,THEFT UNDER - BICYCLE,2017-06-30,2017,June,Friday,30,181,20,2017-07-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19469,25094,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,22,2017-09-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19470,25095,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,22,2017-09-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19471,25096,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,22,2017-09-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19472,25097,GO-20179015597,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,22,2017-09-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19473,25105,GO-20179017691,THEFT UNDER,2017-10-15,2017,October,Sunday,15,288,2,2017-10-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19474,25109,GO-2018621766,THEFT UNDER,2018-04-05,2018,April,Thursday,5,95,8,2018-04-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19475,25112,GO-20189013512,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,9,2018-05-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19476,25113,GO-20189015915,THEFT UNDER,2018-05-14,2018,May,Monday,14,134,23,2018-05-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19477,25115,GO-20189021565,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,18,2018-07-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19478,25126,GO-20189028862,THEFT UNDER - BICYCLE,2018-09-02,2018,September,Sunday,2,245,11,2018-09-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19479,25129,GO-20189035037,THEFT UNDER,2018-10-19,2018,October,Friday,19,292,18,2018-10-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19480,25130,GO-20189035337,THEFT UNDER - BICYCLE,2018-10-20,2018,October,Saturday,20,293,11,2018-10-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19481,25131,GO-20189043055,THEFT UNDER - BICYCLE,2018-12-14,2018,December,Friday,14,348,20,2018-12-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19482,3971,GO-20182372463,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,12,2018-12-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19483,25133,GO-20199001123,THEFT UNDER - BICYCLE,2019-01-08,2019,January,Tuesday,8,8,20,2019-01-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19484,25144,GO-20191274790,THEFT UNDER - BICYCLE,2019-07-08,2019,July,Monday,8,189,8,2019-07-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19485,25145,GO-20191274790,THEFT UNDER - BICYCLE,2019-07-08,2019,July,Monday,8,189,8,2019-07-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19486,25148,GO-20199025562,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,0,2019-08-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19487,25151,GO-20199026103,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,17,2019-08-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19488,25152,GO-20199026103,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,17,2019-08-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19489,25153,GO-20199026103,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,17,2019-08-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19490,25158,GO-20199032124,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,14,2019-09-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19491,25159,GO-20191893235,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,12,2019-10-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19492,25172,GO-2020747760,THEFT UNDER,2020-04-16,2020,April,Thursday,16,107,12,2020-04-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19493,25173,GO-2020747760,THEFT UNDER,2020-04-16,2020,April,Thursday,16,107,12,2020-04-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19494,25381,GO-20209019018,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,14,2020-07-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19495,268,GO-20179005141,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,17,2017-04-23,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19496,404,GO-2017868554,THEFT UNDER - BICYCLE,2017-05-16,2017,May,Tuesday,16,136,18,2017-05-17,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19497,405,GO-2017868554,THEFT UNDER - BICYCLE,2017-05-16,2017,May,Tuesday,16,136,18,2017-05-17,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19498,14886,GO-20209018410,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,9,2020-07-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19499,438,GO-2017901805,THEFT UNDER,2017-05-20,2017,May,Saturday,20,140,12,2017-05-22,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19500,487,GO-20179007101,THEFT UNDER,2017-05-27,2017,May,Saturday,27,147,9,2017-05-28,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19501,1303,GO-20179013961,THEFT UNDER,2017-08-30,2017,August,Wednesday,30,242,17,2017-09-04,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19502,1304,GO-20179013961,THEFT UNDER,2017-08-30,2017,August,Wednesday,30,242,17,2017-09-04,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19503,1344,GO-20171634821,THEFT UNDER - BICYCLE,2017-09-09,2017,September,Saturday,9,252,12,2017-09-09,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19504,1390,GO-20179014640,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,14,2017-09-13,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19505,1412,GO-20179014816,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,8,2017-09-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19506,1413,GO-20179014816,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,8,2017-09-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19507,1509,GO-20179015633,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,8,2017-09-24,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19508,1793,GO-20171992584,THEFT UNDER - BICYCLE,2017-10-31,2017,October,Tuesday,31,304,9,2017-11-03,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19509,2316,GO-20189015015,THEFT UNDER - BICYCLE,2018-05-15,2018,May,Tuesday,15,135,8,2018-05-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19510,3574,GO-20181807430,THEFT UNDER - BICYCLE,2018-09-28,2018,September,Friday,28,271,22,2018-09-30,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19511,3708,GO-20189034352,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,10,2018-10-16,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19512,4101,GO-2019508333,THEFT FROM MOTOR VEHICLE UNDER,2019-03-18,2019,March,Monday,18,77,17,2019-03-20,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19513,4208,GO-2019755015,THEFT UNDER,2019-04-26,2019,April,Friday,26,116,19,2019-04-26,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19514,5050,GO-20191529369,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,18,2019-08-12,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19515,5238,GO-20191691740,PROPERTY - FOUND,2019-09-04,2019,September,Wednesday,4,247,15,2019-09-05,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19516,5456,GO-20199032379,THEFT UNDER,2019-10-02,2019,October,Wednesday,2,275,13,2019-10-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19517,6089,GO-2020765669,B&E,2020-04-10,2020,April,Friday,10,101,22,2020-04-22,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19518,6852,GO-20209019247,THEFT UNDER,2020-08-02,2020,August,Sunday,2,215,21,2020-08-03,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19519,6862,GO-20201448024,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,15,2020-08-03,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19520,6966,GO-20201517225,THEFT UNDER - BICYCLE,2020-08-10,2020,August,Monday,10,223,15,2020-08-13,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19521,7112,GO-20209021639,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,0,2020-08-28,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19522,7925,GO-20142084804,B&E,2014-05-15,2014,May,Thursday,15,135,14,2014-05-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19523,8028,GO-20142210215,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,23,2014-06-03,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19524,8029,GO-20142210215,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,23,2014-06-03,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19525,8030,GO-20142210215,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,23,2014-06-03,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19526,8522,GO-20149005359,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,19,2014-07-26,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19527,8952,GO-20142949283,B&E,2014-09-20,2014,September,Saturday,20,263,13,2014-09-20,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19528,4292,GO-2019897742,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,22,2019-05-17,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19529,9104,GO-20149007780,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,12,2014-10-23,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19530,9357,GO-20159001631,THEFT UNDER,2015-03-26,2015,March,Thursday,26,85,17,2015-03-30,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19531,9370,GO-20159001715,THEFT UNDER,2015-04-02,2015,April,Thursday,2,92,3,2015-04-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19532,9405,GO-20159001929,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,21,2015-04-14,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19533,9722,GO-2015930778,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,23,2015-06-03,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19534,9944,GO-20159004177,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,19,2015-07-05,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19535,10359,GO-20159006471,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,17,2015-08-28,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19536,11460,GO-2016829777,B&E,2016-05-13,2016,May,Friday,13,134,23,2016-05-14,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19537,11461,GO-2016829777,B&E,2016-05-13,2016,May,Friday,13,134,23,2016-05-14,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19538,12448,GO-20161706865,THEFT UNDER - BICYCLE,2016-09-22,2016,September,Thursday,22,266,16,2016-09-25,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19539,12472,GO-20169011193,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,20,2016-09-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19540,12711,GO-20169012885,THEFT UNDER,2016-11-01,2016,November,Tuesday,1,306,22,2016-11-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19541,15052,GO-20142192816,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,18,2014-05-31,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19542,15053,GO-20142197214,THEFT UNDER,2014-05-29,2014,May,Thursday,29,149,22,2014-06-01,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19543,15066,GO-20149005372,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,21,2014-07-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19544,15076,GO-20143187741,B&E W'INTENT,2014-10-26,2014,October,Sunday,26,299,20,2014-10-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19545,15094,GO-20151240296,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,1,2015-07-21,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19546,15095,GO-20151240296,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,1,2015-07-21,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19547,15096,GO-20151240296,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,1,2015-07-21,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19548,15103,GO-20151619854,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,20,2015-09-19,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19549,15130,GO-20169008333,THEFT UNDER,2016-08-03,2016,August,Wednesday,3,216,19,2016-08-07,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19550,15141,GO-20161641995,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,13,2016-09-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19551,15147,GO-20161790689,THEFT UNDER - BICYCLE,2016-10-07,2016,October,Friday,7,281,18,2016-10-08,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19552,15157,GO-20169014364,THEFT UNDER,2016-12-07,2016,December,Wednesday,7,342,15,2016-12-07,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19553,15158,GO-20179001333,THEFT UNDER,2016-12-13,2016,December,Tuesday,13,348,21,2017-01-30,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19554,15180,GO-20179009765,THEFT UNDER - BICYCLE,2017-07-09,2017,July,Sunday,9,190,0,2017-07-09,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19555,15183,GO-20171321592,THEFT UNDER,2017-07-22,2017,July,Saturday,22,203,2,2017-07-23,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19556,15184,GO-20171321592,THEFT UNDER,2017-07-22,2017,July,Saturday,22,203,2,2017-07-23,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19557,15185,GO-20171321592,THEFT UNDER,2017-07-22,2017,July,Saturday,22,203,2,2017-07-23,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19558,15216,GO-20189012305,THEFT UNDER - BICYCLE,2018-04-09,2018,April,Monday,9,99,17,2018-04-20,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19559,15243,GO-20189034352,THEFT UNDER - BICYCLE,2018-10-16,2018,October,Tuesday,16,289,10,2018-10-16,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -19560,600,GO-20171050351,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,13,2017-06-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19561,8791,GO-20142833171,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,14,2014-09-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19562,12606,GO-20161820540,THEFT UNDER - BICYCLE,2016-10-12,2016,October,Wednesday,12,286,11,2016-10-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19563,21650,GO-20161268043,SUSPICIOUS INCIDENT,2016-07-19,2016,July,Tuesday,19,201,16,2016-07-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19564,12663,GO-20161878862,THEFT UNDER - BICYCLE,2016-10-21,2016,October,Friday,21,295,22,2016-10-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19565,8911,GO-20142922595,THEFT UNDER,2014-09-16,2014,September,Tuesday,16,259,1,2014-09-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19566,3972,GO-20182372463,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,12,2018-12-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19567,767,GO-20179009367,THEFT UNDER,2017-07-03,2017,July,Monday,3,184,22,2017-07-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19568,8898,GO-20149006931,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,17,2014-09-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19569,14885,GO-20209018410,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,9,2020-07-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19570,3973,GO-20182372463,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,12,2018-12-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19571,775,GO-20179009410,THEFT UNDER,2017-06-25,2017,June,Sunday,25,176,16,2017-07-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19572,21679,GO-20179010313,THEFT UNDER - BICYCLE,2017-07-12,2017,July,Wednesday,12,193,1,2017-07-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19573,799,GO-20179009675,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,20,2017-07-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19574,4037,GO-20199004640,THEFT UNDER - BICYCLE,2018-11-01,2018,November,Thursday,1,305,14,2019-02-06,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19575,21682,GO-20171607757,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,16,2017-09-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19576,840,GO-2017714863,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,6,2017-07-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19577,9048,GO-20143095925,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,17,2014-10-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19578,14888,GO-20209020284,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,12,2020-08-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19579,4141,GO-20199011093,THEFT UNDER,2019-04-08,2019,April,Monday,8,98,14,2019-04-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19580,4228,GO-20199013823,THEFT UNDER,2019-04-28,2019,April,Sunday,28,118,20,2019-05-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19581,4229,GO-20199013820,THEFT UNDER,2019-04-28,2019,April,Sunday,28,118,20,2019-05-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19582,4293,GO-2019897742,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,22,2019-05-17,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19583,4331,GO-20199016089,THEFT UNDER,2019-05-13,2019,May,Monday,13,133,18,2019-05-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19584,4463,GO-20199018267,THEFT UNDER,2019-05-28,2019,May,Tuesday,28,148,19,2019-06-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19585,4696,GO-20199021372,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,12,2019-07-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19586,4809,GO-20191361610,B&E,2019-07-19,2019,July,Friday,19,200,22,2019-07-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19587,5038,GO-20191529506,B&E W'INTENT,2019-08-04,2019,August,Sunday,4,216,12,2019-08-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19588,5039,GO-20191529506,B&E W'INTENT,2019-08-04,2019,August,Sunday,4,216,12,2019-08-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19589,5053,GO-20199026028,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,18,2019-08-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19590,5139,GO-20199027338,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,9,2019-08-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19591,5229,GO-20191693491,THEFT UNDER,2019-04-30,2019,April,Tuesday,30,120,12,2019-09-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19592,5466,GO-20191913185,B&E,2019-10-01,2019,October,Tuesday,1,274,22,2019-10-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19593,6164,GO-20209012898,THEFT UNDER,2020-05-08,2020,May,Friday,8,129,15,2020-05-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19594,6336,GO-20209014889,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,20,2020-06-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19595,6367,GO-20209015223,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,23,2020-06-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19596,6385,GO-20209015330,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,21,2020-06-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19597,6568,GO-20209017205,THEFT UNDER,2020-07-08,2020,July,Wednesday,8,190,9,2020-07-09,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19598,6700,GO-20209018220,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,3,2020-07-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19599,6749,GO-20209018619,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,10,2020-07-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19600,6750,GO-20209018619,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,10,2020-07-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19601,6869,GO-20209019411,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,13,2020-08-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19602,6998,GO-20201558669,THEFT UNDER - BICYCLE,2020-08-15,2020,August,Saturday,15,228,17,2020-08-19,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19603,7002,GO-20201559499,B&E,2020-08-01,2020,August,Saturday,1,214,18,2020-08-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19604,7251,GO-20209023306,THEFT UNDER,2020-09-14,2020,September,Monday,14,258,14,2020-09-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19605,7334,GO-20209024265,THEFT UNDER,2020-09-14,2020,September,Monday,14,258,14,2020-09-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19606,7443,GO-20209026104,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,19,2020-10-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19607,7681,GO-20202266329,THEFT UNDER - BICYCLE,2020-11-29,2020,November,Sunday,29,334,17,2020-12-02,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19608,7686,GO-20202289146,PROPERTY - FOUND,2020-12-04,2020,December,Friday,4,339,10,2020-12-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19609,8037,GO-20149003779,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,3,2014-06-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19610,8096,GO-20142262335,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,15,2014-06-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19611,8101,GO-20142267755,THEFT UNDER,2014-06-02,2014,June,Monday,2,153,9,2014-06-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19612,8418,GO-20142465687,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,8,2014-07-09,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19613,8546,GO-20149005459,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,14,2014-07-29,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19614,8681,GO-201427333503,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,23,2014-08-18,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19615,8740,GO-20149006320,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,9,2014-08-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19616,9096,GO-20149007750,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,10,2014-10-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19617,9548,GO-2015761030,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,12,2015-05-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19618,9767,GO-2015967453,THEFT FROM MOTOR VEHICLE OVER,2015-06-07,2015,June,Sunday,7,158,17,2015-06-09,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19619,9915,GO-20151072578,THEFT UNDER,2015-06-25,2015,June,Thursday,25,176,15,2015-06-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19620,10024,GO-20159004601,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,16,2015-07-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19621,10363,GO-20151512286,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,3,2015-09-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19622,10481,GO-20151610585,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,17,2015-09-18,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19623,10750,GO-20151930704,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,23,2015-11-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19624,10751,GO-20151930704,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,23,2015-11-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19625,10916,GO-201650332,THEFT UNDER,2016-01-08,2016,January,Friday,8,8,21,2016-01-09,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19626,10918,GO-201651698,THEFT UNDER,2016-01-08,2016,January,Friday,8,8,22,2016-01-09,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19627,10925,GO-201674544,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,0,2016-01-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19628,10977,GO-2016232983,THEFT UNDER - BICYCLE,2016-02-05,2016,February,Friday,5,36,19,2016-02-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19629,11045,GO-20169002338,THEFT UNDER - BICYCLE,2016-03-13,2016,March,Sunday,13,73,23,2016-03-14,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19630,11138,GO-20169003440,THEFT UNDER,2016-04-15,2016,April,Friday,15,106,17,2016-04-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19631,11201,GO-20169003819,THEFT UNDER - BICYCLE,2016-04-24,2016,April,Sunday,24,115,20,2016-04-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19632,11266,GO-2016782643,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,21,2016-05-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19633,11267,GO-2016782643,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,21,2016-05-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19634,11281,GO-2016784356,THEFT UNDER,2016-05-06,2016,May,Friday,6,127,23,2016-05-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19635,11282,GO-2016784356,THEFT UNDER,2016-05-06,2016,May,Friday,6,127,23,2016-05-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19636,11337,GO-2016868547,PROPERTY - FOUND,2016-05-12,2016,May,Thursday,12,133,6,2016-05-20,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19637,11785,GO-20169007113,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,9,2016-07-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19638,11863,GO-20169007541,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,7,2016-07-21,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19639,11877,GO-20161292042,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,16,2016-07-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19640,12032,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,20,2016-08-06,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19641,12033,GO-20161382951,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,20,2016-08-06,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19642,12330,GO-20169010382,FTC PROBATION ORDER,2016-09-12,2016,September,Monday,12,256,15,2016-09-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19643,12460,GO-20169011136,THEFT UNDER - BICYCLE,2016-09-25,2016,September,Sunday,25,269,17,2016-09-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19644,12480,GO-2016807846,B&E,2016-05-11,2016,May,Wednesday,11,132,7,2016-05-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19645,12481,GO-2016807846,B&E,2016-05-11,2016,May,Wednesday,11,132,7,2016-05-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19646,12482,GO-2016807846,B&E,2016-05-11,2016,May,Wednesday,11,132,7,2016-05-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19647,12598,GO-20161810791,THEFT UNDER - BICYCLE,2016-10-11,2016,October,Tuesday,11,285,19,2016-10-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19648,12637,GO-20161855450,B&E,2016-10-14,2016,October,Friday,14,288,15,2016-10-18,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19649,12702,GO-20169012804,THEFT UNDER,2016-09-30,2016,September,Friday,30,274,18,2016-10-31,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19650,12706,GO-20169012842,THEFT UNDER,2016-10-02,2016,October,Sunday,2,276,15,2016-11-01,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19651,12707,GO-20169012842,THEFT UNDER,2016-10-02,2016,October,Sunday,2,276,15,2016-11-01,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19652,12720,GO-20169012933,THEFT UNDER - BICYCLE,2016-10-31,2016,October,Monday,31,305,18,2016-11-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19653,12728,GO-20169013037,THEFT UNDER,2016-10-23,2016,October,Sunday,23,297,12,2016-11-06,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19654,12745,GO-20169013223,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,16,2016-11-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19655,12766,GO-20169013450,THEFT UNDER,2016-11-07,2016,November,Monday,7,312,0,2016-11-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19656,12815,GO-20162082557,B&E,2016-11-23,2016,November,Wednesday,23,328,12,2016-11-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19657,15055,GO-20142435280,B&E,2014-07-04,2014,July,Friday,4,185,21,2014-07-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19658,15056,GO-20142435280,B&E,2014-07-04,2014,July,Friday,4,185,21,2014-07-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19659,15068,GO-20149006327,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,8,2014-08-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19660,15102,GO-20151596613,ROBBERY - SWARMING,2015-09-15,2015,September,Tuesday,15,258,17,2015-09-15,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19661,15114,GO-20169002583,THEFT UNDER,2015-12-15,2015,December,Tuesday,15,349,12,2016-03-21,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19662,15115,GO-2016807052,B&E,2016-05-11,2016,May,Wednesday,11,132,6,2016-05-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19663,15128,GO-20161375655,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,8,2016-08-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19664,15136,GO-20169009999,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,22,2016-09-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19665,15137,GO-20169009999,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,22,2016-09-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19666,15138,GO-20169009999,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,22,2016-09-05,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19667,21684,GO-20171643886,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,22,2017-09-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19668,841,GO-2017714863,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,6,2017-07-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19669,9109,GO-20143166942,THEFT UNDER,2014-10-18,2014,October,Saturday,18,291,17,2014-10-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19670,14890,GO-20209021937,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,1,2020-09-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19671,9175,GO-20149008072,THEFT UNDER,2014-10-21,2014,October,Tuesday,21,294,12,2014-11-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19672,21685,GO-20179015426,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,22,2017-09-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19673,868,GO-20179010267,THEFT UNDER,2017-07-01,2017,July,Saturday,1,182,12,2017-07-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19674,14891,GO-20209021937,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,1,2020-09-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19675,9177,GO-20149008056,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,23,2014-11-06,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19676,21686,GO-20171712619,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,8,2017-09-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19677,883,GO-20171280361,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,11,2017-07-17,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19678,15082,GO-2015748743,B&E,2015-05-05,2015,May,Tuesday,5,125,8,2015-05-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19679,15093,GO-20151233276,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,21,2015-07-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19680,15105,GO-20151750451,THEFT UNDER,2015-10-10,2015,October,Saturday,10,283,16,2015-10-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19681,15112,GO-2016329371,THEFT UNDER - BICYCLE,2016-02-20,2016,February,Saturday,20,51,9,2016-02-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19682,15113,GO-2016329371,THEFT UNDER - BICYCLE,2016-02-20,2016,February,Saturday,20,51,9,2016-02-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19683,15116,GO-2016816852,THEFT UNDER,2016-05-11,2016,May,Wednesday,11,132,20,2016-05-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19684,15125,GO-20161215666,THEFT UNDER,2016-07-09,2016,July,Saturday,9,191,18,2016-07-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19685,15149,GO-20161834162,THEFT UNDER - BICYCLE,2016-10-15,2016,October,Saturday,15,289,10,2016-10-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19686,15159,GO-20174867750,B&E,2017-03-20,2017,March,Monday,20,79,6,2017-03-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19687,15160,GO-2017549073,THEFT UNDER,2017-03-28,2017,March,Tuesday,28,87,17,2017-03-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19688,15161,GO-2017549073,THEFT UNDER,2017-03-28,2017,March,Tuesday,28,87,17,2017-03-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19689,15165,GO-2017639883,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,10,2017-04-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19690,15166,GO-2017639883,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,10,2017-04-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19691,15179,GO-20171103727,THEFT UNDER,2017-06-18,2017,June,Sunday,18,169,20,2017-06-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19692,15187,GO-20171433348,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,5,2017-08-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19693,15188,GO-20171433348,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,5,2017-08-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19694,15191,GO-20179012791,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,20,2017-08-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19695,15193,GO-20179015073,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,1,2017-09-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19696,15197,GO-20179017734,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,13,2017-10-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19697,15209,GO-20189008583,THEFT UNDER - BICYCLE,2018-02-24,2018,February,Saturday,24,55,18,2018-03-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19698,15212,GO-2018598091,FRAUD - IDENTITY/PERS W-INT,2018-03-30,2018,March,Friday,30,89,2,2018-04-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19699,15213,GO-2018598091,FRAUD - IDENTITY/PERS W-INT,2018-03-30,2018,March,Friday,30,89,2,2018-04-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19700,15227,GO-20189022745,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,2,2018-07-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19701,15228,GO-20189022745,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,2,2018-07-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19702,15233,GO-20189024959,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,22,2018-08-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19703,15235,GO-20189026471,THEFT UNDER,2018-08-15,2018,August,Wednesday,15,227,1,2018-08-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19704,15250,GO-20189041493,THEFT UNDER - BICYCLE,2018-12-10,2018,December,Monday,10,344,13,2018-12-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19705,15251,GO-20189043387,THEFT UNDER - BICYCLE,2018-12-18,2018,December,Tuesday,18,352,13,2018-12-27,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19706,15252,GO-20182353351,THEFT UNDER - BICYCLE,2018-12-22,2018,December,Saturday,22,356,0,2018-12-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19707,15253,GO-20182353351,THEFT UNDER - BICYCLE,2018-12-22,2018,December,Saturday,22,356,0,2018-12-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19708,15254,GO-20199001078,THEFT UNDER - BICYCLE,2018-12-24,2018,December,Monday,24,358,15,2019-01-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19709,15257,GO-20199006856,THEFT UNDER,2019-02-23,2019,February,Saturday,23,54,11,2019-02-28,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19710,15261,GO-20199013851,THEFT UNDER,2019-05-03,2019,May,Friday,3,123,17,2019-05-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19711,15263,GO-2019908791,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,22,2019-05-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19712,15264,GO-2019908791,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,22,2019-05-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19713,15266,GO-20199017190,THEFT UNDER,2019-06-02,2019,June,Sunday,2,153,1,2019-06-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19714,15282,GO-20199028212,THEFT UNDER,2019-07-30,2019,July,Tuesday,30,211,12,2019-08-30,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19715,15288,GO-20199034384,THEFT UNDER,2019-10-11,2019,October,Friday,11,284,8,2019-10-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19716,15294,GO-20209005792,THEFT UNDER,2020-02-02,2020,February,Sunday,2,33,8,2020-02-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19717,15299,GO-20209013003,THEFT FROM MOTOR VEHICLE UNDER,2020-05-11,2020,May,Monday,11,132,23,2020-05-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19718,18272,GO-20209017922,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,19,2020-07-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19719,18280,GO-20209019969,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,11,2020-08-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19720,18291,GO-20209022100,THEFT UNDER,2020-08-31,2020,August,Monday,31,244,0,2020-09-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19721,18312,GO-20209011753,THEFT UNDER,2020-04-14,2020,April,Tuesday,14,105,14,2020-04-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19722,18506,GO-20141909069,THEFT UNDER,2014-04-16,2014,April,Wednesday,16,106,14,2014-04-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19723,18509,GO-20142177419,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,18,2014-05-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19724,18517,GO-20142815095,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,17,2014-08-31,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19725,18541,GO-20151253803,B&E,2015-07-22,2015,July,Wednesday,22,203,20,2015-07-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19726,18542,GO-20151253803,B&E,2015-07-22,2015,July,Wednesday,22,203,20,2015-07-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19727,18544,GO-20159004935,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,1,2015-07-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19728,18552,GO-20151612096,B&E,2015-09-18,2015,September,Friday,18,261,1,2015-09-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19729,18559,GO-20159011042,THEFT UNDER,2015-12-17,2015,December,Thursday,17,351,8,2015-12-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19730,18560,GO-20159011307,THEFT UNDER,2015-12-25,2015,December,Friday,25,359,18,2015-12-27,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19731,18562,GO-2016413504,THEFT UNDER - BICYCLE,2016-02-29,2016,February,Monday,29,60,20,2016-03-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19732,18574,GO-20169010712,THEFT UNDER - BICYCLE,2016-09-14,2016,September,Wednesday,14,258,1,2016-09-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19733,18587,GO-20174867750,B&E,2017-03-20,2017,March,Monday,20,79,6,2017-03-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19734,18590,GO-2017624906,THEFT UNDER,2017-04-08,2017,April,Saturday,8,98,19,2017-04-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19735,18593,GO-2017714913,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,18,2017-04-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19736,18596,GO-2017804425,B&E,2017-05-06,2017,May,Saturday,6,126,16,2017-05-07,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19737,18597,GO-2017808326,THEFT UNDER - BICYCLE,2017-05-07,2017,May,Sunday,7,127,20,2017-05-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19738,18598,GO-2017808326,THEFT UNDER - BICYCLE,2017-05-07,2017,May,Sunday,7,127,20,2017-05-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19739,18603,GO-20171127322,THEFT UNDER,2017-04-29,2017,April,Saturday,29,119,0,2017-06-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19740,18604,GO-20171127322,THEFT UNDER,2017-04-29,2017,April,Saturday,29,119,0,2017-06-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19741,18614,GO-20179015346,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,23,2017-09-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19742,18618,GO-20171830990,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,10,2017-10-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19743,18619,GO-20171830990,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,10,2017-10-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19744,18620,GO-20171830990,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,10,2017-10-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19745,18629,GO-20189002426,THEFT UNDER - BICYCLE,2018-01-24,2018,January,Wednesday,24,24,0,2018-01-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19746,18633,GO-20189012738,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,23,2018-04-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19747,18636,GO-20189015703,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,18,2018-05-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19748,18644,GO-20181357377,B&E,2018-07-25,2018,July,Wednesday,25,206,2,2018-07-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19749,18646,GO-20189024941,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,22,2018-08-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19750,18647,GO-20189024941,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,22,2018-08-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19751,18650,GO-20189026788,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,13,2018-08-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19752,18659,GO-20181863695,THEFT UNDER,2018-10-08,2018,October,Monday,8,281,22,2018-10-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19753,18660,GO-20189033734,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,20,2018-10-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19754,18680,GO-20199026128,THEFT UNDER,2019-08-13,2019,August,Tuesday,13,225,20,2019-08-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19755,18682,GO-20191620780,B&E,2019-08-08,2019,August,Thursday,8,220,19,2019-08-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19756,18683,GO-20191679343,B&E,2019-08-30,2019,August,Friday,30,242,17,2019-09-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19757,18684,GO-20191679343,B&E,2019-08-30,2019,August,Friday,30,242,17,2019-09-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19758,18687,GO-20199030435,THEFT UNDER,2019-09-16,2019,September,Monday,16,259,19,2019-09-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19759,21081,GO-20199033685,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,15,2019-10-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19760,21587,GO-20142296048,B&E,2014-06-14,2014,June,Saturday,14,165,22,2014-06-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19761,21588,GO-20142296048,B&E,2014-06-14,2014,June,Saturday,14,165,22,2014-06-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19762,21590,GO-20142295445,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,10,2014-06-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19763,21591,GO-20149005091,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,0,2014-07-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19764,21601,GO-20143062836,FRAUD UNDER,2014-08-16,2014,August,Saturday,16,228,0,2014-10-07,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19765,21615,GO-20151110076,ROBBERY - OTHER,2015-07-01,2015,July,Wednesday,1,182,11,2015-07-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19766,21617,GO-20159004342,THEFT UNDER,2015-06-27,2015,June,Saturday,27,178,17,2015-07-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19767,21627,GO-20159009975,THEFT UNDER,2015-11-20,2015,November,Friday,20,324,1,2015-11-20,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19768,21628,GO-20152079023,PROPERTY - FOUND,2015-12-03,2015,December,Thursday,3,337,23,2015-12-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19769,21689,GO-20179017239,THEFT UNDER,2017-10-01,2017,October,Sunday,1,274,10,2017-10-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19770,1006,GO-20179011322,THEFT UNDER,2017-07-29,2017,July,Saturday,29,210,21,2017-07-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19771,21702,GO-20181102674,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,18,2018-06-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19772,9196,GO-20143340354,THEFT UNDER,2014-11-17,2014,November,Monday,17,321,17,2014-11-21,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19773,1568,GO-20179016269,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,9,2017-10-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19774,21705,GO-20189021080,THEFT UNDER - BICYCLE,2018-07-02,2018,July,Monday,2,183,21,2018-07-03,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19775,1722,GO-20179017949,THEFT UNDER,2017-10-20,2017,October,Friday,20,293,23,2017-10-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19776,9303,GO-20159000984,THEFT UNDER,2015-02-26,2015,February,Thursday,26,57,17,2015-02-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19777,21706,GO-20189023408,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,15,2018-07-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19778,1878,GO-20179020443,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,11,2017-11-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19779,9498,GO-2015716815,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,9,2015-04-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19780,21708,GO-20181385815,B&E,2018-07-29,2018,July,Sunday,29,210,0,2018-07-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19781,1913,GO-20173124584,THEFT UNDER - BICYCLE,2017-11-28,2017,November,Tuesday,28,332,18,2017-12-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19782,9547,GO-20159002528,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,11,2015-05-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19783,21709,GO-20181385815,B&E,2018-07-29,2018,July,Sunday,29,210,0,2018-07-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19784,1970,GO-20189000475,THEFT UNDER - BICYCLE,2018-01-05,2018,January,Friday,5,5,12,2018-01-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19785,9570,GO-20159002665,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,23,2015-05-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19786,21711,GO-20189025749,THEFT UNDER,2018-08-09,2018,August,Thursday,9,221,1,2018-08-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19787,21712,GO-20189026549,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,8,2018-08-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19788,21713,GO-20181490528,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,4,2018-08-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19789,21723,GO-20189043090,THEFT UNDER - BICYCLE,2018-12-22,2018,December,Saturday,22,356,0,2018-12-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19790,21742,GO-20191286833,B&E W'INTENT,2019-07-10,2019,July,Wednesday,10,191,1,2019-07-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19791,21745,GO-20199022525,B&E,2019-07-15,2019,July,Monday,15,196,15,2019-07-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19792,21749,GO-20199024917,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,8,2019-08-04,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19793,21752,GO-20199026019,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,23,2019-08-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19794,21757,GO-20199031021,THEFT UNDER,2019-09-21,2019,September,Saturday,21,264,21,2019-09-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19795,21759,GO-20199032266,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,13,2019-10-01,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19796,21764,GO-20199036961,THEFT UNDER,2019-11-07,2019,November,Thursday,7,311,0,2019-11-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19797,21765,GO-20199037781,THEFT UNDER,2019-11-15,2019,November,Friday,15,319,8,2019-11-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19798,21768,GO-20199041764,THEFT UNDER,2019-12-19,2019,December,Thursday,19,353,18,2019-12-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19799,21778,GO-20209013025,THEFT UNDER,2020-05-11,2020,May,Monday,11,132,19,2020-05-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19800,21970,GO-20201516204,THEFT OF EBIKE UNDER $5000,2020-08-10,2020,August,Monday,10,223,16,2020-08-13,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19801,21971,GO-20209020449,THEFT UNDER,2020-08-14,2020,August,Friday,14,227,14,2020-08-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19802,21972,GO-20201523568,THEFT UNDER - BICYCLE,2020-08-13,2020,August,Thursday,13,226,18,2020-08-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19803,21975,GO-20209022733,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,10,2020-09-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19804,21982,GO-20209024846,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,9,2020-09-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19805,24391,GO-20209019057,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,16,2020-07-31,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19806,24986,GO-20149003063,THEFT UNDER,2014-04-25,2014,April,Friday,25,115,11,2014-04-29,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19807,24993,GO-20149004908,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,0,2014-07-12,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19808,24994,GO-20142515471,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,4,2014-07-17,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19809,25000,GO-20149006280,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,0,2014-08-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19810,25004,GO-20142964812,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,7,2014-09-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19811,25007,GO-201559584,THEFT UNDER,2015-01-10,2015,January,Saturday,10,10,23,2015-01-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19812,25012,GO-2015858596,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,21,2015-05-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19813,25027,GO-20159004262,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,15,2015-07-07,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19814,25030,GO-20151591506,THEFT FROM MOTOR VEHICLE UNDER,2015-09-14,2015,September,Monday,14,257,22,2015-09-15,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19815,25031,GO-20159007364,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,0,2015-09-18,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19816,25032,GO-20151638991,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,5,2015-09-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19817,25033,GO-20159008526,THEFT UNDER,2015-10-12,2015,October,Monday,12,285,2,2015-10-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19818,25040,GO-20169002559,THEFT UNDER - BICYCLE,2016-03-19,2016,March,Saturday,19,79,21,2016-03-21,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19819,25047,GO-20169004567,THEFT UNDER,2016-05-15,2016,May,Sunday,15,136,11,2016-05-16,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19820,25048,GO-2016882499,THEFT UNDER - BICYCLE,2016-05-22,2016,May,Sunday,22,143,15,2016-05-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19821,25062,GO-20169012070,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,21,2016-10-14,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19822,25068,GO-20179002164,THEFT UNDER,2017-02-16,2017,February,Thursday,16,47,12,2017-02-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19823,25071,GO-2017486775,B&E W'INTENT,2017-03-17,2017,March,Friday,17,76,20,2017-03-19,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19824,25073,GO-20179004102,THEFT UNDER,2017-04-01,2017,April,Saturday,1,91,23,2017-04-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19825,25074,GO-20179004296,THEFT UNDER - BICYCLE,2017-04-04,2017,April,Tuesday,4,94,10,2017-04-05,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19826,25083,GO-20179005979,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,9,2017-05-09,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19827,25091,GO-20171322666,B&E,2017-07-23,2017,July,Sunday,23,204,14,2017-07-23,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19828,25099,GO-20179015743,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,16,2017-09-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19829,25100,GO-20179015790,THEFT UNDER - BICYCLE,2017-09-21,2017,September,Thursday,21,264,16,2017-09-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19830,25104,GO-20179016665,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,21,2017-10-07,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19831,25107,GO-20179020437,THEFT UNDER - SHOPLIFTING,2017-11-23,2017,November,Thursday,23,327,11,2017-11-24,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19832,25108,GO-20179021651,THEFT UNDER,2017-12-02,2017,December,Saturday,2,336,23,2017-12-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19833,25118,GO-20189023408,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,15,2018-07-22,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19834,25123,GO-20189025853,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,23,2018-08-10,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19835,25128,GO-20189033270,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,23,2018-10-08,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19836,25136,GO-2019823578,THEFT UNDER - BICYCLE,2019-05-06,2019,May,Monday,6,126,19,2019-05-06,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19837,25137,GO-2019823578,THEFT UNDER - BICYCLE,2019-05-06,2019,May,Monday,6,126,19,2019-05-06,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19838,25139,GO-20199016257,THEFT UNDER,2019-05-25,2019,May,Saturday,25,145,1,2019-05-25,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19839,25143,GO-20199021823,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,21,2019-07-11,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19840,25154,GO-20191679343,B&E,2019-08-30,2019,August,Friday,30,242,17,2019-09-02,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19841,25382,GO-20209019057,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,16,2020-07-31,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)}",Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -19842,128,GO-20179002716,B&E,2017-02-27,2017,February,Monday,27,58,21,2017-03-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19843,156,GO-2017448087,B&E,2017-02-27,2017,February,Monday,27,58,21,2017-03-12,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19844,186,GO-20179004081,THEFT UNDER - BICYCLE,2017-04-01,2017,April,Saturday,1,91,16,2017-04-01,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19845,263,GO-2017713934,THEFT UNDER,2017-03-22,2017,March,Wednesday,22,81,12,2017-04-23,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19846,340,GO-20179005878,THEFT UNDER,2017-05-06,2017,May,Saturday,6,126,10,2017-05-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19847,1353,GO-20179014388,THEFT UNDER,2017-09-09,2017,September,Saturday,9,252,19,2017-09-10,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19848,1385,GO-20179014621,THEFT UNDER,2017-08-15,2017,August,Tuesday,15,227,0,2017-09-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19849,1429,GO-20179014941,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,17,2017-09-16,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19850,1436,GO-20179014997,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,0,2017-09-17,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19851,1493,GO-20179015502,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,18,2017-09-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19852,1612,GO-20179016717,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,8,2017-10-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19853,1740,GO-20179018207,THEFT UNDER - BICYCLE,2017-10-24,2017,October,Tuesday,24,297,20,2017-10-25,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19854,1927,GO-20179021674,THEFT UNDER - BICYCLE,2017-11-30,2017,November,Thursday,30,334,9,2017-12-08,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19855,2057,GO-20189006405,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,20,2018-02-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19856,2058,GO-20189006405,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,20,2018-02-28,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19857,2191,GO-20199024844,THEFT UNDER,2019-07-23,2019,July,Tuesday,23,204,14,2019-08-04,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19858,2532,GO-20189018294,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,21,2018-06-11,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19859,2688,GO-20189020341,THEFT OF EBIKE UNDER $5000,2018-06-26,2018,June,Tuesday,26,177,13,2018-06-26,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19860,2833,GO-20189022269,THEFT UNDER,2018-07-12,2018,July,Thursday,12,193,23,2018-07-13,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19861,2885,GO-20189023011,THEFT UNDER,2018-07-11,2018,July,Wednesday,11,192,7,2018-07-19,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19862,2915,GO-20189023392,THEFT UNDER,2018-07-21,2018,July,Saturday,21,202,15,2018-07-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19863,2916,GO-20189023392,THEFT UNDER,2018-07-21,2018,July,Saturday,21,202,15,2018-07-22,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19864,2940,GO-20189023686,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,6,2018-07-24,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19865,3016,GO-20189024431,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,3,2018-07-29,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19866,3062,GO-20189024945,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,9,2018-08-02,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19867,3063,GO-20189024945,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,9,2018-08-02,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19868,3066,GO-20189025053,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,19,2018-08-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19869,3069,GO-20189025034,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,19,2018-08-03,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19870,3160,GO-20181446368,THEFT OF MOTOR VEHICLE,2018-08-06,2018,August,Monday,6,218,19,2018-08-07,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)}",High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -19871,2016,GO-2018228553,THEFT UNDER - BICYCLE,2018-02-01,2018,February,Thursday,1,32,11,2018-02-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19872,9611,GO-20159002911,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,12,2015-05-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19873,2018,GO-2018228553,THEFT UNDER - BICYCLE,2018-02-01,2018,February,Thursday,1,32,11,2018-02-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19874,9717,GO-20159003299,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,21,2015-06-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19875,2132,GO-2018594495,THEFT OF EBIKE UNDER $5000,2018-03-27,2018,March,Tuesday,27,86,18,2018-04-03,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19876,9811,GO-20159003658,THEFT UNDER,2015-06-12,2015,June,Friday,12,163,23,2015-06-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19877,2164,GO-20189011821,THEFT UNDER - BICYCLE,2018-04-16,2018,April,Monday,16,106,10,2018-04-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19878,9853,GO-20159003841,THEFT UNDER,2015-06-22,2015,June,Monday,22,173,14,2015-06-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19879,2170,GO-20189012002,THEFT UNDER - BICYCLE,2018-04-17,2018,April,Tuesday,17,107,20,2018-04-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19880,9918,GO-20151103275,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,18,2015-06-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19881,2288,GO-20189014483,THEFT UNDER - BICYCLE,2018-05-10,2018,May,Thursday,10,130,8,2018-05-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19882,10027,GO-20159004605,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,9,2015-07-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19883,2402,GO-20189016404,THEFT UNDER,2018-05-13,2018,May,Sunday,13,133,16,2018-05-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19884,2404,GO-20189016420,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,8,2018-05-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19885,2422,GO-20189016728,THEFT UNDER - BICYCLE,2018-05-29,2018,May,Tuesday,29,149,9,2018-05-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19886,2561,GO-20189018665,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,11,2018-06-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19887,2586,GO-20189018936,THEFT UNDER,2018-06-08,2018,June,Friday,8,159,10,2018-06-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19888,2612,GO-20189019240,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,13,2018-06-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19889,2753,GO-20189021175,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,13,2018-07-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19890,2754,GO-20189021175,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,13,2018-07-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19891,3190,GO-20189026248,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,23,2018-08-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19892,3240,GO-20189026722,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,1,2018-08-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19893,3368,GO-20189028632,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,20,2018-08-31,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19894,3399,GO-20189029239,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,16,2018-09-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19895,3481,GO-20181717414,B&E,2018-09-16,2018,September,Sunday,16,259,0,2018-09-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19896,3482,GO-20181717414,B&E,2018-09-16,2018,September,Sunday,16,259,0,2018-09-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19897,3656,GO-20189033530,THEFT UNDER - BICYCLE,2018-10-01,2018,October,Monday,1,274,1,2018-10-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19898,3728,GO-20189034663,THEFT UNDER - BICYCLE,2018-10-19,2018,October,Friday,19,292,1,2018-10-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19899,3784,GO-20182004418,THEFT FROM MOTOR VEHICLE UNDER,2018-10-21,2018,October,Sunday,21,294,14,2018-10-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19900,3785,GO-20182004418,THEFT FROM MOTOR VEHICLE UNDER,2018-10-21,2018,October,Sunday,21,294,14,2018-10-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19901,3863,GO-20189038461,THEFT UNDER - BICYCLE,2018-11-02,2018,November,Friday,2,306,8,2018-11-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19902,4006,GO-20199001643,THEFT UNDER,2019-01-11,2019,January,Friday,11,11,8,2019-01-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19903,4145,GO-20199011147,THEFT UNDER,2019-03-22,2019,March,Friday,22,81,22,2019-04-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19904,4155,GO-2019655609,THEFT UNDER,2019-03-20,2019,March,Wednesday,20,79,17,2019-04-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19905,4290,GO-20199015336,THEFT UNDER,2019-05-16,2019,May,Thursday,16,136,19,2019-05-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19906,4301,GO-20199015557,INCIDENT,2019-05-15,2019,May,Wednesday,15,135,23,2019-05-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19907,4452,GO-20199018131,THEFT UNDER,2019-06-09,2019,June,Sunday,9,160,22,2019-06-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19908,4516,GO-20199018971,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,17,2019-06-17,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19909,4730,GO-20199021732,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,22,2019-07-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19910,4731,GO-20199021732,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,22,2019-07-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19911,4732,GO-20199021732,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,22,2019-07-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19912,4949,GO-20199024574,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,16,2019-07-31,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19913,4984,GO-20199025240,THEFT UNDER,2019-08-06,2019,August,Tuesday,6,218,17,2019-08-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19914,5279,GO-20199029319,THEFT UNDER,2019-09-06,2019,September,Friday,6,249,10,2019-09-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19915,5297,GO-20199029595,THEFT UNDER,2019-09-07,2019,September,Saturday,7,250,22,2019-09-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19916,5376,GO-20191826921,B&E W'INTENT,2019-09-22,2019,September,Sunday,22,265,9,2019-09-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19917,5447,GO-20199032165,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,8,2019-10-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19918,5538,GO-20199034116,THEFT UNDER,2019-10-13,2019,October,Sunday,13,286,22,2019-10-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19919,5559,GO-20192034286,THEFT UNDER - BICYCLE,2019-10-21,2019,October,Monday,21,294,18,2019-10-21,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19920,5693,GO-20191600359,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,20,2019-08-22,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19921,5776,GO-20199041585,THEFT UNDER,2019-11-20,2019,November,Wednesday,20,324,15,2019-12-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19922,5983,GO-2020578835,THEFT FROM MOTOR VEHICLE UNDER,2020-03-20,2020,March,Friday,20,80,21,2020-03-21,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19923,5992,GO-20209009893,THEFT UNDER,2020-03-25,2020,March,Wednesday,25,85,15,2020-03-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19924,6192,GO-20209013220,THEFT UNDER,2020-05-05,2020,May,Tuesday,5,126,20,2020-05-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19925,6202,GO-2020923642,THEFT UNDER - BICYCLE,2020-05-18,2020,May,Monday,18,139,1,2020-05-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19926,6232,GO-20209013751,THEFT UNDER,2020-05-22,2020,May,Friday,22,143,17,2020-05-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19927,6233,GO-20209013758,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,20,2020-05-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19928,6249,GO-20209013902,THEFT UNDER,2020-05-22,2020,May,Friday,22,143,9,2020-05-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19929,6480,GO-20209016271,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,8,2020-06-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19930,6534,GO-20209016854,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,9,2020-07-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19931,6663,GO-20209017951,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,4,2020-07-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19932,6721,GO-20209018415,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,10,2020-07-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19933,6739,GO-20209018563,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,10,2020-07-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19934,6765,GO-20209018713,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,9,2020-07-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19935,6806,GO-20201390783,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,11,2020-07-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19936,6844,GO-20209019185,THEFT UNDER,2020-07-26,2020,July,Sunday,26,208,1,2020-08-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19937,6878,GO-20209019490,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,21,2020-08-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19938,6961,GO-20201512900,THEFT UNDER - BICYCLE,2020-08-13,2020,August,Thursday,13,226,0,2020-08-13,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19939,7001,GO-20209020674,THEFT UNDER,2020-08-17,2020,August,Monday,17,230,21,2020-08-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19940,7089,GO-20209021466,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,12,2020-08-26,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19941,7104,GO-20201619190,B&E,2020-08-25,2020,August,Tuesday,25,238,0,2020-08-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19942,7208,GO-20209022665,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,12,2020-09-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19943,7265,GO-20201756374,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,22,2020-09-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19944,7287,GO-20209023772,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,9,2020-09-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19945,7425,GO-20209025739,THEFT UNDER,2020-10-07,2020,October,Wednesday,7,281,7,2020-10-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19946,7437,GO-20209026005,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,13,2020-10-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19947,7507,GO-20209026907,THEFT UNDER,2020-10-18,2020,October,Sunday,18,292,23,2020-10-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19948,7607,GO-20209029087,THEFT UNDER,2020-11-09,2020,November,Monday,9,314,14,2020-11-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19949,10202,GO-20151365165,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,7,2015-08-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19950,10211,GO-20159005501,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,11,2015-08-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19951,10246,GO-20159005659,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,20,2015-08-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19952,10247,GO-20159005659,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,20,2015-08-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19953,10254,GO-20159005707,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,0,2015-08-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19954,10309,GO-20159006032,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,13,2015-08-19,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19955,10443,GO-20159007022,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,11,2015-09-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19956,10580,GO-20151694377,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,15,2015-10-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19957,10712,GO-20151880335,THEFT UNDER,2015-11-01,2015,November,Sunday,1,305,12,2015-11-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19958,10769,GO-20159009724,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,8,2015-11-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19959,10881,GO-20159011017,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,16,2015-12-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19960,10945,GO-20169000787,THEFT UNDER,2016-01-15,2016,January,Friday,15,15,14,2016-01-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19961,10946,GO-20169000787,THEFT UNDER,2016-01-15,2016,January,Friday,15,15,14,2016-01-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19962,11074,GO-20169002726,THEFT UNDER - BICYCLE,2016-03-24,2016,March,Thursday,24,84,0,2016-03-24,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19963,11098,GO-20169003071,THEFT UNDER,2016-03-09,2016,March,Wednesday,9,69,8,2016-04-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19964,11272,GO-20169004247,THEFT UNDER,2016-05-06,2016,May,Friday,6,127,18,2016-05-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19965,11431,GO-2016930592,THEFT UNDER - BICYCLE,2016-05-29,2016,May,Sunday,29,150,15,2016-05-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19966,11781,GO-20169007107,THEFT UNDER,2016-07-12,2016,July,Tuesday,12,194,7,2016-07-12,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19967,11965,GO-20169008003,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,16,2016-08-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19968,12113,GO-20169008860,THEFT UNDER,2016-08-15,2016,August,Monday,15,228,23,2016-08-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19969,12232,GO-20169009681,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,21,2016-08-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19970,12249,GO-20161559022,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,23,2016-09-02,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19971,12307,GO-20169010197,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,22,2016-09-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19972,12449,GO-20169011077,THEFT UNDER - BICYCLE,2016-09-22,2016,September,Thursday,22,266,15,2016-09-25,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19973,12486,GO-20169011235,THEFT UNDER,2016-09-28,2016,September,Wednesday,28,272,11,2016-09-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19974,12487,GO-20169011235,THEFT UNDER,2016-09-28,2016,September,Wednesday,28,272,11,2016-09-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19975,12488,GO-20169011235,THEFT UNDER,2016-09-28,2016,September,Wednesday,28,272,11,2016-09-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19976,12489,GO-20169011254,THEFT UNDER - BICYCLE,2016-09-13,2016,September,Tuesday,13,257,18,2016-09-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19977,12502,GO-20169011293,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,11,2016-09-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19978,12504,GO-20161733728,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,14,2016-09-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19979,12505,GO-20161733728,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,14,2016-09-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19980,12506,GO-20161733728,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,14,2016-09-29,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19981,12565,GO-20161779255,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,8,2016-10-06,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19982,12615,GO-20169012056,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,15,2016-10-14,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19983,12688,GO-20169012672,THEFT UNDER,2016-10-27,2016,October,Thursday,27,301,11,2016-10-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19984,12694,GO-20169012724,THEFT UNDER,2016-10-28,2016,October,Friday,28,302,13,2016-10-28,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19985,12755,GO-20169013282,THEFT UNDER - BICYCLE,2016-11-11,2016,November,Friday,11,316,2,2016-11-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19986,14887,GO-20209019447,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,23,2020-08-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19987,14896,GO-20201675934,THEFT UNDER - BICYCLE,2020-08-22,2020,August,Saturday,22,235,12,2020-09-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19988,14907,GO-20209029062,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,11,2020-11-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19989,14908,GO-20209029062,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,11,2020-11-09,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19990,15054,GO-20149004311,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,17,2014-06-21,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19991,15073,GO-20142881881,PROPERTY - FOUND,2014-09-10,2014,September,Wednesday,10,253,12,2014-09-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19992,15078,GO-20159001480,THEFT UNDER,2015-03-20,2015,March,Friday,20,79,14,2015-03-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19993,15084,GO-20159002650,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,20,2015-05-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19994,15086,GO-20159003144,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,5,2015-05-27,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19995,15088,GO-20159003505,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,22,2015-06-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19996,15099,GO-20159005175,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,19,2015-07-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19997,15107,GO-20159010604,THEFT UNDER,2015-12-04,2015,December,Friday,4,338,14,2015-12-08,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19998,15118,GO-2016842592,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,13,2016-05-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -19999,15122,GO-20169006601,THEFT UNDER - BICYCLE,2016-07-01,2016,July,Friday,1,183,7,2016-07-01,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20000,15129,GO-20161389174,PROPERTY - FOUND,2016-08-06,2016,August,Saturday,6,219,21,2016-08-07,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20001,15132,GO-20169008988,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,20,2016-08-18,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20002,15142,GO-20161646838,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,0,2016-09-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20003,15148,GO-20161810232,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,14,2016-10-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20004,15169,GO-2017794639,THEFT UNDER,2017-05-05,2017,May,Friday,5,125,20,2017-05-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20005,15170,GO-2017794639,THEFT UNDER,2017-05-05,2017,May,Friday,5,125,20,2017-05-05,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20006,15189,GO-20179012173,THEFT UNDER - BICYCLE,2017-08-10,2017,August,Thursday,10,222,18,2017-08-11,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20007,15194,GO-20179015714,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,23,2017-09-25,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20008,15201,GO-20179019760,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,17,2017-11-15,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20009,15205,GO-201858384,THEFT UNDER - BICYCLE,2017-12-27,2017,December,Wednesday,27,361,12,2018-01-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20010,15206,GO-20189004193,THEFT UNDER,2017-12-19,2017,December,Tuesday,19,353,17,2018-02-10,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20011,15208,GO-20189006976,B&E,2018-03-05,2018,March,Monday,5,64,9,2018-03-06,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20012,15210,GO-2018504583,B&E,2018-03-19,2018,March,Monday,19,78,19,2018-03-20,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20013,15217,GO-20189012554,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,20,2018-04-23,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20014,15218,GO-20189013311,THEFT UNDER - BICYCLE,2018-04-29,2018,April,Sunday,29,119,20,2018-04-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20015,15219,GO-2018772924,THEFT UNDER - BICYCLE,2018-04-29,2018,April,Sunday,29,119,20,2018-04-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20016,15220,GO-20189016833,THEFT UNDER,2018-05-17,2018,May,Thursday,17,137,12,2018-05-30,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20017,15221,GO-20189018911,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,18,2018-06-16,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20018,15234,GO-20181430724,THEFT UNDER,2018-08-04,2018,August,Saturday,4,216,13,2018-08-04,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)}",High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -20019,15265,GO-2019967659,PROPERTY - FOUND,2019-05-26,2019,May,Sunday,26,146,12,2019-05-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20020,18519,GO-20143068207,B&E W'INTENT,2014-09-29,2014,September,Monday,29,272,23,2014-10-08,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20021,18520,GO-20143071431,B&E,2014-10-08,2014,October,Wednesday,8,281,22,2014-10-09,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20022,18523,GO-20143454639,THEFT UNDER,2014-12-09,2014,December,Tuesday,9,343,16,2014-12-09,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20023,18528,GO-2015621860,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,9,2015-04-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20024,18537,GO-20159003652,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,16,2015-06-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20025,18571,GO-20169008333,THEFT UNDER,2016-08-03,2016,August,Wednesday,3,216,19,2016-08-07,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20026,18609,GO-20179010998,THEFT FROM MOTOR VEHICLE UNDER,2017-07-23,2017,July,Sunday,23,204,19,2017-07-25,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20027,18652,GO-20189026911,THEFT UNDER - BICYCLE,2018-08-17,2018,August,Friday,17,229,17,2018-08-18,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20028,9807,GO-20159003630,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,0,2015-06-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20029,18689,GO-20199030741,THEFT UNDER,2019-09-19,2019,September,Thursday,19,262,9,2019-09-19,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20030,21575,GO-20149002000,THEFT FROM MOTOR VEHICLE UNDER,2014-03-10,2014,March,Monday,10,69,17,2014-03-11,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20031,318,GO-20179005559,MISCHIEF TO VEHICLE,2017-05-01,2017,May,Monday,1,121,12,2017-05-01,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20032,21576,GO-20149002000,THEFT FROM MOTOR VEHICLE UNDER,2014-03-10,2014,March,Monday,10,69,17,2014-03-11,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20033,21579,GO-20142182630,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,1,2014-05-30,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20034,21580,GO-20142182630,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,1,2014-05-30,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20035,21581,GO-20142202392,B&E W'INTENT,2014-05-30,2014,May,Friday,30,150,18,2014-06-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20036,10261,GO-20151412587,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,8,2015-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20037,21582,GO-20142202392,B&E W'INTENT,2014-05-30,2014,May,Friday,30,150,18,2014-06-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20038,21583,GO-20142203039,B&E,2014-05-30,2014,May,Friday,30,150,18,2014-06-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20039,21584,GO-20142203039,B&E,2014-05-30,2014,May,Friday,30,150,18,2014-06-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20040,21602,GO-20143079956,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,10,2014-10-10,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20041,21647,GO-20161098576,B&E,2016-06-21,2016,June,Tuesday,21,173,16,2016-06-23,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20042,21648,GO-20161110450,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,16,2016-06-26,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20043,21704,GO-20189019985,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,1,2018-06-24,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20044,21725,GO-2019578883,THEFT UNDER,2019-03-25,2019,March,Monday,25,84,7,2019-03-31,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20045,21739,GO-20199019640,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,9,2019-06-22,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20046,21786,GO-20209014806,THEFT UNDER,2020-05-24,2020,May,Sunday,24,145,0,2020-06-07,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20047,21987,GO-20209029018,THEFT UNDER,2020-10-01,2020,October,Thursday,1,275,12,2020-11-08,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20048,24374,GO-20189027170,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,1,2018-08-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20049,25005,GO-20143204930,THEFT FROM MOTOR VEHICLE UNDER,2014-10-20,2014,October,Monday,20,293,20,2014-10-30,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20050,25013,GO-20159003139,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,0,2015-05-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20051,25014,GO-20159003139,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,0,2015-05-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20052,25015,GO-20159003139,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,0,2015-05-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20053,25016,GO-20159003139,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,0,2015-05-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20054,25017,GO-2015896322,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,19,2015-05-29,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20055,25018,GO-2015896322,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,19,2015-05-29,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20056,25019,GO-20159003237,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,14,2015-06-01,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20057,25020,GO-2015921489,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,21,2015-06-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20058,11702,GO-20169006709,THEFT UNDER,2016-07-01,2016,July,Friday,1,183,1,2016-07-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20059,25021,GO-2015921489,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,21,2015-06-02,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20060,25029,GO-20159006367,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,18,2015-08-24,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20061,25043,GO-2016692314,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,8,2016-04-23,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20062,25057,GO-20169010256,THEFT UNDER,2016-09-09,2016,September,Friday,9,253,11,2016-09-10,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20063,25066,GO-20169014366,THEFT UNDER,2016-10-13,2016,October,Thursday,13,287,14,2016-12-08,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20064,25089,GO-20179010242,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,21,2017-07-15,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20065,15364,GO-20142969651,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,21,2014-09-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20066,20796,GO-20201529787,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,19,2020-08-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20067,7330,GO-20209024153,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,22,2020-09-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20068,25103,GO-20179016225,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,1,2017-10-01,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20069,25127,GO-20189032290,THEFT UNDER,2018-08-17,2018,August,Friday,17,229,16,2018-09-28,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20070,25140,GO-20191192001,THEFT OF MOTOR VEHICLE,2019-06-26,2019,June,Wednesday,26,177,23,2019-06-27,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)}",Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -20071,100,GO-2017336609,THEFT UNDER - BICYCLE,2017-02-17,2017,February,Friday,17,48,14,2017-02-23,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20072,103,GO-2017338707,THEFT UNDER - BICYCLE,2017-02-22,2017,February,Wednesday,22,53,11,2017-02-23,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20073,104,GO-2017338707,THEFT UNDER - BICYCLE,2017-02-22,2017,February,Wednesday,22,53,11,2017-02-23,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20074,110,GO-2017358902,THEFT UNDER - BICYCLE,2017-02-24,2017,February,Friday,24,55,17,2017-02-26,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20075,491,GO-20179007118,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,23,2017-05-28,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20076,492,GO-20179007118,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,23,2017-05-28,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20077,493,GO-20179007118,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,23,2017-05-28,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20078,646,GO-20179008344,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,15,2017-06-18,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20079,770,GO-20171193949,THEFT UNDER,2017-06-24,2017,June,Saturday,24,175,23,2017-07-04,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20080,801,GO-20171220962,THEFT UNDER - BICYCLE,2017-06-24,2017,June,Saturday,24,175,21,2017-07-08,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20081,1279,GO-20171585126,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,10,2017-09-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20082,1912,GO-20173131808,THEFT OVER,2017-12-04,2017,December,Monday,4,338,15,2017-12-05,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20083,2080,GO-20189008344,THEFT UNDER,2018-03-15,2018,March,Thursday,15,74,11,2018-03-17,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20084,3101,GO-201814486103,B&E,2018-08-02,2018,August,Thursday,2,214,20,2018-08-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20085,2096,GO-2018517829,THEFT UNDER - BICYCLE,2018-03-13,2018,March,Tuesday,13,72,13,2018-03-22,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20086,2229,GO-20189013354,THEFT UNDER,2018-04-30,2018,April,Monday,30,120,6,2018-04-30,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20087,3177,GO-20181489420,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,21,2018-08-13,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20088,3254,GO-20181536284,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,19,2018-08-20,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20089,3466,GO-20189030412,THEFT UNDER - BICYCLE,2018-09-10,2018,September,Monday,10,253,13,2018-09-14,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20090,3521,GO-20189031311,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,8,2018-09-20,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20091,3703,GO-20181904705,THEFT UNDER - BICYCLE,2018-10-14,2018,October,Sunday,14,287,7,2018-10-15,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20092,3717,GO-20189034486,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,19,2018-10-17,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20093,3719,GO-20189034486,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,19,2018-10-17,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20094,3789,GO-20182006617,THEFT OF EBIKE UNDER $5000,2018-10-26,2018,October,Friday,26,299,17,2018-10-31,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20095,3923,GO-20182211594,THEFT OVER,2018-11-29,2018,November,Thursday,29,333,2,2018-12-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20096,25036,GO-2016151277,THEFT UNDER,2016-01-25,2016,January,Monday,25,25,16,2016-01-26,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20097,3924,GO-20182211594,THEFT OVER,2018-11-29,2018,November,Thursday,29,333,2,2018-12-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20098,3925,GO-20182211594,THEFT OVER,2018-11-29,2018,November,Thursday,29,333,2,2018-12-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20099,4058,GO-20199006056,THEFT UNDER,2019-02-20,2019,February,Wednesday,20,51,0,2019-02-20,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20100,4449,GO-20191074910,THEFT FROM MOTOR VEHICLE OVER,2019-06-11,2019,June,Tuesday,11,162,2,2019-06-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20101,18262,GO-20209000995,B&E,2020-01-08,2020,January,Wednesday,8,8,23,2020-01-09,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20102,4707,GO-20199021517,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,19,2019-07-08,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20103,5439,GO-20199031946,THEFT UNDER,2019-09-28,2019,September,Saturday,28,271,9,2019-09-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20104,5633,GO-20199036199,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,20,2019-11-02,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20105,5655,GO-20199036550,THEFT UNDER,2019-11-04,2019,November,Monday,4,308,16,2019-11-05,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20106,5758,GO-20192380730,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,12,2019-12-10,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20107,6391,GO-20201075456,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,20,2020-06-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20108,6588,GO-20209017320,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,21,2020-07-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20109,6952,GO-20209020125,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,18,2020-08-13,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20110,7352,GO-20209024407,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,16,2020-09-24,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20111,7506,GO-20201983862,B&E,2020-09-01,2020,September,Tuesday,1,245,0,2020-10-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20112,7701,GO-20201997016,THEFT OF EBIKE UNDER $5000,2020-10-15,2020,October,Thursday,15,289,19,2020-10-21,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20113,7756,GO-20149000867,THEFT UNDER,2014-01-29,2014,January,Wednesday,29,29,8,2014-01-30,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20114,8013,GO-20149003714,INCIDENT,2014-05-31,2014,May,Saturday,31,151,18,2014-06-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20115,8253,GO-20149004455,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,1,2014-06-26,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20116,8254,GO-20149004455,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,1,2014-06-26,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20117,8415,GO-20149004958,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,14,2014-07-13,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20118,8721,GO-20142774807,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,12,2014-08-25,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20119,8759,GO-20149006350,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,14,2014-08-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20120,8922,GO-20142934611,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,9,2014-09-18,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20121,8932,GO-20149007074,THEFT UNDER,2014-09-20,2014,September,Saturday,20,263,19,2014-09-21,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20122,8983,GO-20142994154,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,20,2014-09-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20123,9013,GO-20149007367,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,1,2014-10-03,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20124,9075,GO-20143120276,B&E,2014-10-17,2014,October,Friday,17,290,0,2014-10-17,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20125,9275,GO-2015141964,THEFT UNDER,2014-11-01,2014,November,Saturday,1,305,0,2015-01-24,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20126,9316,GO-2015408907,THEFT UNDER,2015-03-06,2015,March,Friday,6,65,18,2015-03-10,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20127,9550,GO-20159002537,THEFT UNDER,2014-03-25,2014,March,Tuesday,25,84,0,2015-05-08,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20128,9905,GO-20151093359,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,21,2015-06-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20129,9946,GO-20151137353,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,20,2015-07-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20130,11735,GO-20161182490,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,17,2016-07-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20131,15377,GO-20143199440,THEFT UNDER,2014-10-28,2014,October,Tuesday,28,301,22,2014-10-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20132,1194,GO-20171510987,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,12,2017-08-21,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20133,15378,GO-20143289499,B&E W'INTENT,2014-11-12,2014,November,Wednesday,12,316,8,2014-11-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20134,15382,GO-20143329223,THEFT UNDER,2014-11-19,2014,November,Wednesday,19,323,8,2014-11-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20135,4897,GO-20199023958,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,9,2019-07-27,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20136,7394,GO-20209025088,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,21,2020-09-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20137,20843,GO-20209032855,THEFT UNDER,2020-12-26,2020,December,Saturday,26,361,12,2020-12-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20138,3108,GO-20189025467,THEFT UNDER,2018-08-07,2018,August,Tuesday,7,219,15,2018-08-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20139,10136,GO-20159005119,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,16,2015-07-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20140,11807,GO-20161243375,THEFT UNDER - BICYCLE,2016-05-01,2016,May,Sunday,1,122,0,2016-07-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20141,18264,GO-20209009394,THEFT UNDER,2020-03-19,2020,March,Thursday,19,79,18,2020-03-19,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20142,3183,GO-20189026188,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,14,2018-08-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20143,10433,GO-20159006908,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,7,2015-09-08,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20144,11813,GO-20161251506,THEFT UNDER - BICYCLE,2016-07-16,2016,July,Saturday,16,198,18,2016-07-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20145,6267,GO-20209014131,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,22,2020-05-28,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20146,24384,GO-20189029905,THEFT UNDER - BICYCLE,2018-09-09,2018,September,Sunday,9,252,6,2018-09-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20147,20975,GO-20189042058,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,11,2018-12-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20148,7408,GO-20209025387,THEFT UNDER,2020-10-03,2020,October,Saturday,3,277,1,2020-10-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20149,15423,GO-20159004530,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,1,2015-07-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20150,15427,GO-20151234899,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,17,2015-07-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20151,15453,GO-20159007297,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,17,2015-09-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20152,15454,GO-20159007297,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,17,2015-09-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20153,15467,GO-20159009683,THEFT UNDER,2015-11-10,2015,November,Tuesday,10,314,8,2015-11-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20154,15494,GO-20169004033,THEFT UNDER - BICYCLE,2016-05-01,2016,May,Sunday,1,122,18,2016-05-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20155,15530,GO-20161351906,THEFT UNDER - BICYCLE,2016-05-07,2016,May,Saturday,7,128,23,2016-08-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20156,15548,GO-20169009844,THEFT UNDER,2016-09-01,2016,September,Thursday,1,245,21,2016-09-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20157,15571,GO-20169012745,THEFT UNDER - BICYCLE,2016-10-28,2016,October,Friday,28,302,21,2016-10-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20158,15588,GO-20179003700,THEFT UNDER - BICYCLE,2017-03-23,2017,March,Thursday,23,82,20,2017-03-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20159,15589,GO-20179003700,THEFT UNDER - BICYCLE,2017-03-23,2017,March,Thursday,23,82,20,2017-03-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20160,17359,GO-20209018371,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,23,2020-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20161,17402,GO-20209026799,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,17,2020-10-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20162,17561,GO-20199014140,THEFT UNDER,2019-05-04,2019,May,Saturday,4,124,22,2019-05-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20163,17634,GO-20199028757,THEFT UNDER,2019-09-04,2019,September,Wednesday,4,247,18,2019-09-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20164,17667,GO-20192180661,B&E,2019-11-09,2019,November,Saturday,9,313,23,2019-11-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20165,17668,GO-20192180661,B&E,2019-11-09,2019,November,Saturday,9,313,23,2019-11-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20166,17676,GO-20192399724,THEFT OF EBIKE UNDER $5000,2019-12-12,2019,December,Thursday,12,346,10,2019-12-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20167,17710,GO-2020784943,THEFT UNDER - BICYCLE,2020-04-25,2020,April,Saturday,25,116,5,2020-04-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20168,17740,GO-20179015552,THEFT UNDER,2017-09-23,2017,September,Saturday,23,266,1,2017-09-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20169,17745,GO-20171802417,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,20,2017-10-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20170,17781,GO-20189001055,THEFT UNDER - BICYCLE,2018-01-12,2018,January,Friday,12,12,12,2018-01-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20171,17795,GO-2018462764,MISCHIEF UNDER,2018-03-09,2018,March,Friday,9,68,19,2018-03-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20172,7409,GO-20201888569,THEFT OF EBIKE UNDER $5000,2020-10-05,2020,October,Monday,5,279,1,2020-10-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20173,21004,GO-20191011319,THEFT UNDER,2019-06-01,2019,June,Saturday,1,152,14,2019-06-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20174,3246,GO-20189026967,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,23,2018-08-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20175,6752,GO-20201395750,B&E W'INTENT,2020-07-27,2020,July,Monday,27,209,0,2020-07-27,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20176,10599,GO-20159008277,THEFT UNDER,2015-10-04,2015,October,Sunday,4,277,15,2015-10-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20177,24404,GO-20209023823,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,1,2020-09-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20178,11903,GO-20169007748,THEFT OF EBIKE UNDER $5000,2016-07-23,2016,July,Saturday,23,205,20,2016-07-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20179,18289,GO-20209021596,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,22,2020-08-28,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20180,18099,GO-20179011119,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,23,2017-07-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20181,18153,GO-20161686048,B&E,2016-09-21,2016,September,Wednesday,21,265,22,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20182,18154,GO-20161686048,B&E,2016-09-21,2016,September,Wednesday,21,265,22,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20183,18155,GO-20161686048,B&E,2016-09-21,2016,September,Wednesday,21,265,22,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20184,18156,GO-20161686048,B&E,2016-09-21,2016,September,Wednesday,21,265,22,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20185,18157,GO-20161686048,B&E,2016-09-21,2016,September,Wednesday,21,265,22,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20186,18188,GO-20179002632,B&E,2017-02-24,2017,February,Friday,24,55,11,2017-03-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20187,18191,GO-2017491687,THEFT UNDER - BICYCLE,2017-03-19,2017,March,Sunday,19,78,14,2017-03-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20188,18192,GO-2017540670,PROPERTY - LOST,2017-03-23,2017,March,Thursday,23,82,12,2017-03-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20189,18217,GO-20179008162,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,15,2017-06-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20190,18222,GO-20179011749,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,0,2017-08-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20191,18231,GO-20189013770,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,0,2018-05-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20192,18234,GO-20189017371,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,2,2018-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20193,18240,GO-20189028202,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,8,2018-08-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20194,18249,GO-20199015678,THEFT UNDER - BICYCLE,2019-05-18,2019,May,Saturday,18,138,17,2019-05-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20195,18261,GO-20192498443,THEFT UNDER - BICYCLE,2019-12-07,2019,December,Saturday,7,341,0,2019-12-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20196,18263,GO-20209005900,THEFT UNDER,2020-02-18,2020,February,Tuesday,18,49,7,2020-02-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20197,18276,GO-20201454243,B&E,2020-07-17,2020,July,Friday,17,199,0,2020-08-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20198,18292,GO-20209022326,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,21,2020-09-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20199,18305,GO-20209026033,FTC PROBATION ORDER,2020-10-09,2020,October,Friday,9,283,17,2020-10-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20200,18313,GO-20209012222,THEFT UNDER,2020-03-20,2020,March,Friday,20,80,15,2020-04-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20201,18315,GO-20209014477,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,16,2020-06-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20202,18324,GO-20149002957,THEFT UNDER,2014-04-21,2014,April,Monday,21,111,17,2014-04-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20203,18325,GO-20149003237,THEFT UNDER,2013-10-31,2013,October,Thursday,31,304,9,2014-05-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20204,18332,GO-20149003558,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,22,2014-05-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20205,18353,GO-20149005207,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,7,2014-07-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20206,18358,GO-20149005669,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,23,2014-08-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20207,18360,GO-20149005938,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,14,2014-08-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20208,18362,GO-20149006167,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,23,2014-08-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20209,18370,GO-20142883198,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,17,2014-09-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20210,18371,GO-20142883198,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,17,2014-09-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20211,18372,GO-20142883198,THEFT UNDER,2014-08-31,2014,August,Sunday,31,243,17,2014-09-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20212,18376,GO-20143110205,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,12,2014-10-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20213,18399,GO-2015767093,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,15,2015-05-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20214,18401,GO-20159002837,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,0,2015-05-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20215,18411,GO-2015909525,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,0,2015-05-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20216,18427,GO-20159004498,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,13,2015-07-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20217,18442,GO-20159005535,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,11,2015-08-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20218,18443,GO-20159005687,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,16,2015-08-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20219,18485,GO-2016798829,THEFT UNDER - BICYCLE,2016-05-09,2016,May,Monday,9,130,13,2016-05-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20220,18492,GO-20169005128,THEFT UNDER,2016-05-27,2016,May,Friday,27,148,19,2016-05-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20221,18507,GO-20141937706,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,12,2014-04-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20222,18516,GO-20142799427,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,10,2014-08-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20223,18521,GO-20143206385,THEFT UNDER,2014-10-30,2014,October,Thursday,30,303,16,2014-10-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20224,18531,GO-20159002885,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,23,2015-05-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20225,18532,GO-20159002986,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,3,2015-05-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20226,18536,GO-20159003622,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,20,2015-06-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20227,18538,GO-20159004268,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,17,2015-07-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20228,21423,GO-20169010330,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,17,2016-09-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20229,18570,GO-20169007561,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,16,2016-07-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20230,18576,GO-20161983115,THEFT UNDER - BICYCLE,2016-11-06,2016,November,Sunday,6,311,18,2016-11-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20231,18577,GO-20169013570,THEFT UNDER,2016-11-15,2016,November,Tuesday,15,320,19,2016-11-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20232,18588,GO-20179003593,THEFT UNDER - BICYCLE,2017-03-21,2017,March,Tuesday,21,80,13,2017-03-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20233,18591,GO-20179005005,THEFT UNDER,2017-04-19,2017,April,Wednesday,19,109,22,2017-04-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20234,18595,GO-20179005611,THEFT UNDER - BICYCLE,2017-04-28,2017,April,Friday,28,118,21,2017-05-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20235,18602,GO-20171092714,THEFT FROM MOTOR VEHICLE UNDER,2017-06-19,2017,June,Monday,19,170,1,2017-06-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20236,18606,GO-20179010260,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,6,2017-07-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20237,18612,GO-20179012109,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,10,2017-08-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20238,18613,GO-20171684423,ROBBERY - MUGGING,2017-09-17,2017,September,Sunday,17,260,1,2017-09-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20239,18626,GO-20173105609,INCIDENT,2017-12-01,2017,December,Friday,1,335,0,2017-12-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20240,18627,GO-20179021356,THEFT UNDER - BICYCLE,2017-12-05,2017,December,Tuesday,5,339,14,2017-12-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20241,18632,GO-2018644314,B&E,2018-04-05,2018,April,Thursday,5,95,12,2018-04-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20242,18637,GO-20189015940,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,19,2018-05-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20243,18638,GO-20189017291,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,20,2018-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20244,18639,GO-20189018769,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,0,2018-06-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20245,18640,GO-20189018769,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,0,2018-06-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20246,18641,GO-20189019206,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,9,2018-06-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20247,18643,GO-20189022152,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,12,2018-07-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20248,18648,GO-20189025643,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,10,2018-08-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20249,18649,GO-20189026563,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,0,2018-08-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20250,18663,GO-201998601,THEFT UNDER - BICYCLE,2018-12-20,2018,December,Thursday,20,354,15,2019-01-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20251,18685,GO-20199030127,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,18,2019-09-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20252,18697,GO-20199042025,THEFT UNDER,2019-12-25,2019,December,Wednesday,25,359,10,2019-12-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20253,18700,GO-2020304313,B&E,2020-02-07,2020,February,Friday,7,38,10,2020-02-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20254,7609,GO-20209029124,THEFT UNDER,2020-11-09,2020,November,Monday,9,314,14,2020-11-09,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20255,7892,GO-20142033653,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,14,2014-05-07,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20256,10936,GO-20169000715,THEFT UNDER,2016-01-20,2016,January,Wednesday,20,20,9,2016-01-21,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20257,3260,GO-20189027129,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,0,2018-08-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20258,8733,GO-20142786577,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,17,2014-08-27,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20259,8852,GO-20142889842,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,14,2014-09-11,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20260,8943,GO-20142962108,THEFT UNDER,2014-09-22,2014,September,Monday,22,265,15,2014-09-22,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20261,9336,GO-2015475534,THEFT UNDER,2015-03-20,2015,March,Friday,20,79,15,2015-03-21,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20262,9429,GO-2015647818,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,19,2015-04-19,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20263,9492,GO-20159002343,THEFT UNDER,2015-04-22,2015,April,Wednesday,22,112,22,2015-04-29,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20264,9573,GO-20143318581,THEFT UNDER,2014-11-13,2014,November,Thursday,13,317,9,2014-11-17,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20265,9574,GO-20143318581,THEFT UNDER,2014-11-13,2014,November,Thursday,13,317,9,2014-11-17,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20266,9575,GO-20143318581,THEFT UNDER,2014-11-13,2014,November,Thursday,13,317,9,2014-11-17,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20267,9875,GO-20151068798,PROPERTY - LOST,2015-06-25,2015,June,Thursday,25,176,9,2015-06-25,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20268,11158,GO-2016671637,THEFT UNDER,2016-04-20,2016,April,Wednesday,20,111,5,2016-04-20,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20269,12443,GO-20161703076,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,10,2016-09-24,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20270,12697,GO-20161925858,THEFT UNDER - BICYCLE,2016-10-29,2016,October,Saturday,29,303,14,2016-10-29,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20271,14873,GO-20199038992,THEFT UNDER,2019-11-26,2019,November,Tuesday,26,330,17,2019-11-27,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20272,14874,GO-20192382813,THEFT UNDER - BICYCLE,2019-12-10,2019,December,Tuesday,10,344,9,2019-12-12,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20273,15062,GO-20142541176,MISCHIEF UNDER,2014-07-21,2014,July,Monday,21,202,11,2014-07-21,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20274,21041,GO-20199026179,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,18,2019-08-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20275,7480,GO-20209026688,THEFT UNDER,2020-10-16,2020,October,Friday,16,290,0,2020-10-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20276,11982,GO-20169008137,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,21,2016-08-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20277,24405,GO-20209023916,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,23,2020-09-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20278,18309,GO-20209029884,THEFT UNDER,2020-11-16,2020,November,Monday,16,321,19,2020-11-17,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20279,15077,GO-2015475534,THEFT UNDER,2015-03-20,2015,March,Friday,20,79,15,2015-03-21,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20280,15098,GO-20151245315,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,0,2015-07-21,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20281,18398,GO-20159002218,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,13,2015-04-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20282,15106,GO-20151833164,THEFT UNDER,2015-10-25,2015,October,Sunday,25,298,0,2015-10-25,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20283,15171,GO-20179005868,THEFT UNDER,2017-05-07,2017,May,Sunday,7,127,17,2017-05-07,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20284,15255,GO-20199001262,THEFT UNDER - BICYCLE,2019-01-10,2019,January,Thursday,10,10,8,2019-01-10,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20285,15407,GO-20151031427,B&E W'INTENT,2015-06-19,2015,June,Friday,19,170,13,2015-06-19,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20286,18515,GO-20149004957,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,10,2014-07-13,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20287,18518,GO-20142928122,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,11,2014-09-17,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20288,18698,GO-20192510248,THEFT OF EBIKE UNDER $5000,2019-12-30,2019,December,Monday,30,364,0,2019-12-30,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20289,21554,GO-20209012017,THEFT UNDER,2020-04-24,2020,April,Friday,24,115,12,2020-04-27,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20290,21555,GO-20209015031,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,23,2020-06-09,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20291,21586,GO-20142221789,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,23,2014-06-04,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20292,21594,GO-20142813408,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,20,2014-08-31,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20293,21595,GO-20142813408,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,20,2014-08-31,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20294,21604,GO-20143203204,THEFT UNDER,2014-10-29,2014,October,Wednesday,29,302,18,2014-10-30,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20295,21621,GO-20151552672,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,23,2015-09-08,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20296,21630,GO-20152210423,THEFT UNDER,2015-12-26,2015,December,Saturday,26,360,8,2015-12-26,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20297,21671,GO-20179006591,THEFT UNDER,2017-05-17,2017,May,Wednesday,17,137,18,2017-05-18,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20298,21724,GO-20199001262,THEFT UNDER - BICYCLE,2019-01-10,2019,January,Thursday,10,10,8,2019-01-10,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20299,21762,GO-20199035721,THEFT UNDER,2019-10-28,2019,October,Monday,28,301,1,2019-10-29,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20300,21977,GO-20201770256,THEFT UNDER - BICYCLE,2020-09-08,2020,September,Tuesday,8,252,0,2020-09-18,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20301,24618,GO-20142497976,ROBBERY - OTHER,2014-07-14,2014,July,Monday,14,195,14,2014-07-14,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20302,24992,GO-20149004554,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,6,2014-06-29,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20303,25022,GO-2015964053,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,7,2015-06-09,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20304,25025,GO-20151129818,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,3,2015-07-04,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20305,25026,GO-20151129818,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,3,2015-07-04,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20306,25061,GO-20169011504,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,17,2016-10-03,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20307,25101,GO-20171767588,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,7,2017-09-29,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20308,25147,GO-20199024537,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,12,2019-07-31,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20309,25167,GO-20192246682,THEFT UNDER - BICYCLE,2019-11-21,2019,November,Thursday,21,325,8,2019-11-21,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20310,25319,GO-20179017745,THEFT UNDER - BICYCLE,2017-10-14,2017,October,Saturday,14,287,23,2017-10-20,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)}",Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -20311,472,GO-20179006988,THEFT UNDER,2017-05-22,2017,May,Monday,22,142,20,2017-05-25,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20312,1877,GO-20179020439,THEFT UNDER,2017-11-23,2017,November,Thursday,23,327,12,2017-11-24,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20313,7867,GO-20141968743,THEFT UNDER,2014-04-27,2014,April,Sunday,27,117,10,2014-04-27,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20314,1954,GO-20173240942,THEFT UNDER - BICYCLE,2017-12-11,2017,December,Monday,11,345,12,2017-12-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20315,2356,GO-20189015652,THEFT UNDER - BICYCLE,2018-05-20,2018,May,Sunday,20,140,17,2018-05-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20316,2644,GO-20189019708,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,18,2018-06-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20317,2992,GO-20189024115,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,22,2018-07-27,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20318,3366,GO-20189028606,THEFT UNDER - BICYCLE,2018-08-29,2018,August,Wednesday,29,241,16,2018-08-30,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20319,4850,GO-20199023424,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,8,2019-07-23,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20320,5084,GO-20199026387,THEFT UNDER - BICYCLE,2019-08-03,2019,August,Saturday,3,215,11,2019-08-16,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20321,6342,GO-20209014908,THEFT UNDER,2020-06-05,2020,June,Friday,5,157,19,2020-06-09,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20322,6651,GO-20209017838,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,6,2020-07-17,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20323,6847,GO-20201445317,B&E,2020-07-29,2020,July,Wednesday,29,211,0,2020-08-03,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20324,7276,GO-20201763137,B&E,2020-09-17,2020,September,Thursday,17,261,12,2020-09-17,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20325,7398,GO-20209025224,THEFT UNDER,2020-09-30,2020,September,Wednesday,30,274,19,2020-10-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20326,7442,GO-20209026085,THEFT UNDER,2020-10-09,2020,October,Friday,9,283,16,2020-10-10,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20327,7599,GO-20209028887,THEFT UNDER,2018-08-16,2018,August,Thursday,16,228,6,2020-11-06,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20328,7760,GO-20149001221,THEFT UNDER,2014-02-12,2014,February,Wednesday,12,43,9,2014-02-12,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20329,8289,GO-20142421043,THEFT UNDER,2014-06-27,2014,June,Friday,27,178,7,2014-07-03,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20330,8370,GO-20149004822,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,0,2014-07-08,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20331,8551,GO-20142606886,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,9,2014-07-31,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20332,8632,GO-20149005763,THEFT UNDER,2014-08-04,2014,August,Monday,4,216,16,2014-08-09,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20333,9009,GO-20143029391,THEFT UNDER,2014-10-02,2014,October,Thursday,2,275,7,2014-10-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20334,9149,GO-20143237088,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,10,2014-11-04,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20335,10057,GO-20159004741,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,19,2015-07-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20336,11233,GO-20169004019,THEFT UNDER,2016-04-29,2016,April,Friday,29,120,13,2016-05-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20337,10090,GO-20151256835,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,9,2015-07-26,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20338,10126,GO-20151282289,THEFT UNDER,2015-07-25,2015,July,Saturday,25,206,14,2015-07-27,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20339,10464,GO-20151590623,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,14,2015-09-14,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20340,11012,GO-20169001745,THEFT UNDER,2016-02-25,2016,February,Thursday,25,56,9,2016-02-25,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20341,11094,GO-20169003003,THEFT UNDER,2016-04-01,2016,April,Friday,1,92,18,2016-04-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20342,11980,GO-20169008127,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,3,2016-08-03,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20343,11999,GO-20169008224,THEFT UNDER - BICYCLE,2016-07-31,2016,July,Sunday,31,213,16,2016-08-04,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20344,12314,GO-20161614600,THEFT UNDER,2016-09-09,2016,September,Friday,9,253,17,2016-09-11,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20345,12845,GO-20169014180,THEFT UNDER,2016-10-15,2016,October,Saturday,15,289,18,2016-12-03,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20346,14858,GO-20191330940,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,10,2019-07-16,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20347,14859,GO-20191330940,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,10,2019-07-16,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20348,14865,GO-20191549443,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,12,2019-08-15,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20349,14898,GO-20209023520,THEFT UNDER,2020-09-15,2020,September,Tuesday,15,259,15,2020-09-17,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20350,15352,GO-20149006343,THEFT UNDER,2014-08-26,2014,August,Tuesday,26,238,0,2014-08-27,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20351,15291,GO-20199042346,THEFT UNDER,2019-12-22,2019,December,Sunday,22,356,18,2019-12-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20352,15357,GO-20149006510,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,17,2014-09-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20353,15533,GO-20169008292,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,21,2016-08-06,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20354,15619,GO-20179010756,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,7,2017-07-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20355,18226,GO-20173114441,THEFT UNDER - BICYCLE,2017-12-01,2017,December,Friday,1,335,12,2017-12-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20356,18227,GO-20173114441,THEFT UNDER - BICYCLE,2017-12-01,2017,December,Friday,1,335,12,2017-12-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20357,18228,GO-20173114441,THEFT UNDER - BICYCLE,2017-12-01,2017,December,Friday,1,335,12,2017-12-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20358,18257,GO-20199027723,THEFT UNDER - BICYCLE,2019-08-25,2019,August,Sunday,25,237,19,2019-08-26,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20359,11254,GO-2016764611,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,15,2016-05-04,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20360,12185,GO-20169009344,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,8,2016-08-23,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20361,12228,GO-20169009655,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,13,2016-08-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20362,12267,GO-20169009993,THEFT UNDER,2016-09-02,2016,September,Friday,2,246,22,2016-09-05,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20363,12546,GO-20161764691,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,22,2016-10-04,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20364,12547,GO-20161764691,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,22,2016-10-04,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20365,12696,GO-20161924652,THEFT UNDER - BICYCLE,2016-10-29,2016,October,Saturday,29,303,16,2016-10-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20366,14854,GO-20199020375,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,18,2019-06-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20367,14879,GO-2020800120,B&E,2020-03-24,2020,March,Tuesday,24,84,7,2020-04-28,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20368,14881,GO-20209015185,THEFT UNDER,2020-06-11,2020,June,Thursday,11,163,20,2020-06-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20369,14899,GO-20201835855,THEFT UNDER - BICYCLE,2020-09-27,2020,September,Sunday,27,271,3,2020-09-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20370,14900,GO-20201835855,THEFT UNDER - BICYCLE,2020-09-27,2020,September,Sunday,27,271,3,2020-09-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20371,14901,GO-20201835855,THEFT UNDER - BICYCLE,2020-09-27,2020,September,Sunday,27,271,3,2020-09-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20372,15057,GO-20142426732,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,1,2014-07-04,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20373,15058,GO-20142462744,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,14,2014-07-09,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20374,15075,GO-20143186149,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,3,2014-10-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20375,15085,GO-20159002929,THEFT UNDER,2015-05-15,2015,May,Friday,15,135,11,2015-05-20,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20376,15092,GO-20151137353,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,20,2015-07-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20377,15108,GO-20169000871,THEFT UNDER,2016-01-27,2016,January,Wednesday,27,27,2,2016-01-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20378,15123,GO-20161155897,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,12,2016-07-02,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20379,15124,GO-20161155897,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,12,2016-07-02,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20380,15127,GO-20169008161,THEFT UNDER,2016-08-02,2016,August,Tuesday,2,215,23,2016-08-03,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20381,15133,GO-20161464324,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,19,2016-08-18,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20382,15134,GO-20169009447,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,18,2016-08-25,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20383,15135,GO-20169009554,THEFT UNDER,2016-08-26,2016,August,Friday,26,239,14,2016-08-26,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20384,15153,GO-20162009177,THEFT UNDER - BICYCLE,2016-11-11,2016,November,Friday,11,316,23,2016-11-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20385,15172,GO-20179006860,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,11,2017-05-24,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20386,15182,GO-20171293922,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,14,2017-07-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20387,15242,GO-20189034175,THEFT UNDER - BICYCLE,2018-10-15,2018,October,Monday,15,288,14,2018-10-15,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20388,15244,GO-20181929280,B&E,2018-08-01,2018,August,Wednesday,1,213,23,2018-10-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20389,15272,GO-20199021605,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,19,2019-07-09,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20390,15280,GO-20199025354,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,23,2019-08-08,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20391,15380,GO-20149008109,THEFT UNDER,2014-11-07,2014,November,Friday,7,311,12,2014-11-10,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20392,18316,GO-20209014486,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,17,2020-06-03,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20393,18510,GO-20149003856,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,19,2014-06-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20394,18511,GO-20149004345,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,16,2014-06-22,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20395,18526,GO-2015295388,B&E,2015-02-19,2015,February,Thursday,19,50,8,2015-02-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20396,18535,GO-20159003230,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,1,2015-05-31,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20397,18540,GO-20151224853,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,15,2015-07-18,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20398,18553,GO-20159007305,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,18,2015-09-16,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20399,18555,GO-20159009232,THEFT UNDER,2015-10-22,2015,October,Thursday,22,295,14,2015-11-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20400,18556,GO-20159009447,THEFT UNDER,2015-11-03,2015,November,Tuesday,3,307,5,2015-11-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20401,18601,GO-20179008150,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,18,2017-06-15,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20402,18607,GO-20179010604,THEFT UNDER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,9,2017-07-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20403,18611,GO-20171368309,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,21,2017-07-30,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20404,18624,GO-20179017669,THEFT UNDER,2017-10-19,2017,October,Thursday,19,292,19,2017-10-20,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20405,18634,GO-20189014134,THEFT UNDER - BICYCLE,2018-05-06,2018,May,Sunday,6,126,16,2018-05-08,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20406,18655,GO-20189030619,THEFT UNDER,2018-09-16,2018,September,Sunday,16,259,8,2018-09-16,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20407,11988,GO-20169008175,THEFT UNDER - BICYCLE,2016-05-18,2016,May,Wednesday,18,139,18,2016-08-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20408,18658,GO-20189032645,THEFT UNDER - BICYCLE,2018-10-02,2018,October,Tuesday,2,275,13,2018-10-02,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20409,18664,GO-20199004185,B&E,2018-04-30,2018,April,Monday,30,120,20,2019-02-01,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20410,18667,GO-20199009818,THEFT UNDER,2019-03-16,2019,March,Saturday,16,75,4,2019-03-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20411,18673,GO-20199017724,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,11,2019-06-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20412,18679,GO-20199025153,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,13,2019-08-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20413,18690,GO-20199031142,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,20,2019-09-23,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20414,18693,GO-20199031946,THEFT UNDER,2019-09-28,2019,September,Saturday,28,271,9,2019-09-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20415,18699,GO-2020164992,THEFT UNDER,2020-01-21,2020,January,Tuesday,21,21,16,2020-01-24,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20416,18704,GO-20209011482,THEFT UNDER,2020-04-18,2020,April,Saturday,18,109,19,2020-04-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20417,21513,GO-20171893298,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,8,2017-10-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20418,21558,GO-20209016163,THEFT UNDER,2020-06-22,2020,June,Monday,22,174,12,2020-06-25,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20419,21566,GO-20209017880,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,17,2020-07-18,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20420,21571,GO-20209019041,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,21,2020-07-30,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20421,21592,GO-20142683897,THEFT UNDER,2014-08-08,2014,August,Friday,8,220,16,2014-08-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20422,21599,GO-20149007350,THEFT UNDER,2014-10-01,2014,October,Wednesday,1,274,23,2014-10-02,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20423,3261,GO-20189027129,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,0,2018-08-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20424,21610,GO-2015877499,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,15,2015-05-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20425,7488,GO-20209026746,THEFT UNDER,2020-10-16,2020,October,Friday,16,290,17,2020-10-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20426,18328,GO-20149003504,THEFT UNDER,2014-05-21,2014,May,Wednesday,21,141,21,2014-05-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20427,21110,GO-20209007035,THEFT UNDER,2020-02-26,2020,February,Wednesday,26,57,10,2020-02-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20428,24410,GO-20209028317,THEFT UNDER,2020-10-14,2020,October,Wednesday,14,288,0,2020-11-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20429,21625,GO-20151790609,THEFT UNDER,2015-10-17,2015,October,Saturday,17,290,10,2015-10-17,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20430,21631,GO-20169000041,THEFT UNDER,2016-01-01,2016,January,Friday,1,1,22,2016-01-02,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20431,21636,GO-2016473492,THEFT UNDER,2016-01-20,2016,January,Wednesday,20,20,0,2016-03-19,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20432,21643,GO-20161047422,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,22,2016-06-16,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20433,21659,GO-20161924652,THEFT UNDER - BICYCLE,2016-10-29,2016,October,Saturday,29,303,16,2016-10-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20434,21660,GO-201776594,B&E W'INTENT,2016-10-02,2016,October,Sunday,2,276,12,2017-01-13,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20435,21694,GO-20189007007,THEFT UNDER,2018-03-04,2018,March,Sunday,4,63,17,2018-03-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20436,21698,GO-20181033741,B&E W'INTENT,2018-06-07,2018,June,Thursday,7,158,1,2018-06-07,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20437,21699,GO-20181033741,B&E W'INTENT,2018-06-07,2018,June,Thursday,7,158,1,2018-06-07,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20438,21719,GO-20189035445,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,14,2018-10-24,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20439,21720,GO-20189035445,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,14,2018-10-24,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20440,21738,GO-20191074910,THEFT FROM MOTOR VEHICLE OVER,2019-06-11,2019,June,Tuesday,11,162,2,2019-06-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20441,21750,GO-20199025534,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,21,2019-08-09,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20442,21780,GO-20209013637,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,17,2020-05-21,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20443,21992,GO-20202290596,THEFT UNDER - BICYCLE,2020-12-03,2020,December,Thursday,3,338,14,2020-12-06,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20444,24412,GO-20209030212,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,14,2020-11-21,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20445,24984,GO-20141669575,B&E,2014-02-23,2014,February,Sunday,23,54,15,2014-03-09,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20446,24987,GO-20149003665,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,23,2014-05-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20447,25037,GO-2016151277,THEFT UNDER,2016-01-25,2016,January,Monday,25,25,16,2016-01-26,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20448,25045,GO-20169003720,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,16,2016-04-22,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20449,25049,GO-20169006409,THEFT UNDER - BICYCLE,2016-06-24,2016,June,Friday,24,176,10,2016-06-27,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20450,25065,GO-20169013528,THEFT UNDER,2016-08-17,2016,August,Wednesday,17,230,14,2016-11-17,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20451,25070,GO-2017357702,THEFT UNDER - BICYCLE,2017-02-25,2017,February,Saturday,25,56,22,2017-02-26,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20452,25076,GO-20179004974,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,22,2017-04-20,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20453,25102,GO-20179016175,THEFT UNDER - BICYCLE,2017-09-29,2017,September,Friday,29,272,21,2017-09-30,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20454,25150,GO-20199025717,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,21,2019-08-11,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20455,25324,GO-20181080460,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,14,2018-06-14,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20456,25339,GO-2019344269,THEFT UNDER - BICYCLE,2019-02-22,2019,February,Friday,22,53,15,2019-02-23,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20457,25380,GO-20209018868,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,3,2020-07-29,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)}",Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -20458,7489,GO-20209026764,B&E,2020-10-09,2020,October,Friday,9,283,14,2020-10-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20459,7523,GO-20202004528,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,19,2020-10-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20460,7528,GO-20209027372,THEFT UNDER,2020-10-20,2020,October,Tuesday,20,294,7,2020-10-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20461,7555,GO-20202040541,B&E,2020-10-21,2020,October,Wednesday,21,295,22,2020-10-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20462,1604,GO-20179016630,THEFT UNDER,2017-10-06,2017,October,Friday,6,279,5,2017-10-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20463,7564,GO-20202047930,THEFT UNDER - BICYCLE,2020-10-27,2020,October,Tuesday,27,301,15,2020-10-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20464,7676,GO-20209030841,THEFT UNDER,2020-11-27,2020,November,Friday,27,332,20,2020-11-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20465,7699,GO-20209031776,THEFT UNDER,2020-12-11,2020,December,Friday,11,346,12,2020-12-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20466,7757,GO-20149000997,THEFT UNDER,2014-01-27,2014,January,Monday,27,27,9,2014-02-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20467,7769,GO-20141620477,B&E,2014-02-23,2014,February,Sunday,23,54,14,2014-03-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20468,7770,GO-20141620477,B&E,2014-02-23,2014,February,Sunday,23,54,14,2014-03-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20469,7771,GO-20141620477,B&E,2014-02-23,2014,February,Sunday,23,54,14,2014-03-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20470,7823,GO-20141858170,FRAUD UNDER,2013-10-09,2013,October,Wednesday,9,282,10,2014-04-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20471,7850,GO-20149002956,THEFT UNDER,2014-04-19,2014,April,Saturday,19,109,19,2014-04-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20472,7855,GO-20149002961,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,16,2014-04-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20473,7864,GO-20141961364,MISCHIEF UNDER,2014-04-25,2014,April,Friday,25,115,22,2014-04-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20474,7881,GO-20142008850,THEFT UNDER,2014-05-03,2014,May,Saturday,3,123,9,2014-05-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20475,7943,GO-20142109153,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,17,2014-05-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20476,8059,GO-20142222713,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,13,2014-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20477,8219,GO-20142360644,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,20,2014-06-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20478,8234,GO-20149004395,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,11,2014-06-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20479,8336,GO-20149004671,THEFT UNDER,2014-06-21,2014,June,Saturday,21,172,1,2014-07-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20480,8401,GO-20149004927,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,19,2014-07-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20481,8403,GO-20149004932,THEFT UNDER,2014-07-12,2014,July,Saturday,12,193,14,2014-07-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20482,8460,GO-20149005150,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,22,2014-07-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20483,8474,GO-20142557649,THEFT UNDER - SHOPLIFTING,2014-07-20,2014,July,Sunday,20,201,16,2014-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20484,8478,GO-20149005202,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,0,2014-07-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20485,24620,GO-20149004832,THEFT UNDER,2014-07-08,2014,July,Tuesday,8,189,23,2014-07-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20486,8525,GO-20149005368,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,21,2014-07-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20487,8558,GO-20142633523,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,0,2014-08-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20488,8570,GO-20149005568,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,0,2014-08-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20489,8613,GO-20149005706,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,16,2014-08-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20490,8663,GO-20149005958,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,22,2014-08-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20491,7742,GO-20141324363,THEFT UNDER,2014-01-11,2014,January,Saturday,11,11,7,2014-01-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20492,8696,GO-20149006118,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,10,2014-08-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20493,8735,GO-20149006298,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,9,2014-08-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20494,8798,GO-20149006531,THEFT UNDER,2012-08-26,2012,August,Sunday,26,239,14,2014-09-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20495,8819,GO-20149006592,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,20,2014-09-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20496,8924,GO-20149007020,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,8,2014-09-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20497,8975,GO-20142983477,THEFT UNDER,2014-09-25,2014,September,Thursday,25,268,19,2014-09-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20498,9068,GO-20143110024,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,7,2014-10-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20499,7743,GO-20141324363,THEFT UNDER,2014-01-11,2014,January,Saturday,11,11,7,2014-01-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20500,9118,GO-20149007839,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,10,2014-10-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20501,9121,GO-20143190713,THEFT UNDER,2014-10-27,2014,October,Monday,27,300,19,2014-10-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20502,9174,GO-20149008162,THEFT UNDER,2014-11-12,2014,November,Wednesday,12,316,2,2014-11-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20503,9190,GO-20143304781,THEFT UNDER,2014-11-14,2014,November,Friday,14,318,19,2014-11-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20504,9219,GO-20149008600,THEFT UNDER,2014-11-27,2014,November,Thursday,27,331,13,2014-12-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20505,9227,GO-20149008693,THEFT UNDER,2014-12-10,2014,December,Wednesday,10,344,8,2014-12-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20506,9228,GO-20149008693,THEFT UNDER,2014-12-10,2014,December,Wednesday,10,344,8,2014-12-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20507,9240,GO-20143549179,THEFT UNDER,2014-12-15,2014,December,Monday,15,349,16,2014-12-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20508,9348,GO-20159001521,THEFT UNDER,2015-03-24,2015,March,Tuesday,24,83,19,2015-03-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20509,21135,GO-2020914111,B&E,2020-05-16,2020,May,Saturday,16,137,17,2020-05-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20510,9390,GO-20159001835,THEFT UNDER,2015-04-04,2015,April,Saturday,4,94,12,2015-04-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20511,9500,GO-2015721592,FTC PROBATION ORDER,2015-05-01,2015,May,Friday,1,121,12,2015-05-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20512,9581,GO-20159002733,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,13,2015-05-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20513,9597,GO-2015811354,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,17,2015-05-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20514,9619,GO-20159002965,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,10,2015-05-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20515,9622,GO-20159002967,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,3,2015-05-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20516,9624,GO-2015845507,THEFT UNDER,2015-05-20,2015,May,Wednesday,20,140,6,2015-05-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20517,9729,GO-2015936678,THEFT UNDER,2015-05-13,2015,May,Wednesday,13,133,8,2015-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20518,9778,GO-20159003521,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,19,2015-06-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20519,9923,GO-20159004109,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,23,2015-07-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20520,9926,GO-20159004131,THEFT UNDER,2015-07-01,2015,July,Wednesday,1,182,14,2015-07-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20521,9930,GO-20159004143,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,13,2015-07-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20522,9962,GO-20151154090,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,23,2015-07-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20523,9977,GO-20151161983,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,10,2015-07-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20524,10054,GO-20159004722,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,16,2015-07-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20525,11991,GO-20169008197,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,2,2016-08-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20526,10079,GO-20151247873,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,21,2015-07-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20527,10139,GO-20159005147,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,8,2015-07-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20528,10157,GO-20151298212,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,17,2015-07-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20529,10297,GO-20151412763,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,21,2015-08-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20530,10395,GO-20151545576,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,21,2015-09-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20531,10403,GO-20151554864,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,4,2015-09-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20532,10512,GO-20151637443,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,22,2015-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20533,10534,GO-20159007654,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,2,2015-09-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20534,10588,GO-20159008152,THEFT UNDER,2015-10-04,2015,October,Sunday,4,277,23,2015-10-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20535,10592,GO-20159008224,THEFT UNDER,2015-10-04,2015,October,Sunday,4,277,2,2015-10-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20536,10622,GO-20159008470,THEFT UNDER,2015-10-12,2015,October,Monday,12,285,12,2015-10-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20537,10685,GO-20159009004,THEFT UNDER,2015-10-24,2015,October,Saturday,24,297,17,2015-10-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20538,10721,GO-20151885296,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,21,2015-11-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20539,10734,GO-20159009494,THEFT UNDER,2015-11-07,2015,November,Saturday,7,311,0,2015-11-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20540,10810,GO-20159010156,THEFT UNDER,2015-11-24,2015,November,Tuesday,24,328,0,2015-11-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20541,10818,GO-20152030307,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,12,2015-11-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20542,10889,GO-20152218654,THEFT UNDER,2015-12-27,2015,December,Sunday,27,361,23,2015-12-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20543,11000,GO-20169001578,THEFT UNDER,2016-02-15,2016,February,Monday,15,46,14,2016-02-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20544,11086,GO-2016540948,THEFT UNDER - BICYCLE,2016-03-30,2016,March,Wednesday,30,90,8,2016-03-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20545,11119,GO-2016598498,THEFT UNDER - BICYCLE,2016-04-07,2016,April,Thursday,7,98,16,2016-04-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20546,11141,GO-20169003456,THEFT UNDER - BICYCLE,2016-04-16,2016,April,Saturday,16,107,11,2016-04-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20547,11206,GO-2016712141,THEFT UNDER - BICYCLE,2016-04-09,2016,April,Saturday,9,100,22,2016-04-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20548,11207,GO-2016712141,THEFT UNDER - BICYCLE,2016-04-09,2016,April,Saturday,9,100,22,2016-04-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20549,11301,GO-20169004477,THEFT UNDER - BICYCLE,2016-05-11,2016,May,Wednesday,11,132,9,2016-05-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20550,11307,GO-20169004510,THEFT UNDER,2016-05-13,2016,May,Friday,13,134,18,2016-05-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20551,11330,GO-20169004687,THEFT UNDER,2016-05-18,2016,May,Wednesday,18,139,16,2016-05-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20552,11334,GO-20169004704,THEFT UNDER,2016-05-19,2016,May,Thursday,19,140,0,2016-05-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20553,11357,GO-20169004847,THEFT UNDER,2016-05-22,2016,May,Sunday,22,143,20,2016-05-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20554,11557,GO-20169005876,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,9,2016-06-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20555,11623,GO-20169006278,THEFT UNDER,2016-06-23,2016,June,Thursday,23,175,18,2016-06-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20556,11657,GO-20169006482,THEFT UNDER,2016-06-27,2016,June,Monday,27,179,14,2016-06-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20557,11705,GO-20161167966,THEFT OF EBIKE UNDER $5000,2016-07-04,2016,July,Monday,4,186,6,2016-07-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20558,18430,GO-20151236825,ROBBERY - OTHER,2015-07-20,2015,July,Monday,20,201,17,2015-07-20,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20559,3286,GO-20189027446,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,9,2018-08-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20560,3296,GO-20181558968,THEFT UNDER,2018-08-23,2018,August,Thursday,23,235,13,2018-08-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20561,3329,GO-20181584756,B&E,2018-08-18,2018,August,Saturday,18,230,2,2018-08-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20562,3435,GO-20189029848,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,0,2018-09-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20563,3436,GO-20189029848,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,0,2018-09-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20564,3556,GO-20181773171,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,23,2018-09-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20565,3638,GO-20189033238,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,12,2018-10-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20566,3736,GO-20189034904,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,23,2018-10-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20567,3760,GO-20189035496,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,11,2018-10-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20568,3770,GO-20181962981,B&E,2018-10-18,2018,October,Thursday,18,291,6,2018-10-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20569,3771,GO-20189035801,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,17,2018-10-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20570,3772,GO-20189035809,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,22,2018-10-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20571,3778,GO-20189036008,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,21,2018-10-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20572,3779,GO-20189036037,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,21,2018-10-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20573,3799,GO-20189036456,THEFT UNDER - BICYCLE,2018-10-31,2018,October,Wednesday,31,304,1,2018-11-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20574,3842,GO-20189037799,THEFT UNDER - BICYCLE,2018-11-10,2018,November,Saturday,10,314,9,2018-11-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20575,3953,GO-20182341658,B&E,2018-12-22,2018,December,Saturday,22,356,2,2018-12-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20576,3954,GO-20182341658,B&E,2018-12-22,2018,December,Saturday,22,356,2,2018-12-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20577,3955,GO-20182341658,B&E,2018-12-22,2018,December,Saturday,22,356,2,2018-12-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20578,3957,GO-20182347500,B&E,2018-12-22,2018,December,Saturday,22,356,22,2018-12-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20579,3962,GO-20182371705,THEFT UNDER,2018-12-28,2018,December,Friday,28,362,0,2018-12-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20580,3963,GO-20182371705,THEFT UNDER,2018-12-28,2018,December,Friday,28,362,0,2018-12-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20581,4002,GO-201972015,B&E,2019-01-10,2019,January,Thursday,10,10,7,2019-01-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20582,4056,GO-2019320790,THEFT UNDER,2019-02-20,2019,February,Wednesday,20,51,0,2019-02-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20583,4057,GO-20199005990,THEFT UNDER - BICYCLE,2019-02-14,2019,February,Thursday,14,45,8,2019-02-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20584,4065,GO-20199006421,THEFT UNDER - BICYCLE,2019-02-20,2019,February,Wednesday,20,51,21,2019-02-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20585,4105,GO-20199009479,THEFT UNDER - BICYCLE,2019-03-23,2019,March,Saturday,23,82,22,2019-03-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20586,4110,GO-20199009757,THEFT UNDER,2019-03-26,2019,March,Tuesday,26,85,11,2019-03-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20587,4162,GO-2019668724,THEFT UNDER,2019-04-07,2019,April,Sunday,7,97,23,2019-04-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20588,4211,GO-20199013349,THEFT UNDER - BICYCLE,2019-04-28,2019,April,Sunday,28,118,9,2019-04-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20589,4235,GO-20199014013,THEFT UNDER - BICYCLE,2019-04-21,2019,April,Sunday,21,111,20,2019-05-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20590,4239,GO-20199014077,THEFT UNDER,2019-05-01,2019,May,Wednesday,1,121,10,2019-05-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20591,4245,GO-20199014232,THEFT UNDER,2019-05-06,2019,May,Monday,6,126,21,2019-05-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20592,4369,GO-20199016681,THEFT UNDER - BICYCLE,2019-05-28,2019,May,Tuesday,28,148,8,2019-05-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20593,4447,GO-20199018062,THEFT UNDER,2019-05-26,2019,May,Sunday,26,146,20,2019-06-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20594,4471,GO-20199018397,THEFT UNDER - BICYCLE,2019-05-01,2019,May,Wednesday,1,121,19,2019-06-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20595,4558,GO-20199019409,THEFT UNDER - BICYCLE,2019-06-11,2019,June,Tuesday,11,162,20,2019-06-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20596,4579,GO-20191159080,THEFT UNDER - BICYCLE,2019-06-22,2019,June,Saturday,22,173,0,2019-06-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20597,4620,GO-20199020245,THEFT UNDER,2019-06-26,2019,June,Wednesday,26,177,19,2019-06-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20598,4622,GO-20199020266,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,3,2019-06-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20599,4666,GO-20191241815,B&E,2019-07-04,2019,July,Thursday,4,185,1,2019-07-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20600,4681,GO-20199021205,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,18,2019-07-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20601,12003,GO-20161379174,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,14,2016-08-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20602,4682,GO-20199021211,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,17,2019-07-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20603,4704,GO-20199021440,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,17,2019-07-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20604,4709,GO-20199021525,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,16,2019-07-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20605,4740,GO-20199021763,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,18,2019-07-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20606,4771,GO-20199022297,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,10,2019-07-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20607,4817,GO-20191360421,B&E,2019-07-20,2019,July,Saturday,20,201,1,2019-07-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20608,4818,GO-20191360421,B&E,2019-07-20,2019,July,Saturday,20,201,1,2019-07-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20609,4819,GO-20191360421,B&E,2019-07-20,2019,July,Saturday,20,201,1,2019-07-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20610,4884,GO-20191404378,B&E,2019-07-25,2019,July,Thursday,25,206,20,2019-07-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20611,4885,GO-20191404378,B&E,2019-07-25,2019,July,Thursday,25,206,20,2019-07-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20612,4886,GO-20191404378,B&E,2019-07-25,2019,July,Thursday,25,206,20,2019-07-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20613,5002,GO-20191497984,B&E,2019-06-22,2019,June,Saturday,22,173,19,2019-08-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20614,5183,GO-20199028034,THEFT UNDER - BICYCLE,2019-08-18,2019,August,Sunday,18,230,14,2019-08-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20615,5226,GO-20191691989,B&E,2019-08-09,2019,August,Friday,9,221,14,2019-09-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20616,5227,GO-20191691989,B&E,2019-08-09,2019,August,Friday,9,221,14,2019-09-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20617,5296,GO-20199029588,THEFT UNDER,2019-09-10,2019,September,Tuesday,10,253,21,2019-09-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20618,21149,GO-20209015818,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,16,2020-06-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20619,24622,GO-20149004898,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,20,2014-07-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20620,21476,GO-2017752262,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,10,2017-04-29,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20621,5300,GO-20199029184,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,3,2019-09-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20622,5345,GO-20191784396,THEFT OF EBIKE UNDER $5000,2019-09-17,2019,September,Tuesday,17,260,4,2019-09-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20623,5356,GO-20199030410,THEFT UNDER,2019-09-17,2019,September,Tuesday,17,260,0,2019-09-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20624,5379,GO-20199031107,THEFT UNDER,2019-09-20,2019,September,Friday,20,263,10,2019-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20625,5390,GO-20191824314,THEFT OF EBIKE UNDER $5000,2019-09-21,2019,September,Saturday,21,264,23,2019-09-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20626,5499,GO-20199033372,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,18,2019-10-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20627,5500,GO-20199033372,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,18,2019-10-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20628,5640,GO-20199036346,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,17,2019-11-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20629,5641,GO-20199036346,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,17,2019-11-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20630,5679,GO-20199037124,THEFT UNDER - BICYCLE,2019-08-09,2019,August,Friday,9,221,21,2019-11-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20631,5696,GO-20192221413,B&E,2019-11-14,2019,November,Thursday,14,318,16,2019-11-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20632,5718,GO-20199038385,THEFT UNDER,2019-11-21,2019,November,Thursday,21,325,11,2019-11-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20633,5739,GO-20199039483,THEFT UNDER,2019-11-11,2019,November,Monday,11,315,17,2019-12-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20634,5749,GO-20199040010,THEFT UNDER,2019-12-06,2019,December,Friday,6,340,0,2019-12-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20635,5873,GO-2020243324,THEFT UNDER,2020-02-02,2020,February,Sunday,2,33,5,2020-02-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20636,5893,GO-20209005352,THEFT UNDER,2019-11-13,2019,November,Wednesday,13,317,14,2020-02-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20637,5904,GO-2020304313,B&E,2020-02-07,2020,February,Friday,7,38,10,2020-02-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20638,5912,GO-20209006119,THEFT UNDER,2020-02-14,2020,February,Friday,14,45,18,2020-02-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20639,6006,GO-20209010211,THEFT UNDER,2020-03-31,2020,March,Tuesday,31,91,4,2020-03-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20640,6095,GO-20209011816,THEFT UNDER,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20641,6158,GO-2020867796,THEFT UNDER - BICYCLE,2020-02-21,2020,February,Friday,21,52,6,2020-05-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20642,6174,GO-2020888267,PROPERTY - FOUND,2020-05-13,2020,May,Wednesday,13,134,10,2020-05-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20643,6209,GO-2020925318,THEFT UNDER - BICYCLE,2020-05-13,2020,May,Wednesday,13,134,23,2020-05-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20644,6228,GO-20209013704,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,19,2020-05-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20645,6362,GO-20209015132,THEFT UNDER,2020-06-11,2020,June,Thursday,11,163,12,2020-06-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20646,6424,GO-20201111123,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,1,2020-06-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20647,6607,GO-20209017420,THEFT UNDER,2020-07-10,2020,July,Friday,10,192,19,2020-07-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20648,6692,GO-20209018148,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,9,2020-07-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20649,6703,GO-20209018236,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,1,2020-07-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20650,6707,GO-20209018236,THEFT UNDER,2020-07-22,2020,July,Wednesday,22,204,1,2020-07-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20651,6708,GO-20209018148,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,9,2020-07-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20652,6759,GO-20209018686,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,0,2020-07-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20653,7153,GO-20201654376,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,14,2020-09-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20654,7186,GO-20209022446,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,4,2020-09-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20655,7250,GO-20209023271,B&E,2020-09-14,2020,September,Monday,14,258,7,2020-09-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20656,7307,GO-20201769156,POSSESSION PROPERTY OBC UNDER,2020-09-18,2020,September,Friday,18,262,9,2020-09-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20657,21500,GO-20179008298,THEFT UNDER - BICYCLE,2017-06-08,2017,June,Thursday,8,159,11,2017-06-17,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20658,21532,GO-20189043173,THEFT UNDER - BICYCLE,2018-12-23,2018,December,Sunday,23,357,19,2018-12-24,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20659,21534,GO-20199009080,THEFT UNDER - BICYCLE,2019-03-15,2019,March,Friday,15,74,15,2019-03-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20660,21536,GO-20191022780,THEFT UNDER - BICYCLE,2019-06-02,2019,June,Sunday,2,153,11,2019-06-05,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20661,21541,GO-20199020742,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,0,2019-07-02,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20662,21556,GO-20209015280,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,18,2020-06-13,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20663,21869,GO-20159003297,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,23,2015-06-03,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20664,21973,GO-20209021632,FTC WITH CONDITIONS,2020-08-27,2020,August,Thursday,27,240,21,2020-08-28,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20665,24654,GO-20149006880,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,12,2014-09-14,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20666,24664,GO-20143065315,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,15,2014-10-08,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20667,24753,GO-20151568974,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,16,2015-09-11,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20668,24782,GO-20169002430,THEFT UNDER - BICYCLE,2016-03-17,2016,March,Thursday,17,77,9,2016-03-17,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20669,25262,GO-20161680339,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,11,2016-09-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20670,25313,GO-20171467214,THEFT UNDER - BICYCLE,2017-08-09,2017,August,Wednesday,9,221,13,2017-08-14,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20671,25317,GO-20171655280,THEFT UNDER - BICYCLE,2017-09-07,2017,September,Thursday,7,250,15,2017-09-12,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20672,25318,GO-20171760261,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,9,2017-09-28,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20673,25341,GO-20199015803,THEFT UNDER - BICYCLE,2019-05-18,2019,May,Saturday,18,138,23,2019-05-21,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20674,25352,GO-20199027652,THEFT UNDER - BICYCLE,2019-08-20,2019,August,Tuesday,20,232,19,2019-08-25,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20675,25368,GO-20209009394,THEFT UNDER,2020-03-19,2020,March,Thursday,19,79,18,2020-03-19,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20676,1640,GO-20179016945,THEFT UNDER - BICYCLE,2017-10-11,2017,October,Wednesday,11,284,8,2017-10-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20677,25370,GO-20201029824,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,23,2020-06-04,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)}",Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -20678,78,GO-2017195047,THEFT UNDER - BICYCLE,2016-12-15,2016,December,Thursday,15,350,12,2017-01-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20679,111,GO-2017357834,B&E,2017-02-26,2017,February,Sunday,26,57,15,2017-02-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20680,116,GO-20179002559,THEFT UNDER - BICYCLE,2017-02-25,2017,February,Saturday,25,56,3,2017-02-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20681,130,GO-2017396575,FTC PROBATION ORDER,2017-03-04,2017,March,Saturday,4,63,0,2017-03-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20682,131,GO-2017396575,FTC PROBATION ORDER,2017-03-04,2017,March,Saturday,4,63,0,2017-03-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20683,132,GO-2017396575,FTC PROBATION ORDER,2017-03-04,2017,March,Saturday,4,63,0,2017-03-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20684,158,GO-2017481065,THEFT UNDER - BICYCLE,2017-02-17,2017,February,Friday,17,48,0,2017-03-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20685,175,GO-20179003870,THEFT UNDER - BICYCLE,2017-03-24,2017,March,Friday,24,83,16,2017-03-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20686,200,GO-2017601313,THEFT OVER,2017-04-05,2017,April,Wednesday,5,95,13,2017-04-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20687,253,GO-2017695816,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,19,2017-04-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20688,264,GO-20179005114,THEFT UNDER,2017-04-23,2017,April,Sunday,23,113,12,2017-04-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20689,267,GO-20179005139,THEFT UNDER,2017-04-17,2017,April,Monday,17,107,1,2017-04-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20690,288,GO-20179005344,THEFT UNDER - BICYCLE,2017-04-26,2017,April,Wednesday,26,116,5,2017-04-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20691,344,GO-20179005963,B&E,2017-05-08,2017,May,Monday,8,128,19,2017-05-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20692,345,GO-20179005963,B&E,2017-05-08,2017,May,Monday,8,128,19,2017-05-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20693,363,GO-20179006118,THEFT UNDER - BICYCLE,2017-05-07,2017,May,Sunday,7,127,13,2017-05-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20694,380,GO-20179006245,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,23,2017-05-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20695,423,GO-20179006630,THEFT UNDER - BICYCLE,2017-05-18,2017,May,Thursday,18,138,16,2017-05-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20696,437,GO-20179006764,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,21,2017-05-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20697,456,GO-20179006846,THEFT OF EBIKE UNDER $5000,2017-05-22,2017,May,Monday,22,142,8,2017-05-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20698,530,GO-2017988722,B&E,2017-06-03,2017,June,Saturday,3,154,22,2017-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20699,531,GO-2017988722,B&E,2017-06-03,2017,June,Saturday,3,154,22,2017-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20700,554,GO-20179007644,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,1,2017-06-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20701,577,GO-20179007871,THEFT UNDER - BICYCLE,2017-06-09,2017,June,Friday,9,160,20,2017-06-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20702,598,GO-2017105009,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,8,2017-06-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20703,627,GO-20171058075,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,16,2017-06-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20704,634,GO-20171084404,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,3,2017-06-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20705,724,GO-20179008958,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,2,2017-06-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20706,758,GO-20179009276,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,9,2017-07-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20707,773,GO-20179009382,THEFT UNDER,2017-06-25,2017,June,Sunday,25,176,21,2017-07-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20708,820,GO-20179009900,THEFT UNDER,2017-07-03,2017,July,Monday,3,184,20,2017-07-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20709,821,GO-20179009900,THEFT UNDER,2017-07-03,2017,July,Monday,3,184,20,2017-07-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20710,833,GO-20179009990,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,16,2017-07-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20711,857,GO-20171269529,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,11,2017-07-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20712,938,GO-20179010725,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,0,2017-07-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20713,975,GO-20179011050,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,7,2017-07-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20714,1029,GO-20179011476,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,18,2017-08-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20715,1053,GO-20179011700,THEFT UNDER - BICYCLE,2017-08-03,2017,August,Thursday,3,215,22,2017-08-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20716,1094,GO-20179011982,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,1,2017-08-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20717,1395,GO-20179014682,THEFT UNDER - BICYCLE,2017-09-11,2017,September,Monday,11,254,20,2017-09-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20718,1550,GO-20179016077,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,22,2017-09-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20719,1609,GO-20179016682,THEFT UNDER - BICYCLE,2017-10-07,2017,October,Saturday,7,280,2,2017-10-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20720,1627,GO-20179016853,THEFT UNDER,2017-10-09,2017,October,Monday,9,282,12,2017-10-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20721,1641,GO-20179016935,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,5,2017-10-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20722,1782,GO-20179018716,THEFT UNDER - BICYCLE,2017-10-31,2017,October,Tuesday,31,304,21,2017-11-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20723,1862,GO-20173036421,B&E,2017-11-11,2017,November,Saturday,11,315,23,2017-11-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20724,1876,GO-20179020421,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,1,2017-11-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20725,1893,GO-20179020797,THEFT UNDER - BICYCLE,2017-11-28,2017,November,Tuesday,28,332,7,2017-11-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20726,1894,GO-20179020816,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,19,2017-11-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20727,1918,GO-20173119959,B&E,2017-12-03,2017,December,Sunday,3,337,0,2017-12-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20728,1987,GO-201888756,THEFT UNDER,2018-01-14,2018,January,Sunday,14,14,21,2018-01-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20729,2010,GO-2018179656,B&E,2018-01-23,2018,January,Tuesday,23,23,17,2018-01-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20730,2060,GO-2018385087,THEFT OF MOTOR VEHICLE,2018-02-28,2018,February,Wednesday,28,59,15,2018-03-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20731,2065,GO-20189006907,THEFT UNDER,2017-06-15,2017,June,Thursday,15,166,17,2018-03-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20732,2078,GO-2018475641,THEFT UNDER - BICYCLE,2018-03-13,2018,March,Tuesday,13,72,18,2018-03-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20733,2121,GO-20189010074,THEFT UNDER - BICYCLE,2018-03-31,2018,March,Saturday,31,90,7,2018-03-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20734,21185,GO-20179010492,THEFT UNDER,2017-06-22,2017,June,Thursday,22,173,14,2017-07-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20735,2127,GO-20189010185,B&E,2018-04-02,2018,April,Monday,2,92,7,2018-04-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20736,2128,GO-20189010185,B&E,2018-04-02,2018,April,Monday,2,92,7,2018-04-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20737,2129,GO-20189010212,THEFT UNDER - BICYCLE,2018-04-01,2018,April,Sunday,1,91,22,2018-04-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20738,2134,GO-20189010518,THEFT UNDER - BICYCLE,2018-04-03,2018,April,Tuesday,3,93,17,2018-04-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20739,2187,GO-20189012460,THEFT UNDER,2018-04-21,2018,April,Saturday,21,111,15,2018-04-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20740,2326,GO-20189015167,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,13,2018-05-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20741,2333,GO-2018887752,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,1,2018-05-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20742,2354,GO-2018909581,B&E,2018-05-19,2018,May,Saturday,19,139,12,2018-05-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20743,2450,GO-20189017291,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,20,2018-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20744,2469,GO-20189017371,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,2,2018-06-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20745,2569,GO-20189018737,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,19,2018-06-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20746,2730,GO-20189020929,ASSAULT - RESIST/ PREVENT SEIZ,2018-07-01,2018,July,Sunday,1,182,1,2018-07-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20747,2944,GO-20189023797,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,16,2018-07-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20748,2961,GO-20189023933,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,17,2018-07-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20749,2967,GO-20189023989,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,1,2018-07-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20750,3046,GO-20189024778,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,1,2018-08-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20751,24702,GO-2015894708,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,21,2015-05-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20752,12054,GO-20169008537,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,18,2016-08-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20753,21194,GO-20171378027,THEFT OF EBIKE UNDER $5000,2017-07-30,2017,July,Sunday,30,211,5,2017-07-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20754,21195,GO-20179011564,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,10,2017-08-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20755,21349,GO-20189032339,THEFT UNDER,2018-09-27,2018,September,Thursday,27,270,20,2018-09-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20756,21377,GO-2016998664,THEFT OF EBIKE UNDER $5000,2016-06-08,2016,June,Wednesday,8,160,17,2016-06-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20757,21387,GO-20161110052,THEFT UNDER - BICYCLE,2016-06-25,2016,June,Saturday,25,177,8,2016-06-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20758,21413,GO-20161488459,B&E W'INTENT,2016-08-12,2016,August,Friday,12,225,15,2016-08-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20759,21428,GO-20161675391,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,16,2016-09-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20760,21437,GO-20169012211,THEFT UNDER,2016-10-10,2016,October,Monday,10,284,0,2016-10-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20761,21444,GO-20169013003,THEFT UNDER - BICYCLE,2016-11-03,2016,November,Thursday,3,308,17,2016-11-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20762,21446,GO-20169013304,THEFT UNDER - BICYCLE,2016-11-11,2016,November,Friday,11,316,13,2016-11-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20763,21456,GO-20169014732,THEFT UNDER - BICYCLE,2016-12-16,2016,December,Friday,16,351,15,2016-12-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20764,21467,GO-20179002723,THEFT UNDER - BICYCLE,2016-12-30,2016,December,Friday,30,365,20,2017-03-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20765,21478,GO-2017818304,B&E,2017-05-06,2017,May,Saturday,6,126,17,2017-05-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20766,21492,GO-20179007644,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,1,2017-06-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20767,21499,GO-20171057791,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,22,2017-06-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20768,21527,GO-20189021998,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-07-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20769,21552,GO-2020164267,B&E,2019-12-30,2019,December,Monday,30,364,12,2020-01-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20770,21569,GO-20201368426,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,19,2020-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20771,21572,GO-20209019256,THEFT UNDER,2020-08-03,2020,August,Monday,3,216,6,2020-08-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20772,21574,GO-20149000575,THEFT UNDER,2014-01-09,2014,January,Thursday,9,9,14,2014-01-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20773,21578,GO-20149003582,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,17,2014-05-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20774,21596,GO-20149006739,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,1,2014-09-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20775,21609,GO-20159002788,THEFT UNDER,2015-05-15,2015,May,Friday,15,135,14,2015-05-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20776,21611,GO-2015889266,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,17,2015-05-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20777,21612,GO-2015889266,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,17,2015-05-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20778,21613,GO-20151042421,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,22,2015-06-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20779,21618,GO-20159004531,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,7,2015-07-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20780,21626,GO-20159009219,THEFT UNDER,2015-10-11,2015,October,Sunday,11,284,4,2015-11-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20781,21641,GO-2016724664,THEFT UNDER - BICYCLE,2016-04-14,2016,April,Thursday,14,105,18,2016-04-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20782,7196,GO-20209022525,THEFT UNDER - BICYCLE,2020-09-06,2020,September,Sunday,6,250,23,2020-09-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20783,21642,GO-2016724664,THEFT UNDER - BICYCLE,2016-04-14,2016,April,Thursday,14,105,18,2016-04-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20784,21646,GO-20161095200,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,3,2016-06-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20785,21652,GO-20169009161,THEFT UNDER,2016-08-18,2016,August,Thursday,18,231,19,2016-08-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20786,21655,GO-20169011203,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,22,2016-09-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20787,21669,GO-20179005937,THEFT UNDER - BICYCLE,2017-05-01,2017,May,Monday,1,121,19,2017-05-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20788,21670,GO-20179006216,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,23,2017-05-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20789,21674,GO-20179008819,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,17,2017-06-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20790,21690,GO-20179020569,THEFT UNDER - BICYCLE,2017-11-25,2017,November,Saturday,25,329,2,2017-11-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20791,21693,GO-20189001128,THEFT UNDER - BICYCLE,2018-01-11,2018,January,Thursday,11,11,12,2018-01-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20792,21696,GO-2018719738,THEFT UNDER,2018-04-21,2018,April,Saturday,21,111,23,2018-04-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20793,21700,GO-20189017746,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,12,2018-06-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20794,21718,GO-20189032086,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,20,2018-09-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20795,21721,GO-20189040567,THEFT UNDER - BICYCLE,2018-12-02,2018,December,Sunday,2,336,19,2018-12-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20796,21727,GO-20199011673,THEFT UNDER,2019-04-11,2019,April,Thursday,11,101,20,2019-04-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20797,21728,GO-20199014524,THEFT UNDER,2019-05-09,2019,May,Thursday,9,129,2,2019-05-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20798,21737,GO-20199017284,THEFT UNDER,2019-06-03,2019,June,Monday,3,154,16,2019-06-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20799,21753,GO-20199026275,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,6,2019-08-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20800,21754,GO-20199026275,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,6,2019-08-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20801,21769,GO-2020113190,THEFT UNDER,2019-10-15,2019,October,Tuesday,15,288,0,2020-01-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20802,21771,GO-20209010833,THEFT UNDER,2020-04-06,2020,April,Monday,6,97,20,2020-04-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20803,21776,GO-20209012811,THEFT UNDER,2020-05-09,2020,May,Saturday,9,130,20,2020-05-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20804,21777,GO-20209012811,THEFT UNDER,2020-05-09,2020,May,Saturday,9,130,20,2020-05-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20805,21779,GO-2020937458,THEFT UNDER - BICYCLE,2020-05-19,2020,May,Tuesday,19,140,8,2020-05-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20806,21781,GO-20209013702,THEFT UNDER,2020-05-21,2020,May,Thursday,21,142,22,2020-05-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20807,21783,GO-20201011446,THEFT UNDER - BICYCLE,2020-06-01,2020,June,Monday,1,153,15,2020-06-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20808,21794,GO-20149003046,THEFT UNDER,2014-04-19,2014,April,Saturday,19,109,12,2014-04-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20809,21807,GO-20149004990,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,7,2014-07-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20810,21813,GO-20142628218,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,20,2014-08-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20811,21822,GO-20149006079,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,20,2014-08-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20812,21845,GO-201553386,THEFT UNDER,2015-01-01,2015,January,Thursday,1,1,0,2015-01-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20813,21846,GO-20159000186,THEFT UNDER,2015-01-11,2015,January,Sunday,11,11,17,2015-01-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20814,21867,GO-20159003263,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,0,2015-06-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20815,21871,GO-2015972708,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,13,2015-06-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20816,21893,GO-20151207088,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,8,2015-07-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20817,21906,GO-20159005474,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,12,2015-08-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20818,21907,GO-20159005513,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,12,2015-08-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20819,21920,GO-20159006619,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,16,2015-09-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20820,21929,GO-20159008259,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,23,2015-10-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20821,21933,GO-20151779479,B&E W'INTENT,2015-10-15,2015,October,Thursday,15,288,7,2015-10-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20822,21947,GO-20169002340,THEFT UNDER - BICYCLE,2016-03-06,2016,March,Sunday,6,66,16,2016-03-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20823,21967,GO-20169005011,THEFT UNDER - BICYCLE,2016-05-26,2016,May,Thursday,26,147,9,2016-05-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20824,21969,GO-20201494662,MISCHIEF - INTERFERE W-PROP,2020-08-10,2020,August,Monday,10,223,15,2020-08-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20825,21979,GO-20201844815,THEFT UNDER - BICYCLE,2020-09-16,2020,September,Wednesday,16,260,20,2020-09-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20826,21981,GO-20209024768,THEFT UNDER,2020-09-27,2020,September,Sunday,27,271,21,2020-09-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20827,21984,GO-20201924911,THEFT OF EBIKE UNDER $5000,2020-10-09,2020,October,Friday,9,283,20,2020-10-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20828,21986,GO-20209026727,THEFT UNDER,2020-10-16,2020,October,Friday,16,290,17,2020-10-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20829,21991,GO-20202225150,THEFT UNDER,2020-11-19,2020,November,Thursday,19,324,10,2020-11-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20830,23798,GO-20209016300,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,19,2020-06-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20831,23803,GO-20209016916,THEFT UNDER,2020-07-04,2020,July,Saturday,4,186,21,2020-07-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20832,23859,GO-20209028870,THEFT UNDER,2020-11-04,2020,November,Wednesday,4,309,13,2020-11-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20833,23997,GO-20189036324,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,23,2018-10-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20834,24062,GO-20191330298,B&E W'INTENT,2019-07-05,2019,July,Friday,5,186,23,2019-07-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20835,24067,GO-20199022751,THEFT UNDER,2019-07-17,2019,July,Wednesday,17,198,3,2019-07-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20836,24096,GO-20199028696,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,12,2019-09-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20837,24145,GO-20209002424,THEFT UNDER,2019-11-28,2019,November,Thursday,28,332,22,2020-01-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20838,24200,GO-20171377660,THEFT OF EBIKE UNDER $5000,2017-07-27,2017,July,Thursday,27,208,22,2017-07-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20839,24201,GO-20171405487,THEFT UNDER - BICYCLE,2017-08-04,2017,August,Friday,4,216,20,2017-08-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20840,24265,GO-20179021069,B&E,2017-12-01,2017,December,Friday,1,335,20,2017-12-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20841,24266,GO-20179021069,B&E,2017-12-01,2017,December,Friday,1,335,20,2017-12-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20842,24285,GO-2018488746,B&E,2018-03-17,2018,March,Saturday,17,76,18,2018-03-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20843,24328,GO-20189021084,THEFT UNDER - BICYCLE,2018-07-03,2018,July,Tuesday,3,184,19,2018-07-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20844,24334,GO-20181242649,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,9,2018-07-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20845,12184,GO-20161505319,PROPERTY - FOUND,2016-08-25,2016,August,Thursday,25,238,10,2016-08-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20846,24719,GO-20159004232,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,2,2015-07-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20847,24720,GO-20159004232,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,2,2015-07-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20848,24723,GO-20159004360,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,21,2015-07-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20849,24724,GO-20159004411,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,10,2015-07-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20850,24735,GO-20159005686,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,9,2015-08-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20851,24744,GO-20159006355,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,16,2015-08-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20852,24769,GO-20159009379,THEFT UNDER,2015-11-03,2015,November,Tuesday,3,307,21,2015-11-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20853,25008,GO-2015417179,THEFT UNDER,2015-03-10,2015,March,Tuesday,10,69,22,2015-03-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20854,25024,GO-20151123213,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,16,2015-07-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20855,25028,GO-20159004700,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,1,2015-07-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20856,25034,GO-20151846402,THEFT UNDER,2015-10-26,2015,October,Monday,26,299,15,2015-10-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20857,25042,GO-2016515762,THEFT UNDER - BICYCLE,2016-03-12,2016,March,Saturday,12,72,15,2016-03-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20858,25056,GO-20169009996,THEFT UNDER,2016-09-05,2016,September,Monday,5,249,18,2016-09-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20859,25059,GO-20169010422,THEFT UNDER - BICYCLE,2016-08-11,2016,August,Thursday,11,224,17,2016-09-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20860,25067,GO-20179002086,THEFT UNDER - BICYCLE,2017-02-16,2017,February,Thursday,16,47,19,2017-02-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20861,25069,GO-20179002367,THEFT UNDER,2017-02-22,2017,February,Wednesday,22,53,11,2017-02-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20862,25080,GO-20179005937,THEFT UNDER - BICYCLE,2017-05-01,2017,May,Monday,1,121,19,2017-05-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20863,25087,GO-20179009557,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,9,2017-07-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20864,25088,GO-20179009982,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,20,2017-07-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20865,25090,GO-20179010674,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,4,2017-07-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20866,25093,GO-20179012617,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,8,2017-08-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20867,25110,GO-2018648031,B&E,2018-04-07,2018,April,Saturday,7,97,21,2018-04-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20868,25111,GO-2018648031,B&E,2018-04-07,2018,April,Saturday,7,97,21,2018-04-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20869,25119,GO-20189023483,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,23,2018-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20870,25120,GO-20189023483,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,23,2018-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20871,25121,GO-20189023483,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,23,2018-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20872,25122,GO-20189024792,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,16,2018-08-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20873,25124,GO-20189026721,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,20,2018-08-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20874,25134,GO-20199006299,THEFT UNDER,2019-02-22,2019,February,Friday,22,53,2,2019-02-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20875,25135,GO-20199009573,B&E,2019-03-24,2019,March,Sunday,24,83,1,2019-03-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20876,25146,GO-20191353102,B&E,2019-07-18,2019,July,Thursday,18,199,19,2019-07-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20877,25149,GO-20199025672,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,11,2019-08-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20878,25155,GO-20191808972,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,21,2019-09-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20879,12263,GO-20169009969,THEFT UNDER,2016-09-04,2016,September,Sunday,4,248,23,2016-09-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20880,25156,GO-20191808972,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,21,2019-09-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20881,25157,GO-20191808972,THEFT UNDER,2019-09-05,2019,September,Thursday,5,248,21,2019-09-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20882,25160,GO-20199033469,THEFT UNDER,2019-09-30,2019,September,Monday,30,273,8,2019-10-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20883,25162,GO-20199034884,THEFT UNDER,2019-10-23,2019,October,Wednesday,23,296,6,2019-10-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20884,25163,GO-20192123728,THEFT UNDER - BICYCLE,2019-11-01,2019,November,Friday,1,305,18,2019-11-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20885,25164,GO-20192123728,THEFT UNDER - BICYCLE,2019-11-01,2019,November,Friday,1,305,18,2019-11-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20886,25165,GO-20192123728,THEFT UNDER - BICYCLE,2019-11-01,2019,November,Friday,1,305,18,2019-11-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20887,25166,GO-20199037203,THEFT UNDER,2019-11-08,2019,November,Friday,8,312,0,2019-11-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20888,25168,GO-20192249361,B&E,2019-11-15,2019,November,Friday,15,319,9,2019-11-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20889,25169,GO-20192249361,B&E,2019-11-15,2019,November,Friday,15,319,9,2019-11-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20890,25171,GO-20199042515,THEFT UNDER,2019-12-28,2019,December,Saturday,28,362,9,2019-12-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20891,25174,GO-20209012227,THEFT UNDER,2020-04-20,2020,April,Monday,20,111,0,2020-04-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20892,25175,GO-2020883929,THEFT UNDER,2020-05-11,2020,May,Monday,11,132,17,2020-05-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20893,25176,GO-2020937041,THEFT UNDER - BICYCLE,2020-05-15,2020,May,Friday,15,136,1,2020-05-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20894,25177,GO-20201033875,THEFT UNDER - BICYCLE,2020-06-04,2020,June,Thursday,4,156,22,2020-06-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20895,25178,GO-20201066824,THEFT UNDER - BICYCLE,2020-06-01,2020,June,Monday,1,153,17,2020-06-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20896,25208,GO-20169005876,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,9,2016-06-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20897,25220,GO-20169006573,THEFT UNDER - BICYCLE,2016-06-24,2016,June,Friday,24,176,14,2016-06-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20898,25224,GO-20169006952,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,13,2016-07-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20899,25248,GO-20161485633,THEFT OVER - BICYCLE,2016-08-21,2016,August,Sunday,21,234,19,2016-08-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20900,25254,GO-20169009844,THEFT UNDER,2016-09-01,2016,September,Thursday,1,245,21,2016-09-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20901,25268,GO-20161707626,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,20,2016-09-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20902,25269,GO-20161707626,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,20,2016-09-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20903,25276,GO-20169011929,THEFT UNDER,2016-10-12,2016,October,Wednesday,12,286,11,2016-10-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20904,25293,GO-2017524821,B&E,2017-03-24,2017,March,Friday,24,83,10,2017-03-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20905,25306,GO-2017967569,B&E,2017-05-31,2017,May,Wednesday,31,151,17,2017-06-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20906,25327,GO-20189020929,ASSAULT - RESIST/ PREVENT SEIZ,2018-07-01,2018,July,Sunday,1,182,1,2018-07-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20907,25328,GO-20189022218,THEFT UNDER,2018-07-11,2018,July,Wednesday,11,192,20,2018-07-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20908,25337,GO-20199002406,THEFT UNDER - BICYCLE,2019-01-18,2019,January,Friday,18,18,10,2019-01-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20909,25343,GO-20199021047,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,0,2019-07-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20910,25376,GO-20209017758,THEFT UNDER,2020-07-17,2020,July,Friday,17,199,7,2020-07-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20911,154,GO-20179003137,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,22,2017-03-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20912,177,GO-20179003953,THEFT UNDER,2017-03-27,2017,March,Monday,27,86,21,2017-03-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20913,512,GO-2017968819,THEFT UNDER - BICYCLE,2017-05-30,2017,May,Tuesday,30,150,20,2017-06-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20914,513,GO-2017968819,THEFT UNDER - BICYCLE,2017-05-30,2017,May,Tuesday,30,150,20,2017-06-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20915,1144,GO-20179012347,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,19,2017-08-14,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20916,1408,GO-20171671777,B&E,2017-09-10,2017,September,Sunday,10,253,18,2017-09-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20917,1671,GO-20171882257,THEFT OF EBIKE UNDER $5000,2017-10-17,2017,October,Tuesday,17,290,7,2017-10-17,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20918,1833,GO-20179019505,THEFT UNDER,2017-11-12,2017,November,Sunday,12,316,16,2017-11-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20919,2117,GO-2018564436,THEFT UNDER - BICYCLE,2018-03-28,2018,March,Wednesday,28,87,22,2018-03-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20920,2626,GO-20189019410,THEFT UNDER,2018-06-18,2018,June,Monday,18,169,19,2018-06-19,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20921,2717,GO-20189020698,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,9,2018-06-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20922,3398,GO-20189029237,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,20,2018-09-05,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20923,3454,GO-20189030213,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,14,2018-09-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20924,3764,GO-20189035715,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,21,2018-10-26,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20925,3765,GO-20189035715,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,21,2018-10-26,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20926,4115,GO-2019557302,THEFT UNDER - BICYCLE,2019-03-27,2019,March,Wednesday,27,86,12,2019-03-28,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20927,4209,GO-2019765533,B&E W'INTENT,2019-04-27,2019,April,Saturday,27,117,0,2019-04-28,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20928,4210,GO-2019765533,B&E W'INTENT,2019-04-27,2019,April,Saturday,27,117,0,2019-04-28,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20929,5025,GO-20191520550,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,14,2019-08-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20930,5087,GO-20199026407,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,13,2019-08-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20931,5132,GO-20191592993,B&E,2019-08-17,2019,August,Saturday,17,229,2,2019-08-21,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20932,5152,GO-20191600881,THEFT UNDER - BICYCLE,2019-08-19,2019,August,Monday,19,231,17,2019-08-22,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20933,5350,GO-20191778768,B&E,2019-07-24,2019,July,Wednesday,24,205,18,2019-09-16,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20934,5351,GO-20191778768,B&E,2019-07-24,2019,July,Wednesday,24,205,18,2019-09-16,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20935,5352,GO-20191778768,B&E,2019-07-24,2019,July,Wednesday,24,205,18,2019-09-16,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20936,5469,GO-20199032634,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,2,2019-10-04,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20937,5729,GO-20199039082,THEFT UNDER,2019-11-24,2019,November,Sunday,24,328,14,2019-11-27,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -20938,12380,GO-20161660409,THEFT UNDER,2016-09-15,2016,September,Thursday,15,259,9,2016-09-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20939,12413,GO-20169010824,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,10,2016-09-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20940,12427,GO-20169010920,THEFT UNDER,2016-09-22,2016,September,Thursday,22,266,0,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20941,12456,GO-20161710890,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,21,2016-09-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20942,12474,GO-20169011199,THEFT UNDER,2016-09-27,2016,September,Tuesday,27,271,15,2016-09-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20943,12485,GO-20169011258,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,23,2016-09-28,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20944,12510,GO-20169011327,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,14,2016-09-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20945,12516,GO-20161741631,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,6,2016-09-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20946,12522,GO-20169011401,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,0,2016-10-01,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20947,12529,GO-20161752642,B&E,2016-09-24,2016,September,Saturday,24,268,12,2016-10-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20948,12563,GO-20161777411,THEFT UNDER - BICYCLE,2016-10-05,2016,October,Wednesday,5,279,0,2016-10-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20949,12578,GO-20161797327,B&E,2016-10-09,2016,October,Sunday,9,283,15,2016-10-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20950,12588,GO-20169011829,THEFT UNDER - BICYCLE,2016-10-10,2016,October,Monday,10,284,14,2016-10-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20951,12602,GO-20161797327,B&E,2016-10-09,2016,October,Sunday,9,283,15,2016-10-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20952,12698,GO-20169012738,THEFT UNDER - BICYCLE,2016-10-27,2016,October,Thursday,27,301,5,2016-10-29,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20953,12729,GO-20169013039,THEFT UNDER,2016-11-05,2016,November,Saturday,5,310,3,2016-11-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20954,12737,GO-20169013118,THEFT UNDER - BICYCLE,2016-10-26,2016,October,Wednesday,26,300,17,2016-11-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20955,12740,GO-20161988089,THEFT UNDER - BICYCLE,2016-10-30,2016,October,Sunday,30,304,15,2016-11-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20956,12744,GO-20169013182,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,16,2016-11-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20957,12757,GO-20169013345,THEFT UNDER,2016-11-12,2016,November,Saturday,12,317,17,2016-11-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20958,12758,GO-20169013345,THEFT UNDER,2016-11-12,2016,November,Saturday,12,317,17,2016-11-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20959,12759,GO-20162023604,THEFT UNDER - BICYCLE,2016-11-13,2016,November,Sunday,13,318,20,2016-11-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20960,12760,GO-20162023604,THEFT UNDER - BICYCLE,2016-11-13,2016,November,Sunday,13,318,20,2016-11-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20961,12789,GO-20169013571,THEFT UNDER - BICYCLE,2016-11-12,2016,November,Saturday,12,317,11,2016-11-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20962,12839,GO-20162142434,INCIDENT,2016-12-03,2016,December,Saturday,3,338,2,2016-12-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20963,12857,GO-20161686474,B&E,2016-09-21,2016,September,Wednesday,21,265,23,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20964,12858,GO-20161686474,B&E,2016-09-21,2016,September,Wednesday,21,265,23,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20965,12859,GO-20161686474,B&E,2016-09-21,2016,September,Wednesday,21,265,23,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20966,12860,GO-20161686474,B&E,2016-09-21,2016,September,Wednesday,21,265,23,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20967,12861,GO-20161686474,B&E,2016-09-21,2016,September,Wednesday,21,265,23,2016-09-22,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20968,14275,GO-20209016324,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,0,2020-06-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20969,14276,GO-20209016324,THEFT UNDER,2020-06-26,2020,June,Friday,26,178,0,2020-06-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20970,14330,GO-20209026790,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,1,2020-10-17,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20971,14342,GO-20209030710,THEFT UNDER,2020-11-26,2020,November,Thursday,26,331,15,2020-11-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20972,14467,GO-20189034266,THEFT UNDER - SHOPLIFTING,2018-10-15,2018,October,Monday,15,288,18,2018-10-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20973,14566,GO-20199027407,THEFT UNDER - BICYCLE,2019-08-23,2019,August,Friday,23,235,1,2019-08-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20974,14667,GO-20179009861,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,9,2017-07-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20975,14670,GO-20179010255,THEFT UNDER,2017-07-14,2017,July,Friday,14,195,23,2017-07-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20976,14693,GO-20179012843,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,3,2017-08-20,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20977,14718,GO-20179015082,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,22,2017-09-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20978,14742,GO-20173022276,THEFT OF EBIKE UNDER $5000,2017-11-18,2017,November,Saturday,18,322,14,2017-11-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20979,14744,GO-20179020421,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,1,2017-11-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20980,14763,GO-2018430610,B&E,2018-03-08,2018,March,Thursday,8,67,5,2018-03-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20981,14764,GO-20189008260,THEFT UNDER,2018-03-16,2018,March,Friday,16,75,0,2018-03-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20982,14852,GO-20189027884,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,2,2018-08-25,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20983,14864,GO-20199024973,THEFT UNDER,2019-07-31,2019,July,Wednesday,31,212,0,2019-08-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20984,14868,GO-20199029184,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,3,2019-09-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20985,14869,GO-20199029210,THEFT FROM MOTOR VEHICLE UNDER,2019-09-08,2019,September,Sunday,8,251,17,2019-09-08,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20986,14884,GO-20209017435,THEFT UNDER,2020-07-11,2020,July,Saturday,11,193,0,2020-07-13,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20987,14897,GO-20209023185,THEFT UNDER,2020-09-09,2020,September,Wednesday,9,253,23,2020-09-14,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20988,15051,GO-20149003607,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,17,2014-05-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20989,15061,GO-20149004854,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,20,2014-07-10,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20990,15063,GO-20142556615,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,9,2014-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20991,15064,GO-20149005211,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,22,2014-07-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20992,15079,GO-20159001585,THEFT UNDER,2015-03-27,2015,March,Friday,27,86,12,2015-03-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20993,15087,GO-20159003455,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,0,2015-06-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20994,15100,GO-20159005381,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,22,2015-08-06,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20995,15110,GO-20169001061,THEFT UNDER,2016-01-03,2016,January,Sunday,3,3,20,2016-02-02,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20996,15111,GO-20169001217,THEFT UNDER,2016-01-24,2016,January,Sunday,24,24,12,2016-02-07,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20997,8389,GO-20149004880,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,10,2014-07-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -20998,15117,GO-20169004541,THEFT UNDER - BICYCLE,2016-05-15,2016,May,Sunday,15,136,0,2016-05-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -20999,15120,GO-20169005989,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,21,2016-06-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21000,15121,GO-20169005983,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,1,2016-06-18,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21001,15144,GO-20161683611,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,21,2016-09-21,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21002,15146,GO-20161770444,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,0,2016-10-05,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21003,15150,GO-20161859939,THEFT UNDER - BICYCLE,2016-10-18,2016,October,Tuesday,18,292,11,2016-10-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21004,15152,GO-20169013177,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,7,2016-11-09,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21005,15162,GO-20179003992,THEFT UNDER,2017-03-29,2017,March,Wednesday,29,88,23,2017-03-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21006,15168,GO-2017688333,THEFT UNDER - BICYCLE,2017-04-05,2017,April,Wednesday,5,95,7,2017-04-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21007,15173,GO-20179006905,THEFT FROM MOTOR VEHICLE UNDER,2017-05-21,2017,May,Sunday,21,141,23,2017-05-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21008,15174,GO-20179006905,THEFT FROM MOTOR VEHICLE UNDER,2017-05-21,2017,May,Sunday,21,141,23,2017-05-24,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21009,15176,GO-2017960768,THEFT UNDER,2017-05-31,2017,May,Wednesday,31,151,0,2017-05-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21010,15177,GO-2017960768,THEFT UNDER,2017-05-31,2017,May,Wednesday,31,151,0,2017-05-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21011,15181,GO-20179009998,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,18,2017-07-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21012,15186,GO-20179011616,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,17,2017-08-03,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21013,15195,GO-20179017280,THEFT UNDER,2017-10-14,2017,October,Saturday,14,287,17,2017-10-15,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21014,15199,GO-20171971404,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,1,2017-10-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21015,15202,GO-20179020665,THEFT UNDER - BICYCLE,2017-11-25,2017,November,Saturday,25,329,23,2017-11-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21016,15211,GO-20189009469,THEFT UNDER - BICYCLE,2018-03-25,2018,March,Sunday,25,84,1,2018-03-26,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21017,15215,GO-20189011754,THEFT UNDER - BICYCLE,2018-04-16,2018,April,Monday,16,106,2,2018-04-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21018,15236,GO-20189026631,THEFT UNDER,2018-08-12,2018,August,Sunday,12,224,11,2018-08-16,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21019,15239,GO-20189031065,THEFT UNDER,2018-09-18,2018,September,Tuesday,18,261,20,2018-09-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21020,15240,GO-20181833742,THEFT UNDER - BICYCLE,2018-09-28,2018,September,Friday,28,271,17,2018-10-04,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21021,15241,GO-20189033692,THEFT UNDER - BICYCLE,2018-10-11,2018,October,Thursday,11,284,15,2018-10-11,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21022,15271,GO-20199020272,THEFT UNDER,2019-06-27,2019,June,Thursday,27,178,3,2019-06-27,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21023,15273,GO-20191302382,B&E W'INTENT,2019-07-11,2019,July,Thursday,11,192,22,2019-07-12,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21024,15277,GO-20191354919,B&E,2019-07-18,2019,July,Thursday,18,199,23,2019-07-19,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21025,15279,GO-20199023349,THEFT UNDER - BICYCLE,2019-07-19,2019,July,Friday,19,200,22,2019-07-23,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21026,15298,GO-20209012237,THEFT UNDER,2020-04-27,2020,April,Monday,27,118,15,2020-04-30,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21027,15343,GO-20149005504,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,10,2014-07-31,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)}",Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -21028,7075,GO-20209021322,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,19,2020-08-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21029,7101,GO-20201619983,THEFT OF EBIKE UNDER $5000,2020-08-28,2020,August,Friday,28,241,2,2020-08-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21030,1707,GO-20179017794,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,1,2017-10-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21031,7116,GO-20209021677,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,7,2020-08-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21032,7119,GO-20209021682,THEFT FROM MOTOR VEHICLE UNDER,2020-08-29,2020,August,Saturday,29,242,0,2020-08-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21033,7154,GO-20201650194,THEFT UNDER - BICYCLE,2020-09-01,2020,September,Tuesday,1,245,10,2020-09-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21034,7217,GO-20209022751,THEFT UNDER - BICYCLE,2020-09-09,2020,September,Wednesday,9,253,9,2020-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21035,7218,GO-20209022751,THEFT UNDER - BICYCLE,2020-09-09,2020,September,Wednesday,9,253,9,2020-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21036,7420,GO-20201879684,THEFT OF EBIKE UNDER $5000,2020-09-25,2020,September,Friday,25,269,18,2020-10-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21037,7460,GO-20201952294,THEFT UNDER - BICYCLE,2020-10-11,2020,October,Sunday,11,285,19,2020-10-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21038,7464,GO-20209026363,THEFT UNDER,2020-10-10,2020,October,Saturday,10,284,19,2020-10-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21039,7465,GO-20209026384,THEFT UNDER,2020-10-13,2020,October,Tuesday,13,287,20,2020-10-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21040,7468,GO-20201956918,THEFT UNDER - BICYCLE,2020-10-12,2020,October,Monday,12,286,21,2020-10-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21041,7529,GO-20202007181,THEFT UNDER - BICYCLE,2020-10-21,2020,October,Wednesday,21,295,10,2020-10-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21042,7560,GO-20202045151,B&E,2020-10-27,2020,October,Tuesday,27,301,17,2020-10-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21043,7569,GO-20202058027,B&E,2020-10-29,2020,October,Thursday,29,303,19,2020-10-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21044,7579,GO-20209028318,THEFT UNDER,2020-10-31,2020,October,Saturday,31,305,19,2020-11-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21045,7643,GO-20202176478,THEFT OF EBIKE UNDER $5000,2020-11-12,2020,November,Thursday,12,317,21,2020-11-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21046,7650,GO-20209030199,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,13,2020-11-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21047,7691,GO-20202305812,B&E,2020-12-06,2020,December,Sunday,6,341,22,2020-12-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21048,7703,GO-20209031930,THEFT UNDER,2020-12-13,2020,December,Sunday,13,348,16,2020-12-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21049,7720,GO-20199033630,THEFT FROM MOTOR VEHICLE UNDER,2019-10-11,2019,October,Friday,11,284,8,2019-10-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21050,7787,GO-20141752609,THEFT UNDER,2014-03-23,2014,March,Sunday,23,82,0,2014-03-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21051,7923,GO-20149003322,THEFT UNDER,2014-04-28,2014,April,Monday,28,118,6,2014-05-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21052,7947,GO-20149003461,THEFT UNDER,2014-05-19,2014,May,Monday,19,139,22,2014-05-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21053,7976,GO-20149003581,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,15,2014-05-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21054,7977,GO-20149003581,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,15,2014-05-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21055,7979,GO-20142167489,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,21,2014-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21056,7982,GO-20149003594,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,19,2014-05-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21057,7995,GO-20142168505,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,8,2014-05-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21058,8002,GO-20149003657,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,18,2014-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21059,8022,GO-20142190365,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,21,2014-05-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21060,8068,GO-20142248596,THEFT UNDER - BICYCLE,2014-06-08,2014,June,Sunday,8,159,14,2014-06-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21061,8070,GO-20142248610,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,14,2014-06-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21062,8114,GO-20149003925,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,20,2014-06-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21063,8178,GO-20142332096,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,17,2014-06-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21064,8190,GO-20149004239,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,1,2014-06-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21065,8240,GO-20149004407,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,13,2014-06-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21066,8256,GO-20149004470,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,9,2014-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21067,8288,GO-20149004572,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,13,2014-06-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21068,8294,GO-20142444034,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,14,2014-07-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21069,8314,GO-20149004630,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,22,2014-07-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21070,8348,GO-20142490446,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,12,2014-07-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21071,8349,GO-20149004707,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,16,2014-07-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21072,8359,GO-20149004782,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,8,2014-07-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21073,8381,GO-20142509981,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,14,2014-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21074,8466,GO-20149005166,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,16,2014-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21075,8494,GO-20142543697,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,10,2014-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21076,8539,GO-20149005418,THEFT UNDER,2014-07-26,2014,July,Saturday,26,207,12,2014-07-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21077,8545,GO-20142595399,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,9,2014-07-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21078,8658,GO-20142726107,UNLAWFULLY IN DWELLING-HOUSE,2014-08-18,2014,August,Monday,18,230,12,2014-08-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21079,8748,GO-20149006154,THEFT UNDER,2014-08-21,2014,August,Thursday,21,233,4,2014-08-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21080,8763,GO-20149006371,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,9,2014-08-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21081,8794,GO-20142837936,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,0,2014-09-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21082,8804,GO-20149006534,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,22,2014-08-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21083,8810,GO-20149006567,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,23,2014-09-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21084,8814,GO-20149006570,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,0,2014-09-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21085,8822,GO-20149006612,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,11,2014-09-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21086,8833,GO-20149006654,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,2,2014-09-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21087,8838,GO-20149006669,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,1,2014-09-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21088,8855,GO-20149006728,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,22,2014-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21089,8873,GO-20142889712,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,0,2014-09-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21090,8936,GO-20149007084,THEFT UNDER,2014-09-21,2014,September,Sunday,21,264,12,2014-09-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21091,8940,GO-20142961690,THEFT UNDER,2014-09-22,2014,September,Monday,22,265,8,2014-09-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21092,8974,GO-20142982384,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,23,2014-09-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21093,8979,GO-20149007202,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,18,2014-09-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21094,9024,GO-20149007411,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,13,2014-10-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21095,9085,GO-20143140472,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,8,2014-10-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21096,9097,GO-20143154088,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,8,2014-10-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21097,9114,GO-20149007802,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,22,2014-10-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21098,9146,GO-20143235464,THEFT UNDER,2014-11-03,2014,November,Monday,3,307,21,2014-11-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21099,9147,GO-20143235464,THEFT UNDER,2014-11-03,2014,November,Monday,3,307,21,2014-11-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21100,9160,GO-20143256849,THEFT UNDER,2014-09-15,2014,September,Monday,15,258,9,2014-11-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21101,9171,GO-20143283147,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,13,2014-11-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21102,9181,GO-20149008155,THEFT UNDER,2014-11-11,2014,November,Tuesday,11,315,21,2014-11-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21103,9194,GO-20143326434,THEFT UNDER,2014-11-01,2014,November,Saturday,1,305,10,2014-11-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21104,9197,GO-20143340164,THEFT UNDER,2014-11-20,2014,November,Thursday,20,324,20,2014-11-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21105,9252,GO-20149008555,THEFT UNDER,2014-11-03,2014,November,Monday,3,307,21,2014-12-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21106,9255,GO-201554967,THEFT UNDER,2014-12-05,2014,December,Friday,5,339,9,2015-01-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21107,9300,GO-20159000938,THEFT UNDER,2015-02-13,2015,February,Friday,13,44,11,2015-02-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21108,9301,GO-20159000938,THEFT UNDER,2015-02-13,2015,February,Friday,13,44,11,2015-02-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21109,9377,GO-2015580018,THEFT UNDER,2015-04-07,2015,April,Tuesday,7,97,9,2015-04-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21110,9378,GO-20159001749,THEFT UNDER,2015-04-01,2015,April,Wednesday,1,91,23,2015-04-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21111,9451,GO-2015663929,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,22,2015-04-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21112,9477,GO-2015691454,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,9,2015-04-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21113,9483,GO-2015696365,THEFT UNDER,2015-04-27,2015,April,Monday,27,117,12,2015-04-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21114,9601,GO-20159002854,THEFT UNDER,2015-05-15,2015,May,Friday,15,135,17,2015-05-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21115,9609,GO-20159002902,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,14,2015-05-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21116,9614,GO-20159002923,THEFT UNDER,2015-05-17,2015,May,Sunday,17,137,15,2015-05-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21117,9649,GO-20159003056,THEFT UNDER,2015-05-24,2015,May,Sunday,24,144,22,2015-05-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21118,9721,GO-20159003289,THEFT UNDER,2014-12-16,2014,December,Tuesday,16,350,22,2015-06-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21119,9739,GO-2015946629,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,21,2015-06-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21120,9756,GO-2015960623,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,7,2015-06-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21121,9760,GO-20159003461,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,4,2015-06-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21122,9821,GO-20151003938,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,8,2015-06-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21123,12836,GO-20162130492,THEFT OF EBIKE UNDER $5000,2016-11-30,2016,November,Wednesday,30,335,15,2016-12-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21124,9839,GO-20151033542,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,11,2015-06-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21125,21407,GO-20169008827,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,12,2016-08-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21126,4752,GO-20199021933,THEFT FROM MOTOR VEHICLE UNDER,2019-07-11,2019,July,Thursday,11,192,21,2019-07-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21127,15939,GO-20159002851,THEFT UNDER,2015-05-16,2015,May,Saturday,16,136,16,2015-05-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21128,21507,GO-20171656582,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,14,2017-09-16,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21129,9914,GO-20159004070,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,16,2015-06-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21130,9916,GO-20151106807,THEFT UNDER,2015-06-30,2015,June,Tuesday,30,181,18,2015-07-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21131,9980,GO-20159004367,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,16,2015-07-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21132,9985,GO-20159004389,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,15,2015-07-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21133,9988,GO-20159004429,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,15,2015-07-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21134,10048,GO-20159004686,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,2,2015-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21135,10050,GO-20159004693,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,14,2015-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21136,10114,GO-20151276335,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,12,2015-07-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21137,10226,GO-20159005545,THEFT UNDER,2015-08-09,2015,August,Sunday,9,221,3,2015-08-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21138,10260,GO-20151412587,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,8,2015-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21139,10267,GO-20151419109,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,15,2015-08-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21140,10335,GO-20159006292,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,14,2015-08-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21141,10364,GO-20151504119,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,23,2015-09-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21142,10414,GO-20159006821,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,0,2015-09-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21143,10450,GO-20151563001,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,15,2015-09-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21144,10484,GO-20159007306,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,2,2015-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21145,10518,GO-20159007526,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,16,2015-09-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21146,10597,GO-20159008236,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,21,2015-10-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21147,21412,GO-20161492302,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,8,2016-08-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21148,1711,GO-20179017808,THEFT UNDER - BICYCLE,2017-09-23,2017,September,Saturday,23,266,21,2017-10-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21149,10609,GO-20159008368,THEFT UNDER,2015-10-08,2015,October,Thursday,8,281,8,2015-10-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21150,10649,GO-20151794652,THEFT UNDER,2015-10-16,2015,October,Friday,16,289,6,2015-10-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21151,10706,GO-20159009183,THEFT UNDER,2015-10-25,2015,October,Sunday,25,298,16,2015-10-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21152,10708,GO-20159009223,THEFT UNDER,2015-11-01,2015,November,Sunday,1,305,14,2015-11-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21153,10714,GO-20151890608,PROPERTY - FOUND,2015-11-03,2015,November,Tuesday,3,307,8,2015-11-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21154,10716,GO-20159009315,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,10,2015-11-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21155,10729,GO-20151909974,THEFT UNDER,2015-10-18,2015,October,Sunday,18,291,1,2015-11-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21156,10733,GO-20159009480,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,23,2015-11-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21157,10759,GO-20159009652,THEFT UNDER,2015-10-29,2015,October,Thursday,29,302,18,2015-11-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21158,10760,GO-20159009689,THEFT UNDER,2015-11-08,2015,November,Sunday,8,312,20,2015-11-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21159,10761,GO-20159009689,THEFT UNDER,2015-11-08,2015,November,Sunday,8,312,20,2015-11-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21160,10824,GO-20159010339,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,11,2015-11-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21161,10825,GO-20159010339,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,11,2015-11-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21162,10830,GO-20152069414,THEFT UNDER,2015-12-03,2015,December,Thursday,3,337,4,2015-12-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21163,10842,GO-20152105546,THEFT OVER,2015-12-09,2015,December,Wednesday,9,343,9,2015-12-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21164,10914,GO-201639977,THEFT UNDER,2016-01-06,2016,January,Wednesday,6,6,19,2016-01-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21165,10919,GO-20152005902,THEFT UNDER,2015-11-05,2015,November,Thursday,5,309,12,2015-11-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21166,12848,GO-20169014199,THEFT UNDER - BICYCLE,2016-12-04,2016,December,Sunday,4,339,10,2016-12-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21167,4769,GO-20199022276,THEFT UNDER - BICYCLE,2019-07-01,2019,July,Monday,1,182,19,2019-07-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21168,15941,GO-2015842098,B&E,2015-05-14,2015,May,Thursday,14,134,18,2015-05-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21169,21508,GO-20171656582,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,14,2017-09-16,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21170,5761,GO-20192402148,THEFT UNDER - BICYCLE,2019-12-13,2019,December,Friday,13,347,13,2019-12-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21171,10954,GO-20169000870,PROPERTY - FOUND,2016-01-04,2016,January,Monday,4,4,13,2016-01-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21172,10998,GO-2016285774,B&E,2016-01-28,2016,January,Thursday,28,28,18,2016-02-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21173,11066,GO-2016486222,THEFT UNDER - BICYCLE,2016-03-21,2016,March,Monday,21,81,10,2016-03-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21174,11092,GO-20169002980,THEFT UNDER,2016-04-02,2016,April,Saturday,2,93,13,2016-04-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21175,11114,GO-2016591464,THEFT UNDER - BICYCLE,2016-04-07,2016,April,Thursday,7,98,7,2016-04-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21176,11122,GO-20169003236,THEFT UNDER - BICYCLE,2016-04-10,2016,April,Sunday,10,101,10,2016-04-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21177,11126,GO-2016616770,THEFT UNDER - BICYCLE,2016-03-11,2016,March,Friday,11,71,12,2016-04-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21178,11127,GO-2016616770,THEFT UNDER - BICYCLE,2016-03-11,2016,March,Friday,11,71,12,2016-04-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21179,11205,GO-2016712961,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,17,2016-04-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21180,11212,GO-20169003881,THEFT UNDER,2016-04-22,2016,April,Friday,22,113,8,2016-04-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21181,11262,GO-20169004211,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,0,2016-05-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21182,11320,GO-20169004604,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,0,2016-05-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21183,11349,GO-20169004604,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,0,2016-05-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21184,11351,GO-20169004809,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,17,2016-05-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21185,11380,GO-20169004974,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,13,2016-05-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21186,11415,GO-2016938066,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,0,2016-05-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21187,11428,GO-2016948966,THEFT UNDER - BICYCLE,2016-05-31,2016,May,Tuesday,31,152,23,2016-06-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21188,11465,GO-20169005442,THEFT UNDER,2016-06-04,2016,June,Saturday,4,156,17,2016-06-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21189,11486,GO-2016999515,THEFT UNDER - BICYCLE,2016-06-08,2016,June,Wednesday,8,160,10,2016-06-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21190,11517,GO-20169005705,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,17,2016-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21191,11521,GO-20169005746,THEFT UNDER - BICYCLE,2016-06-12,2016,June,Sunday,12,164,21,2016-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21192,11620,GO-20169006311,THEFT UNDER - BICYCLE,2016-06-24,2016,June,Friday,24,176,8,2016-06-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21193,11644,GO-20169006397,THEFT UNDER - BICYCLE,2016-06-26,2016,June,Sunday,26,178,9,2016-06-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21194,11688,GO-20169006663,THEFT UNDER,2016-07-02,2016,July,Saturday,2,184,18,2016-07-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21195,11704,GO-20169006716,THEFT UNDER - BICYCLE,2016-07-02,2016,July,Saturday,2,184,8,2016-07-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21196,11745,GO-20169006900,THEFT UNDER,2016-07-08,2016,July,Friday,8,190,9,2016-07-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21197,11774,GO-20161220786,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,3,2016-07-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21198,11824,GO-20169007291,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,1,2016-07-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21199,11837,GO-20169007365,THEFT UNDER,2016-07-18,2016,July,Monday,18,200,16,2016-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21200,11839,GO-20169007366,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,22,2016-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21201,11870,GO-20169007584,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,8,2016-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21202,11871,GO-20169007588,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,23,2016-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21203,11890,GO-20169007691,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,11,2016-07-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21204,11922,GO-20161318216,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,16,2016-07-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21205,11923,GO-20161308814,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,9,2016-07-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21206,11936,GO-20169007865,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,13,2016-07-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21207,11948,GO-20169007951,THEFT UNDER - BICYCLE,2016-07-30,2016,July,Saturday,30,212,13,2016-07-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21208,12012,GO-20169008287,THEFT UNDER,2016-08-05,2016,August,Friday,5,218,19,2016-08-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21209,12059,GO-20169008564,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,0,2016-08-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21210,12067,GO-20169008582,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,22,2016-08-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21211,12079,GO-20161409555,THEFT OF EBIKE UNDER $5000,2016-08-10,2016,August,Wednesday,10,223,10,2016-08-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21212,12097,GO-20169008769,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,6,2016-08-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21213,12104,GO-20169008808,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,13,2016-08-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21214,12110,GO-20169008848,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,9,2016-08-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21215,12112,GO-20169008678,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,19,2016-08-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21216,12144,GO-20169009077,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,16,2016-08-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21217,12174,GO-20161473822,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,2,2016-08-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21218,12261,GO-20161575005,ROBBERY - MUGGING,2016-09-04,2016,September,Sunday,4,248,23,2016-09-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21219,12262,GO-20161575005,ROBBERY - MUGGING,2016-09-04,2016,September,Sunday,4,248,23,2016-09-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21220,12300,GO-20169009889,THEFT UNDER,2016-09-02,2016,September,Friday,2,246,21,2016-09-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21221,12304,GO-20169010172,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,12,2016-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21222,12312,GO-20169010220,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,20,2016-09-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21223,12439,GO-20169011030,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,1,2016-09-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21224,12464,GO-20169011168,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,10,2016-09-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21225,12515,GO-20161738295,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,12,2016-09-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21226,12518,GO-20169011407,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,10,2016-10-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21227,12555,GO-20169011568,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,12,2016-10-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21228,12589,GO-20169011817,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,13,2016-10-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21229,12601,GO-20169011938,THEFT UNDER,2016-10-12,2016,October,Wednesday,12,286,12,2016-10-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21230,12798,GO-20169013625,THEFT UNDER,2016-11-19,2016,November,Saturday,19,324,2,2016-11-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21231,12799,GO-20169013625,THEFT UNDER,2016-11-19,2016,November,Saturday,19,324,2,2016-11-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21232,12801,GO-20169013647,THEFT UNDER,2016-11-20,2016,November,Sunday,20,325,17,2016-11-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21233,18997,GO-20169006767,THEFT UNDER - BICYCLE,2016-07-06,2016,July,Wednesday,6,188,8,2016-07-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21234,21512,GO-20179016190,THEFT UNDER,2017-10-01,2017,October,Sunday,1,274,3,2017-10-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21235,21523,GO-20189009240,THEFT UNDER,2018-03-10,2018,March,Saturday,10,69,9,2018-03-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21236,5876,GO-20209004418,THEFT UNDER,2020-02-05,2020,February,Wednesday,5,36,17,2020-02-06,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21237,21533,GO-20189043803,THEFT UNDER - BICYCLE,2018-12-30,2018,December,Sunday,30,364,20,2018-12-30,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21238,21537,GO-20199017529,THEFT UNDER - BICYCLE,2019-06-05,2019,June,Wednesday,5,156,14,2019-06-05,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21239,6359,GO-20209015101,THEFT UNDER,2020-06-10,2020,June,Wednesday,10,162,17,2020-06-10,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21240,21538,GO-20199018703,THEFT UNDER - BICYCLE,2019-06-11,2019,June,Tuesday,11,162,19,2019-06-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21241,21548,GO-20191875506,THEFT UNDER - BICYCLE,2019-09-28,2019,September,Saturday,28,271,20,2019-09-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21242,6372,GO-20209015290,THEFT UNDER,2020-06-13,2020,June,Saturday,13,165,2,2020-06-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21243,21549,GO-20191875506,THEFT UNDER - BICYCLE,2019-09-28,2019,September,Saturday,28,271,20,2019-09-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21244,21561,GO-20209016879,THEFT UNDER,2020-06-23,2020,June,Tuesday,23,175,5,2020-07-05,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21245,6514,GO-20201219201,B&E,2020-06-30,2020,June,Tuesday,30,182,18,2020-07-02,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21246,21793,GO-20149002489,THEFT UNDER,2013-12-01,2013,December,Sunday,1,335,0,2014-04-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21247,6957,GO-20209020244,THEFT UNDER,2020-08-15,2020,August,Saturday,15,228,14,2020-08-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21248,21827,GO-20149006535,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,11,2014-09-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21249,7051,GO-20209021048,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,20,2020-08-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21250,15942,GO-2015862222,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,22,2015-05-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21251,4792,GO-20191346421,THEFT UNDER - BICYCLE,2019-07-10,2019,July,Wednesday,10,191,16,2019-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21252,12863,GO-20189023557,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,18,2018-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21253,19000,GO-20169007319,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,22,2016-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21254,1737,GO-20179018153,THEFT UNDER - BICYCLE,2017-10-23,2017,October,Monday,23,296,8,2017-10-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21255,21877,GO-20159003776,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,21,2015-06-20,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21256,4798,GO-20199022831,THEFT UNDER - BICYCLE,2019-07-18,2019,July,Thursday,18,199,5,2019-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21257,19008,GO-20169007608,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,20,2016-07-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21258,12868,GO-20189024009,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,18,2018-07-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21259,7550,GO-20202032138,B&E,2020-10-25,2020,October,Sunday,25,299,12,2020-10-27,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21260,15947,GO-20159003597,THEFT UNDER,2015-06-12,2015,June,Friday,12,163,22,2015-06-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21261,21425,GO-20169010403,THEFT UNDER,2016-09-13,2016,September,Tuesday,13,257,0,2016-09-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21262,7666,GO-20202242417,THEFT UNDER - BICYCLE,2020-11-26,2020,November,Thursday,26,331,3,2020-11-26,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21263,4812,GO-20191334962,THEFT UNDER - BICYCLE,2019-07-14,2019,July,Sunday,14,195,19,2019-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21264,12870,GO-20181363637,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,23,2018-07-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21265,19039,GO-20169010572,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,18,2016-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21266,21905,GO-20159005324,THEFT UNDER,2015-07-29,2015,July,Wednesday,29,210,23,2015-08-04,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21267,1826,GO-20172052022,THEFT UNDER - BICYCLE,2017-11-12,2017,November,Sunday,12,316,10,2017-11-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21268,19043,GO-20169011444,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,10,2016-10-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21269,1827,GO-20172052022,THEFT UNDER - BICYCLE,2017-11-12,2017,November,Sunday,12,316,10,2017-11-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21270,21924,GO-20151622899,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,22,2015-09-19,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21271,19046,GO-20169011673,THEFT UNDER - BICYCLE,2016-10-06,2016,October,Thursday,6,280,9,2016-10-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21272,4814,GO-20199023000,THEFT UNDER - BICYCLE,2019-07-20,2019,July,Saturday,20,201,10,2019-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21273,21457,GO-20179000173,THEFT UNDER - BICYCLE,2017-01-02,2017,January,Monday,2,2,17,2017-01-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21274,15960,GO-20159004874,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,12,2015-07-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21275,12877,GO-20189026056,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,9,2018-08-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21276,7677,GO-20209030860,THEFT UNDER,2020-11-29,2020,November,Sunday,29,334,1,2020-11-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21277,1844,GO-20179019627,THEFT UNDER - BICYCLE,2017-11-09,2017,November,Thursday,9,313,1,2017-11-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21278,21980,GO-20209024726,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,18,2020-09-27,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21279,19065,GO-20169015196,THEFT UNDER - BICYCLE,2016-12-04,2016,December,Sunday,4,339,12,2016-12-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21280,4821,GO-20199023043,THEFT UNDER,2019-07-20,2019,July,Saturday,20,201,13,2019-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21281,21464,GO-20179002246,THEFT UNDER - BICYCLE,2017-02-17,2017,February,Friday,17,48,14,2017-02-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21282,15972,GO-20159006308,THEFT UNDER - BICYCLE,2015-08-16,2015,August,Sunday,16,228,6,2015-08-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21283,12878,GO-20189026462,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,11,2018-08-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21284,7680,GO-20202276901,B&E,2020-12-01,2020,December,Tuesday,1,336,23,2020-12-02,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21285,8407,GO-20142505026,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,14,2014-07-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21286,8497,GO-20149005256,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,9,2014-07-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21287,8703,GO-20149006150,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,10,2014-08-20,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21288,9350,GO-2015494375,THEFT UNDER,2015-03-20,2015,March,Friday,20,79,4,2015-03-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21289,9559,GO-2015772514,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,12,2015-05-09,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21290,9707,GO-20159003271,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,0,2015-06-02,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21291,9755,GO-2017476636,B&E,2017-03-16,2017,March,Thursday,16,75,23,2017-03-17,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21292,9800,GO-20151002361,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,16,2015-06-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21293,9804,GO-20159003607,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,19,2015-06-14,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21294,9814,GO-20151017000,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,12,2015-06-17,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21295,9929,GO-20151117331,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,2,2015-07-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21296,10019,GO-20151198566,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,14,2015-07-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21297,10020,GO-20151198566,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,14,2015-07-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21298,10021,GO-20151198566,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,14,2015-07-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21299,10159,GO-20159005237,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,17,2015-08-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21300,10169,GO-20159005280,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,4,2015-08-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21301,10573,GO-20159007974,THEFT UNDER,2015-10-01,2015,October,Thursday,1,274,7,2015-10-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21302,10593,GO-20159008217,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,18,2015-10-05,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21303,10675,GO-20151824838,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,15,2015-10-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21304,10676,GO-20151824838,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,15,2015-10-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21305,10724,GO-20159009390,THEFT UNDER,2015-10-25,2015,October,Sunday,25,298,3,2015-11-05,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21306,10887,GO-20159011292,THEFT UNDER,2015-12-24,2015,December,Thursday,24,358,18,2015-12-25,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21307,10896,GO-20152233203,B&E W'INTENT,2015-12-28,2015,December,Monday,28,362,20,2015-12-30,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21308,10897,GO-20152233203,B&E W'INTENT,2015-12-28,2015,December,Monday,28,362,20,2015-12-30,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21309,11186,GO-20169003727,THEFT UNDER,2016-04-21,2016,April,Thursday,21,112,3,2016-04-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21310,11230,GO-20169003979,THEFT UNDER - BICYCLE,2016-04-29,2016,April,Friday,29,120,10,2016-04-30,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21311,11314,GO-2016831154,THEFT UNDER - BICYCLE,2016-05-14,2016,May,Saturday,14,135,17,2016-05-14,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21312,11344,GO-2016873426,THEFT OVER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,6,2016-05-21,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21313,11345,GO-2016873426,THEFT OVER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,6,2016-05-21,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21314,11434,GO-2016956231,PROPERTY - FOUND,2016-06-02,2016,June,Thursday,2,154,8,2016-06-02,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21315,11530,GO-20169005805,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,22,2016-06-14,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21316,11591,GO-20161081351,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,1,2016-06-21,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21317,11593,GO-20169006101,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,19,2016-06-21,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21318,11633,GO-20169006322,THEFT UNDER,2016-06-24,2016,June,Friday,24,176,18,2016-06-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21319,11690,GO-20169006672,THEFT UNDER - BICYCLE,2016-07-03,2016,July,Sunday,3,185,22,2016-07-04,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21320,11736,GO-20161183086,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,19,2016-07-06,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21321,12060,GO-20169008565,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,17,2016-08-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21322,12243,GO-20169009804,THEFT UNDER,2016-09-01,2016,September,Thursday,1,245,0,2016-09-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21323,12440,GO-20169011014,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,8,2016-09-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21324,12441,GO-20169011014,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,8,2016-09-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21325,12442,GO-20169011014,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,8,2016-09-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21326,12524,GO-20169011412,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,12,2016-10-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21327,12716,GO-20161953837,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,0,2016-11-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21328,12717,GO-20161953837,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,0,2016-11-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21329,15308,GO-20149002816,THEFT UNDER,2014-04-13,2014,April,Sunday,13,103,17,2014-04-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21330,15366,GO-20143000657,B&E,2014-09-27,2014,September,Saturday,27,270,17,2014-09-28,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21331,15376,GO-20143172148,THEFT UNDER,2014-10-24,2014,October,Friday,24,297,22,2014-10-25,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21332,15409,GO-20151055739,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,18,2015-06-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21333,15410,GO-20151055739,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,18,2015-06-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21334,15417,GO-20151117331,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,2,2015-07-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21335,15444,GO-20159006340,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,20,2015-08-24,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21336,15446,GO-20151522449,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,0,2015-09-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21337,15461,GO-20151824838,THEFT UNDER,2015-10-15,2015,October,Thursday,15,288,15,2015-10-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21338,15489,GO-2016616898,THEFT UNDER - BICYCLE,2016-04-11,2016,April,Monday,11,102,18,2016-04-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21339,15490,GO-2016616898,THEFT UNDER - BICYCLE,2016-04-11,2016,April,Monday,11,102,18,2016-04-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21340,15493,GO-20169004028,THEFT UNDER - BICYCLE,2016-04-29,2016,April,Friday,29,120,23,2016-05-01,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21341,15499,GO-2016830532,THEFT UNDER,2016-05-11,2016,May,Wednesday,11,132,19,2016-05-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21342,15552,GO-20161604968,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,20,2016-09-09,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21343,15555,GO-20169010736,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,15,2016-09-19,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21344,15577,GO-20169013634,THEFT UNDER - BICYCLE,2016-11-19,2016,November,Saturday,19,324,17,2016-11-19,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21345,15621,GO-20179011705,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,16,2017-08-04,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21346,15626,GO-20171914828,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,19,2017-10-22,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21347,15627,GO-20179019551,THEFT UNDER,2017-10-31,2017,October,Tuesday,31,304,19,2017-11-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21348,15638,GO-20189031069,THEFT UNDER,2018-09-19,2018,September,Wednesday,19,262,11,2018-09-19,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21349,15642,GO-20199018701,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,16,2019-06-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21350,15643,GO-20199018701,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,16,2019-06-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21351,18126,GO-20161215798,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,10,2016-07-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21352,18196,GO-20179004484,THEFT UNDER,2017-04-09,2017,April,Sunday,9,99,21,2017-04-10,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21353,18239,GO-20189025410,THEFT UNDER - BICYCLE,2018-08-06,2018,August,Monday,6,218,13,2018-08-07,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21354,18259,GO-20191847408,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,2,2019-09-25,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21355,18260,GO-20192238508,THEFT UNDER,2019-10-03,2019,October,Thursday,3,276,12,2019-11-03,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21356,18267,GO-20209011689,THEFT UNDER,2020-04-22,2020,April,Wednesday,22,113,2,2020-04-22,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21357,18270,GO-20201154089,THEFT OF EBIKE UNDER $5000,2020-06-22,2020,June,Monday,22,174,22,2020-06-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21358,18286,GO-20209021048,THEFT UNDER,2020-08-22,2020,August,Saturday,22,235,20,2020-08-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21359,18287,GO-20209021059,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,11,2020-08-23,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21360,18290,GO-20209021755,THEFT UNDER,2020-08-26,2020,August,Wednesday,26,239,0,2020-08-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21361,18323,GO-20141919532,THEFT UNDER,2014-04-18,2014,April,Friday,18,108,23,2014-04-19,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21362,18342,GO-20149004540,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,0,2014-06-28,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21363,18416,GO-20159003558,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,12,2015-06-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21364,18425,GO-20159004417,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,7,2015-07-11,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21365,18429,GO-20159004602,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,19,2015-07-15,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21366,18445,GO-20151426385,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,11,2015-08-19,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21367,18484,GO-2016775520,THEFT UNDER,2016-05-05,2016,May,Thursday,5,126,21,2016-05-06,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21368,21391,GO-20169006568,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,9,2016-06-30,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21369,21419,GO-20161607549,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,22,2016-09-10,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21370,21420,GO-20161607549,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,22,2016-09-10,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21371,21461,GO-2017296137,THEFT OF EBIKE UNDER $5000,2017-02-16,2017,February,Thursday,16,47,1,2017-02-16,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21372,21502,GO-20171162939,THEFT OF EBIKE UNDER $5000,2017-06-29,2017,June,Thursday,29,180,1,2017-06-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21373,4833,GO-20199023147,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,13,2019-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21374,4853,GO-20191390545,B&E W'INTENT,2019-07-16,2019,July,Tuesday,16,197,9,2019-07-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21375,4862,GO-20191390545,B&E W'INTENT,2019-07-16,2019,July,Tuesday,16,197,9,2019-07-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21376,4867,GO-20191227448,B&E W'INTENT,2019-05-28,2019,May,Tuesday,28,148,9,2019-07-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21377,19070,GO-20179002197,THEFT UNDER - BICYCLE,2017-02-19,2017,February,Sunday,19,50,14,2017-02-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21378,4901,GO-20191421564,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,12,2019-07-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21379,4915,GO-20199024196,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,21,2019-07-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21380,19081,GO-20179006748,THEFT UNDER - BICYCLE,2017-05-21,2017,May,Sunday,21,141,18,2017-05-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21381,4926,GO-20199024369,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,22,2019-07-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21382,19084,GO-2017999555,THEFT OVER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,18,2017-06-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21383,12879,GO-20181509482,THEFT UNDER,2018-08-08,2018,August,Wednesday,8,220,10,2018-08-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21384,21471,GO-2017494478,THEFT UNDER - BICYCLE,2017-03-18,2017,March,Saturday,18,77,11,2017-03-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21385,4927,GO-20199024379,THEFT UNDER - BICYCLE,2019-07-31,2019,July,Wednesday,31,212,10,2019-07-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21386,4928,GO-20199024379,THEFT UNDER - BICYCLE,2019-07-31,2019,July,Wednesday,31,212,10,2019-07-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21387,4943,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,6,2019-08-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21388,4944,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,6,2019-08-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21389,5074,GO-20199026256,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,23,2019-08-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21390,5092,GO-20191570782,THEFT UNDER - BICYCLE,2019-08-18,2019,August,Sunday,18,230,9,2019-08-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21391,5104,GO-20199026808,THEFT OF EBIKE UNDER $5000,2019-08-18,2019,August,Sunday,18,230,1,2019-08-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21392,5122,GO-20199027159,THEFT UNDER - BICYCLE,2019-08-20,2019,August,Tuesday,20,232,12,2019-08-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21393,5167,GO-20199027704,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,9,2019-08-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21394,5263,GO-20199029049,THEFT UNDER - BICYCLE,2019-09-06,2019,September,Friday,6,249,22,2019-09-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21395,5265,GO-20199029102,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,14,2019-09-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21396,5281,GO-20191730289,THEFT UNDER - BICYCLE,2019-09-06,2019,September,Friday,6,249,3,2019-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21397,5283,GO-20199029333,THEFT UNDER,2019-09-08,2019,September,Sunday,8,251,1,2019-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21398,5323,GO-20191771332,THEFT UNDER - BICYCLE,2019-09-15,2019,September,Sunday,15,258,7,2019-09-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21399,5346,GO-20199030271,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,14,2019-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21400,5370,GO-20199030767,THEFT UNDER - BICYCLE,2019-09-02,2019,September,Monday,2,245,11,2019-09-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21401,15977,GO-20159006587,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,23,2015-09-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21402,5387,GO-20199031254,THEFT UNDER - BICYCLE,2019-09-23,2019,September,Monday,23,266,17,2019-09-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21403,5431,GO-20191876037,THEFT UNDER,2019-09-28,2019,September,Saturday,28,271,23,2019-09-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21404,5446,GO-20199032138,THEFT UNDER - BICYCLE,2019-09-21,2019,September,Saturday,21,264,15,2019-09-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21405,5478,GO-20199032743,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,19,2019-10-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21406,5512,GO-20199033630,THEFT FROM MOTOR VEHICLE UNDER,2019-10-11,2019,October,Friday,11,284,8,2019-10-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21407,5571,GO-20199034923,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,2,2019-10-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21408,5591,GO-20199035123,THEFT UNDER - BICYCLE,2019-10-19,2019,October,Saturday,19,292,13,2019-10-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21409,5594,GO-20199035193,THEFT UNDER - BICYCLE,2019-10-24,2019,October,Thursday,24,297,4,2019-10-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21410,5629,GO-20199036033,THEFT UNDER - BICYCLE,2019-10-27,2019,October,Sunday,27,300,15,2019-10-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21411,5636,GO-20192125930,B&E,2019-11-02,2019,November,Saturday,2,306,10,2019-11-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21412,5666,GO-20199036926,THEFT UNDER - BICYCLE,2019-11-07,2019,November,Thursday,7,311,12,2019-11-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21413,5671,GO-20192154565,THEFT UNDER - BICYCLE,2019-11-07,2019,November,Thursday,7,311,11,2019-11-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21414,5724,GO-20192283369,B&E,2019-11-01,2019,November,Friday,1,305,0,2019-11-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21415,5751,GO-20199040359,THEFT UNDER - BICYCLE,2019-12-08,2019,December,Sunday,8,342,20,2019-12-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21416,5802,GO-20209000297,THEFT UNDER,2020-01-03,2020,January,Friday,3,3,17,2020-01-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21417,5806,GO-20209000408,THEFT UNDER,2020-01-01,2020,January,Wednesday,1,1,1,2020-01-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21418,5808,GO-20209000620,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,16,2020-01-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21419,5868,GO-20209003791,THEFT UNDER,2019-12-31,2019,December,Tuesday,31,365,14,2020-01-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21420,5883,GO-20209004821,THEFT UNDER,2020-02-07,2020,February,Friday,7,38,22,2020-02-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21421,5886,GO-20209004963,THEFT UNDER,2020-02-09,2020,February,Sunday,9,40,9,2020-02-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21422,5889,GO-20209004821,THEFT UNDER,2020-02-07,2020,February,Friday,7,38,22,2020-02-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21423,5891,GO-20209004963,THEFT UNDER,2020-02-09,2020,February,Sunday,9,40,9,2020-02-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21424,5892,GO-20209005314,THEFT UNDER,2020-02-06,2020,February,Thursday,6,37,16,2020-02-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21425,5910,GO-20209006107,THEFT UNDER - BICYCLE,2020-02-04,2020,February,Tuesday,4,35,0,2020-02-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21426,5927,GO-20209006850,THEFT UNDER - BICYCLE,2020-02-18,2020,February,Tuesday,18,49,18,2020-02-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21427,5932,GO-20209007069,THEFT UNDER,2020-02-26,2020,February,Wednesday,26,57,23,2020-02-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21428,5969,GO-20209009337,THEFT UNDER,2020-03-04,2020,March,Wednesday,4,64,9,2020-03-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21429,5970,GO-20209009337,THEFT UNDER,2020-03-04,2020,March,Wednesday,4,64,9,2020-03-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21430,6052,GO-20209010945,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,0,2020-04-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21431,6061,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21432,6062,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21433,6063,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21434,6064,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21435,6069,GO-2020725382,THEFT UNDER - BICYCLE,2020-04-09,2020,April,Thursday,9,100,11,2020-04-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21436,6107,GO-2020793906,THEFT UNDER - BICYCLE,2020-04-26,2020,April,Sunday,26,117,6,2020-04-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21437,6112,GO-2020793849,B&E,2020-04-26,2020,April,Sunday,26,117,6,2020-04-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21438,6121,GO-20209012162,THEFT UNDER,2020-04-25,2020,April,Saturday,25,116,16,2020-04-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21439,6127,GO-20209012339,THEFT UNDER,2020-04-01,2020,April,Wednesday,1,92,0,2020-05-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21440,6159,GO-20209012866,THEFT UNDER - BICYCLE,2020-05-10,2020,May,Sunday,10,131,11,2020-05-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21441,6237,GO-20209013790,THEFT UNDER - BICYCLE,2020-05-23,2020,May,Saturday,23,144,0,2020-05-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21442,6307,GO-20209014661,THEFT UNDER - BICYCLE,2020-06-02,2020,June,Tuesday,2,154,22,2020-06-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21443,6407,GO-20201102229,THEFT OVER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,11,2020-06-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21444,6448,GO-20209015973,THEFT UNDER - BICYCLE,2020-06-18,2020,June,Thursday,18,170,19,2020-06-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21445,6535,GO-20209016861,THEFT UNDER,2020-07-04,2020,July,Saturday,4,186,16,2020-07-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21446,6550,GO-20209017011,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,14,2020-07-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21447,6563,GO-20209017155,THEFT UNDER - BICYCLE,2020-07-08,2020,July,Wednesday,8,190,19,2020-07-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21448,6566,GO-20209017173,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,0,2020-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21449,6570,GO-20209017206,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,17,2020-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21450,6589,GO-20209017335,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,23,2020-07-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21451,6595,GO-20201291091,THEFT OVER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,10,2020-07-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21452,6614,GO-20201277859,THEFT UNDER - BICYCLE,2020-07-07,2020,July,Tuesday,7,189,14,2020-07-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21453,6635,GO-20201318790,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,19,2020-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21454,6650,GO-20209017831,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,23,2020-07-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21455,6660,GO-20201339736,B&E,2020-07-18,2020,July,Saturday,18,200,10,2020-07-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21456,6661,GO-20201339736,B&E,2020-07-18,2020,July,Saturday,18,200,10,2020-07-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21457,6664,GO-20209017966,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,22,2020-07-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21458,6683,GO-20201355796,THEFT UNDER - BICYCLE,2020-07-21,2020,July,Tuesday,21,203,13,2020-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21459,6688,GO-20209018121,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,6,2020-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21460,6689,GO-20209018121,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,6,2020-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21461,6699,GO-20209018196,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,23,2020-07-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21462,6767,GO-20209018728,THEFT UNDER - BICYCLE,2020-07-18,2020,July,Saturday,18,200,23,2020-07-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21463,6786,GO-20209018776,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,12,2020-07-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21464,6841,GO-20209019153,THEFT UNDER,2020-07-31,2020,July,Friday,31,213,19,2020-08-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21465,6880,GO-20209019504,THEFT UNDER - BICYCLE,2020-08-05,2020,August,Wednesday,5,218,21,2020-08-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21466,6938,GO-20201483160,THEFT OF EBIKE UNDER $5000,2020-08-08,2020,August,Saturday,8,221,17,2020-08-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21467,6978,GO-20209020450,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,23,2020-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21468,6981,GO-20201538736,THEFT UNDER - BICYCLE,2020-08-12,2020,August,Wednesday,12,225,9,2020-08-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21469,7012,GO-20209020783,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,21,2020-08-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21470,7015,GO-20209020814,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,14,2020-08-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21471,7048,GO-20209021028,THEFT UNDER - BICYCLE,2020-08-16,2020,August,Sunday,16,229,16,2020-08-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21472,1859,GO-20179019931,THEFT UNDER - BICYCLE,2017-11-05,2017,November,Sunday,5,309,8,2017-11-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21473,24657,GO-20149007303,THEFT UNDER,2014-09-28,2014,September,Sunday,28,271,1,2014-09-29,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21474,12887,GO-20189028676,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,8,2018-08-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21475,12890,GO-20189030827,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,3,2018-09-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21476,15982,GO-20159007564,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,12,2015-09-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21477,12904,GO-20189036023,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,6,2018-10-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21478,1883,GO-20179020627,THEFT UNDER - BICYCLE,2017-11-26,2017,November,Sunday,26,330,1,2017-11-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21479,24710,GO-20159003777,THEFT UNDER,2015-06-20,2015,June,Saturday,20,171,12,2015-06-20,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21480,19118,GO-20179015870,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,13,2017-09-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21481,21474,GO-20179005117,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,12,2017-04-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21482,24728,GO-20151270811,PROPERTY - FOUND,2014-07-25,2014,July,Friday,25,206,12,2015-07-25,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21483,21481,GO-20179006317,THEFT UNDER - BICYCLE,2017-05-14,2017,May,Sunday,14,134,18,2017-05-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21484,19125,GO-20179017771,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,11,2017-10-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21485,25209,GO-20169005885,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,17,2016-06-16,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21486,21482,GO-2017861205,THEFT UNDER,2017-04-29,2017,April,Saturday,29,119,4,2017-05-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21487,1916,GO-20179021386,THEFT UNDER - BICYCLE,2017-11-23,2017,November,Thursday,23,327,19,2017-12-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21488,15984,GO-20159007850,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,13,2015-09-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21489,19127,GO-20179019204,THEFT UNDER,2017-11-08,2017,November,Wednesday,8,312,7,2017-11-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21490,12912,GO-20182153190,THEFT UNDER - BICYCLE,2018-11-18,2018,November,Sunday,18,322,17,2018-11-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21491,21484,GO-20179006503,THEFT UNDER,2017-05-16,2017,May,Tuesday,16,136,21,2017-05-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21492,25237,GO-20169008536,THEFT UNDER,2016-08-03,2016,August,Wednesday,3,216,15,2016-08-10,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21493,21493,GO-20179007664,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,20,2017-06-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21494,1937,GO-20179022178,THEFT UNDER - BICYCLE,2017-12-14,2017,December,Thursday,14,348,12,2017-12-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21495,15985,GO-20159007865,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,10,2015-09-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21496,19128,GO-20179019513,THEFT UNDER - BICYCLE,2017-11-12,2017,November,Sunday,12,316,19,2017-11-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21497,12925,GO-2019702621,THEFT UNDER - BICYCLE,2019-04-18,2019,April,Thursday,18,108,17,2019-04-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21498,16022,GO-20169004822,THEFT UNDER - BICYCLE,2016-05-18,2016,May,Wednesday,18,139,21,2016-05-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21499,12932,GO-20199017156,THEFT UNDER - BICYCLE,2019-06-01,2019,June,Saturday,1,152,5,2019-06-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21500,16034,GO-20209017323,THEFT UNDER - BICYCLE,2020-07-10,2020,July,Friday,10,192,14,2020-07-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21501,12934,GO-20191079727,B&E,2019-06-11,2019,June,Tuesday,11,162,20,2019-06-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21502,19133,GO-20179020412,THEFT UNDER - BICYCLE,2017-11-17,2017,November,Friday,17,321,21,2017-11-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21503,16046,GO-20209018039,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,20,2020-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21504,21797,GO-20149003470,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,20,2014-05-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21505,12940,GO-20199019149,THEFT UNDER - BICYCLE,2019-06-12,2019,June,Wednesday,12,163,7,2019-06-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21506,19135,GO-20179022070,THEFT UNDER - BICYCLE,2017-12-09,2017,December,Saturday,9,343,12,2017-12-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21507,16051,GO-20201369210,B&E W'INTENT,2020-07-23,2020,July,Thursday,23,205,0,2020-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21508,16052,GO-20201369210,B&E W'INTENT,2020-07-23,2020,July,Thursday,23,205,0,2020-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21509,16071,GO-20209022318,THEFT UNDER - BICYCLE,2020-09-03,2020,September,Thursday,3,247,23,2020-09-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21510,16079,GO-20209023287,THEFT UNDER - BICYCLE,2020-09-14,2020,September,Monday,14,258,8,2020-09-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21511,16103,GO-20209028318,THEFT UNDER,2020-10-31,2020,October,Saturday,31,305,19,2020-11-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21512,17328,GO-20209014064,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,18,2020-05-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21513,17356,GO-20201347072,THEFT UNDER - BICYCLE,2020-07-20,2020,July,Monday,20,202,0,2020-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21514,17385,GO-20201663658,THEFT UNDER - BICYCLE,2020-09-02,2020,September,Wednesday,2,246,23,2020-09-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21515,17397,GO-20209024924,THEFT UNDER,2020-09-29,2020,September,Tuesday,29,273,17,2020-09-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21516,17406,GO-20209028162,THEFT UNDER,2020-10-27,2020,October,Tuesday,27,301,23,2020-10-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21517,17537,GO-20189042826,THEFT UNDER - BICYCLE,2018-11-25,2018,November,Sunday,25,329,12,2018-12-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21518,17542,GO-20199006913,THEFT UNDER - BICYCLE,2019-02-27,2019,February,Wednesday,27,58,13,2019-02-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21519,17547,GO-20199009493,THEFT UNDER - BICYCLE,2019-01-01,2019,January,Tuesday,1,1,0,2019-03-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21520,17593,GO-20199021497,THEFT UNDER - BICYCLE,2019-07-01,2019,July,Monday,1,182,19,2019-07-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21521,17595,GO-20199022245,THEFT UNDER - BICYCLE,2019-07-14,2019,July,Sunday,14,195,7,2019-07-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21522,17641,GO-20199030524,THEFT UNDER - BICYCLE,2019-09-17,2019,September,Tuesday,17,260,20,2019-09-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21523,2001,GO-20189002498,THEFT UNDER - BICYCLE,2018-01-25,2018,January,Thursday,25,25,0,2018-01-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21524,25238,GO-20169008540,THEFT UNDER,2016-08-10,2016,August,Wednesday,10,223,9,2016-08-10,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21525,17643,GO-20191847016,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,11,2019-09-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21526,17658,GO-20199034150,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,18,2019-10-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21527,17662,GO-20199035726,THEFT UNDER - BICYCLE,2019-10-23,2019,October,Wednesday,23,296,21,2019-10-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21528,17670,GO-20192239082,THEFT UNDER - BICYCLE,2019-11-18,2019,November,Monday,18,322,8,2019-11-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21529,17685,GO-20209002729,THEFT UNDER,2020-01-18,2020,January,Saturday,18,18,20,2020-01-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21530,17687,GO-20209005683,THEFT UNDER,2020-02-10,2020,February,Monday,10,41,14,2020-02-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21531,17728,GO-20179014902,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,14,2017-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21532,17751,GO-20179018148,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,21,2017-10-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21533,17761,GO-20179019230,THEFT UNDER,2017-11-08,2017,November,Wednesday,8,312,18,2017-11-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21534,17772,GO-20179021313,THEFT UNDER - BICYCLE,2017-11-29,2017,November,Wednesday,29,333,0,2017-12-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21535,17773,GO-20179021313,THEFT UNDER - BICYCLE,2017-11-29,2017,November,Wednesday,29,333,0,2017-12-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21536,17804,GO-20189013478,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,9,2018-05-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21537,17833,GO-20189019041,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,4,2018-06-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21538,17840,GO-20189020020,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,12,2018-06-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21539,17849,GO-20189021675,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,6,2018-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21540,17873,GO-20189025061,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,7,2018-08-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21541,17879,GO-20189025878,THEFT UNDER - BICYCLE,2018-08-04,2018,August,Saturday,4,216,14,2018-08-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21542,17889,GO-20181527730,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,21,2018-08-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21543,17904,GO-20189030191,THEFT UNDER - BICYCLE,2018-09-06,2018,September,Thursday,6,249,21,2018-09-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21544,18077,GO-20179008971,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,18,2017-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21545,18078,GO-20179008971,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,18,2017-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21546,18131,GO-20169008353,THEFT UNDER - BICYCLE,2016-06-30,2016,June,Thursday,30,182,8,2016-08-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21547,18186,GO-20179002246,THEFT UNDER - BICYCLE,2017-02-17,2017,February,Friday,17,48,14,2017-02-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21548,18187,GO-20179002486,THEFT UNDER - BICYCLE,2017-02-24,2017,February,Friday,24,55,22,2017-02-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21549,18199,GO-20179005691,THEFT UNDER,2017-05-03,2017,May,Wednesday,3,123,18,2017-05-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21550,18202,GO-2017835315,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,16,2017-05-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21551,18204,GO-20179006320,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,22,2017-05-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21552,18327,GO-20142117470,THEFT UNDER,2014-05-19,2014,May,Monday,19,139,21,2014-05-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21553,18331,GO-20142160921,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,22,2014-05-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21554,18369,GO-20142867872,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,16,2014-09-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21555,18373,GO-20142994510,THEFT UNDER,2014-09-26,2014,September,Friday,26,269,20,2014-09-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21556,18378,GO-20143203547,THEFT UNDER,2014-10-29,2014,October,Wednesday,29,302,16,2014-10-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21557,18383,GO-20149008481,THEFT UNDER,2014-11-05,2014,November,Wednesday,5,309,16,2014-12-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21558,18413,GO-2015941473,THEFT UNDER,2015-06-04,2015,June,Thursday,4,155,18,2015-06-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21559,18417,GO-2015988890,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,20,2015-06-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21560,18449,GO-20159006255,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,10,2015-08-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21561,18463,GO-20159007967,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,18,2015-09-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21562,18494,GO-20169005152,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,13,2016-05-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21563,18501,GO-20169005968,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,23,2016-06-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21564,18713,GO-20209018039,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,20,2020-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21565,18718,GO-20209018886,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,8,2020-07-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21566,18736,GO-20201535552,THEFT UNDER - BICYCLE,2020-08-02,2020,August,Sunday,2,215,12,2020-08-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21567,18738,GO-20209020501,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,0,2020-08-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21568,18826,GO-20141670291,THEFT UNDER,2014-03-08,2014,March,Saturday,8,67,22,2014-03-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21569,18830,GO-20142052337,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,14,2014-05-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21570,18844,GO-20149004782,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,8,2014-07-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21571,18854,GO-20149005847,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,22,2014-08-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21572,18855,GO-20149005921,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,22,2014-08-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21573,18858,GO-20149006753,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,1,2014-09-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21574,18868,GO-20143024430,THEFT UNDER,2014-10-01,2014,October,Wednesday,1,274,20,2014-10-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21575,18870,GO-20143110144,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,3,2014-10-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21576,18878,GO-20159001319,THEFT UNDER,2015-03-14,2015,March,Saturday,14,73,9,2015-03-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21577,18883,GO-20159002092,THEFT UNDER,2015-04-01,2015,April,Wednesday,1,91,16,2015-04-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21578,18899,GO-2015999461,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,12,2015-06-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21579,18900,GO-20151010050,THEFT OVER,2015-06-15,2015,June,Monday,15,166,22,2015-06-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21580,18901,GO-20151010050,THEFT OVER,2015-06-15,2015,June,Monday,15,166,22,2015-06-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21581,18902,GO-20159003688,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,22,2015-06-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21582,18911,GO-20159004542,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,9,2015-07-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21583,18913,GO-20151214806,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,5,2015-07-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21584,18914,GO-20159004746,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,11,2015-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21585,18917,GO-20159005364,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,6,2015-08-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21586,18925,GO-20159006200,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,21,2015-08-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21587,18928,GO-20159006514,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,7,2015-08-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21588,18931,GO-20159006575,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,18,2015-08-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21589,18939,GO-20159007528,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,17,2015-09-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21590,18941,GO-20159007898,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,1,2015-09-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21591,18953,GO-20151968633,THEFT UNDER,2015-11-15,2015,November,Sunday,15,319,18,2015-11-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21592,18969,GO-20169003984,THEFT UNDER - BICYCLE,2016-04-30,2016,April,Saturday,30,121,13,2016-04-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21593,18973,GO-20169004182,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,11,2016-05-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21594,18988,GO-20161036110,THEFT UNDER - BICYCLE,2016-05-15,2016,May,Sunday,15,136,12,2016-06-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21595,2012,GO-20189003338,THEFT UNDER,2018-02-02,2018,February,Friday,2,33,8,2018-02-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21596,2040,GO-20189005617,THEFT UNDER - BICYCLE,2018-02-22,2018,February,Thursday,22,53,0,2018-02-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21597,2071,GO-2018399209,B&E,2018-03-02,2018,March,Friday,2,61,17,2018-03-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21598,2072,GO-20189007332,THEFT UNDER - BICYCLE,2018-03-08,2018,March,Thursday,8,67,17,2018-03-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21599,21812,GO-20142633381,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,2,2014-08-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21600,25264,GO-20161682705,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,17,2016-09-21,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21601,2118,GO-20189010011,THEFT UNDER - BICYCLE,2018-03-26,2018,March,Monday,26,85,11,2018-03-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21602,19142,GO-2018219500,B&E,2018-02-04,2018,February,Sunday,4,35,5,2018-02-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21603,12951,GO-20199022609,THEFT UNDER - BICYCLE,2019-07-02,2019,July,Tuesday,2,183,8,2019-07-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21604,2133,GO-20189010365,THEFT UNDER - BICYCLE,2018-04-02,2018,April,Monday,2,92,9,2018-04-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21605,12955,GO-20199024294,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,8,2019-07-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21606,12956,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,12,2019-08-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21607,2213,GO-20189013161,THEFT UNDER - BICYCLE,2018-04-05,2018,April,Thursday,5,95,12,2018-04-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21608,25277,GO-20169011954,THEFT UNDER - BICYCLE,2016-10-12,2016,October,Wednesday,12,286,9,2016-10-12,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21609,12957,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,12,2019-08-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21610,19146,GO-20189008483,THEFT UNDER - BICYCLE,2018-03-14,2018,March,Wednesday,14,73,21,2018-03-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21611,2220,GO-20189013221,THEFT UNDER,2018-02-21,2018,February,Wednesday,21,52,13,2018-04-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21612,19154,GO-20189014304,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,18,2018-05-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21613,25301,GO-20179006287,THEFT UNDER - BICYCLE,2017-05-11,2017,May,Thursday,11,131,18,2017-05-13,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21614,21821,GO-20149006060,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,17,2014-08-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21615,12958,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,12,2019-08-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21616,12959,GO-20199025078,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,12,2019-08-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21617,12996,GO-20199034063,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,9,2019-10-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21618,13022,GO-2020490129,THEFT UNDER - BICYCLE,2020-03-04,2020,March,Wednesday,4,64,8,2020-03-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21619,13032,GO-20209012790,THEFT UNDER - BICYCLE,2020-05-07,2020,May,Thursday,7,128,19,2020-05-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21620,13039,GO-20209014491,THEFT UNDER - BICYCLE,2020-05-23,2020,May,Saturday,23,144,1,2020-06-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21621,14083,GO-20169007765,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,9,2016-07-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21622,14101,GO-20169009934,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,1,2016-09-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21623,14103,GO-20169010284,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,15,2016-09-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21624,14113,GO-20169011696,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,6,2016-10-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21625,14114,GO-20161845239,THEFT UNDER - BICYCLE,2016-10-16,2016,October,Sunday,16,290,18,2016-10-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21626,14115,GO-20161845239,THEFT UNDER - BICYCLE,2016-10-16,2016,October,Sunday,16,290,18,2016-10-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21627,14141,GO-20179000125,THEFT UNDER - BICYCLE,2016-11-18,2016,November,Friday,18,323,20,2017-01-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21628,14169,GO-20179009754,THEFT UNDER - BICYCLE,2017-07-06,2017,July,Thursday,6,187,15,2017-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21629,14183,GO-20179013438,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,20,2017-08-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21630,14189,GO-20179014711,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,16,2017-09-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21631,14202,GO-20171773008,THEFT OF EBIKE UNDER $5000,2017-09-29,2017,September,Friday,29,272,12,2017-09-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21632,14245,GO-20189019886,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,14,2018-06-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21633,14249,GO-20189020618,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,16,2018-06-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21634,14284,GO-20209017850,THEFT UNDER,2020-07-16,2020,July,Thursday,16,198,6,2020-07-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21635,19159,GO-20189015447,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,22,2018-05-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21636,25325,GO-20189020340,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,23,2018-06-26,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21637,2283,GO-20189014373,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,22,2018-05-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21638,21841,GO-20143136057,THEFT UNDER,2014-10-17,2014,October,Friday,17,290,19,2014-10-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21639,14285,GO-20201362686,PROPERTY - FOUND,2020-07-16,2020,July,Thursday,16,198,7,2020-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21640,14296,GO-20209020105,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,10,2020-08-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21641,14297,GO-20201543855,THEFT UNDER,2020-08-17,2020,August,Monday,17,230,6,2020-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21642,14306,GO-20209021995,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,2,2020-09-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21643,14314,GO-20209022837,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,0,2020-09-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21644,14315,GO-20209022837,THEFT UNDER,2020-09-03,2020,September,Thursday,3,247,0,2020-09-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21645,14346,GO-20209032788,THEFT UNDER,2020-12-05,2020,December,Saturday,5,340,2,2020-12-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21646,14450,GO-20181583572,B&E,2018-08-27,2018,August,Monday,27,239,3,2018-08-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21647,14451,GO-20181583572,B&E,2018-08-27,2018,August,Monday,27,239,3,2018-08-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21648,14471,GO-20189035326,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,18,2018-10-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21649,14473,GO-20182014468,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,1,2018-11-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21650,14474,GO-20182014468,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,1,2018-11-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21651,14488,GO-20199002800,THEFT UNDER - BICYCLE,2019-01-18,2019,January,Friday,18,18,9,2019-01-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21652,14514,GO-20199016792,THEFT UNDER - BICYCLE,2019-05-26,2019,May,Sunday,26,146,15,2019-05-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21653,14542,GO-20199022179,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,8,2019-07-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21654,14571,GO-20191643562,THEFT UNDER - BICYCLE,2019-08-28,2019,August,Wednesday,28,240,3,2019-08-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21655,14598,GO-20199036219,THEFT UNDER - BICYCLE,2019-11-02,2019,November,Saturday,2,306,12,2019-11-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21656,14608,GO-20199041954,THEFT UNDER,2019-12-16,2019,December,Monday,16,350,6,2019-12-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21657,14620,GO-20209009642,THEFT UNDER,2020-03-22,2020,March,Sunday,22,82,22,2020-03-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21658,14622,GO-20209009928,THEFT UNDER,2020-03-19,2020,March,Thursday,19,79,13,2020-03-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21659,14623,GO-20209009928,THEFT UNDER,2020-03-19,2020,March,Thursday,19,79,13,2020-03-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21660,14626,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21661,14627,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21662,14643,GO-20209014054,THEFT UNDER,2020-05-23,2020,May,Saturday,23,144,5,2020-05-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21663,14645,GO-20209014109,THEFT UNDER,2020-05-27,2020,May,Wednesday,27,148,13,2020-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21664,14686,GO-20179011559,THEFT UNDER,2017-07-29,2017,July,Saturday,29,210,17,2017-08-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21665,14692,GO-20179012642,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,9,2017-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21666,14711,GO-20179014309,THEFT UNDER,2017-09-07,2017,September,Thursday,7,250,16,2017-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21667,14749,GO-20179022184,THEFT UNDER - BICYCLE,2017-12-13,2017,December,Wednesday,13,347,22,2017-12-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21668,14797,GO-20189017863,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,11,2018-06-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21669,14809,GO-20189020183,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,10,2018-06-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21670,14823,GO-20189023469,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,16,2018-07-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21671,14831,GO-20189024537,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,19,2018-07-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21672,14844,GO-20189027095,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,6,2018-08-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21673,15316,GO-20149003235,THEFT UNDER,2014-05-07,2014,May,Wednesday,7,127,23,2014-05-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21674,15403,GO-20151016814,B&E,2015-06-17,2015,June,Wednesday,17,168,2,2015-06-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21675,15418,GO-20151126423,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,12,2015-07-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21676,15426,GO-20159004701,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,22,2015-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21677,15452,GO-20151596498,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,16,2015-09-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21678,15476,GO-20159010695,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,13,2015-12-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21679,15495,GO-20169004342,THEFT UNDER,2016-05-08,2016,May,Sunday,8,129,23,2016-05-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21680,15516,GO-20169006504,THEFT UNDER,2016-06-28,2016,June,Tuesday,28,180,21,2016-06-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21681,15517,GO-20161149936,THEFT OF EBIKE UNDER $5000,2016-06-21,2016,June,Tuesday,21,173,12,2016-07-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21682,15535,GO-20169008459,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,16,2016-08-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21683,15549,GO-20169009889,THEFT UNDER,2016-09-02,2016,September,Friday,2,246,21,2016-09-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21684,15567,GO-20161844885,THEFT UNDER - BICYCLE,2016-10-17,2016,October,Monday,17,291,5,2016-10-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21685,15572,GO-20169012847,THEFT UNDER,2016-10-31,2016,October,Monday,31,305,10,2016-11-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21686,15580,GO-20169014843,THEFT UNDER - BICYCLE,2016-12-16,2016,December,Friday,16,351,1,2016-12-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21687,15608,GO-20179006747,THEFT UNDER,2017-05-21,2017,May,Sunday,21,141,4,2017-05-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21688,15610,GO-2017947553,THEFT UNDER - BICYCLE,2017-04-28,2017,April,Friday,28,118,14,2017-05-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21689,15852,GO-20149001985,THEFT UNDER,2014-03-12,2014,March,Wednesday,12,71,19,2014-03-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21690,15858,GO-20141947979,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,16,2014-04-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21691,15859,GO-20141979503,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,16,2014-04-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21692,15867,GO-20142190454,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,7,2014-05-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21693,15869,GO-20142232827,THEFT UNDER,2014-05-27,2014,May,Tuesday,27,147,7,2014-06-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21694,15885,GO-20142500516,THEFT UNDER,2014-07-04,2014,July,Friday,4,185,16,2014-07-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21695,15888,GO-20142524900,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,13,2014-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21696,15892,GO-20149005381,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,15,2014-07-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21697,15893,GO-20149005393,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,15,2014-07-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21698,15920,GO-20143400060,THEFT UNDER,2014-11-30,2014,November,Sunday,30,334,20,2014-11-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21699,25335,GO-20189043383,THEFT UNDER - BICYCLE,2018-12-23,2018,December,Sunday,23,357,16,2018-12-27,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21700,2340,GO-20189015340,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,16,2018-05-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21701,21860,GO-20159002695,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,21,2015-05-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21702,2348,GO-20189015513,THEFT UNDER - BICYCLE,2018-05-19,2018,May,Saturday,19,139,0,2018-05-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21703,2398,GO-20189016319,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,19,2018-05-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21704,19162,GO-20189016223,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,23,2018-05-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21705,21868,GO-20159003289,THEFT UNDER,2014-12-16,2014,December,Tuesday,16,350,22,2015-06-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21706,2409,GO-20189016492,B&E,2018-04-26,2018,April,Thursday,26,116,14,2018-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21707,25336,GO-20189043383,THEFT UNDER - BICYCLE,2018-12-23,2018,December,Sunday,23,357,16,2018-12-27,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21708,19177,GO-20181215381,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,2,2018-07-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21709,21872,GO-20159003525,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,9,2015-06-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21710,2410,GO-20189016477,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,9,2018-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21711,2421,GO-20189016717,THEFT UNDER - BICYCLE,2018-05-28,2018,May,Monday,28,148,6,2018-05-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21712,2447,GO-20181006133,B&E,2018-06-02,2018,June,Saturday,2,153,13,2018-06-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21713,2522,GO-20189018133,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,9,2018-06-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21714,2536,GO-20189018395,THEFT UNDER - BICYCLE,2018-05-26,2018,May,Saturday,26,146,14,2018-06-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21715,2609,GO-20189019191,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,4,2018-06-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21716,2623,GO-20189019380,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,21,2018-06-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21717,2640,GO-20189018349,THEFT UNDER - BICYCLE,2018-06-03,2018,June,Sunday,3,154,19,2018-06-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21718,2660,GO-20189019942,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,13,2018-06-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21719,2662,GO-20189019956,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,17,2018-06-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21720,2669,GO-20189020077,THEFT UNDER - BICYCLE,2018-06-15,2018,June,Friday,15,166,1,2018-06-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21721,2680,GO-20189020020,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,12,2018-06-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21722,2762,GO-20189021329,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,16,2018-07-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21723,2787,GO-20189021701,THEFT UNDER - BICYCLE,2018-06-30,2018,June,Saturday,30,181,16,2018-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21724,2795,GO-20189021786,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,18,2018-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21725,2818,GO-20189022127,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,7,2018-07-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21726,2856,GO-20189022693,THEFT FROM MOTOR VEHICLE UNDER,2018-06-19,2018,June,Tuesday,19,170,20,2018-07-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21727,2858,GO-20189022656,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,20,2018-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21728,2869,GO-20189022865,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,9,2018-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21729,2887,GO-20189023112,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,0,2018-07-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21730,2993,GO-20189024188,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,23,2018-07-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21731,3052,GO-20189024858,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,8,2018-08-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21732,3065,GO-20189025011,THEFT FROM MOTOR VEHICLE UNDER,2018-08-03,2018,August,Friday,3,215,0,2018-08-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21733,3105,GO-20189025413,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,22,2018-08-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21734,3168,GO-20189025981,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,18,2018-08-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21735,3206,GO-20189026056,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,9,2018-08-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21736,3213,GO-20189026492,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,0,2018-08-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21737,3424,GO-20189029606,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,13,2018-09-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21738,3425,GO-20189029613,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,15,2018-09-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21739,3430,GO-20189029724,THEFT UNDER - BICYCLE,2018-09-08,2018,September,Saturday,8,251,13,2018-09-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21740,3479,GO-20181717000,B&E,2018-09-16,2018,September,Sunday,16,259,5,2018-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21741,3501,GO-20181724149,B&E,2018-09-16,2018,September,Sunday,16,259,0,2018-09-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21742,3518,GO-20189031222,THEFT UNDER,2018-09-20,2018,September,Thursday,20,263,6,2018-09-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21743,3560,GO-20189031930,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,1,2018-09-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21744,3562,GO-20189031930,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,1,2018-09-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21745,3649,GO-20189033442,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,0,2018-10-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21746,3718,GO-20189034496,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,22,2018-10-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21747,3752,GO-20189035326,THEFT UNDER - BICYCLE,2018-10-23,2018,October,Tuesday,23,296,18,2018-10-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21748,3755,GO-20189035357,THEFT UNDER - BICYCLE,2018-10-22,2018,October,Monday,22,295,22,2018-10-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21749,3796,GO-20182006640,B&E W'INTENT,2018-10-22,2018,October,Monday,22,295,1,2018-10-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21750,3808,GO-20182027909,THEFT UNDER - BICYCLE,2018-10-25,2018,October,Thursday,25,298,10,2018-11-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21751,3824,GO-20189037224,THEFT UNDER - BICYCLE,2018-10-17,2018,October,Wednesday,17,290,13,2018-11-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21752,3861,GO-20189038411,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,23,2018-11-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21753,3862,GO-20189038412,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,23,2018-11-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21754,3885,GO-20189039057,THEFT UNDER - BICYCLE,2018-11-20,2018,November,Tuesday,20,324,11,2018-11-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21755,3967,GO-20189043612,THEFT UNDER - BICYCLE,2018-12-28,2018,December,Friday,28,362,20,2018-12-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21756,3968,GO-20189043612,THEFT UNDER - BICYCLE,2018-12-28,2018,December,Friday,28,362,20,2018-12-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21757,3995,GO-201953949,THEFT OVER - BICYCLE,2019-01-07,2019,January,Monday,7,7,6,2019-01-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21758,3996,GO-201953949,THEFT OVER - BICYCLE,2019-01-07,2019,January,Monday,7,7,6,2019-01-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21759,4016,GO-20199003015,THEFT UNDER - BICYCLE,2019-01-21,2019,January,Monday,21,21,14,2019-01-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21760,4017,GO-20199003108,THEFT UNDER - BICYCLE,2019-01-21,2019,January,Monday,21,21,23,2019-01-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21761,4083,GO-20199007767,THEFT UNDER - BICYCLE,2019-03-02,2019,March,Saturday,2,61,10,2019-03-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21762,4092,GO-2019466639,THEFT UNDER - BICYCLE,2019-03-14,2019,March,Thursday,14,73,14,2019-03-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21763,4132,GO-20199010712,THEFT UNDER - BICYCLE,2019-04-04,2019,April,Thursday,4,94,10,2019-04-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21764,4170,GO-20199012037,THEFT UNDER,2019-04-15,2019,April,Monday,15,105,18,2019-04-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21765,4171,GO-20199012037,THEFT UNDER,2019-04-15,2019,April,Monday,15,105,18,2019-04-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21766,4280,GO-20199015100,THEFT UNDER - BICYCLE,2019-05-14,2019,May,Tuesday,14,134,19,2019-05-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21767,4309,GO-2019927136,THEFT UNDER - BICYCLE,2019-05-21,2019,May,Tuesday,21,141,12,2019-05-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21768,4317,GO-20199015828,THEFT UNDER - BICYCLE,2019-05-21,2019,May,Tuesday,21,141,8,2019-05-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21769,4327,GO-20199015975,THEFT UNDER - BICYCLE,2019-05-22,2019,May,Wednesday,22,142,14,2019-05-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21770,4335,GO-20199016130,THEFT UNDER,2019-05-22,2019,May,Wednesday,22,142,21,2019-05-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21771,4363,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,2,2019-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21772,4364,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,2,2019-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21773,4422,GO-20199017743,THEFT UNDER - BICYCLE,2019-05-23,2019,May,Thursday,23,143,22,2019-06-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21774,4439,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,2,2019-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21775,4527,GO-20199019069,THEFT UNDER - BICYCLE,2019-06-17,2019,June,Monday,17,168,8,2019-06-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21776,4551,GO-20199019319,THEFT FROM MOTOR VEHICLE UNDER,2019-06-19,2019,June,Wednesday,19,170,18,2019-06-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21777,4583,GO-20199019665,THEFT UNDER - BICYCLE,2019-06-22,2019,June,Saturday,22,173,1,2019-06-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21778,4599,GO-20199020031,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,21,2019-06-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21779,4615,GO-20199020189,THEFT UNDER,2019-06-18,2019,June,Tuesday,18,169,21,2019-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21780,4631,GO-20191200623,THEFT OF EBIKE UNDER $5000,2019-06-26,2019,June,Wednesday,26,177,17,2019-06-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21781,4642,GO-20191216906,THEFT UNDER - BICYCLE,2019-06-28,2019,June,Friday,28,179,4,2019-06-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21782,4683,GO-20199021235,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,9,2019-07-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21783,4710,GO-20199021536,THEFT UNDER - BICYCLE,2019-07-07,2019,July,Sunday,7,188,6,2019-07-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21784,4751,GO-20199021933,THEFT FROM MOTOR VEHICLE UNDER,2019-07-11,2019,July,Thursday,11,192,21,2019-07-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21785,19179,GO-20189022524,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,18,2018-07-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21786,21882,GO-20159003921,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,11,2015-06-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21787,19180,GO-20189022772,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,4,2018-07-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21788,21894,GO-20159004705,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,6,2015-07-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21789,19189,GO-20189025915,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,18,2018-08-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21790,21940,GO-20169000054,THEFT UNDER,2016-01-02,2016,January,Saturday,2,2,13,2016-01-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21791,21960,GO-2016809232,THEFT UNDER - BICYCLE,2016-05-11,2016,May,Wednesday,11,132,9,2016-05-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21792,25349,GO-20199026597,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,13,2019-08-17,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21793,19199,GO-20189030690,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,15,2018-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21794,22181,GO-20169008924,THEFT UNDER - BICYCLE,2016-08-16,2016,August,Tuesday,16,229,16,2016-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21795,19216,GO-20182136853,THEFT UNDER - BICYCLE,2018-11-17,2018,November,Saturday,17,321,0,2018-11-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21796,25369,GO-2020971340,THEFT UNDER - BICYCLE,2020-05-26,2020,May,Tuesday,26,147,15,2020-05-26,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21797,22208,GO-20169012002,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,6,2016-10-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21798,19227,GO-2019927590,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,21,2019-05-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21799,25374,GO-20201275893,THEFT OF EBIKE UNDER $5000,2020-07-09,2020,July,Thursday,9,191,11,2020-07-10,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21800,22213,GO-20162111373,THEFT UNDER - BICYCLE,2016-11-23,2016,November,Wednesday,23,328,9,2016-11-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21801,19239,GO-20191079727,B&E,2019-06-11,2019,June,Tuesday,11,162,20,2019-06-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21802,25377,GO-20209018301,THEFT UNDER,2020-07-20,2020,July,Monday,20,202,12,2020-07-22,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)}",Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -21803,22217,GO-2017371146,THEFT OVER,2017-02-24,2017,February,Friday,24,55,8,2017-02-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21804,19242,GO-20199019122,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,19,2019-06-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21805,67,GO-2017167350,THEFT OF EBIKE UNDER $5000,2017-01-27,2017,January,Friday,27,27,9,2017-01-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21806,22224,GO-20179006946,THEFT UNDER - BICYCLE,2017-05-25,2017,May,Thursday,25,145,0,2017-05-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21807,19245,GO-20199020561,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,9,2019-06-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21808,68,GO-20179001237,THEFT UNDER - BICYCLE,2017-01-26,2017,January,Thursday,26,26,9,2017-01-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21809,71,GO-20179001265,THEFT OF EBIKE UNDER $5000,2017-01-27,2017,January,Friday,27,27,15,2017-01-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21810,108,GO-20179002500,THEFT UNDER - BICYCLE,2017-02-26,2017,February,Sunday,26,57,1,2017-02-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21811,113,GO-20179002541,THEFT UNDER - BICYCLE,2017-02-25,2017,February,Saturday,25,56,12,2017-02-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21812,119,GO-2017371146,THEFT OVER,2017-02-24,2017,February,Friday,24,55,8,2017-02-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21813,138,GO-20179002901,THEFT UNDER - BICYCLE,2017-03-05,2017,March,Sunday,5,64,9,2017-03-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21814,139,GO-20179002901,THEFT UNDER - BICYCLE,2017-03-05,2017,March,Sunday,5,64,9,2017-03-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21815,140,GO-20179002901,THEFT UNDER - BICYCLE,2017-03-05,2017,March,Sunday,5,64,9,2017-03-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21816,141,GO-20179002896,B&E,2017-02-25,2017,February,Saturday,25,56,12,2017-03-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21817,160,GO-20179003413,THEFT UNDER - BICYCLE,2017-03-17,2017,March,Friday,17,76,20,2017-03-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21818,164,GO-20179003546,THEFT UNDER,2017-02-24,2017,February,Friday,24,55,10,2017-03-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21819,204,GO-20179004448,THEFT UNDER - BICYCLE,2017-04-06,2017,April,Thursday,6,96,17,2017-04-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21820,258,GO-20179005078,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,18,2017-04-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21821,260,GO-2017707230,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,17,2017-04-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21822,265,GO-20179005117,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,12,2017-04-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21823,336,GO-20179005851,THEFT UNDER - BICYCLE,2017-05-06,2017,May,Saturday,6,126,23,2017-05-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21824,350,GO-20179006027,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,18,2017-05-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21825,358,GO-20179006081,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,13,2017-05-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21826,376,GO-20179006169,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,0,2017-05-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21827,383,GO-20179006260,THEFT UNDER - BICYCLE,2017-05-13,2017,May,Saturday,13,133,10,2017-05-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21828,411,GO-2017870485,THEFT UNDER - BICYCLE,2017-05-16,2017,May,Tuesday,16,136,19,2017-05-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21829,413,GO-20179006539,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,7,2017-05-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21830,422,GO-20179006629,THEFT UNDER - BICYCLE,2017-05-16,2017,May,Tuesday,16,136,17,2017-05-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21831,429,GO-20179006667,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,13,2017-05-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21832,435,GO-20179006748,THEFT UNDER - BICYCLE,2017-05-21,2017,May,Sunday,21,141,18,2017-05-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21833,442,GO-2017895741,THEFT UNDER - BICYCLE,2017-05-20,2017,May,Saturday,20,140,9,2017-05-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21834,624,GO-20179008124,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,20,2017-06-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21835,648,GO-20179008350,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,17,2017-06-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21836,662,GO-20179008551,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,21,2017-06-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21837,704,GO-20171109076,THEFT UNDER - BICYCLE,2017-06-20,2017,June,Tuesday,20,171,19,2017-06-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21838,712,GO-20179008853,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,14,2017-06-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21839,721,GO-20179008965,THEFT UNDER - BICYCLE,2017-06-17,2017,June,Saturday,17,168,17,2017-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21840,738,GO-20179009137,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,20,2017-06-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21841,750,GO-20179009181,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,1,2017-06-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21842,751,GO-20179009184,THEFT UNDER,2017-06-29,2017,June,Thursday,29,180,1,2017-06-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21843,964,GO-20171323454,THEFT UNDER,2017-07-16,2017,July,Sunday,16,197,12,2017-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21844,972,GO-20171189163,POSSESSION HOUSE BREAK INSTRUM,2017-07-03,2017,July,Monday,3,184,17,2017-07-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21845,1032,GO-20171385192,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,8,2017-08-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21846,1052,GO-20171409971,THEFT UNDER - BICYCLE,2017-08-03,2017,August,Thursday,3,215,19,2017-08-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21847,1089,GO-20179011975,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,21,2017-08-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21848,1097,GO-20179012000,THEFT UNDER - BICYCLE,2017-08-07,2017,August,Monday,7,219,15,2017-08-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21849,1113,GO-20179012123,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,2,2017-08-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21850,1124,GO-20179012213,THEFT UNDER - BICYCLE,2017-08-11,2017,August,Friday,11,223,19,2017-08-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21851,1132,GO-20179012263,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,4,2017-08-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21852,1133,GO-20179012263,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,4,2017-08-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21853,1183,GO-20179012777,THEFT UNDER - BICYCLE,2017-08-17,2017,August,Thursday,17,229,9,2017-08-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21854,1224,GO-20179013105,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,17,2017-08-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21855,1226,GO-20171532464,B&E,2017-08-21,2017,August,Monday,21,233,22,2017-08-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21856,1256,GO-20179013468,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,20,2017-08-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21857,1293,GO-20171528302,ROBBERY WITH WEAPON,2017-08-23,2017,August,Wednesday,23,235,21,2017-08-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21858,1316,GO-20179014030,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,20,2017-09-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21859,1317,GO-20179014030,THEFT UNDER,2017-09-03,2017,September,Sunday,3,246,20,2017-09-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21860,1348,GO-20171611079,THEFT UNDER - BICYCLE,2017-09-05,2017,September,Tuesday,5,248,22,2017-09-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21861,1377,GO-20179014537,THEFT UNDER - BICYCLE,2017-09-11,2017,September,Monday,11,254,9,2017-09-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21862,1463,GO-20179015241,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,2,2017-09-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21863,1524,GO-20179015763,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,18,2017-09-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21864,1546,GO-20179016011,THEFT UNDER - BICYCLE,2017-09-28,2017,September,Thursday,28,271,10,2017-09-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21865,1569,GO-20179016283,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,0,2017-10-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21866,1570,GO-20179016305,THEFT UNDER - BICYCLE,2017-10-02,2017,October,Monday,2,275,10,2017-10-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21867,1571,GO-20179016281,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,0,2017-10-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21868,1596,GO-20179016574,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,23,2017-10-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21869,1614,GO-20179016725,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,11,2017-10-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21870,1624,GO-20179016837,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,18,2017-10-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21871,1628,GO-20179016912,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,9,2017-10-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21872,1631,GO-20179016864,THEFT UNDER,2017-10-08,2017,October,Sunday,8,281,21,2017-10-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21873,1693,GO-20179017621,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,14,2017-10-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21874,1698,GO-20179017654,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,21,2017-10-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21875,22228,GO-20179007974,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,23,2017-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21876,19248,GO-20199021168,THEFT UNDER - BICYCLE,2019-07-04,2019,July,Thursday,4,185,20,2019-07-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21877,22241,GO-20179011051,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,16,2017-07-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21878,19256,GO-20199024013,THEFT UNDER - BICYCLE,2019-07-26,2019,July,Friday,26,207,8,2019-07-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21879,22250,GO-20179013486,THEFT UNDER - BICYCLE,2017-08-27,2017,August,Sunday,27,239,20,2017-08-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21880,19258,GO-20199024263,THEFT UNDER - BICYCLE,2019-07-28,2019,July,Sunday,28,209,20,2019-07-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21881,22256,GO-20179014670,THEFT UNDER - BICYCLE,2017-09-11,2017,September,Monday,11,254,15,2017-09-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21882,19263,GO-20191500257,THEFT OF EBIKE UNDER $5000,2019-08-05,2019,August,Monday,5,217,5,2019-08-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21883,22264,GO-20171874270,B&E,2017-10-15,2017,October,Sunday,15,288,3,2017-10-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21884,19267,GO-20199026653,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,15,2019-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21885,22283,GO-20189011443,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,18,2018-04-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21886,19268,GO-20199026842,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,8,2019-08-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21887,22285,GO-20189013105,THEFT UNDER - BICYCLE,2018-04-13,2018,April,Friday,13,103,15,2018-04-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21888,19287,GO-20199029646,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,8,2019-09-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21889,22291,GO-20189015992,THEFT UNDER - BICYCLE,2018-05-23,2018,May,Wednesday,23,143,19,2018-05-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21890,19289,GO-20199030019,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,16,2019-09-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21891,22305,GO-20189021489,THEFT UNDER - BICYCLE,2018-05-04,2018,May,Friday,4,124,12,2018-07-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21892,22321,GO-20189027222,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,18,2018-08-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21893,22335,GO-20189030659,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,12,2018-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21894,22367,GO-20199010225,THEFT UNDER - BICYCLE,2019-03-27,2019,March,Wednesday,27,86,22,2019-03-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21895,22405,GO-20199027687,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,0,2019-08-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21896,22407,GO-20199028391,THEFT UNDER - BICYCLE,2019-08-26,2019,August,Monday,26,238,1,2019-08-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21897,22408,GO-20199028660,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,17,2019-09-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21898,22414,GO-20191752847,THEFT UNDER - BICYCLE,2019-09-12,2019,September,Thursday,12,255,17,2019-09-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21899,22418,GO-20191787331,B&E,2019-09-17,2019,September,Tuesday,17,260,3,2019-09-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21900,22429,GO-20192178906,B&E,2019-11-06,2019,November,Wednesday,6,310,0,2019-11-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21901,22431,GO-20192217394,THEFT UNDER - BICYCLE,2019-11-16,2019,November,Saturday,16,320,20,2019-11-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21902,22432,GO-20192331019,THEFT UNDER - BICYCLE,2019-11-06,2019,November,Wednesday,6,310,0,2019-12-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21903,22440,GO-20209006909,THEFT UNDER - BICYCLE,2020-02-16,2020,February,Sunday,16,47,0,2020-02-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21904,22444,GO-20209008321,B&E,2020-03-04,2020,March,Wednesday,4,64,5,2020-03-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21905,22445,GO-20209008925,THEFT UNDER - BICYCLE,2020-01-15,2020,January,Wednesday,15,15,13,2020-03-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21906,22452,GO-20209010818,THEFT UNDER - BICYCLE,2019-11-09,2019,November,Saturday,9,313,21,2020-04-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21907,22454,GO-20209011229,THEFT UNDER - BICYCLE,2020-03-30,2020,March,Monday,30,90,19,2020-04-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21908,22457,GO-20209011716,THEFT UNDER - BICYCLE,2020-04-21,2020,April,Tuesday,21,112,1,2020-04-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21909,22463,GO-20209012660,THEFT UNDER - BICYCLE,2020-05-07,2020,May,Thursday,7,128,16,2020-05-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21910,22470,GO-20209014342,THEFT UNDER - BICYCLE,2020-03-16,2020,March,Monday,16,76,21,2020-06-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21911,22487,GO-20201178933,THEFT OF EBIKE UNDER $5000,2020-06-26,2020,June,Friday,26,178,13,2020-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21912,22499,GO-20201279923,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,13,2020-07-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21913,22502,GO-20209017421,THEFT UNDER - BICYCLE,2020-07-12,2020,July,Sunday,12,194,18,2020-07-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21914,22508,GO-20201369210,B&E W'INTENT,2020-07-23,2020,July,Thursday,23,205,0,2020-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21915,22509,GO-20201369210,B&E W'INTENT,2020-07-23,2020,July,Thursday,23,205,0,2020-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21916,22520,GO-20209019192,THEFT UNDER - BICYCLE,2020-07-31,2020,July,Friday,31,213,3,2020-08-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21917,22558,GO-20209023091,THEFT UNDER - BICYCLE,2020-09-10,2020,September,Thursday,10,254,18,2020-09-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21918,22568,GO-20209024361,THEFT UNDER - BICYCLE,2020-09-11,2020,September,Friday,11,255,16,2020-09-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21919,22583,GO-20202049760,THEFT UNDER - BICYCLE,2020-10-28,2020,October,Wednesday,28,302,22,2020-10-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21920,22594,GO-20209030199,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,13,2020-11-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21921,22850,GO-20149004659,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,21,2014-07-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21922,22856,GO-20142539170,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,18,2014-07-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21923,22857,GO-20142564926,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,19,2014-07-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21924,22882,GO-20149007790,THEFT UNDER,2014-10-01,2014,October,Wednesday,1,274,8,2014-10-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21925,22886,GO-20159000009,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,18,2015-01-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21926,22893,GO-20159001987,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,18,2015-04-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21927,22896,GO-20159002262,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,19,2015-04-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21928,22902,GO-2015853076,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,18,2015-05-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21929,22906,GO-2015998181,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,0,2015-06-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21930,22918,GO-20159005812,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,6,2015-08-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21931,22919,GO-20159005812,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,6,2015-08-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21932,22924,GO-20159006485,THEFT UNDER,2015-08-28,2015,August,Friday,28,240,21,2015-08-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21933,22949,GO-20159010759,THEFT UNDER,2015-12-09,2015,December,Wednesday,9,343,9,2015-12-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21934,22950,GO-20159010787,THEFT UNDER,2015-12-11,2015,December,Friday,11,345,8,2015-12-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21935,22973,GO-20169004925,THEFT UNDER - BICYCLE,2016-05-19,2016,May,Thursday,19,140,19,2016-05-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21936,22984,GO-20169007493,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,9,2016-07-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21937,22991,GO-20169008678,THEFT UNDER - BICYCLE,2016-08-12,2016,August,Friday,12,225,19,2016-08-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21938,22996,GO-20169009085,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,23,2016-08-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21939,23805,GO-20209017324,THEFT UNDER,2020-07-09,2020,July,Thursday,9,191,15,2020-07-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21940,23825,GO-20209021181,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,11,2020-08-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21941,23850,GO-20209025914,THEFT UNDER,2020-10-08,2020,October,Thursday,8,282,13,2020-10-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21942,23867,GO-20209033193,THEFT UNDER,2020-12-01,2020,December,Tuesday,1,336,16,2020-12-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21943,23995,GO-20189035490,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,4,2018-10-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21944,24018,GO-2019222080,THEFT OF EBIKE UNDER $5000,2019-01-08,2019,January,Tuesday,8,8,20,2019-02-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21945,24043,GO-20199016583,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,2,2019-05-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21946,24057,GO-20199020670,THEFT UNDER,2019-06-22,2019,June,Saturday,22,173,12,2019-07-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21947,24059,GO-20199020860,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,22,2019-07-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21948,24090,GO-20199027316,THEFT UNDER - BICYCLE,2019-08-22,2019,August,Thursday,22,234,9,2019-08-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21949,24105,GO-20199031556,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,17,2019-09-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21950,24106,GO-20191860555,THEFT FROM MOTOR VEHICLE OVER,2019-09-26,2019,September,Thursday,26,269,20,2019-09-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21951,24123,GO-20199036864,THEFT UNDER - BICYCLE,2019-11-08,2019,November,Friday,8,312,20,2019-11-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21952,24138,GO-20199039724,THEFT UNDER,2019-12-03,2019,December,Tuesday,3,337,10,2019-12-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21953,24141,GO-20209000482,THEFT UNDER,2020-01-01,2020,January,Wednesday,1,1,6,2020-01-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21954,19300,GO-20199032138,THEFT UNDER - BICYCLE,2019-09-21,2019,September,Saturday,21,264,15,2019-09-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21955,19306,GO-20199032743,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,19,2019-10-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21956,19326,GO-20209000603,THEFT UNDER - BICYCLE,2020-01-06,2020,January,Monday,6,6,11,2020-01-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21957,19336,GO-2020368114,THEFT UNDER - BICYCLE,2020-02-18,2020,February,Tuesday,18,49,10,2020-02-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21958,19344,GO-20209009681,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,11,2020-03-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21959,19345,GO-20209009681,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,11,2020-03-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21960,19346,GO-20209009681,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,11,2020-03-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21961,19357,GO-2020794300,B&E W'INTENT,2020-04-01,2020,April,Wednesday,1,92,18,2020-04-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21962,19622,GO-20142207077,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,14,2014-06-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21963,19624,GO-20142301660,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,19,2014-06-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21964,19640,GO-20142550637,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,8,2014-07-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21965,19657,GO-20149007310,THEFT UNDER,2014-09-27,2014,September,Saturday,27,270,0,2014-09-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21966,19660,GO-20143064716,PROPERTY - FOUND,2013-07-10,2013,July,Wednesday,10,191,16,2014-10-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21967,19675,GO-2015422420,PROPERTY - FOUND,2015-03-05,2015,March,Thursday,5,64,0,2015-03-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21968,19687,GO-20151038553,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,14,2015-06-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21969,19701,GO-20159005157,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,0,2015-07-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21970,19704,GO-20159005394,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,18,2015-08-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21971,19706,GO-20159005594,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,17,2015-08-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21972,19717,GO-20159006308,THEFT UNDER - BICYCLE,2015-08-16,2015,August,Sunday,16,228,6,2015-08-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21973,19729,GO-20159007319,THEFT UNDER,2015-09-12,2015,September,Saturday,12,255,12,2015-09-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21974,19736,GO-20159008346,THEFT UNDER,2015-10-07,2015,October,Wednesday,7,280,23,2015-10-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21975,19737,GO-20159008349,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,17,2015-10-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21976,19748,GO-20159011197,THEFT UNDER,2015-12-08,2015,December,Tuesday,8,342,8,2015-12-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21977,19769,GO-2016987694,THEFT OF EBIKE UNDER $5000,2016-06-05,2016,June,Sunday,5,157,2,2016-06-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21978,20788,GO-20201407816,THEFT UNDER - BICYCLE,2020-07-24,2020,July,Friday,24,206,10,2020-07-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21979,20816,GO-20209024830,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,18,2020-09-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21980,20822,GO-20209026416,THEFT UNDER,2020-10-14,2020,October,Wednesday,14,288,0,2020-10-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21981,20837,GO-20209030663,THEFT UNDER,2020-11-14,2020,November,Saturday,14,319,17,2020-11-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21982,20842,GO-20209032788,THEFT UNDER,2020-12-05,2020,December,Saturday,5,340,2,2020-12-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21983,20985,GO-20199005325,THEFT UNDER - BICYCLE,2019-01-29,2019,January,Tuesday,29,29,13,2019-02-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21984,20988,GO-20199009498,THEFT UNDER - BICYCLE,2019-01-01,2019,January,Tuesday,1,1,0,2019-03-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21985,20990,GO-20199012645,THEFT UNDER - BICYCLE,2019-04-20,2019,April,Saturday,20,110,16,2019-04-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21986,20998,GO-20199016219,THEFT UNDER - BICYCLE,2019-05-01,2019,May,Wednesday,1,121,22,2019-05-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21987,21015,GO-20199020194,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,17,2019-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21988,21033,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,6,2019-08-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21989,21034,GO-20191454104,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,6,2019-08-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21990,21059,GO-20199029483,THEFT UNDER - BICYCLE,2019-09-09,2019,September,Monday,9,252,7,2019-09-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21991,21063,GO-20199030210,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,22,2019-09-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21992,21098,GO-20199039716,THEFT UNDER,2019-12-03,2019,December,Tuesday,3,337,4,2019-12-04,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21993,21100,GO-20199041354,THEFT UNDER,2019-12-18,2019,December,Wednesday,18,352,10,2019-12-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21994,21101,GO-20199041954,THEFT UNDER,2019-12-16,2019,December,Monday,16,350,6,2019-12-24,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21995,21102,GO-20209000500,THEFT UNDER,2019-12-27,2019,December,Friday,27,361,20,2020-01-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21996,21105,GO-20209001989,THEFT UNDER,2019-12-28,2019,December,Saturday,28,362,10,2020-01-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21997,21106,GO-20209003681,THEFT UNDER,2020-01-30,2020,January,Thursday,30,30,12,2020-01-30,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21998,21115,GO-2020465545,THEFT UNDER - BICYCLE,2020-03-05,2020,March,Thursday,5,65,10,2020-03-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -21999,21118,GO-20209009506,THEFT UNDER,2020-03-20,2020,March,Friday,20,80,15,2020-03-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22000,21119,GO-20209009835,THEFT UNDER,2020-03-25,2020,March,Wednesday,25,85,20,2020-03-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22001,21123,GO-2020690224,THEFT OF EBIKE UNDER $5000,2020-04-08,2020,April,Wednesday,8,99,17,2020-04-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22002,21124,GO-20209011137,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,17,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22003,21128,GO-2020755659,THEFT UNDER - BICYCLE,2020-04-20,2020,April,Monday,20,111,10,2020-04-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22004,21166,GO-20201363826,B&E,2020-07-22,2020,July,Wednesday,22,204,15,2020-07-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22005,21190,GO-20179010890,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,2,2017-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22006,21199,GO-20179012912,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,1,2017-08-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22007,21220,GO-20171795110,THEFT UNDER - BICYCLE,2017-10-03,2017,October,Tuesday,3,276,15,2017-10-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22008,21239,GO-20173112536,THEFT UNDER - BICYCLE,2017-11-29,2017,November,Wednesday,29,333,23,2017-12-01,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22009,21285,GO-20189017863,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,11,2018-06-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22010,21294,GO-20189019037,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,12,2018-06-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22011,21300,GO-20189020372,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,16,2018-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22012,21334,GO-20189026997,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,10,2018-08-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22013,21354,GO-20189032990,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,9,2018-10-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22014,21365,GO-20189035490,THEFT UNDER - BICYCLE,2018-10-24,2018,October,Wednesday,24,297,4,2018-10-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22015,6282,GO-20209014390,THEFT UNDER,2020-05-29,2020,May,Friday,29,150,16,2020-06-02,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22016,6289,GO-20201020336,B&E,2020-06-03,2020,June,Wednesday,3,155,6,2020-06-03,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22017,6476,GO-20209016247,THEFT UNDER - BICYCLE,2020-06-26,2020,June,Friday,26,178,2,2020-06-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22018,6545,GO-20209016994,THEFT UNDER,2020-07-05,2020,July,Sunday,5,187,14,2020-07-07,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22019,8447,GO-20149005097,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,8,2014-07-18,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22020,6866,GO-20209019375,THEFT UNDER,2020-07-30,2020,July,Thursday,30,212,23,2020-08-04,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22021,6979,GO-20201539033,THEFT UNDER - BICYCLE,2020-08-16,2020,August,Sunday,16,229,12,2020-08-18,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22022,7245,GO-20209023225,THEFT UNDER,2020-09-14,2020,September,Monday,14,258,10,2020-09-14,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22023,7348,GO-20209024348,THEFT UNDER,2020-09-24,2020,September,Thursday,24,268,9,2020-09-24,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22024,16078,GO-20209023105,THEFT UNDER - BICYCLE,2020-09-12,2020,September,Saturday,12,256,10,2020-09-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22025,8000,GO-20142171168,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,8,2014-05-28,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22026,8107,GO-20142294892,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,8,2014-06-15,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22027,8108,GO-20142294892,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,8,2014-06-15,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22028,8454,GO-20149005109,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,9,2014-07-18,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22029,9342,GO-2015482541,THEFT UNDER,2015-03-22,2015,March,Sunday,22,81,15,2015-03-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22030,9768,GO-2015971553,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,1,2015-06-10,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22031,9769,GO-2015971553,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,1,2015-06-10,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22032,9851,GO-20159003849,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,0,2015-06-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22033,10167,GO-20159005260,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,21,2015-08-02,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22034,10590,GO-20159008162,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,6,2015-10-05,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22035,10650,GO-20159008707,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,15,2015-10-17,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22036,10653,GO-20159008707,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,15,2015-10-17,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22037,10679,GO-20159008891,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,18,2015-10-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22038,11005,GO-2016314087,THEFT UNDER,2016-02-21,2016,February,Sunday,21,52,22,2016-02-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22039,11385,GO-2016909101,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,17,2016-05-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22040,11386,GO-2016909101,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,17,2016-05-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22041,11532,GO-20169005817,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,9,2016-06-15,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22042,12139,GO-20169009045,THEFT UNDER - BICYCLE,2016-08-15,2016,August,Monday,15,228,22,2016-08-19,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22043,12213,GO-20169009591,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,2,2016-08-28,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22044,12435,GO-20169010997,THEFT UNDER - BICYCLE,2016-09-22,2016,September,Thursday,22,266,22,2016-09-23,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22045,12451,GO-20161706495,THEFT UNDER - BICYCLE,2016-09-22,2016,September,Thursday,22,266,15,2016-09-25,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22046,12649,GO-20169012334,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,9,2016-10-20,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22047,12664,GO-20169012430,THEFT UNDER,2016-10-20,2016,October,Thursday,20,294,3,2016-10-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22048,12885,GO-20189027403,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,9,2018-08-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22049,12990,GO-20191933894,THEFT UNDER,2019-10-04,2019,October,Friday,4,277,0,2019-10-04,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22050,13018,GO-20209004380,THEFT UNDER,2020-01-16,2020,January,Thursday,16,16,4,2020-02-05,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22051,13043,GO-20209014828,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,21,2020-06-08,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22052,14107,GO-20169010605,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,21,2016-09-17,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22053,14174,GO-20171322495,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,21,2017-07-23,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22054,14909,GO-20202162573,THEFT OF EBIKE UNDER $5000,2020-11-13,2020,November,Friday,13,318,14,2020-11-18,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22055,15355,GO-20149006456,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,9,2014-09-01,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22056,15356,GO-20149006456,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,9,2014-09-01,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22057,15491,GO-20169003385,THEFT UNDER - BICYCLE,2016-04-13,2016,April,Wednesday,13,104,21,2016-04-14,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22058,15605,GO-20179005936,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,17,2017-05-08,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22059,15632,GO-2018529467,THEFT UNDER - BICYCLE,2018-03-23,2018,March,Friday,23,82,20,2018-03-23,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22060,15634,GO-20189019649,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,7,2018-06-21,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22061,15873,GO-20149003970,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,22,2014-06-10,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22062,15997,GO-20152048166,THEFT UNDER,2015-11-29,2015,November,Sunday,29,333,16,2015-11-29,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22063,16056,GO-20201522289,B&E,2020-08-14,2020,August,Friday,14,227,12,2020-08-14,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22064,18236,GO-20189022619,THEFT UNDER - BICYCLE,2018-07-10,2018,July,Tuesday,10,191,19,2018-07-16,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22065,18244,GO-20182044894,B&E,2018-11-06,2018,November,Tuesday,6,310,0,2018-11-06,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22066,18251,GO-20191164758,B&E,2019-06-23,2019,June,Sunday,23,174,11,2019-06-23,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22067,18252,GO-20191164758,B&E,2019-06-23,2019,June,Sunday,23,174,11,2019-06-23,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22068,18253,GO-20191164758,B&E,2019-06-23,2019,June,Sunday,23,174,11,2019-06-23,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22069,18274,GO-20209018682,THEFT UNDER,2020-07-25,2020,July,Saturday,25,207,9,2020-07-27,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22070,18459,GO-20159007558,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,18,2015-09-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22071,18503,GO-20169006187,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,12,2016-06-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22072,18866,GO-20142973569,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,21,2014-09-25,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22073,18974,GO-20169004312,THEFT UNDER,2016-05-09,2016,May,Monday,9,130,13,2016-05-09,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22074,19181,GO-20189023083,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,22,2018-07-19,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22075,19210,GO-20189036185,THEFT UNDER - BICYCLE,2018-10-30,2018,October,Tuesday,30,303,7,2018-10-30,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22076,19224,GO-20199013194,PROPERTY - RECOVERED,2019-04-26,2019,April,Friday,26,116,17,2019-04-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22077,19626,GO-20149004208,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,2,2014-06-18,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22078,19716,GO-20151484207,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,23,2015-08-28,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22079,19738,GO-20159008400,THEFT UNDER,2015-10-09,2015,October,Friday,9,282,6,2015-10-09,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22080,21383,GO-20161019677,PROPERTY - RECOVERED,2016-06-11,2016,June,Saturday,11,163,23,2016-06-11,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22081,21515,GO-20173069571,B&E,2017-11-25,2017,November,Saturday,25,329,0,2017-11-25,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22082,21545,GO-20199026257,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,21,2019-08-14,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22083,21551,GO-20199039215,THEFT UNDER,2019-11-28,2019,November,Thursday,28,332,8,2019-11-28,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22084,21803,GO-20149004722,THEFT UNDER,2014-07-05,2014,July,Saturday,5,186,4,2014-07-05,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22085,21916,GO-20159006237,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,17,2015-08-27,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22086,22257,GO-20179014748,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,7,2017-09-14,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22087,22277,GO-201812267,B&E,2017-11-03,2017,November,Friday,3,307,0,2018-01-03,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22088,22324,GO-20181572554,B&E,2018-08-01,2018,August,Wednesday,1,213,0,2018-08-25,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22089,22411,GO-20199029511,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,18,2019-09-10,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22090,22451,GO-20209010514,THEFT UNDER - BICYCLE,2020-04-04,2020,April,Saturday,4,95,16,2020-04-05,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22091,22461,GO-2020797474,B&E,2020-04-27,2020,April,Monday,27,118,14,2020-04-27,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22092,22466,GO-20209013601,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,22,2020-05-21,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22093,22479,GO-20209015192,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,19,2020-06-12,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22094,22831,GO-20142189652,THEFT OVER,2014-05-27,2014,May,Tuesday,27,147,17,2014-05-31,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22095,22832,GO-20142189652,THEFT OVER,2014-05-27,2014,May,Tuesday,27,147,17,2014-05-31,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22096,22833,GO-20142189652,THEFT OVER,2014-05-27,2014,May,Tuesday,27,147,17,2014-05-31,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22097,22900,GO-20159002889,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,18,2015-05-19,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22098,22929,GO-20159007021,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,22,2015-09-11,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22099,22930,GO-20159007021,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,22,2015-09-11,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22100,24406,GO-20201936698,THEFT UNDER - BICYCLE,2020-10-11,2020,October,Sunday,11,285,14,2020-10-12,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22101,24646,GO-20142811852,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,21,2014-08-31,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22102,24647,GO-20142811852,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,21,2014-08-31,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22103,24648,GO-20142811852,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,21,2014-08-31,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22104,24666,GO-20143087984,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,11,2014-10-11,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22105,24707,GO-20151014387,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,0,2015-06-17,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22106,24708,GO-20151014387,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,0,2015-06-17,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22107,25314,GO-20179012555,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,11,2017-08-16,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22108,25315,GO-20179012555,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,11,2017-08-16,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22109,25323,GO-20189017679,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,18,2018-06-06,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22110,25359,GO-20191812757,B&E,2019-09-20,2019,September,Friday,20,263,16,2019-09-20,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22111,25360,GO-20199032147,THEFT UNDER - BICYCLE,2019-09-30,2019,September,Monday,30,273,7,2019-09-30,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22112,25532,GO-20189013390,INCIDENT,2018-04-16,2018,April,Monday,16,106,18,2018-04-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22113,25533,GO-20189013390,INCIDENT,2018-04-16,2018,April,Monday,16,106,18,2018-04-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22114,25648,GO-20199023908,THEFT UNDER - BICYCLE,2019-07-25,2019,July,Thursday,25,206,22,2019-07-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22115,25655,GO-20191499438,THEFT UNDER - BICYCLE,2019-08-07,2019,August,Wednesday,7,219,23,2019-08-08,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22116,16095,GO-20201945234,THEFT UNDER - BICYCLE,2020-10-05,2020,October,Monday,5,279,17,2020-10-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22117,16100,GO-20202051674,PROPERTY - FOUND,2020-10-29,2020,October,Thursday,29,303,10,2020-10-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22118,18709,GO-20201291241,THEFT UNDER - BICYCLE,2020-07-07,2020,July,Tuesday,7,189,21,2020-07-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22119,18731,GO-20209019831,THEFT UNDER - BICYCLE,2020-08-10,2020,August,Monday,10,223,15,2020-08-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22120,18764,GO-20201942381,THEFT UNDER - BICYCLE,2020-10-13,2020,October,Tuesday,13,287,8,2020-10-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22121,18789,GO-20209031302,THEFT UNDER,2020-11-25,2020,November,Wednesday,25,330,18,2020-12-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22122,18794,GO-20209032792,THEFT UNDER,2020-12-21,2020,December,Monday,21,356,8,2020-12-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22123,18795,GO-20209032887,THEFT UNDER,2020-12-17,2020,December,Thursday,17,352,12,2020-12-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22124,18829,GO-20141896501,THEFT OVER,2013-09-28,2013,September,Saturday,28,271,10,2014-04-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22125,18833,GO-20149003697,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,1,2014-05-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22126,18840,GO-20142418303,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,23,2014-07-03,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22127,18848,GO-20149005226,THEFT UNDER,2014-07-21,2014,July,Monday,21,202,20,2014-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22128,18849,GO-20149005257,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,7,2014-07-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22129,18851,GO-20142641071,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,12,2014-08-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22130,18853,GO-20149005751,THEFT UNDER,2014-08-09,2014,August,Saturday,9,221,0,2014-08-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22131,18880,GO-2015534633,THEFT UNDER,2015-03-23,2015,March,Monday,23,82,8,2015-03-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22132,18881,GO-2015534633,THEFT UNDER,2015-03-23,2015,March,Monday,23,82,8,2015-03-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22133,18889,GO-20159003176,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,23,2015-05-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22134,18910,GO-20151186796,THEFT UNDER,2015-07-13,2015,July,Monday,13,194,14,2015-07-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22135,18922,GO-20159005765,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,14,2015-08-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22136,18929,GO-20159006564,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,23,2015-08-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22137,18930,GO-20159006564,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,23,2015-08-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22138,18948,GO-20151767064,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,17,2015-10-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22139,18960,GO-201637312,THEFT UNDER,2015-11-22,2015,November,Sunday,22,326,0,2016-01-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22140,18966,GO-2016671388,THEFT UNDER - BICYCLE,2016-04-19,2016,April,Tuesday,19,110,19,2016-04-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22141,18972,GO-2016757911,THEFT UNDER - BICYCLE,2016-05-02,2016,May,Monday,2,123,12,2016-05-03,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22142,18998,GO-20161176738,THEFT UNDER - BICYCLE,2016-07-04,2016,July,Monday,4,186,19,2016-07-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22143,19006,GO-20161285354,THEFT OVER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,18,2016-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22144,19007,GO-20161285354,THEFT OVER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,18,2016-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22145,19013,GO-20169008129,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,4,2016-08-03,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22146,19032,GO-20169009614,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,1,2016-08-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22147,19069,GO-2017132421,THEFT FROM MOTOR VEHICLE UNDER,2017-01-22,2017,January,Sunday,22,22,5,2017-01-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22148,19088,GO-20179007824,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,9,2017-06-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22149,19091,GO-20171117485,THEFT OVER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,16,2017-06-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22150,19092,GO-20171117485,THEFT OVER - BICYCLE,2017-06-22,2017,June,Thursday,22,173,16,2017-06-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22151,19114,GO-20179014812,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,14,2017-09-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22152,19116,GO-20171713991,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,19,2017-09-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22153,19130,GO-20173050378,THEFT UNDER - BICYCLE,2017-11-22,2017,November,Wednesday,22,326,20,2017-11-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22154,19166,GO-20189018300,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,9,2018-06-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22155,19182,GO-20189023132,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,20,2018-07-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22156,19187,GO-20189025631,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,6,2018-08-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22157,19195,GO-20181543829,B&E,2018-08-20,2018,August,Monday,20,232,12,2018-08-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22158,19243,GO-20199020278,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,18,2019-06-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22159,19244,GO-20191189087,THEFT UNDER - BICYCLE,2019-06-26,2019,June,Wednesday,26,177,17,2019-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22160,19249,GO-20199021340,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,12,2019-07-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22161,19269,GO-20199027235,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,5,2019-08-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22162,19291,GO-20199030353,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,16,2019-09-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22163,19292,GO-20191793615,B&E,2019-09-08,2019,September,Sunday,8,251,11,2019-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22164,19296,GO-20199031298,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,23,2019-09-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22165,19320,GO-20199038046,THEFT UNDER - BICYCLE,2019-11-17,2019,November,Sunday,17,321,10,2019-11-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22166,19324,GO-202032367,THEFT OVER - BICYCLE,2020-01-05,2020,January,Sunday,5,5,19,2020-01-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22167,19325,GO-202032367,THEFT OVER - BICYCLE,2020-01-05,2020,January,Sunday,5,5,19,2020-01-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22168,19331,GO-20209003113,THEFT UNDER,2019-12-26,2019,December,Thursday,26,360,19,2020-01-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22169,19333,GO-20209003890,THEFT UNDER,2018-05-13,2018,May,Sunday,13,133,20,2020-02-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22170,19334,GO-20209004987,THEFT UNDER,2020-02-11,2020,February,Tuesday,11,42,6,2020-02-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22171,19646,GO-20142676408,B&E,2014-08-10,2014,August,Sunday,10,222,20,2014-08-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22172,19681,GO-20159002435,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,16,2015-05-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22173,19689,GO-20159003831,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,18,2015-06-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22174,19695,GO-20159004391,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,12,2015-07-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22175,19702,GO-20159005180,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,18,2015-07-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22176,19714,GO-20159006184,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,1,2015-08-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22177,19718,GO-20151500632,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,13,2015-08-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22178,19725,GO-20159006576,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,0,2015-08-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22179,19727,GO-20151564046,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,13,2015-09-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22180,19741,GO-20151872366,THEFT UNDER,2015-10-25,2015,October,Sunday,25,298,0,2015-10-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22181,19773,GO-20169006066,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,9,2016-06-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22182,19774,GO-20169006208,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,14,2016-06-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22183,22161,GO-20169006478,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,12,2016-06-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22184,22162,GO-20169006481,THEFT UNDER - BICYCLE,2016-06-27,2016,June,Monday,27,179,9,2016-06-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22185,22177,GO-20169008365,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,23,2016-08-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22186,22184,GO-20169009095,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,18,2016-08-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22187,22199,GO-20169010569,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,19,2016-09-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22188,22201,GO-20169010799,THEFT UNDER - BICYCLE,2016-09-20,2016,September,Tuesday,20,264,16,2016-09-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22189,22207,GO-20161809637,THEFT OF EBIKE UNDER $5000,2016-10-10,2016,October,Monday,10,284,10,2016-10-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22190,22221,GO-20179005961,THEFT UNDER - BICYCLE,2017-05-08,2017,May,Monday,8,128,20,2017-05-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22191,22236,GO-20179010421,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,7,2017-07-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22192,22237,GO-20179010555,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,17,2017-07-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22193,22242,GO-20179011388,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,18,2017-07-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22194,22252,GO-20179013856,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,15,2017-09-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22195,22262,GO-20179016871,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,10,2017-10-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22196,22263,GO-20171842497,B&E,2017-10-10,2017,October,Tuesday,10,283,2,2017-10-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22197,22279,GO-20189003823,THEFT UNDER - BICYCLE,2018-02-05,2018,February,Monday,5,36,6,2018-02-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22198,22307,GO-20181274887,B&E,2018-07-12,2018,July,Thursday,12,193,18,2018-07-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22199,22308,GO-20181274887,B&E,2018-07-12,2018,July,Thursday,12,193,18,2018-07-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22200,22309,GO-20181274887,B&E,2018-07-12,2018,July,Thursday,12,193,18,2018-07-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22201,22316,GO-20181408626,THEFT UNDER - BICYCLE,2018-07-28,2018,July,Saturday,28,209,12,2018-08-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22202,22317,GO-20181461812,B&E,2018-05-01,2018,May,Tuesday,1,121,12,2018-08-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22203,22318,GO-20189026187,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,22,2018-08-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22204,22341,GO-20189031691,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,17,2018-09-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22205,22385,GO-20199020138,THEFT UNDER - BICYCLE,2019-06-25,2019,June,Tuesday,25,176,18,2019-06-25,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22206,22438,GO-20209005051,THEFT UNDER,2020-02-07,2020,February,Friday,7,38,0,2020-02-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22207,22399,GO-20199023237,THEFT UNDER - BICYCLE,2019-07-19,2019,July,Friday,19,200,12,2019-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22208,22400,GO-20199023345,THEFT UNDER - BICYCLE,2019-07-20,2019,July,Saturday,20,201,14,2019-07-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22209,22404,GO-20199026863,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,12,2019-08-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22210,22409,GO-20199028773,THEFT UNDER - BICYCLE,2019-09-04,2019,September,Wednesday,4,247,8,2019-09-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22211,22412,GO-20199029596,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,11,2019-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22212,22413,GO-20199029596,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,11,2019-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22213,22419,GO-20199031253,THEFT UNDER,2019-09-23,2019,September,Monday,23,266,19,2019-09-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22214,22441,GO-20209007057,THEFT UNDER - BICYCLE,2020-02-24,2020,February,Monday,24,55,19,2020-02-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22215,22442,GO-2020475009,THEFT UNDER,2020-03-05,2020,March,Thursday,5,65,12,2020-03-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22216,25535,GO-20189015232,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,15,2018-05-16,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22217,25656,GO-20191499438,THEFT UNDER - BICYCLE,2019-08-07,2019,August,Wednesday,7,219,23,2019-08-08,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22218,10434,GO-20159006896,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,23,2015-09-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22219,22398,GO-20199023175,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,22,2019-07-22,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22220,5031,GO-20199025746,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,5,2019-08-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22221,7109,GO-20209021638,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,13,2020-08-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22222,22497,GO-20209016942,THEFT UNDER - BICYCLE,2020-07-05,2020,July,Sunday,5,187,15,2020-07-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22223,22498,GO-20209017051,THEFT UNDER - BICYCLE,2020-07-03,2020,July,Friday,3,185,15,2020-07-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22224,22507,GO-20209017971,THEFT UNDER - BICYCLE,2020-07-18,2020,July,Saturday,18,200,19,2020-07-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22225,22534,GO-20209020945,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,20,2020-08-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22226,22574,GO-20201850425,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,0,2020-09-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22227,22577,GO-20209025591,THEFT UNDER - BICYCLE,2020-10-05,2020,October,Monday,5,279,18,2020-10-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22228,22582,GO-20209027847,THEFT UNDER,2020-10-23,2020,October,Friday,23,297,15,2020-10-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22229,22591,GO-20209029784,THEFT UNDER,2020-11-13,2020,November,Friday,13,318,13,2020-11-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22230,22812,GO-20141794391,THEFT UNDER,2014-03-25,2014,March,Tuesday,25,84,12,2014-03-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22231,22813,GO-20141873517,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,13,2014-04-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22232,22837,GO-20149003900,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,20,2014-06-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22233,22863,GO-20149006148,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,16,2014-08-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22234,22872,GO-20149007051,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,7,2014-09-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22235,22898,GO-20159002693,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,4,2015-05-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22236,22904,GO-2015921045,PROPERTY - FOUND,2015-06-03,2015,June,Wednesday,3,154,8,2015-06-03,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22237,22913,GO-20151282217,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,12,2015-07-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22238,24150,GO-20209006048,THEFT UNDER,2020-02-19,2020,February,Wednesday,19,50,15,2020-02-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22239,22936,GO-20159007417,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,16,2015-09-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22240,22946,GO-20159010322,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,18,2015-11-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22241,22955,GO-201686646,THEFT UNDER,2016-01-14,2016,January,Thursday,14,14,23,2016-01-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22242,22970,GO-20169004183,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,17,2016-05-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22243,22980,GO-20161157542,THEFT UNDER - BICYCLE,2016-07-02,2016,July,Saturday,2,184,16,2016-07-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22244,22983,GO-20161229297,THEFT UNDER - BICYCLE,2016-07-12,2016,July,Tuesday,12,194,16,2016-07-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22245,22992,GO-20169008723,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,9,2016-08-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22246,22997,GO-20169009139,THEFT UNDER - BICYCLE,2016-07-08,2016,July,Friday,8,190,18,2016-08-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22247,25395,GO-20169010644,THEFT UNDER - BICYCLE,2016-09-17,2016,September,Saturday,17,261,23,2016-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22248,25400,GO-20169012011,THEFT UNDER - BICYCLE,2016-10-10,2016,October,Monday,10,284,6,2016-10-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22249,25401,GO-20169012036,THEFT UNDER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,10,2016-10-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22250,25441,GO-20179006999,THEFT UNDER - BICYCLE,2017-05-25,2017,May,Thursday,25,145,9,2017-05-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22251,25480,GO-20171551838,THEFT OF EBIKE UNDER $5000,2017-08-12,2017,August,Saturday,12,224,16,2017-08-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22252,25497,GO-20179018555,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,18,2017-10-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22253,25500,GO-20179018913,THEFT UNDER - BICYCLE,2017-11-04,2017,November,Saturday,4,308,17,2017-11-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22254,25503,GO-20179019951,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,17,2017-11-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22255,25538,GO-2018940291,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,12,2018-05-25,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22256,25599,GO-20189036237,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,8,2018-10-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22257,25602,GO-20182021555,PROPERTY - FOUND,2018-11-01,2018,November,Thursday,1,305,6,2018-11-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22258,25634,GO-20199018795,THEFT UNDER - BICYCLE,2019-06-15,2019,June,Saturday,15,166,22,2019-06-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22259,25664,GO-20199028902,THEFT UNDER - BICYCLE,2019-09-04,2019,September,Wednesday,4,247,16,2019-09-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22260,22859,GO-20142673546,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,11,2014-08-10,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22261,25669,GO-20191751765,THEFT OVER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,11,2019-09-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22262,25670,GO-20191751765,THEFT OVER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,11,2019-09-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22263,25674,GO-20199031119,THEFT UNDER - BICYCLE,2019-09-21,2019,September,Saturday,21,264,12,2019-09-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22264,25684,GO-20199034157,THEFT UNDER - BICYCLE,2019-10-16,2019,October,Wednesday,16,289,20,2019-10-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22265,25689,GO-20192226566,THEFT OF EBIKE UNDER $5000,2019-11-06,2019,November,Wednesday,6,310,15,2019-11-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22266,25705,GO-2020622041,B&E,2020-03-28,2020,March,Saturday,28,88,0,2020-03-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22267,25720,GO-20209014681,THEFT UNDER,2020-06-05,2020,June,Friday,5,157,0,2020-06-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22268,25725,GO-20201101425,PROPERTY - FOUND,2020-06-15,2020,June,Monday,15,167,10,2020-06-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22269,25727,GO-20209015574,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,9,2020-06-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22270,25733,GO-20201175798,B&E,2020-06-16,2020,June,Tuesday,16,168,11,2020-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22271,25734,GO-20201175798,B&E,2020-06-16,2020,June,Tuesday,16,168,11,2020-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22272,25735,GO-20201175798,B&E,2020-06-16,2020,June,Tuesday,16,168,11,2020-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22273,25752,GO-20209018130,THEFT UNDER - BICYCLE,2020-07-21,2020,July,Tuesday,21,203,10,2020-07-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22274,25757,GO-20209019481,THEFT UNDER - BICYCLE,2020-08-03,2020,August,Monday,3,216,13,2020-08-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22275,25767,GO-20209021994,THEFT FROM MOTOR VEHICLE UNDER,2020-09-01,2020,September,Tuesday,1,245,11,2020-09-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22276,25770,GO-20209022862,THEFT UNDER - BICYCLE,2020-09-05,2020,September,Saturday,5,249,19,2020-09-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22277,25774,GO-20209023802,THEFT UNDER - BICYCLE,2020-09-18,2020,September,Friday,18,262,3,2020-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22278,161,GO-20179003452,THEFT UNDER - BICYCLE,2017-03-10,2017,March,Friday,10,69,0,2017-03-19,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22279,396,GO-20179006345,THEFT UNDER - BICYCLE,2017-05-15,2017,May,Monday,15,135,16,2017-05-15,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22280,1290,GO-20179013883,THEFT UNDER - BICYCLE,2017-08-26,2017,August,Saturday,26,238,11,2017-09-02,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22281,1445,GO-20179015074,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,14,2017-09-18,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22282,1532,GO-20179015865,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,11,2017-09-26,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22283,1654,GO-20179017097,THEFT UNDER - BICYCLE,2017-10-06,2017,October,Friday,6,279,13,2017-10-13,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22284,1660,GO-20179017218,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,10,2017-10-14,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22285,2368,GO-20189015782,THEFT UNDER,2018-05-10,2018,May,Thursday,10,130,1,2018-05-22,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22286,2369,GO-20189015782,THEFT UNDER,2018-05-10,2018,May,Thursday,10,130,1,2018-05-22,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22287,2370,GO-20189015782,THEFT UNDER,2018-05-10,2018,May,Thursday,10,130,1,2018-05-22,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22288,2731,GO-20181181463,THEFT UNDER - BICYCLE,2018-06-23,2018,June,Saturday,23,174,11,2018-06-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22289,3171,GO-20189026028,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,5,2018-08-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22290,3445,GO-20189030023,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,12,2018-09-11,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22291,3449,GO-20189030023,THEFT UNDER - BICYCLE,2018-09-11,2018,September,Tuesday,11,254,12,2018-09-11,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22292,3462,GO-20189030319,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,8,2018-09-13,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22293,3477,GO-20181717466,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,11,2018-09-16,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22294,3615,GO-20189032911,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,19,2018-10-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22295,4264,GO-2019850827,THEFT UNDER - BICYCLE,2019-05-10,2019,May,Friday,10,130,14,2019-05-10,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22296,4374,GO-2019985533,B&E,2019-05-25,2019,May,Saturday,25,145,8,2019-05-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22297,4375,GO-2019985533,B&E,2019-05-25,2019,May,Saturday,25,145,8,2019-05-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22298,4468,GO-20199018364,THEFT UNDER - BICYCLE,2019-06-07,2019,June,Friday,7,158,14,2019-06-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22299,4493,GO-20199018673,THEFT UNDER - BICYCLE,2019-06-14,2019,June,Friday,14,165,10,2019-06-14,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22300,4506,GO-20199018673,THEFT UNDER - BICYCLE,2019-06-14,2019,June,Friday,14,165,10,2019-06-14,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22301,4611,GO-20191191866,B&E,2019-06-22,2019,June,Saturday,22,173,18,2019-06-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22302,4612,GO-20191191866,B&E,2019-06-22,2019,June,Saturday,22,173,18,2019-06-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22303,4613,GO-20191191866,B&E,2019-06-22,2019,June,Saturday,22,173,18,2019-06-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22304,5224,GO-20191692000,B&E,2019-09-03,2019,September,Tuesday,3,246,18,2019-09-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22305,5225,GO-20191692000,B&E,2019-09-03,2019,September,Tuesday,3,246,18,2019-09-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22306,5492,GO-20199032662,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,21,2019-10-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22307,5677,GO-20192179265,THEFT UNDER - BICYCLE,2019-10-25,2019,October,Friday,25,298,19,2019-11-11,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22308,5728,GO-20199038990,THEFT UNDER - BICYCLE,2019-11-25,2019,November,Monday,25,329,10,2019-11-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22309,5782,GO-20199041781,THEFT UNDER,2019-12-22,2019,December,Sunday,22,356,10,2019-12-22,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22310,5944,GO-20209007832,THEFT UNDER - BICYCLE,2020-03-05,2020,March,Thursday,5,65,13,2020-03-05,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22311,5981,GO-20209009536,THEFT UNDER,2019-09-01,2019,September,Sunday,1,244,1,2020-03-21,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22312,6116,GO-20209012119,THEFT UNDER - BICYCLE,2020-04-28,2020,April,Tuesday,28,119,5,2020-04-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22313,6117,GO-20209012119,THEFT UNDER - BICYCLE,2020-04-28,2020,April,Tuesday,28,119,5,2020-04-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22314,6118,GO-20209012119,THEFT UNDER - BICYCLE,2020-04-28,2020,April,Tuesday,28,119,5,2020-04-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22315,6141,GO-20209012506,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,16,2020-05-05,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22316,6503,GO-20209016523,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,3,2020-06-30,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22317,6505,GO-20209016578,THEFT UNDER - BICYCLE,2020-06-28,2020,June,Sunday,28,180,17,2020-06-30,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22318,6734,GO-20209018499,THEFT UNDER - BICYCLE,2020-07-25,2020,July,Saturday,25,207,2,2020-07-25,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22319,6930,GO-20209019828,THEFT UNDER - BICYCLE,2020-08-09,2020,August,Sunday,9,222,21,2020-08-10,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22320,6943,GO-20209019982,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,19,2020-08-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22321,7065,GO-20209021204,THEFT UNDER - BICYCLE,2020-08-23,2020,August,Sunday,23,236,22,2020-08-24,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22322,7086,GO-20209021439,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,10,2020-08-26,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22323,22593,GO-20209030119,THEFT UNDER,2020-11-15,2020,November,Sunday,15,320,10,2020-11-20,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22324,5032,GO-20199025746,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,5,2019-08-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22325,25542,GO-20181009212,THEFT OVER - BICYCLE,2018-06-04,2018,June,Monday,4,155,5,2018-06-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22326,7197,GO-20209022540,THEFT UNDER,2020-09-07,2020,September,Monday,7,251,16,2020-09-07,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22327,25663,GO-20199027872,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,23,2019-08-27,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22328,10435,GO-20159006896,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,23,2015-09-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22329,24160,GO-20209010980,THEFT UNDER,2020-04-05,2020,April,Sunday,5,96,19,2020-04-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22330,22828,GO-20149003527,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,8,2014-05-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22331,24162,GO-20209011147,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,19,2020-04-14,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22332,24165,GO-2020752574,THEFT UNDER - BICYCLE,2020-04-17,2020,April,Friday,17,108,8,2020-04-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22333,22869,GO-20149006976,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,0,2014-09-17,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22334,24212,GO-20179012692,THEFT UNDER - BICYCLE,2017-08-17,2017,August,Thursday,17,229,14,2017-08-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22335,22870,GO-20149006976,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,0,2014-09-17,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22336,24269,GO-20179022031,THEFT UNDER,2017-12-12,2017,December,Tuesday,12,346,0,2017-12-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22337,22951,GO-20159010951,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,10,2015-12-15,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22338,24359,GO-20189025966,THEFT UNDER - BICYCLE,2018-08-10,2018,August,Friday,10,222,18,2018-08-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22339,22982,GO-20169007045,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,14,2016-07-11,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22340,24360,GO-20189026247,THEFT UNDER,2018-08-13,2018,August,Monday,13,225,7,2018-08-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22341,24363,GO-20189026545,THEFT UNDER - BICYCLE,2018-08-13,2018,August,Monday,13,225,19,2018-08-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22342,24579,GO-20179008971,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,18,2017-06-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22343,24605,GO-20149004142,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,15,2014-06-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22344,24625,GO-20142507596,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,0,2014-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22345,24626,GO-20142507596,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,0,2014-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22346,24627,GO-20142507596,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,0,2014-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22347,24665,GO-20143084576,THEFT UNDER,2014-10-11,2014,October,Saturday,11,284,5,2014-10-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22348,24705,GO-2015958786,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,0,2015-06-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22349,24712,GO-20151049300,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,18,2015-06-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22350,24771,GO-20151914494,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,22,2015-11-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22351,24776,GO-20169000341,THEFT UNDER,2016-01-09,2016,January,Saturday,9,9,15,2016-01-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22352,24778,GO-2016256662,B&E,2016-01-28,2016,January,Thursday,28,28,18,2016-02-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22353,24779,GO-2016256662,B&E,2016-01-28,2016,January,Thursday,28,28,18,2016-02-12,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22354,24781,GO-2016346978,THEFT UNDER,2016-02-20,2016,February,Saturday,20,51,3,2016-02-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22355,25182,GO-2016521954,THEFT UNDER - BICYCLE,2016-03-26,2016,March,Saturday,26,86,1,2016-03-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22356,25186,GO-20169004382,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,21,2016-05-11,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22357,7235,GO-20209023067,THEFT UNDER - BICYCLE,2020-09-12,2020,September,Saturday,12,256,12,2020-09-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22358,25776,GO-20201789555,THEFT UNDER - BICYCLE,2020-09-13,2020,September,Sunday,13,257,15,2020-09-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22359,25543,GO-20189017335,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,1,2018-06-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22360,10444,GO-20159007036,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,9,2015-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22361,25190,GO-20169004651,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,1,2016-05-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22362,25192,GO-20169004823,THEFT UNDER,2016-05-22,2016,May,Sunday,22,143,0,2016-05-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22363,25207,GO-20161029813,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,15,2016-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22364,25214,GO-20161081341,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,19,2016-06-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22365,25225,GO-20161197488,THEFT UNDER - BICYCLE,2016-07-07,2016,July,Thursday,7,189,21,2016-07-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22366,25236,GO-20169008479,THEFT UNDER - BICYCLE,2016-08-09,2016,August,Tuesday,9,222,20,2016-08-10,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22367,25256,GO-20169010060,THEFT UNDER,2016-09-06,2016,September,Tuesday,6,250,7,2016-09-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22368,25273,GO-20169011450,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,20,2016-10-02,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22369,25275,GO-20169011723,THEFT UNDER - BICYCLE,2016-10-08,2016,October,Saturday,8,282,0,2016-10-08,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22370,25279,GO-20169012321,THEFT UNDER - BICYCLE,2016-10-18,2016,October,Tuesday,18,292,12,2016-10-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22371,25311,GO-20179008734,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,20,2017-06-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22372,25389,GO-20169010385,THEFT UNDER - BICYCLE,2016-09-13,2016,September,Tuesday,13,257,8,2016-09-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22373,25399,GO-20169011480,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,19,2016-09-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22374,25419,GO-20162161453,B&E,2016-11-29,2016,November,Tuesday,29,334,0,2016-12-06,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22375,25422,GO-20169015254,THEFT UNDER,2016-12-25,2016,December,Sunday,25,360,16,2016-12-31,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22376,25449,GO-20171050595,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,2,2017-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22377,25466,GO-20179010643,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,21,2017-07-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22378,25483,GO-20179014053,THEFT UNDER - BICYCLE,2017-09-04,2017,September,Monday,4,247,22,2017-09-05,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22379,25488,GO-20179015528,THEFT UNDER - BICYCLE,2017-09-22,2017,September,Friday,22,265,17,2017-09-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22380,25492,GO-20179016359,THEFT UNDER - BICYCLE,2017-10-02,2017,October,Monday,2,275,20,2017-10-03,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22381,25507,GO-20179020282,THEFT UNDER - BICYCLE,2017-11-07,2017,November,Tuesday,7,311,13,2017-11-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22382,25508,GO-20179020410,THEFT UNDER - BICYCLE,2017-11-08,2017,November,Wednesday,8,312,20,2017-11-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22383,25509,GO-20179020410,THEFT UNDER - BICYCLE,2017-11-08,2017,November,Wednesday,8,312,20,2017-11-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22384,25510,GO-20179020645,THEFT UNDER - BICYCLE,2017-11-24,2017,November,Friday,24,328,7,2017-11-27,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22385,25514,GO-20179021559,THEFT UNDER - BICYCLE,2017-09-07,2017,September,Thursday,7,250,14,2017-12-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22386,25516,GO-20173220604,B&E,2017-12-18,2017,December,Monday,18,352,3,2017-12-18,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22387,25522,GO-20189005734,THEFT UNDER - BICYCLE,2018-02-22,2018,February,Thursday,22,53,9,2018-02-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22388,25527,GO-20189012408,THEFT UNDER - BICYCLE,2018-04-21,2018,April,Saturday,21,111,12,2018-04-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22389,25549,GO-20189019379,THEFT UNDER - BICYCLE,2018-06-19,2018,June,Tuesday,19,170,15,2018-06-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22390,25550,GO-20189019548,THEFT UNDER,2018-06-20,2018,June,Wednesday,20,171,17,2018-06-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22391,25555,GO-20189020663,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,8,2018-06-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22392,25569,GO-20189023500,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,23,2018-07-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22393,25572,GO-20189024002,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,14,2018-07-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22394,25576,GO-20189025482,THEFT UNDER,2018-08-06,2018,August,Monday,6,218,22,2018-08-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22395,25580,GO-20181588235,B&E,2018-08-28,2018,August,Tuesday,28,240,1,2018-08-28,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22396,25588,GO-20189030827,THEFT UNDER - BICYCLE,2018-09-17,2018,September,Monday,17,260,3,2018-09-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22397,25589,GO-20189031107,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,23,2018-09-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22398,25592,GO-20189033419,THEFT UNDER - BICYCLE,2018-10-09,2018,October,Tuesday,9,282,22,2018-10-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22399,25614,GO-20199012749,THEFT UNDER - BICYCLE,2019-03-22,2019,March,Friday,22,81,11,2019-04-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22400,25618,GO-20199013019,THEFT UNDER - BICYCLE,2019-04-18,2019,April,Thursday,18,108,21,2019-04-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22401,25620,GO-2019754113,B&E,2019-03-30,2019,March,Saturday,30,89,4,2019-04-26,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22402,5033,GO-20199025746,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,5,2019-08-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22403,25638,GO-20199019319,THEFT FROM MOTOR VEHICLE UNDER,2019-06-19,2019,June,Wednesday,19,170,18,2019-06-20,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22404,25643,GO-20199022591,THEFT UNDER - BICYCLE,2019-07-14,2019,July,Sunday,14,195,1,2019-07-16,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22405,25660,GO-20199026314,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,21,2019-08-15,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22406,25665,GO-20199029049,THEFT UNDER - BICYCLE,2019-09-06,2019,September,Friday,6,249,22,2019-09-07,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22407,25672,GO-20191796625,B&E,2019-09-18,2019,September,Wednesday,18,261,14,2019-09-19,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22408,25673,GO-20199031106,THEFT UNDER - BICYCLE,2019-09-19,2019,September,Thursday,19,262,12,2019-09-22,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22409,25686,GO-20199034625,THEFT UNDER - BICYCLE,2019-10-17,2019,October,Thursday,17,290,23,2019-10-21,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22410,25694,GO-20209005789,THEFT UNDER,2020-02-15,2020,February,Saturday,15,46,13,2020-02-17,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22411,25702,GO-20209009791,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,11,2020-03-25,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22412,25724,GO-20209015301,THEFT UNDER - BICYCLE,2020-02-11,2020,February,Tuesday,11,42,14,2020-06-13,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22413,25745,GO-20201272925,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,1,2020-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22414,25746,GO-20201272925,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,1,2020-07-09,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22415,25777,GO-20209024202,THEFT UNDER - BICYCLE,2020-09-23,2020,September,Wednesday,23,267,9,2020-09-23,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22416,25783,GO-20209024930,THEFT UNDER - BICYCLE,2020-09-29,2020,September,Tuesday,29,273,12,2020-09-29,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)}",Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -22417,420,GO-2017871498,THEFT UNDER - BICYCLE,2017-05-17,2017,May,Wednesday,17,137,8,2017-05-17,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22418,914,GO-20179010580,THEFT UNDER - BICYCLE,2017-07-19,2017,July,Wednesday,19,200,10,2017-07-19,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22419,921,GO-20179010594,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,1,2017-07-19,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22420,1153,GO-20179012480,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,6,2017-08-15,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22421,1790,GO-20179018837,THEFT UNDER - BICYCLE,2017-10-22,2017,October,Sunday,22,295,13,2017-11-03,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22422,2140,GO-2018618343,THEFT UNDER - BICYCLE,2018-04-06,2018,April,Friday,6,96,10,2018-04-07,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22423,2630,GO-20189019515,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,14,2018-06-20,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22424,2692,GO-20189020381,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,11,2018-06-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22425,2693,GO-20189020381,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,11,2018-06-26,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22426,3146,GO-20189025838,THEFT UNDER - BICYCLE,2018-08-03,2018,August,Friday,3,215,18,2018-08-10,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22427,4570,GO-20199019531,THEFT UNDER - BICYCLE,2019-06-20,2019,June,Thursday,20,171,0,2019-06-21,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22428,4582,GO-20199019664,THEFT UNDER - BICYCLE,2019-06-19,2019,June,Wednesday,19,170,17,2019-06-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22429,5246,GO-20199027872,THEFT UNDER,2019-08-26,2019,August,Monday,26,238,23,2019-08-27,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22430,5516,GO-20191973717,THEFT UNDER - BICYCLE,2019-10-11,2019,October,Friday,11,284,21,2019-10-12,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22431,5523,GO-20199033859,THEFT UNDER,2019-10-11,2019,October,Friday,11,284,8,2019-10-14,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22432,5840,GO-2020110832,THEFT UNDER,2020-01-15,2020,January,Wednesday,15,15,13,2020-01-16,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22433,5847,GO-20209002582,THEFT UNDER,2020-01-15,2020,January,Wednesday,15,15,13,2020-01-22,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22434,5894,GO-20209005480,THEFT UNDER,2020-02-13,2020,February,Thursday,13,44,8,2020-02-14,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22435,6097,GO-2020776850,B&E,2020-04-23,2020,April,Thursday,23,114,14,2020-04-24,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22436,6137,GO-20209012455,THEFT UNDER,2020-05-02,2020,May,Saturday,2,123,17,2020-05-04,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22437,6210,GO-2020932081,THEFT OVER - BICYCLE,2020-05-19,2020,May,Tuesday,19,140,22,2020-05-20,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)}",Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -22438,22990,GO-20161427721,THEFT OVER,2016-05-27,2016,May,Friday,27,148,12,2016-08-13,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22439,25597,GO-20189035705,THEFT UNDER - BICYCLE,2018-10-26,2018,October,Friday,26,299,7,2018-10-26,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22440,349,GO-20179005998,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,8,2017-05-09,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22441,25605,GO-20189037316,THEFT UNDER - BICYCLE,2018-11-07,2018,November,Wednesday,7,311,13,2018-11-07,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22442,25680,GO-20199032662,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,21,2019-10-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22443,357,GO-20179005998,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,8,2017-05-09,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22444,25423,GO-20179000041,THEFT UNDER - BICYCLE,2016-12-23,2016,December,Friday,23,358,16,2017-01-01,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22445,25688,GO-20192178857,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,19,2019-11-11,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22446,7335,GO-20209024258,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,11,2020-09-23,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22447,1403,GO-20171649142,THEFT UNDER - BICYCLE,2017-09-10,2017,September,Sunday,10,253,21,2017-09-11,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22448,10446,GO-20159007042,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,23,2015-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22449,10467,GO-20159007184,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,23,2015-09-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22450,10479,GO-20159007252,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,0,2015-09-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22451,10773,GO-20159009748,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,10,2015-11-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22452,10774,GO-20159009748,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,10,2015-11-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22453,10775,GO-20159009748,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,10,2015-11-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22454,10778,GO-20159009788,THEFT UNDER,2015-11-16,2015,November,Monday,16,320,6,2015-11-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22455,10796,GO-20151992794,THEFT UNDER,2015-11-20,2015,November,Friday,20,324,13,2015-11-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22456,10800,GO-20151906403,ASSAULT WITH WEAPON,2015-11-06,2015,November,Friday,6,310,5,2015-11-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22457,10826,GO-20152049113,THEFT UNDER,2015-11-29,2015,November,Sunday,29,333,12,2015-12-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22458,10864,GO-20159010840,THEFT UNDER,2015-12-08,2015,December,Tuesday,8,342,22,2015-12-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22459,10905,GO-20169000014,THEFT UNDER,2015-12-17,2015,December,Thursday,17,351,14,2016-01-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22460,11091,GO-2016560442,THEFT UNDER,2016-04-01,2016,April,Friday,1,92,18,2016-04-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22461,11130,GO-20169003318,THEFT UNDER - BICYCLE,2016-04-11,2016,April,Monday,11,102,22,2016-04-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22462,11131,GO-20169003318,THEFT UNDER - BICYCLE,2016-04-11,2016,April,Monday,11,102,22,2016-04-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22463,11145,GO-2016656173,THEFT UNDER - BICYCLE,2016-03-27,2016,March,Sunday,27,87,12,2016-04-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22464,5085,GO-20191549188,THEFT UNDER - BICYCLE,2019-08-11,2019,August,Sunday,11,223,15,2019-08-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22465,11306,GO-20169004505,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,10,2016-05-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22466,11610,GO-20161078534,THEFT UNDER - BICYCLE,2016-06-20,2016,June,Monday,20,172,16,2016-06-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22467,11738,GO-20169006911,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,12,2016-07-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22468,11827,GO-20169007304,THEFT UNDER,2016-07-17,2016,July,Sunday,17,199,12,2016-07-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22469,11874,GO-20169007609,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,0,2016-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22470,11875,GO-20169007609,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,0,2016-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22471,11947,GO-20161320650,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,14,2016-07-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22472,11968,GO-20161285354,THEFT OVER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,18,2016-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22473,12062,GO-20161420663,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,14,2016-08-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22474,12867,GO-20189023998,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,11,2018-07-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22475,12259,GO-20169009936,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,22,2016-09-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22476,12303,GO-20161589438,THEFT UNDER - BICYCLE,2016-09-07,2016,September,Wednesday,7,251,15,2016-09-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22477,12354,GO-20169010508,THEFT UNDER - BICYCLE,2016-09-15,2016,September,Thursday,15,259,6,2016-09-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22478,12548,GO-20161765971,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,10,2016-10-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22479,12800,GO-20169013617,THEFT UNDER - BICYCLE,2016-11-20,2016,November,Sunday,20,325,15,2016-11-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22480,12802,GO-20169013656,THEFT UNDER - BICYCLE,2016-11-05,2016,November,Saturday,5,310,16,2016-11-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22481,12865,GO-20189023998,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,11,2018-07-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22482,12866,GO-20189023998,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,11,2018-07-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22483,12873,GO-20189025561,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,12,2018-08-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22484,12882,GO-20189026992,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,5,2018-08-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22485,12888,GO-20189029221,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,17,2018-09-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22486,12894,GO-20189031778,THEFT UNDER - BICYCLE,2018-09-24,2018,September,Monday,24,267,21,2018-09-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22487,12905,GO-20189036616,THEFT UNDER - BICYCLE,2018-09-15,2018,September,Saturday,15,258,12,2018-11-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22488,12911,GO-20189038521,THEFT UNDER - BICYCLE,2018-11-11,2018,November,Sunday,11,315,22,2018-11-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22489,12913,GO-20189039525,THEFT UNDER - BICYCLE,2018-11-23,2018,November,Friday,23,327,16,2018-11-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22490,12918,GO-20199000612,THEFT UNDER - BICYCLE,2019-01-05,2019,January,Saturday,5,5,13,2019-01-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22491,12922,GO-20199005360,THEFT UNDER - BICYCLE,2019-01-03,2019,January,Thursday,3,3,8,2019-02-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22492,12928,GO-20199014235,THEFT UNDER - BICYCLE,2019-05-07,2019,May,Tuesday,7,127,13,2019-05-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22493,12933,GO-20199017787,THEFT UNDER - BICYCLE,2019-06-07,2019,June,Friday,7,158,8,2019-06-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22494,12937,GO-20199018795,THEFT UNDER - BICYCLE,2019-06-15,2019,June,Saturday,15,166,22,2019-06-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22495,12938,GO-20199018795,THEFT UNDER - BICYCLE,2019-06-15,2019,June,Saturday,15,166,22,2019-06-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22496,12945,GO-20199020062,THEFT UNDER - BICYCLE,2019-06-25,2019,June,Tuesday,25,176,9,2019-06-25,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22497,12954,GO-20199024273,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,6,2019-07-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22498,12966,GO-20199026036,THEFT UNDER - BICYCLE,2019-07-20,2019,July,Saturday,20,201,12,2019-08-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22499,12970,GO-20199027922,THEFT UNDER,2019-08-27,2019,August,Tuesday,27,239,1,2019-08-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22500,12978,GO-20199029687,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,18,2019-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22501,12979,GO-20199029687,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,18,2019-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22502,12985,GO-20199031635,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,13,2019-09-25,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22503,13004,GO-20192149397,THEFT UNDER,2019-11-03,2019,November,Sunday,3,307,17,2019-11-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22504,13012,GO-20199038565,THEFT UNDER - BICYCLE,2019-11-23,2019,November,Saturday,23,327,12,2019-11-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22505,13013,GO-20192282826,THEFT OF EBIKE UNDER $5000,2019-11-24,2019,November,Sunday,24,328,14,2019-11-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22506,13061,GO-20201203084,B&E,2020-06-30,2020,June,Tuesday,30,182,1,2020-06-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22507,13015,GO-20199039997,THEFT UNDER - BICYCLE,2019-05-25,2019,May,Saturday,25,145,12,2019-12-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22508,13019,GO-20209005051,THEFT UNDER,2020-02-07,2020,February,Friday,7,38,0,2020-02-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22509,13036,GO-2020963168,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,11,2020-05-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22510,13049,GO-20201146802,B&E,2020-06-21,2020,June,Sunday,21,173,12,2020-06-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22511,13057,GO-20201203084,B&E,2020-06-30,2020,June,Tuesday,30,182,1,2020-06-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22512,13058,GO-20201203084,B&E,2020-06-30,2020,June,Tuesday,30,182,1,2020-06-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22513,13059,GO-20201203084,B&E,2020-06-30,2020,June,Tuesday,30,182,1,2020-06-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22514,13060,GO-20201203084,B&E,2020-06-30,2020,June,Tuesday,30,182,1,2020-06-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22515,14072,GO-20169006227,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,21,2016-06-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22516,14076,GO-20169007058,THEFT UNDER - BICYCLE,2016-07-11,2016,July,Monday,11,193,19,2016-07-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22517,14131,GO-20169014108,THEFT UNDER - BICYCLE,2016-12-01,2016,December,Thursday,1,336,15,2016-12-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22518,14191,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,3,2017-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22519,14192,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,3,2017-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22520,14193,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,3,2017-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22521,14194,GO-20179015052,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,3,2017-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22522,14203,GO-20179016252,THEFT UNDER - BICYCLE,2017-10-02,2017,October,Monday,2,275,6,2017-10-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22523,14219,GO-20189001904,THEFT UNDER - BICYCLE,2018-01-20,2018,January,Saturday,20,20,17,2018-01-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22524,14225,GO-20189010528,THEFT UNDER - BICYCLE,2018-04-05,2018,April,Thursday,5,95,0,2018-04-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22525,14226,GO-20189010528,THEFT UNDER - BICYCLE,2018-04-05,2018,April,Thursday,5,95,0,2018-04-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22526,14228,GO-20189010791,THEFT UNDER,2018-04-04,2018,April,Wednesday,4,94,1,2018-04-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22527,14244,GO-20189019232,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,15,2018-06-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22528,14252,GO-20189020945,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,2,2018-07-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22529,14253,GO-20189021173,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,9,2018-07-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22530,14257,GO-20189021714,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,16,2018-07-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22531,14258,GO-20189022243,THEFT UNDER - BICYCLE,2018-07-12,2018,July,Thursday,12,193,16,2018-07-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22532,15860,GO-20142039206,B&E,2014-05-05,2014,May,Monday,5,125,8,2014-05-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22533,15861,GO-20142039206,B&E,2014-05-05,2014,May,Monday,5,125,8,2014-05-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22534,15862,GO-20142044210,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,7,2014-05-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22535,15866,GO-20149003697,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,1,2014-05-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22536,15895,GO-20149005499,THEFT UNDER,2014-07-30,2014,July,Wednesday,30,211,7,2014-08-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22537,15915,GO-20143139448,THEFT UNDER,2014-10-19,2014,October,Sunday,19,292,13,2014-10-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22538,15952,GO-20151096559,THEFT OVER,2015-06-26,2015,June,Friday,26,177,20,2015-06-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22539,15968,GO-20159005889,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,11,2015-08-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22540,15970,GO-20151425459,THEFT UNDER,2015-08-14,2015,August,Friday,14,226,16,2015-08-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22541,15974,GO-20159006421,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,8,2015-08-25,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22542,15979,GO-20159007042,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,23,2015-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22543,16007,GO-20169002237,THEFT UNDER,2016-03-11,2016,March,Friday,11,71,12,2016-03-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22544,16070,GO-20209021844,THEFT UNDER - BICYCLE,2020-08-30,2020,August,Sunday,30,243,19,2020-08-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22545,2004,GO-20189002655,THEFT UNDER - BICYCLE,2017-11-01,2017,November,Wednesday,1,305,15,2018-01-26,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22546,3070,GO-20189025078,THEFT FROM MOTOR VEHICLE UNDER,2018-08-04,2018,August,Saturday,4,216,6,2018-08-04,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22547,534,GO-20179007486,THEFT UNDER - BICYCLE,2017-06-04,2017,June,Sunday,4,155,13,2017-06-04,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22548,7484,GO-20209026730,THEFT UNDER,2020-10-09,2020,October,Friday,9,283,6,2020-10-10,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22549,3238,GO-20189026729,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,21,2018-08-16,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22550,837,GO-20179010019,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,18,2017-07-12,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22551,25461,GO-20179010248,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,19,2017-07-15,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22552,5148,GO-20191614258,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,20,2019-08-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22553,25468,GO-20179010781,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,7,2017-07-21,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22554,25469,GO-20179010822,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,0,2017-07-22,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22555,5151,GO-20199027559,THEFT UNDER,2019-08-24,2019,August,Saturday,24,236,1,2019-08-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22556,25470,GO-20179010884,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,20,2017-07-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22557,3294,GO-20189027559,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,9,2018-08-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22558,7696,GO-20209031644,THEFT UNDER,2020-12-05,2020,December,Saturday,5,340,2,2020-12-09,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22559,1041,GO-20179011497,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,6,2017-08-02,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22560,5195,GO-20191644406,THEFT UNDER - BICYCLE,2019-08-28,2019,August,Wednesday,28,240,12,2019-08-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22561,25548,GO-20181078490,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,17,2018-06-14,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22562,3314,GO-20189027848,THEFT UNDER - BICYCLE,2018-08-22,2018,August,Wednesday,22,234,8,2018-08-24,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22563,7711,GO-20209032461,THEFT UNDER,2020-12-18,2020,December,Friday,18,353,21,2020-12-19,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22564,8806,GO-20142847252,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,23,2014-09-05,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22565,8894,GO-20149006906,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,8,2014-09-15,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22566,8965,GO-20149007179,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,0,2014-09-24,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22567,8966,GO-20149007179,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,0,2014-09-24,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22568,9479,GO-2015695505,THEFT UNDER,2015-04-26,2015,April,Sunday,26,116,22,2015-04-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22569,9480,GO-2015695505,THEFT UNDER,2015-04-26,2015,April,Sunday,26,116,22,2015-04-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22570,9656,GO-20159003109,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,13,2015-05-26,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22571,9761,GO-20159003462,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,22,2015-06-09,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22572,10022,GO-20159004585,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,0,2015-07-15,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22573,10047,GO-20159004676,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,9,2015-07-17,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22574,10070,GO-20151240413,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,0,2015-07-21,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22575,10071,GO-20151240413,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,0,2015-07-21,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22576,10190,GO-20159005417,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,15,2015-08-06,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22577,10272,GO-20159005855,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,16,2015-08-15,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22578,10303,GO-20151444215,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,21,2015-08-22,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22579,10342,GO-20151489961,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,9,2015-08-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22580,10441,GO-20159007001,THEFT UNDER,2015-09-07,2015,September,Monday,7,250,22,2015-09-10,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22581,10665,GO-20159008848,THEFT UNDER,2015-10-21,2015,October,Wednesday,21,294,0,2015-10-21,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22582,10688,GO-20159009036,THEFT UNDER,2015-10-26,2015,October,Monday,26,299,15,2015-10-26,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22583,10701,GO-20159009101,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,15,2015-10-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22584,10713,GO-20151878204,THEFT UNDER,2015-10-29,2015,October,Thursday,29,302,16,2015-11-01,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22585,10742,GO-20151921683,THEFT UNDER,2015-11-08,2015,November,Sunday,8,312,13,2015-11-08,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22586,10766,GO-20159009704,THEFT UNDER,2015-11-07,2015,November,Saturday,7,311,16,2015-11-13,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22587,11002,GO-2016305341,THEFT UNDER,2016-02-14,2016,February,Sunday,14,45,10,2016-02-20,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22588,11108,GO-2016582046,THEFT UNDER - BICYCLE,2016-04-05,2016,April,Tuesday,5,96,21,2016-04-06,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22589,11109,GO-2016582046,THEFT UNDER - BICYCLE,2016-04-05,2016,April,Tuesday,5,96,21,2016-04-06,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22590,11422,GO-20169005195,THEFT UNDER - BICYCLE,2016-05-23,2016,May,Monday,23,144,19,2016-05-31,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22591,11492,GO-2016919840,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,22,2016-05-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22592,11631,GO-20161110490,PROPERTY - FOUND,2016-05-28,2016,May,Saturday,28,149,15,2016-06-25,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22593,11673,GO-20169006577,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,21,2016-06-30,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22594,12194,GO-20161510882,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,21,2016-08-26,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22595,12543,GO-20169011496,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,11,2016-10-03,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22596,13017,GO-20209003997,THEFT UNDER,2019-11-29,2019,November,Friday,29,333,11,2020-02-02,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22597,13023,GO-20209008316,THEFT UNDER - BICYCLE,2020-03-09,2020,March,Monday,9,69,12,2020-03-09,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22598,13033,GO-20209013270,THEFT UNDER - BICYCLE,2020-05-16,2020,May,Saturday,16,137,16,2020-05-16,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22599,13051,GO-20201160947,PROPERTY - FOUND,2020-06-23,2020,June,Tuesday,23,175,23,2020-06-24,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22600,14081,GO-20169007527,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,20,2016-07-20,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22601,14108,GO-20161699543,THEFT UNDER - BICYCLE,2016-09-23,2016,September,Friday,23,267,6,2016-09-24,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22602,14110,GO-20169011265,THEFT UNDER - BICYCLE,2016-09-28,2016,September,Wednesday,28,272,17,2016-09-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22603,14111,GO-20169011496,THEFT UNDER - BICYCLE,2016-10-03,2016,October,Monday,3,277,11,2016-10-03,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22604,14148,GO-20179005232,THEFT UNDER - BICYCLE,2017-04-22,2017,April,Saturday,22,112,15,2017-04-25,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22605,14153,GO-20179006215,THEFT UNDER - BICYCLE,2017-05-12,2017,May,Friday,12,132,14,2017-05-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22606,14250,GO-20189020715,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,3,2018-06-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22607,14251,GO-20189020715,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,3,2018-06-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22608,15894,GO-20149005429,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,0,2014-07-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22609,15937,GO-20159002586,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,12,2015-05-10,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22610,15943,GO-20159003240,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,22,2015-06-01,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22611,15944,GO-20159003419,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,20,2015-06-08,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22612,15945,GO-2015961739,PROPERTY - FOUND,2015-06-08,2015,June,Monday,8,159,18,2015-06-08,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22613,15987,GO-20159008195,THEFT UNDER,2015-09-24,2015,September,Thursday,24,267,16,2015-10-05,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22614,16043,GO-20201333452,THEFT UNDER - BICYCLE,2020-07-17,2020,July,Friday,17,199,19,2020-07-18,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22615,16072,GO-20209022552,THEFT UNDER - BICYCLE,2020-09-07,2020,September,Monday,7,251,15,2020-09-07,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22616,16104,GO-20209029443,THEFT UNDER,2020-11-07,2020,November,Saturday,7,312,12,2020-11-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22617,18734,GO-20209020043,THEFT UNDER - BICYCLE,2020-08-11,2020,August,Tuesday,11,224,22,2020-08-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22618,18749,GO-20209021561,THEFT UNDER - BICYCLE,2020-08-26,2020,August,Wednesday,26,239,16,2020-08-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22619,18837,GO-20142360448,THEFT UNDER,2014-06-24,2014,June,Tuesday,24,175,20,2014-06-24,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22620,18894,GO-20159003366,THEFT UNDER,2015-05-30,2015,May,Saturday,30,150,12,2015-06-05,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22621,18895,GO-20159003407,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,18,2015-06-07,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22622,18896,GO-20159003407,THEFT UNDER,2015-04-10,2015,April,Friday,10,100,18,2015-06-07,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22623,18942,GO-20159007907,THEFT UNDER,2015-09-27,2015,September,Sunday,27,270,1,2015-09-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22624,18951,GO-20151867661,THEFT UNDER,2015-10-30,2015,October,Friday,30,303,18,2015-10-30,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22625,18983,GO-2016919840,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,22,2016-05-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22626,19376,GO-20209014772,THEFT UNDER - BICYCLE,2020-06-06,2020,June,Saturday,6,158,8,2020-06-06,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22627,19052,GO-20169012151,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,15,2016-10-16,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22628,19075,GO-20179005296,THEFT UNDER - BICYCLE,2017-04-18,2017,April,Tuesday,18,108,20,2017-04-25,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22629,19171,GO-20189020639,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,9,2018-06-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22630,19173,GO-20189020916,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,16,2018-07-02,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22631,19202,GO-20189031919,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,23,2018-09-25,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22632,19323,GO-20192459020,B&E W'INTENT,2019-12-20,2019,December,Friday,20,354,17,2019-12-22,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22633,19340,GO-2020519120,THEFT UNDER - BICYCLE,2020-03-12,2020,March,Thursday,12,72,12,2020-03-12,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22634,19353,GO-2020700897,THEFT UNDER,2020-04-08,2020,April,Wednesday,8,99,21,2020-04-11,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22635,19384,GO-20201197192,B&E W'INTENT,2020-06-28,2020,June,Sunday,28,180,18,2020-06-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22636,19385,GO-20201197192,B&E W'INTENT,2020-06-28,2020,June,Sunday,28,180,18,2020-06-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22637,19388,GO-20209016840,THEFT UNDER - BICYCLE,2020-06-23,2020,June,Tuesday,23,175,13,2020-07-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22638,19625,GO-20149004191,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,16,2014-06-17,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22639,19696,GO-20159004830,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,17,2015-07-21,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22640,19697,GO-20159004830,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,17,2015-07-21,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22641,19708,GO-20159005755,THEFT UNDER,2013-07-01,2013,July,Monday,1,182,14,2015-08-13,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22642,19732,GO-20159007493,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,23,2015-09-21,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22643,19765,GO-20169004706,THEFT UNDER - BICYCLE,2016-05-18,2016,May,Wednesday,18,139,22,2016-05-19,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22644,22160,GO-20169006395,THEFT UNDER - BICYCLE,2016-06-25,2016,June,Saturday,25,177,2,2016-06-26,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22645,22185,GO-20169009143,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,3,2016-08-20,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22646,22218,GO-2017586533,THEFT UNDER - BICYCLE,2017-03-25,2017,March,Saturday,25,84,13,2017-04-03,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22647,22297,GO-20189019930,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,23,2018-06-23,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22648,22345,GO-20189032911,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,19,2018-10-04,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22649,22473,GO-20209014787,INVALID GO - RMS ONLY,2020-06-06,2020,June,Saturday,6,158,8,2020-06-07,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22650,22862,GO-20142737348,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,6,2014-08-20,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22651,22923,GO-20151490611,THEFT UNDER,2015-08-29,2015,August,Saturday,29,241,16,2015-08-31,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22652,22935,GO-20159007406,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,8,2015-09-19,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22653,22937,GO-20151676003,THEFT UNDER - BICYCLE,2015-09-26,2015,September,Saturday,26,269,4,2015-09-28,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22654,22940,GO-20159008525,THEFT UNDER,2015-10-13,2015,October,Tuesday,13,286,8,2015-10-14,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22655,25398,GO-20161718870,THEFT UNDER,2016-09-23,2016,September,Friday,23,267,18,2016-09-27,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22656,25421,GO-20162299131,MISCHIEF UNDER,2016-12-29,2016,December,Thursday,29,364,4,2016-12-29,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)}",Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -22657,1164,GO-20171460775,THEFT UNDER - BICYCLE,2017-08-13,2017,August,Sunday,13,225,16,2017-08-13,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22658,3688,GO-20189033570,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,5,2018-10-10,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22659,25573,GO-20181375951,THEFT UNDER - BICYCLE,2018-07-21,2018,July,Saturday,21,202,16,2018-07-27,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22660,25645,GO-20199023175,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,22,2019-07-22,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22661,25678,GO-20199032499,THEFT UNDER - BICYCLE,2019-10-02,2019,October,Wednesday,2,275,0,2019-10-03,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22662,25728,GO-20209015642,THEFT UNDER - BICYCLE,2020-03-01,2020,March,Sunday,1,61,10,2020-06-18,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22663,25772,GO-20209023070,THEFT FROM MOTOR VEHICLE UNDER,2020-09-07,2020,September,Monday,7,251,20,2020-09-12,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22664,1,GO-20162176159,THEFT UNDER - BICYCLE,2016-12-06,2016,December,Tuesday,6,341,6,2016-12-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22665,89,GO-20179001801,THEFT OF EBIKE UNDER $5000,2017-02-10,2017,February,Friday,10,41,16,2017-02-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22666,98,GO-2017326683,THEFT UNDER - BICYCLE,2017-02-21,2017,February,Tuesday,21,52,16,2017-02-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22667,1236,GO-20171537143,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,12,2017-08-25,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22668,211,GO-2017639433,THEFT UNDER - BICYCLE,2017-04-10,2017,April,Monday,10,100,0,2017-04-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22669,3706,GO-20189034222,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,21,2018-10-15,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22670,308,GO-2017760912,THEFT UNDER,2017-04-29,2017,April,Saturday,29,119,23,2017-04-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22671,1239,GO-20179013202,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,10,2017-08-24,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22672,3813,GO-20189036996,THEFT UNDER,2018-10-29,2018,October,Monday,29,302,21,2018-11-05,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22673,348,GO-20179006009,THEFT UNDER - BICYCLE,2017-05-09,2017,May,Tuesday,9,129,12,2017-05-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22674,1267,GO-20179013618,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,14,2017-08-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22675,1349,GO-20179014350,THEFT UNDER - BICYCLE,2017-09-08,2017,September,Friday,8,251,8,2017-09-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22676,1572,GO-20179016302,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,13,2017-10-02,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22677,1586,GO-20179016434,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,2,2017-10-04,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22678,1616,GO-20179016775,THEFT UNDER - BICYCLE,2017-10-08,2017,October,Sunday,8,281,15,2017-10-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22679,2023,GO-2018250206,B&E,2018-02-08,2018,February,Thursday,8,39,14,2018-02-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22680,2074,GO-20189007750,THEFT UNDER - BICYCLE,2018-03-10,2018,March,Saturday,10,69,17,2018-03-13,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22681,2075,GO-20189007750,THEFT UNDER - BICYCLE,2018-03-10,2018,March,Saturday,10,69,17,2018-03-13,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22682,2319,GO-20189015090,THEFT UNDER - BICYCLE,2018-05-13,2018,May,Sunday,13,133,12,2018-05-15,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22683,2570,GO-20181079188,PROPERTY - FOUND,2018-06-14,2018,June,Thursday,14,165,11,2018-06-15,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22684,3040,GO-20181405777,THEFT OVER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,17,2018-08-01,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22685,3248,GO-20189026985,THEFT FROM MOTOR VEHICLE UNDER,2018-08-18,2018,August,Saturday,18,230,19,2018-08-19,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22686,4333,GO-20199016116,THEFT UNDER - BICYCLE,2019-05-23,2019,May,Thursday,23,143,8,2019-05-24,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22687,4360,GO-20199016530,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,9,2019-05-27,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22688,4636,GO-20191186260,THEFT OVER - BICYCLE,2019-06-26,2019,June,Wednesday,26,177,0,2019-06-26,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22689,4637,GO-20191186260,THEFT OVER - BICYCLE,2019-06-26,2019,June,Wednesday,26,177,0,2019-06-26,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22690,4831,GO-20191375481,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,0,2019-07-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22691,4832,GO-20191375481,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,0,2019-07-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22692,5658,GO-20192153765,B&E,2019-11-06,2019,November,Wednesday,6,310,22,2019-11-07,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22693,6009,GO-2020641491,THEFT UNDER - BICYCLE,2020-02-25,2020,February,Tuesday,25,56,12,2020-04-01,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22694,6032,GO-2020679162,PROPERTY - FOUND,2020-04-07,2020,April,Tuesday,7,98,17,2020-04-07,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22695,6046,GO-20209010892,THEFT UNDER - BICYCLE,2020-04-10,2020,April,Friday,10,101,23,2020-04-11,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22696,6057,GO-20209010986,THEFT UNDER - BICYCLE,2020-04-12,2020,April,Sunday,12,103,17,2020-04-12,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22697,9163,GO-20143266279,THEFT UNDER,2014-11-08,2014,November,Saturday,8,312,18,2014-11-08,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22698,6421,GO-20209015613,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,4,2020-06-18,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22699,6619,GO-20209017557,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,1,2020-07-14,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22700,6697,GO-20201361719,THEFT OF EBIKE UNDER $5000,2020-07-16,2020,July,Thursday,16,198,18,2020-07-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22701,6814,GO-20209018973,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,13,2020-07-30,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22702,6948,GO-20209020045,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,1,2020-08-12,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22703,6969,GO-20209020385,THEFT UNDER - BICYCLE,2020-08-16,2020,August,Sunday,16,229,16,2020-08-16,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22704,7121,GO-20209021756,THEFT UNDER - BICYCLE,2020-08-27,2020,August,Thursday,27,240,9,2020-08-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22705,7130,GO-20209021816,THEFT UNDER - BICYCLE,2020-08-30,2020,August,Sunday,30,243,13,2020-08-30,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22706,7143,GO-20201635525,THEFT OF EBIKE UNDER $5000,2020-07-29,2020,July,Wednesday,29,211,23,2020-07-30,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22707,7323,GO-20209024085,THEFT UNDER - BICYCLE,2020-09-21,2020,September,Monday,21,265,17,2020-09-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22708,7659,GO-20209030498,THEFT UNDER,2020-11-23,2020,November,Monday,23,328,21,2020-11-24,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22709,7664,GO-20209030603,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,10,2020-11-25,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22710,8006,GO-20149003701,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,20,2014-05-31,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22711,8301,GO-20149004594,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,16,2014-07-01,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22712,8373,GO-20149004838,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,1,2014-07-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22713,8701,GO-20149006141,THEFT UNDER,2014-08-17,2014,August,Sunday,17,229,19,2014-08-20,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22714,9416,GO-2015629693,THEFT UNDER,2015-03-14,2015,March,Saturday,14,73,16,2015-04-16,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22715,9536,GO-20159002496,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,16,2015-05-06,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22716,9602,GO-20159002859,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,8,2015-05-18,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22717,9833,GO-20159003736,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,0,2015-06-18,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22718,9903,GO-20151092827,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,21,2015-06-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22719,9904,GO-20151092827,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,21,2015-06-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22720,10334,GO-20159006280,THEFT UNDER,2015-08-22,2015,August,Saturday,22,234,16,2015-08-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22721,10362,GO-20159006489,THEFT UNDER,2015-08-27,2015,August,Thursday,27,239,19,2015-08-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22722,10465,GO-20159007171,THEFT UNDER,2015-09-13,2015,September,Sunday,13,256,12,2015-09-15,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22723,10562,GO-20159007904,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,5,2015-09-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22724,10563,GO-20159007904,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,5,2015-09-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22725,10705,GO-20151861324,THEFT UNDER,2015-10-29,2015,October,Thursday,29,302,6,2015-10-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22726,10978,GO-2016236626,PROPERTY - FOUND,2016-02-09,2016,February,Tuesday,9,40,8,2016-02-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22727,10979,GO-2016236626,PROPERTY - FOUND,2016-02-09,2016,February,Tuesday,9,40,8,2016-02-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22728,10980,GO-2016236626,PROPERTY - FOUND,2016-02-09,2016,February,Tuesday,9,40,8,2016-02-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22729,11040,GO-20169002235,THEFT UNDER - BICYCLE,2016-03-09,2016,March,Wednesday,9,69,18,2016-03-11,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22730,11148,GO-2016654086,THEFT UNDER - BICYCLE,2016-03-26,2016,March,Saturday,26,86,12,2016-04-17,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22731,11149,GO-2016654086,THEFT UNDER - BICYCLE,2016-03-26,2016,March,Saturday,26,86,12,2016-04-17,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22732,11169,GO-2015883046,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,9,2015-05-27,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22733,11339,GO-2016869346,PROPERTY - FOUND,2016-05-20,2016,May,Friday,20,141,15,2016-05-20,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22734,11638,GO-20169006365,THEFT UNDER - BICYCLE,2016-06-21,2016,June,Tuesday,21,173,0,2016-06-26,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22735,11760,GO-20161177808,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,14,2016-07-05,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22736,12188,GO-20169009361,THEFT UNDER - BICYCLE,2016-07-16,2016,July,Saturday,16,198,20,2016-08-24,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22737,12255,GO-20169009928,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,16,2016-09-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22738,12433,GO-20169010956,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,17,2016-09-23,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22739,12434,GO-20169010956,THEFT UNDER - BICYCLE,2016-09-21,2016,September,Wednesday,21,265,17,2016-09-23,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22740,12708,GO-20169012855,THEFT UNDER - BICYCLE,2016-10-31,2016,October,Monday,31,305,22,2016-11-01,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22741,12838,GO-20162131590,THEFT UNDER - BICYCLE,2016-11-30,2016,November,Wednesday,30,335,19,2016-12-01,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22742,12897,GO-20189032170,THEFT UNDER - BICYCLE,2018-09-23,2018,September,Sunday,23,266,16,2018-09-27,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22743,12953,GO-20199023587,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,4,2019-07-24,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22744,13009,GO-20192261839,THEFT UNDER - BICYCLE,2019-11-22,2019,November,Friday,22,326,22,2019-11-23,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22745,4451,GO-20199018127,THEFT UNDER - BICYCLE,2019-06-08,2019,June,Saturday,8,159,8,2019-06-11,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22746,13047,GO-20209015230,THEFT UNDER - BICYCLE,2020-06-12,2020,June,Friday,12,164,12,2020-06-12,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22747,13050,GO-20201150454,THEFT UNDER - BICYCLE,2020-06-22,2020,June,Monday,22,174,17,2020-06-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22748,14065,GO-20169005451,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,22,2016-06-08,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22749,14066,GO-20169005451,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,22,2016-06-08,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22750,14162,GO-20179008022,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,23,2017-06-13,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22751,14177,GO-20179011497,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,6,2017-08-02,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22752,14185,GO-20179013618,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,14,2017-08-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22753,14197,GO-20179015759,THEFT OF EBIKE UNDER $5000,2017-09-24,2017,September,Sunday,24,267,18,2017-09-25,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22754,14234,GO-20189016278,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,8,2018-05-25,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22755,14247,GO-20189020405,THEFT UNDER - BICYCLE,2018-06-26,2018,June,Tuesday,26,177,7,2018-06-27,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22756,15880,GO-20142420945,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,16,2014-07-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22757,15881,GO-20149004588,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,8,2014-06-30,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22758,15986,GO-20159007874,THEFT UNDER,2015-09-27,2015,September,Sunday,27,270,16,2015-09-28,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22759,18714,GO-20209018258,THEFT UNDER - BICYCLE,2020-07-20,2020,July,Monday,20,202,12,2020-07-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22760,18721,GO-20201391413,THEFT UNDER - BICYCLE,2020-07-26,2020,July,Sunday,26,208,15,2020-07-26,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22761,18742,GO-20209020901,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,18,2020-08-21,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -22762,5253,GO-20199029039,THEFT UNDER - BICYCLE,2019-09-06,2019,September,Friday,6,249,8,2019-09-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22763,499,GO-20179007138,THEFT UNDER - BICYCLE,2017-05-24,2017,May,Wednesday,24,144,21,2017-05-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22764,532,GO-2017991564,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,17,2017-06-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22765,612,GO-20179008103,THEFT UNDER - BICYCLE,2017-06-14,2017,June,Wednesday,14,165,14,2017-06-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22766,780,GO-20179009462,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,0,2017-07-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22767,807,GO-20179009715,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,16,2017-07-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22768,811,GO-20179009715,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,16,2017-07-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22769,945,GO-20179010770,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,16,2017-07-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22770,955,GO-20179010895,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,15,2017-07-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22771,956,GO-20179010895,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,15,2017-07-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22772,957,GO-20179010895,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,15,2017-07-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22773,1002,GO-20179011265,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,13,2017-07-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22774,1005,GO-20179011321,THEFT UNDER - BICYCLE,2017-07-29,2017,July,Saturday,29,210,17,2017-07-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22775,1160,GO-20179012521,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,16,2017-08-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22776,1176,GO-20179012726,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,3,2017-08-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22777,1223,GO-20171525931,B&E,2017-08-22,2017,August,Tuesday,22,234,23,2017-08-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22778,1251,GO-20179013398,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,11,2017-08-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22779,1421,GO-20179014887,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,14,2017-09-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22780,1458,GO-20171687779,B&E,2017-09-16,2017,September,Saturday,16,259,20,2017-09-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22781,1465,GO-20179015233,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,18,2017-09-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22782,1467,GO-20179015277,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,17,2017-09-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22783,1474,GO-20171714392,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,16,2017-09-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22784,1500,GO-20171709125,THEFT OF EBIKE UNDER $5000,2017-09-20,2017,September,Wednesday,20,263,14,2017-09-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22785,1642,GO-20171842497,B&E,2017-10-10,2017,October,Tuesday,10,283,2,2017-10-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22786,1684,GO-20179017548,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,13,2017-10-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22787,1767,GO-20179018489,THEFT UNDER - BICYCLE,2017-10-29,2017,October,Sunday,29,302,22,2017-10-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22788,2022,GO-20189004013,THEFT UNDER - BICYCLE,2018-02-08,2018,February,Thursday,8,39,18,2018-02-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22789,2054,GO-20189006283,THEFT UNDER - BICYCLE,2018-01-28,2018,January,Sunday,28,28,18,2018-02-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22790,2224,GO-2018761139,THEFT OVER,2018-04-27,2018,April,Friday,27,117,17,2018-04-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22791,2238,GO-20189013555,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,17,2018-05-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22792,2279,GO-20189014305,THEFT UNDER - BICYCLE,2018-05-07,2018,May,Monday,7,127,14,2018-05-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22793,2289,GO-20189014493,THEFT FROM MOTOR VEHICLE UNDER,2018-05-10,2018,May,Thursday,10,130,21,2018-05-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22794,2382,GO-20189015990,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,9,2018-05-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22795,2388,GO-20189016129,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,12,2018-05-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22796,2530,GO-20189018282,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,9,2018-06-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22797,2550,GO-20189018510,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,8,2018-06-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22798,2588,GO-20189018959,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,14,2018-06-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22799,2616,GO-20189019300,THEFT UNDER - BICYCLE,2018-06-18,2018,June,Monday,18,169,21,2018-06-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22800,6300,GO-20209014598,THEFT UNDER - BICYCLE,2020-06-04,2020,June,Thursday,4,156,13,2020-06-04,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22801,2619,GO-20189019362,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,9,2018-06-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22802,2653,GO-20189019720,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,6,2018-06-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22803,2666,GO-20189020038,THEFT UNDER - BICYCLE,2018-06-24,2018,June,Sunday,24,175,13,2018-06-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22804,2690,GO-20189020373,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,21,2018-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22805,2735,GO-20189020944,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,2,2018-07-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22806,2760,GO-20189021353,THEFT UNDER - BICYCLE,2018-07-05,2018,July,Thursday,5,186,13,2018-07-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22807,2988,GO-20189024110,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,6,2018-07-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22808,3015,GO-20189024416,THEFT UNDER - BICYCLE,2018-07-07,2018,July,Saturday,7,188,18,2018-07-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22809,3117,GO-20189025589,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,22,2018-08-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22810,3195,GO-20189026277,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,0,2018-08-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22811,3219,GO-20189026588,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,8,2018-08-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22812,3220,GO-20189026588,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,8,2018-08-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22813,3221,GO-20189026588,THEFT UNDER - BICYCLE,2018-08-15,2018,August,Wednesday,15,227,8,2018-08-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22814,3282,GO-20189027367,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,3,2018-08-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22815,3321,GO-20189027947,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,19,2018-08-25,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22816,3353,GO-20189028518,THEFT UNDER - BICYCLE,2018-08-27,2018,August,Monday,27,239,18,2018-08-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22817,3470,GO-20189030483,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,17,2018-09-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22818,3546,GO-20189031691,THEFT UNDER - BICYCLE,2018-09-22,2018,September,Saturday,22,265,17,2018-09-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22819,3616,GO-20189032898,THEFT UNDER - BICYCLE,2018-09-01,2018,September,Saturday,1,244,14,2018-10-04,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22820,3856,GO-20189038291,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,8,2018-11-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22821,3866,GO-20189038542,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,9,2018-11-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22822,3867,GO-20189038542,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,9,2018-11-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22823,3906,GO-20182194221,B&E,2018-11-24,2018,November,Saturday,24,328,21,2018-11-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22824,4218,GO-2019776046,B&E,2019-04-30,2019,April,Tuesday,30,120,3,2019-04-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22825,4227,GO-20199013775,THEFT UNDER,2019-05-02,2019,May,Thursday,2,122,18,2019-05-02,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22826,4353,GO-2019967448,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,9,2019-05-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22827,4530,GO-20191106490,PROPERTY - FOUND,2019-06-15,2019,June,Saturday,15,166,14,2019-06-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22828,4705,GO-20199021469,THEFT UNDER - BICYCLE,2019-07-08,2019,July,Monday,8,189,15,2019-07-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22829,5292,GO-20199029554,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,17,2019-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22830,4777,GO-20199022378,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,10,2019-07-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22831,4828,GO-20199023122,THEFT UNDER - BICYCLE,2019-07-05,2019,July,Friday,5,186,17,2019-07-21,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22832,4895,GO-20191386474,THEFT UNDER - BICYCLE,2019-07-23,2019,July,Tuesday,23,204,7,2019-07-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22833,4898,GO-20199024010,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,11,2019-07-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22834,4905,GO-20199024079,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,8,2019-07-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22835,4941,GO-20199024520,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,1,2019-07-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22836,5013,GO-20191513308,THEFT UNDER - BICYCLE,2019-08-02,2019,August,Friday,2,214,17,2019-08-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22837,5022,GO-20199025644,THEFT UNDER - BICYCLE,2019-07-31,2019,July,Wednesday,31,212,13,2019-08-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22838,5026,GO-20199024520,THEFT UNDER - BICYCLE,2019-07-29,2019,July,Monday,29,210,1,2019-07-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22839,4192,GO-20199012702,THEFT UNDER - BICYCLE,2019-04-22,2019,April,Monday,22,112,9,2019-04-22,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22840,4595,GO-20199019957,THEFT UNDER - BICYCLE,2019-04-24,2019,April,Wednesday,24,114,18,2019-06-24,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22841,4596,GO-20199019957,THEFT UNDER - BICYCLE,2019-04-24,2019,April,Wednesday,24,114,18,2019-06-24,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22842,4618,GO-20191171076,THEFT UNDER - BICYCLE,2019-06-22,2019,June,Saturday,22,173,0,2019-06-24,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22843,4619,GO-20191171076,THEFT UNDER - BICYCLE,2019-06-22,2019,June,Saturday,22,173,0,2019-06-24,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22844,4973,GO-20199025015,THEFT UNDER - BICYCLE,2019-08-05,2019,August,Monday,5,217,13,2019-08-05,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22845,5157,GO-20199027646,THEFT UNDER,2019-08-23,2019,August,Friday,23,235,20,2019-08-25,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22846,5193,GO-20199028224,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,13,2019-08-30,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22847,5228,GO-20199028687,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,9,2019-09-04,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22848,5245,GO-20199028846,THEFT UNDER - BICYCLE,2019-09-05,2019,September,Thursday,5,248,9,2019-09-05,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22849,5544,GO-20192014120,THEFT OF EBIKE UNDER $5000,2019-10-18,2019,October,Friday,18,291,20,2019-10-18,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22850,5740,GO-20192324624,THEFT OF EBIKE UNDER $5000,2019-11-28,2019,November,Thursday,28,332,17,2019-12-02,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22851,5896,GO-2020333085,B&E,2020-02-16,2020,February,Sunday,16,47,4,2020-02-16,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22852,5897,GO-2020333085,B&E,2020-02-16,2020,February,Sunday,16,47,4,2020-02-16,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22853,6094,GO-20209011804,THEFT UNDER - BICYCLE,2020-04-20,2020,April,Monday,20,111,18,2020-04-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22854,6132,GO-20209012400,THEFT UNDER,2020-05-03,2020,May,Sunday,3,124,17,2020-05-03,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22855,6138,GO-20209012462,THEFT UNDER - BICYCLE,2020-05-04,2020,May,Monday,4,125,3,2020-05-04,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22856,6394,GO-20209015421,THEFT UNDER - BICYCLE,2020-06-13,2020,June,Saturday,13,165,16,2020-06-15,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22857,6436,GO-20201147953,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,10,2020-06-22,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22858,6487,GO-20209016359,THEFT UNDER - BICYCLE,2020-06-20,2020,June,Saturday,20,172,22,2020-06-28,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22859,6562,GO-20209017139,THEFT UNDER - BICYCLE,2020-07-07,2020,July,Tuesday,7,189,17,2020-07-08,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22860,6682,GO-20201348165,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,0,2020-07-21,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22861,7327,GO-20201797285,THEFT UNDER - BICYCLE,2020-09-14,2020,September,Monday,14,258,17,2020-09-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22862,7369,GO-20209024703,THEFT UNDER - BICYCLE,2020-09-01,2020,September,Tuesday,1,245,14,2020-09-27,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22863,7370,GO-20209024718,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,23,2020-09-27,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22864,7673,GO-20202251326,B&E,2020-11-27,2020,November,Friday,27,332,23,2020-11-28,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22865,8311,GO-20149004616,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,19,2014-07-02,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22866,8363,GO-20149004792,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,0,2014-07-09,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22867,8868,GO-20142901231,PROPERTY - LOST,2014-09-13,2014,September,Saturday,13,256,10,2014-09-13,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22868,9334,GO-20159001411,THEFT UNDER,2015-03-09,2015,March,Monday,9,68,9,2015-03-19,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22869,9871,GO-20159003908,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,14,2015-06-24,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22870,10085,GO-20151269627,THEFT UNDER,2015-07-24,2015,July,Friday,24,205,2,2015-07-25,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22871,10204,GO-20159005475,THEFT UNDER,2015-08-08,2015,August,Saturday,8,220,23,2015-08-09,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22872,10279,GO-20159005895,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,0,2015-08-17,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22873,10385,GO-20159006618,THEFT UNDER,2015-08-31,2015,August,Monday,31,243,22,2015-09-01,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22874,10504,GO-20159007460,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,23,2015-09-20,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22875,10532,GO-20159007460,THEFT UNDER,2015-09-19,2015,September,Saturday,19,262,23,2015-09-20,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22876,11026,GO-20169002135,THEFT UNDER - BICYCLE,2016-01-20,2016,January,Wednesday,20,20,21,2016-03-08,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22877,11197,GO-20169003810,THEFT UNDER - BICYCLE,2016-04-23,2016,April,Saturday,23,114,0,2016-04-25,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22878,11578,GO-20169006020,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,7,2016-06-19,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22879,11599,GO-20169005957,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,13,2016-06-17,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22880,11604,GO-20169006152,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,18,2016-06-21,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22881,12670,GO-20169012490,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,10,2016-10-24,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22882,12891,GO-20189031279,THEFT UNDER - BICYCLE,2018-09-19,2018,September,Wednesday,19,262,13,2018-09-20,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22883,12898,GO-20189033570,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,5,2018-10-10,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22884,12936,GO-20199018413,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,21,2019-06-13,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22885,12939,GO-20199018880,THEFT UNDER,2019-06-16,2019,June,Sunday,16,167,21,2019-06-17,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22886,13001,GO-20199034656,THEFT UNDER - BICYCLE,2019-10-11,2019,October,Friday,11,284,23,2019-10-21,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22887,13006,GO-20192153842,THEFT UNDER - BICYCLE,2019-11-06,2019,November,Wednesday,6,310,12,2019-11-07,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22888,13030,GO-2020765756,B&E,2020-04-21,2020,April,Tuesday,21,112,16,2020-04-22,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22889,14120,GO-20169013498,THEFT UNDER - BICYCLE,2016-11-11,2016,November,Friday,11,316,23,2016-11-16,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22890,14213,GO-20172041767,B&E,2017-11-07,2017,November,Tuesday,7,311,9,2017-11-11,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22891,14218,GO-20173068386,PROPERTY - FOUND,2017-11-24,2017,November,Friday,24,328,19,2017-11-25,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22892,15857,GO-20141920786,THEFT UNDER,2014-04-19,2014,April,Saturday,19,109,13,2014-04-19,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22893,15933,GO-20159002504,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,14,2015-05-06,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22894,15951,GO-20159003886,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,18,2015-06-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22895,15954,GO-20159004349,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,14,2015-07-09,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22896,15989,GO-20151781449,PROPERTY - FOUND,2015-10-16,2015,October,Friday,16,289,9,2015-10-16,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22897,16075,GO-20201726105,B&E,2020-09-12,2020,September,Saturday,12,256,4,2020-09-12,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22898,16110,GO-20209031917,THEFT UNDER,2020-12-13,2020,December,Sunday,13,348,13,2020-12-13,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22899,18766,GO-20201970427,B&E,2020-10-16,2020,October,Friday,16,290,10,2020-10-17,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22900,18788,GO-20209030794,THEFT UNDER,2020-11-27,2020,November,Friday,27,332,11,2020-11-28,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22901,18875,GO-20143443015,THEFT UNDER,2014-12-07,2014,December,Sunday,7,341,13,2014-12-07,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22902,18890,GO-20159003177,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,23,2015-05-28,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22903,18915,GO-20159004896,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,9,2015-07-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22904,18945,GO-20159008048,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,1,2015-10-02,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22905,18946,GO-20159008048,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,1,2015-10-02,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22906,18950,GO-20159009153,THEFT UNDER,2015-10-28,2015,October,Wednesday,28,301,8,2015-10-29,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22907,18957,GO-20159010951,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,10,2015-12-15,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22908,18990,GO-20169005893,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,19,2016-06-16,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22909,19053,GO-20161852884,THEFT OVER - BICYCLE,2016-10-13,2016,October,Thursday,13,287,20,2016-10-18,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22910,19058,GO-20169013412,THEFT UNDER - BICYCLE,2016-11-14,2016,November,Monday,14,319,17,2016-11-14,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22911,19074,GO-2017734003,THEFT UNDER - BICYCLE,2017-04-21,2017,April,Friday,21,111,0,2017-04-26,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22912,19134,GO-20173052888,THEFT UNDER - BICYCLE,2017-11-21,2017,November,Tuesday,21,325,19,2017-11-23,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22913,19149,GO-20189010160,THEFT UNDER - BICYCLE,2018-04-01,2018,April,Sunday,1,91,9,2018-04-01,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22914,19207,GO-20189034337,THEFT UNDER - BICYCLE,2018-10-13,2018,October,Saturday,13,286,21,2018-10-16,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22915,19271,GO-20199028144,THEFT UNDER,2019-08-29,2019,August,Thursday,29,241,11,2019-08-29,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22916,19277,GO-20199028707,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,11,2019-09-04,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22917,19297,GO-20199031428,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,8,2019-09-25,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22918,19298,GO-20199031428,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,8,2019-09-25,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22919,19771,GO-20161032024,THEFT OF EBIKE OVER $5000,2016-06-13,2016,June,Monday,13,165,22,2016-06-13,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22920,19772,GO-20169005957,THEFT UNDER - BICYCLE,2016-06-17,2016,June,Friday,17,169,13,2016-06-17,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22921,22304,GO-20181235235,B&E,2018-07-07,2018,July,Saturday,7,188,0,2018-07-07,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)}",Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -22922,5299,GO-20199029627,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,17,2019-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22923,5301,GO-20199029651,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,13,2019-09-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22924,5327,GO-20199030078,THEFT UNDER - BICYCLE,2019-09-11,2019,September,Wednesday,11,254,2,2019-09-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22925,5519,GO-20199033749,THEFT UNDER - BICYCLE,2019-10-12,2019,October,Saturday,12,285,15,2019-10-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22926,5607,GO-20199035579,THEFT UNDER - BICYCLE,2019-10-26,2019,October,Saturday,26,299,23,2019-10-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22927,5612,GO-20192081595,B&E,2019-09-29,2019,September,Sunday,29,272,0,2019-10-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22928,5614,GO-20199035725,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,8,2019-10-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22929,5703,GO-20199037972,THEFT UNDER - BICYCLE,2019-11-18,2019,November,Monday,18,322,18,2019-11-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22930,5712,GO-20199038141,THEFT UNDER - BICYCLE,2019-11-19,2019,November,Tuesday,19,323,5,2019-11-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22931,5736,GO-20199039243,THEFT UNDER - BICYCLE,2019-11-20,2019,November,Wednesday,20,324,9,2019-11-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22932,5755,GO-20199040572,THEFT UNDER,2019-12-11,2019,December,Wednesday,11,345,7,2019-12-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22933,5890,GO-20209005231,THEFT UNDER,2020-02-05,2020,February,Wednesday,5,36,17,2020-02-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22934,5907,GO-20209006094,THEFT UNDER - BICYCLE,2020-02-10,2020,February,Monday,10,41,0,2020-02-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22935,5943,GO-20209007809,THEFT UNDER - BICYCLE,2020-03-03,2020,March,Tuesday,3,63,8,2020-03-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22936,6039,GO-2020684523,THEFT UNDER - BICYCLE,2020-04-07,2020,April,Tuesday,7,98,16,2020-04-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22937,6041,GO-2020686254,THEFT UNDER - BICYCLE,2020-04-07,2020,April,Tuesday,7,98,17,2020-04-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22938,6042,GO-2020686254,THEFT UNDER - BICYCLE,2020-04-07,2020,April,Tuesday,7,98,17,2020-04-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22939,6104,GO-20209011965,THEFT UNDER,2020-04-26,2020,April,Sunday,26,117,20,2020-04-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22940,6142,GO-2020845244,B&E,2020-05-05,2020,May,Tuesday,5,126,10,2020-05-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22941,6301,GO-20201038346,POSSESSION HOUSE BREAK INSTRUM,2020-06-05,2020,June,Friday,5,157,22,2020-06-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22942,6302,GO-20201038346,POSSESSION HOUSE BREAK INSTRUM,2020-06-05,2020,June,Friday,5,157,22,2020-06-05,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22943,6330,GO-20209014833,THEFT UNDER - BICYCLE,2020-06-07,2020,June,Sunday,7,159,15,2020-06-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22944,6478,GO-20209016253,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,22,2020-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22945,6498,GO-20209016512,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,19,2020-06-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22946,6547,GO-20209016999,THEFT UNDER - BICYCLE,2020-07-06,2020,July,Monday,6,188,13,2020-07-07,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22947,6590,GO-20201284901,THEFT UNDER - BICYCLE,2020-06-30,2020,June,Tuesday,30,182,17,2020-07-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22948,6591,GO-20201284901,THEFT UNDER - BICYCLE,2020-06-30,2020,June,Tuesday,30,182,17,2020-07-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22949,6704,GO-20209018245,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,15,2020-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22950,6773,GO-20209018745,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,13,2020-07-28,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22951,6843,GO-20209019172,THEFT UNDER - BICYCLE,2020-08-01,2020,August,Saturday,1,214,16,2020-08-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22952,6889,GO-20209019583,THEFT UNDER - BICYCLE,2020-08-05,2020,August,Wednesday,5,218,10,2020-08-06,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22953,6937,GO-20209019932,THEFT UNDER - BICYCLE,2020-07-15,2020,July,Wednesday,15,197,18,2020-08-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22954,7283,GO-20209023711,THEFT UNDER - BICYCLE,2020-09-11,2020,September,Friday,11,255,23,2020-09-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22955,7431,GO-20209025907,THEFT UNDER - BICYCLE,2020-10-03,2020,October,Saturday,3,277,12,2020-10-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22956,7467,GO-20201942381,THEFT UNDER - BICYCLE,2020-10-13,2020,October,Tuesday,13,287,8,2020-10-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22957,7475,GO-20209026549,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,10,2020-10-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22958,7614,GO-20209029202,THEFT UNDER,2020-11-10,2020,November,Tuesday,10,315,5,2020-11-10,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22959,7628,GO-20209029479,THEFT UNDER,2020-11-13,2020,November,Friday,13,318,7,2020-11-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22960,7837,GO-20141894433,THEFT UNDER,2014-04-15,2014,April,Tuesday,15,105,9,2014-04-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22961,7859,GO-20141948021,THEFT UNDER,2014-04-23,2014,April,Wednesday,23,113,21,2014-04-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22962,7974,GO-20149003560,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,13,2014-05-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22963,8008,GO-20142176801,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,18,2014-05-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22964,8016,GO-20149003725,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,14,2014-05-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22965,8081,GO-20149003913,THEFT UNDER,2014-06-08,2014,June,Sunday,8,159,16,2014-06-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22966,8110,GO-20142276421,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,19,2014-06-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22967,8154,GO-20149004139,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,22,2014-06-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22968,8155,GO-20149004139,THEFT UNDER,2014-06-07,2014,June,Saturday,7,158,22,2014-06-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22969,8166,GO-20149004155,INCIDENT,2014-06-16,2014,June,Monday,16,167,23,2014-06-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22970,8199,GO-20142319437,THEFT UNDER,2014-06-18,2014,June,Wednesday,18,169,8,2014-06-18,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22971,8220,GO-20149004352,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,11,2014-06-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22972,8264,GO-20142408747,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,18,2014-07-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22973,8273,GO-20149004528,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,14,2014-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22974,8379,GO-20149004851,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,15,2014-07-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22975,8409,GO-20142516950,B&E,2014-07-17,2014,July,Thursday,17,198,16,2014-07-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22976,8486,GO-20149005244,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,17,2014-07-22,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22977,8563,GO-20149005525,THEFT UNDER,2014-07-31,2014,July,Thursday,31,212,8,2014-07-31,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22978,8565,GO-20149005550,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,12,2014-08-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22979,8682,GO-20142737720,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,17,2014-08-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22980,8691,GO-20142737814,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,23,2014-08-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22981,8692,GO-20142737814,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,23,2014-08-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22982,8844,GO-20149006699,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,9,2014-09-08,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22983,21517,GO-2018134847,B&E W'INTENT,2018-01-19,2018,January,Friday,19,19,5,2018-01-22,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -22984,8909,GO-20149006974,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,20,2014-09-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22985,8960,GO-20142973927,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,9,2014-09-24,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22986,9047,GO-20149007556,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,10,2014-10-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22987,9065,GO-20143112525,THEFT UNDER,2014-10-05,2014,October,Sunday,5,278,22,2014-10-16,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22988,9199,GO-20143353356,THEFT UNDER,2014-11-22,2014,November,Saturday,22,326,17,2014-11-23,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22989,9201,GO-20143373726,THEFT UNDER,2014-11-23,2014,November,Sunday,23,327,22,2014-11-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22990,9267,GO-2015107201,THEFT OVER,2014-12-31,2014,December,Wednesday,31,365,9,2015-01-19,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22991,22178,GO-20169008511,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,19,2016-08-10,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -22992,9408,GO-2015624599,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,13,2015-04-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22993,9447,GO-20159002101,THEFT UNDER,2015-04-19,2015,April,Sunday,19,109,16,2015-04-20,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22994,9501,GO-2015721481,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,16,2015-05-01,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22995,9560,GO-2015774191,THEFT UNDER,2015-05-09,2015,May,Saturday,9,129,11,2015-05-09,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22996,9568,GO-2015790613,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,21,2015-05-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22997,9580,GO-20159002727,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,13,2015-05-14,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22998,9593,GO-20159002780,INCIDENT,2015-05-14,2015,May,Thursday,14,134,13,2015-05-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -22999,9691,GO-2015885417,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,6,2015-05-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23000,9692,GO-20159003216,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,15,2015-05-30,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23001,9710,GO-20159003278,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,19,2015-06-03,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23002,9711,GO-20159003278,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,19,2015-06-03,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23003,9791,GO-20159003552,THEFT UNDER,2015-06-12,2015,June,Friday,12,163,13,2015-06-12,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23004,9808,GO-20159003637,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,10,2015-06-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23005,9809,GO-20159003637,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,10,2015-06-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23006,9822,GO-20151006475,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,18,2015-06-15,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23007,9893,GO-20159003953,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,1,2015-06-26,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23008,9902,GO-20159004018,THEFT UNDER,2015-06-28,2015,June,Sunday,28,179,14,2015-06-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23009,9994,GO-20151183115,FTC PROBATION ORDER,2015-07-13,2015,July,Monday,13,194,1,2015-07-13,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23010,10042,GO-20151216222,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,13,2015-07-17,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23011,10098,GO-20159004977,THEFT UNDER,2015-07-22,2015,July,Wednesday,22,203,13,2015-07-25,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23012,10107,GO-20159005033,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,19,2015-07-27,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23013,10128,GO-20151298550,ASSAULT,2015-07-29,2015,July,Wednesday,29,210,18,2015-07-29,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23014,10230,GO-20151379694,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,21,2015-08-11,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)}",Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -23015,9736,GO-20159003377,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,22,2015-06-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23016,9789,GO-2015991085,B&E W'INTENT,2015-06-12,2015,June,Friday,12,163,23,2015-06-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23017,10276,GO-20159005880,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,15,2015-08-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23018,10490,GO-20159007367,THEFT UNDER,2015-09-17,2015,September,Thursday,17,260,23,2015-09-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23019,10640,GO-20159008609,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,15,2015-10-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23020,10944,GO-201631879,B&E,2016-01-06,2016,January,Wednesday,6,6,12,2016-01-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23021,11626,GO-20161096962,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,9,2016-06-23,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23022,11834,GO-20161271594,THEFT UNDER - BICYCLE,2016-07-15,2016,July,Friday,15,197,18,2016-07-20,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23023,11879,GO-20161295455,THEFT UNDER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,11,2016-07-23,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23024,11961,GO-20169007986,THEFT UNDER - BICYCLE,2016-07-23,2016,July,Saturday,23,205,0,2016-07-31,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23025,12372,GO-20169010616,THEFT UNDER - BICYCLE,2016-09-17,2016,September,Saturday,17,261,21,2016-09-17,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23026,12977,GO-20191742304,THEFT UNDER - BICYCLE,2019-09-10,2019,September,Tuesday,10,253,8,2019-09-11,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23027,14125,GO-20169013864,THEFT UNDER - BICYCLE,2016-11-25,2016,November,Friday,25,330,9,2016-11-25,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23028,14212,GO-20172005038,THEFT FROM MOTOR VEHICLE UNDER,2017-11-03,2017,November,Friday,3,307,18,2017-11-05,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23029,14894,GO-20201665107,B&E,2020-08-22,2020,August,Saturday,22,235,12,2020-09-03,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23030,14895,GO-20201665107,B&E,2020-08-22,2020,August,Saturday,22,235,12,2020-09-03,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23031,15397,GO-2015865998,THEFT UNDER,2015-05-22,2015,May,Friday,22,142,16,2015-05-24,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23032,15400,GO-2015924506,B&E,2015-05-24,2015,May,Sunday,24,144,0,2015-06-02,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23033,15401,GO-2015924506,B&E,2015-05-24,2015,May,Sunday,24,144,0,2015-06-02,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23034,15415,GO-20151095442,B&E,2015-06-25,2015,June,Thursday,25,176,20,2015-06-29,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23035,15436,GO-20159005252,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,11,2015-08-02,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23036,15459,GO-20159007617,THEFT UNDER,2015-09-18,2015,September,Friday,18,261,23,2015-09-23,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23037,15625,GO-20179017758,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,13,2017-10-21,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23038,15639,GO-20199016472,THEFT UNDER - BICYCLE,2019-05-25,2019,May,Saturday,25,145,17,2019-05-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23039,15640,GO-2019992705,B&E,2019-05-29,2019,May,Wednesday,29,149,17,2019-05-30,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23040,15641,GO-2019992705,B&E,2019-05-29,2019,May,Wednesday,29,149,17,2019-05-30,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23041,15644,GO-20199019166,THEFT UNDER - BICYCLE,2019-06-18,2019,June,Tuesday,18,169,10,2019-06-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23042,18281,GO-20201544758,B&E,2020-08-16,2020,August,Sunday,16,229,14,2020-08-17,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23043,18283,GO-20201552358,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,11,2020-08-20,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23044,18374,GO-20143054752,B&E,2014-10-04,2014,October,Saturday,4,277,12,2014-10-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23045,18402,GO-2015833062,B&E W'INTENT,2015-05-02,2015,May,Saturday,2,122,10,2015-05-19,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23046,18403,GO-20159002958,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,0,2015-05-20,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23047,18404,GO-20159002958,THEFT UNDER,2015-05-18,2015,May,Monday,18,138,0,2015-05-20,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23048,18412,GO-2015947345,THEFT UNDER,2015-05-27,2015,May,Wednesday,27,147,0,2015-06-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23049,18431,GO-20151240491,THEFT UNDER,2015-04-05,2015,April,Sunday,5,95,12,2015-07-21,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23050,18440,GO-20151327475,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,16,2015-08-03,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23051,18739,GO-20209020543,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,14,2020-08-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23052,18782,GO-20202159881,THEFT UNDER - BICYCLE,2020-11-11,2020,November,Wednesday,11,316,11,2020-11-14,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23053,19756,GO-20169003507,THEFT UNDER,2016-04-17,2016,April,Sunday,17,108,10,2016-04-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23054,19770,GO-2016997998,THEFT UNDER - BICYCLE,2016-06-07,2016,June,Tuesday,7,159,23,2016-06-10,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23055,21390,GO-20161133007,THEFT UNDER - BICYCLE,2016-06-23,2016,June,Thursday,23,175,12,2016-06-28,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23056,21518,GO-2018134847,B&E W'INTENT,2018-01-19,2018,January,Friday,19,19,5,2018-01-22,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23057,21550,GO-20199035275,THEFT UNDER,2019-10-25,2019,October,Friday,25,298,23,2019-10-26,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23058,21852,GO-2015605489,THEFT OVER,2015-04-11,2015,April,Saturday,11,101,19,2015-04-12,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23059,21853,GO-2015605489,THEFT OVER,2015-04-11,2015,April,Saturday,11,101,19,2015-04-12,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23060,21854,GO-2015605489,THEFT OVER,2015-04-11,2015,April,Saturday,11,101,19,2015-04-12,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23061,21858,GO-2015762108,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,18,2015-05-07,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23062,21988,GO-20202129783,ROBBERY WITH WEAPON,2020-11-09,2020,November,Monday,9,314,20,2020-11-09,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23063,21989,GO-20202129783,ROBBERY WITH WEAPON,2020-11-09,2020,November,Monday,9,314,20,2020-11-09,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23064,22460,GO-2020795280,THEFT UNDER - BICYCLE,2020-04-24,2020,April,Friday,24,115,16,2020-04-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23065,22524,GO-20201466212,B&E,2020-08-04,2020,August,Tuesday,4,217,12,2020-08-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23066,24400,GO-20201561333,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,13,2020-08-19,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23067,24667,GO-20143090758,PROPERTY - FOUND,2014-10-12,2014,October,Sunday,12,285,11,2014-10-12,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23068,24668,GO-20149007631,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,18,2014-10-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23069,24674,GO-20143238584,B&E W'INTENT,2014-08-30,2014,August,Saturday,30,242,5,2014-11-04,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23070,24694,GO-2015724689,THEFT UNDER,2015-04-30,2015,April,Thursday,30,120,15,2015-05-01,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23071,24711,GO-20151047653,THEFT FROM MOTOR VEHICLE UNDER,2015-06-21,2015,June,Sunday,21,172,23,2015-06-22,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23072,25245,GO-20169008996,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,3,2016-08-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23073,25246,GO-20169008996,THEFT UNDER - BICYCLE,2016-08-18,2016,August,Thursday,18,231,3,2016-08-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23074,25344,GO-20191396320,B&E,2019-07-25,2019,July,Thursday,25,206,7,2019-07-25,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23075,25345,GO-20191396320,B&E,2019-07-25,2019,July,Thursday,25,206,7,2019-07-25,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23076,25347,GO-20191475635,THEFT UNDER,2019-08-04,2019,August,Sunday,4,216,16,2019-08-05,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23077,25348,GO-20191569794,THEFT OF MOTOR VEHICLE,2019-08-17,2019,August,Saturday,17,229,22,2019-08-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23078,25363,GO-20199036866,THEFT UNDER - BICYCLE,2019-11-07,2019,November,Thursday,7,311,17,2019-11-08,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23079,25366,GO-20192491449,THEFT OF MOTOR VEHICLE,2019-12-27,2019,December,Friday,27,361,0,2019-12-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23080,25430,GO-20179003585,THEFT UNDER - BICYCLE,2017-03-17,2017,March,Friday,17,76,16,2017-03-21,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23081,176,GO-2017549407,B&E,2017-03-28,2017,March,Tuesday,28,87,9,2017-03-29,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23082,202,GO-2017549407,B&E,2017-03-28,2017,March,Tuesday,28,87,9,2017-03-29,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23083,249,GO-2017647458,B&E,2017-04-12,2017,April,Wednesday,12,102,18,2017-04-12,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23084,309,GO-2017766292,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,10,2017-05-01,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23085,310,GO-2017766292,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,10,2017-05-01,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23086,481,GO-20179007066,THEFT UNDER,2017-05-26,2017,May,Friday,26,146,11,2017-05-27,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23087,696,GO-20171128384,B&E,2017-06-23,2017,June,Friday,23,174,21,2017-06-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23088,1109,GO-20179012121,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,16,2017-08-10,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23089,1373,GO-20179014508,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,5,2017-09-11,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23090,1597,GO-20179016586,THEFT UNDER - BICYCLE,2017-10-04,2017,October,Wednesday,4,277,18,2017-10-06,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23091,1889,GO-20179020701,THEFT UNDER - BICYCLE,2017-11-23,2017,November,Thursday,23,327,8,2017-11-28,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23092,1983,GO-201876438,B&E,2018-01-13,2018,January,Saturday,13,13,4,2018-01-13,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23093,1984,GO-201876438,B&E,2018-01-13,2018,January,Saturday,13,13,4,2018-01-13,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23094,2777,GO-20181246063,PROPERTY - FOUND,2018-07-09,2018,July,Monday,9,190,0,2018-07-09,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23095,3360,GO-20189028553,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,19,2018-08-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23096,3361,GO-20189028553,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,19,2018-08-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23097,3362,GO-20189028553,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,19,2018-08-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23098,3559,GO-20189031924,THEFT UNDER - BICYCLE,2018-09-25,2018,September,Tuesday,25,268,11,2018-09-25,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23099,3880,GO-20189038885,THEFT UNDER - BICYCLE,2018-11-19,2018,November,Monday,19,323,8,2018-11-19,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23100,4140,GO-20199011088,THEFT UNDER - BICYCLE,2019-04-08,2019,April,Monday,8,98,9,2019-04-08,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23101,5364,GO-20199030572,THEFT UNDER - BICYCLE,2019-09-13,2019,September,Friday,13,256,7,2019-09-18,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23102,5542,GO-20199034324,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,15,2019-10-18,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23103,5555,GO-20199034618,THEFT UNDER,2019-10-20,2019,October,Sunday,20,293,22,2019-10-21,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23104,5700,GO-20192225790,B&E,2019-11-18,2019,November,Monday,18,322,8,2019-11-18,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23105,5713,GO-20192227273,THEFT UNDER - BICYCLE,2019-11-09,2019,November,Saturday,9,313,11,2019-11-19,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23106,6129,GO-20209012358,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,2,2020-05-02,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23107,6167,GO-2020882758,B&E,2020-05-12,2020,May,Tuesday,12,133,0,2020-05-12,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23108,6168,GO-2020882758,B&E,2020-05-12,2020,May,Tuesday,12,133,0,2020-05-12,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23109,6501,GO-20209016534,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,10,2020-06-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23110,6502,GO-20209016534,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,10,2020-06-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23111,6519,GO-20201223545,B&E,2020-07-03,2020,July,Friday,3,185,2,2020-07-03,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23112,6616,GO-20201283590,B&E,2020-07-11,2020,July,Saturday,11,193,9,2020-07-11,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23113,6578,GO-20201278230,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,19,2020-07-10,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23114,16098,GO-20209027552,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,16,2020-10-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23115,7066,GO-20209021205,THEFT UNDER - BICYCLE,2020-08-24,2020,August,Monday,24,237,18,2020-08-24,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23116,22543,GO-20201620331,B&E,2020-08-28,2020,August,Friday,28,241,4,2020-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23117,18743,GO-20209020901,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,18,2020-08-21,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23118,2386,GO-20189016114,THEFT UNDER - BICYCLE,2018-05-24,2018,May,Thursday,24,144,17,2018-05-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23119,7313,GO-20209023955,THEFT UNDER - BICYCLE,2020-09-18,2020,September,Friday,18,262,18,2020-09-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23120,6617,GO-20201271970,B&E,2020-07-09,2020,July,Thursday,9,191,17,2020-07-09,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23121,6625,GO-20209017610,THEFT UNDER,2020-07-15,2020,July,Wednesday,15,197,5,2020-07-15,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23122,6901,GO-20201480798,THEFT UNDER - BICYCLE,2020-08-07,2020,August,Friday,7,220,0,2020-08-08,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23123,7046,GO-20201589419,B&E,2020-08-23,2020,August,Sunday,23,236,19,2020-08-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23124,7351,GO-20201821025,B&E,2020-09-24,2020,September,Thursday,24,268,18,2020-09-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23125,7635,GO-20209029577,THEFT UNDER,2020-11-12,2020,November,Thursday,12,317,17,2020-11-14,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23126,7750,GO-20141386364,B&E,2013-12-25,2013,December,Wednesday,25,359,0,2014-01-22,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23127,7751,GO-20141386364,B&E,2013-12-25,2013,December,Wednesday,25,359,0,2014-01-22,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23128,8163,GO-20142317719,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,16,2014-06-18,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23129,8579,GO-20142636595,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,3,2014-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23130,8580,GO-20142636595,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,3,2014-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23131,8581,GO-20142636595,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,3,2014-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23132,8582,GO-20142636595,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,3,2014-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23133,8734,GO-20149006292,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,21,2014-08-26,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23134,9030,GO-20149007471,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,4,2014-10-08,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23135,7118,GO-20209021687,THEFT UNDER,2020-08-29,2020,August,Saturday,29,242,10,2020-08-29,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23136,9094,GO-20143152593,THEFT UNDER,2014-10-22,2014,October,Wednesday,22,295,11,2014-10-22,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23137,9129,GO-20143197986,THEFT UNDER,2014-10-24,2014,October,Friday,24,297,16,2014-10-29,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23138,9150,GO-20143238206,B&E,2014-10-27,2014,October,Monday,27,300,9,2014-11-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23139,9151,GO-20143238206,B&E,2014-10-27,2014,October,Monday,27,300,9,2014-11-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23140,9152,GO-20143238206,B&E,2014-10-27,2014,October,Monday,27,300,9,2014-11-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23141,7415,GO-20201866394,THEFT UNDER - BICYCLE,2020-09-29,2020,September,Tuesday,29,273,20,2020-10-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23142,16112,GO-20209032083,THEFT UNDER,2020-11-14,2020,November,Saturday,14,319,14,2020-12-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23143,15579,GO-20162144725,B&E,2016-12-03,2016,December,Saturday,3,338,3,2016-12-03,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23144,22544,GO-20201620331,B&E,2020-08-28,2020,August,Friday,28,241,4,2020-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23145,18761,GO-20209024137,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,10,2020-09-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23146,9153,GO-20143238206,B&E,2014-10-27,2014,October,Monday,27,300,9,2014-11-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23147,9157,GO-20143072581,THEFT UNDER,2014-10-09,2014,October,Thursday,9,282,2,2014-10-09,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23148,9328,GO-2015452989,THEFT UNDER,2015-03-16,2015,March,Monday,16,75,16,2015-03-17,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23149,9346,GO-20159001501,THEFT UNDER,2015-03-23,2015,March,Monday,23,82,23,2015-03-24,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23150,9347,GO-20159001501,THEFT UNDER,2015-03-23,2015,March,Monday,23,82,23,2015-03-24,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23151,9353,GO-20159001539,THEFT UNDER,2015-03-24,2015,March,Tuesday,24,83,17,2015-03-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23152,9518,GO-20159002427,THEFT UNDER,2014-04-19,2014,April,Saturday,19,109,18,2015-05-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23153,9860,GO-20151055997,B&E,2015-06-18,2015,June,Thursday,18,169,21,2015-06-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23154,9861,GO-20151055997,B&E,2015-06-18,2015,June,Thursday,18,169,21,2015-06-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23155,10015,GO-20151198875,SUSPICIOUS INCIDENT,2015-07-15,2015,July,Wednesday,15,196,9,2015-07-15,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23156,10051,GO-20151217379,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,9,2015-07-17,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23157,10140,GO-20159005141,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,18,2015-07-30,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23158,10191,GO-20151331884,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,23,2015-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23159,10192,GO-20151331884,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,23,2015-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23160,10218,GO-20159005351,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,3,2015-08-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23161,10344,GO-20159006346,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,14,2015-08-24,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23162,2419,GO-20189016704,THEFT UNDER - BICYCLE,2018-05-28,2018,May,Monday,28,148,3,2018-05-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23163,7316,GO-20209023995,THEFT UNDER - BICYCLE,2020-08-12,2020,August,Wednesday,12,225,18,2020-09-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23164,10367,GO-20159006516,THEFT UNDER,2015-08-29,2015,August,Saturday,29,241,22,2015-08-30,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23165,10384,GO-20151532305,B&E,2015-09-05,2015,September,Saturday,5,248,0,2015-09-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23166,10393,GO-20151544188,B&E,2015-08-28,2015,August,Friday,28,240,0,2015-09-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23167,10401,GO-20151553820,B&E,2015-09-08,2015,September,Tuesday,8,251,22,2015-09-08,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23168,10489,GO-20159007357,THEFT UNDER,2015-09-15,2015,September,Tuesday,15,258,20,2015-09-18,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23169,10515,GO-20151630914,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,16,2015-09-21,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23170,10516,GO-20151630914,THEFT UNDER,2015-09-20,2015,September,Sunday,20,263,16,2015-09-21,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23171,10779,GO-20159009786,THEFT UNDER,2015-11-15,2015,November,Sunday,15,319,21,2015-11-16,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23172,11069,GO-20169002603,THEFT UNDER - BICYCLE,2016-03-21,2016,March,Monday,21,81,4,2016-03-21,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23173,11116,GO-2016594617,THEFT UNDER - BICYCLE,2016-04-07,2016,April,Thursday,7,98,23,2016-04-08,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23174,11520,GO-20161033439,THEFT UNDER,2016-06-13,2016,June,Monday,13,165,20,2016-06-14,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23175,17918,GO-20142115760,THEFT UNDER,2014-05-20,2014,May,Tuesday,20,140,8,2014-05-20,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23176,12324,GO-20169010339,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,21,2016-09-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23177,12325,GO-20169010339,THEFT UNDER,2016-09-12,2016,September,Monday,12,256,21,2016-09-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23178,12852,GO-20162155669,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,18,2016-12-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23179,12853,GO-20162155669,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,18,2016-12-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23180,14857,GO-20191309232,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,21,2019-07-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23181,14861,GO-20199023841,THEFT UNDER,2019-07-25,2019,July,Thursday,25,206,19,2019-07-26,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23182,14862,GO-20199024148,THEFT UNDER,2019-07-28,2019,July,Sunday,28,209,15,2019-07-28,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23183,14867,GO-20199029080,THEFT UNDER - BICYCLE,2019-08-25,2019,August,Sunday,25,237,11,2019-09-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23184,14883,GO-20201283590,B&E,2020-07-11,2020,July,Saturday,11,193,9,2020-07-11,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23185,14910,GO-20202333883,B&E,2020-12-11,2020,December,Friday,11,346,8,2020-12-11,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23186,15313,GO-20142033262,B&E,2014-05-07,2014,May,Wednesday,7,127,0,2014-05-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23187,15314,GO-20142033262,B&E,2014-05-07,2014,May,Wednesday,7,127,0,2014-05-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23188,15332,GO-20149004721,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,23,2014-07-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23189,15369,GO-20149007580,THEFT UNDER,2014-10-08,2014,October,Wednesday,8,281,19,2014-10-14,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23190,15371,GO-20143113375,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,20,2014-10-16,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23191,15389,GO-20159001363,THEFT UNDER,2015-03-15,2015,March,Sunday,15,74,11,2015-03-17,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23192,15390,GO-20159001363,THEFT UNDER,2015-03-15,2015,March,Sunday,15,74,11,2015-03-17,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23193,15394,GO-20159002115,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,15,2015-04-20,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23194,15404,GO-2015991636,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,20,2015-06-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23195,15405,GO-2015991636,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,20,2015-06-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23196,15406,GO-2015991636,THEFT UNDER,2015-06-10,2015,June,Wednesday,10,161,20,2015-06-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23197,15424,GO-20159004621,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,22,2015-07-16,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23198,15437,GO-20159005266,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,22,2015-08-03,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23199,15458,GO-20151637905,B&E,2015-09-21,2015,September,Monday,21,264,23,2015-09-22,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23200,15513,GO-20169006346,THEFT UNDER,2016-06-17,2016,June,Friday,17,169,18,2016-06-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23201,15622,GO-20179012827,THEFT UNDER - BICYCLE,2017-08-18,2017,August,Friday,18,230,23,2017-08-19,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23202,15628,GO-20173060708,THEFT OVER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,17,2017-11-24,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23203,15629,GO-20173060708,THEFT OVER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,17,2017-11-24,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23204,15630,GO-20179021835,THEFT UNDER - BICYCLE,2017-12-08,2017,December,Friday,8,342,15,2017-12-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23205,18237,GO-20189023161,THEFT UNDER - BICYCLE,2018-07-19,2018,July,Thursday,19,200,2,2018-07-20,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23206,25633,GO-20199018530,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,11,2019-06-13,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23207,18241,GO-20181588909,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,10,2018-08-28,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23208,18265,GO-2020664872,B&E,2020-04-04,2020,April,Saturday,4,95,21,2020-04-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23209,18269,GO-20209015833,THEFT UNDER,2020-06-16,2020,June,Tuesday,16,168,1,2020-06-21,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23210,18277,GO-20201455565,B&E,2020-07-17,2020,July,Friday,17,199,12,2020-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23211,18278,GO-20201455565,B&E,2020-07-17,2020,July,Friday,17,199,12,2020-08-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23212,18302,GO-20201754354,B&E,2020-09-16,2020,September,Wednesday,16,260,6,2020-09-16,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23213,18303,GO-20201754354,B&E,2020-09-16,2020,September,Wednesday,16,260,6,2020-09-16,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23214,18306,GO-20209027120,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,17,2020-10-20,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23215,18367,GO-20142849159,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,21,2014-09-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23216,18368,GO-20142849159,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,21,2014-09-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23217,18382,GO-20143294293,PROPERTY - LOST,2014-10-10,2014,October,Friday,10,283,16,2014-11-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23218,18388,GO-20159001447,THEFT UNDER,2015-03-19,2015,March,Thursday,19,78,15,2015-03-21,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23219,18418,GO-20151049635,THEFT UNDER,2015-06-21,2015,June,Sunday,21,172,22,2015-06-22,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23220,18424,GO-20159004314,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,14,2015-07-08,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23221,18435,GO-20151295198,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,0,2015-07-29,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23222,18438,GO-20159005242,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,13,2015-08-01,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23223,18451,GO-20151500084,THEFT UNDER,2015-08-26,2015,August,Wednesday,26,238,20,2015-08-31,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23224,18455,GO-20159006797,THEFT UNDER,2015-09-05,2015,September,Saturday,5,248,23,2015-09-06,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23225,18457,GO-20151545566,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,20,2015-09-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23226,18458,GO-20151545566,THEFT UNDER,2015-09-02,2015,September,Wednesday,2,245,20,2015-09-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23227,18481,GO-2016704416,THEFT UNDER - BICYCLE,2016-04-25,2016,April,Monday,25,116,0,2016-04-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23228,21381,GO-20161057423,B&E,2016-06-17,2016,June,Friday,17,169,15,2016-06-18,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23229,11166,GO-20169003643,THEFT UNDER - BICYCLE,2016-04-20,2016,April,Wednesday,20,111,11,2016-04-20,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23230,6817,GO-20201422645,THEFT UNDER - BICYCLE,2020-07-29,2020,July,Wednesday,29,211,23,2020-07-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23231,7728,GO-20141272882,THEFT UNDER,2013-07-01,2013,July,Monday,1,182,0,2014-01-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23232,8197,GO-20142343535,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,15,2014-06-22,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23233,8198,GO-20142343535,THEFT UNDER,2014-06-17,2014,June,Tuesday,17,168,15,2014-06-22,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23234,8287,GO-20142404392,THEFT UNDER,2014-06-30,2014,June,Monday,30,181,20,2014-07-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23235,6579,GO-20201278230,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,19,2020-07-10,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23236,9598,GO-20159002819,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,9,2015-05-17,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23237,9599,GO-20159002819,THEFT UNDER,2015-05-10,2015,May,Sunday,10,130,9,2015-05-17,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23238,9566,GO-2015785016,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,8,2015-05-11,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23239,9950,GO-20159004224,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,1,2015-07-06,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23240,2599,GO-20189019056,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,10,2018-06-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23241,6911,GO-20201466434,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,12,2020-08-06,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23242,9951,GO-20159004224,THEFT UNDER,2015-07-04,2015,July,Saturday,4,185,1,2015-07-06,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23243,12843,GO-20162055532,THEFT UNDER - BICYCLE,2016-11-12,2016,November,Saturday,12,317,12,2016-11-19,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23244,2832,GO-20189022256,THEFT UNDER,2018-07-09,2018,July,Monday,9,190,8,2018-07-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23245,6942,GO-20201488704,THEFT UNDER - BICYCLE,2020-08-09,2020,August,Sunday,9,222,8,2020-08-09,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23246,10841,GO-20152097889,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,16,2015-12-07,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23247,12844,GO-20162055532,THEFT UNDER - BICYCLE,2016-11-12,2016,November,Saturday,12,317,12,2016-11-19,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23248,2846,GO-20189022438,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,17,2018-07-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23249,7368,GO-20209024681,THEFT UNDER - BICYCLE,2020-09-20,2020,September,Sunday,20,264,12,2020-09-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23250,18770,GO-20209027161,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,9,2020-10-21,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23251,22546,GO-20209021903,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,18,2020-08-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23252,18711,GO-20209017672,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,8,2020-07-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23253,6953,GO-20209020148,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,21,2020-08-14,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23254,7088,GO-20209021446,THEFT UNDER - BICYCLE,2020-08-26,2020,August,Wednesday,26,239,10,2020-08-26,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23255,7126,GO-20209021779,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,1,2020-08-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23256,7127,GO-20209021779,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,1,2020-08-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23257,7169,GO-20209022233,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,19,2020-09-03,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23258,7331,GO-2020178832,THEFT OVER - BICYCLE,2020-09-18,2020,September,Friday,18,262,19,2020-09-23,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23259,7501,GO-20209026846,THEFT UNDER,2020-10-15,2020,October,Thursday,15,289,9,2020-10-18,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23260,7895,GO-20142039523,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,12,2014-05-08,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23261,8090,GO-20142271411,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,21,2014-06-11,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23262,9505,GO-20159002377,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,12,2015-05-01,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23263,9986,GO-20159004424,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,8,2015-07-11,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23264,9987,GO-20159004424,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,8,2015-07-11,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23265,10252,GO-20159005700,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,13,2015-08-15,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23266,10253,GO-20159005700,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,13,2015-08-15,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23267,10341,GO-20159006329,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,19,2015-08-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23268,10448,GO-20159007050,THEFT UNDER,2015-09-11,2015,September,Friday,11,254,8,2015-09-11,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23269,10671,GO-20159008866,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,12,2015-10-22,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23270,11175,GO-20151457912,PROPERTY - FOUND,2015-08-24,2015,August,Monday,24,236,17,2015-08-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23271,11393,GO-20169005030,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,11,2016-05-27,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23272,11563,GO-20161051440,B&E,2016-06-15,2016,June,Wednesday,15,167,8,2016-06-16,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23273,11662,GO-20169006514,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,1,2016-06-29,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23274,12002,GO-20169008246,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,1,2016-08-05,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23275,12322,GO-20169010307,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,9,2016-09-12,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23276,12350,GO-20161639807,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,21,2016-09-15,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23277,13027,GO-20209011351,THEFT UNDER,2020-04-17,2020,April,Friday,17,108,0,2020-04-17,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23278,13062,GO-20209016566,THEFT UNDER - BICYCLE,2020-06-29,2020,June,Monday,29,181,18,2020-06-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23279,13063,GO-20209016598,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,19,2020-07-01,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23280,14199,GO-20179015860,THEFT UNDER - BICYCLE,2017-09-26,2017,September,Tuesday,26,269,15,2017-09-26,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23281,14239,GO-20189016858,THEFT UNDER - BICYCLE,2018-05-29,2018,May,Tuesday,29,149,16,2018-05-30,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23282,15971,GO-20151463198,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,14,2015-08-25,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23283,16019,GO-20169004585,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,9,2016-05-16,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23284,16099,GO-20209027790,THEFT UNDER,2020-10-26,2020,October,Monday,26,300,11,2020-10-26,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23285,19012,GO-20169007874,THEFT FROM MOTOR VEHICLE UNDER,2016-07-28,2016,July,Thursday,28,210,1,2016-07-28,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23286,19136,GO-201876438,B&E,2018-01-13,2018,January,Saturday,13,13,4,2018-01-13,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23287,19299,GO-20199031785,THEFT UNDER - BICYCLE,2019-09-26,2019,September,Thursday,26,269,8,2019-09-27,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23288,19372,GO-2020988702,THEFT UNDER - BICYCLE,2020-05-23,2020,May,Saturday,23,144,19,2020-05-29,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23289,19375,GO-20201027478,B&E,2020-06-03,2020,June,Wednesday,3,155,10,2020-06-04,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23290,19618,GO-20142141129,THEFT FROM MOTOR VEHICLE UNDER,2014-05-23,2014,May,Friday,23,143,22,2014-05-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23291,19649,GO-20149006328,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,19,2014-08-26,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23292,19707,GO-20151409535,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,16,2015-08-16,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23293,19764,GO-2016841740,THEFT OVER - BICYCLE,2016-05-15,2016,May,Sunday,15,136,13,2016-05-16,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23294,22163,GO-20161147780,THEFT OF MOTOR VEHICLE,2016-06-30,2016,June,Thursday,30,182,19,2016-07-01,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23295,22232,GO-20171203259,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,0,2017-07-05,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23296,22239,GO-20179010891,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,8,2017-07-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23297,22254,GO-20171628932,B&E W'INTENT,2017-08-31,2017,August,Thursday,31,243,20,2017-09-08,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23298,22258,GO-20171655317,THEFT UNDER - BICYCLE,2017-09-12,2017,September,Tuesday,12,255,9,2017-09-12,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23299,22266,GO-20179018775,THEFT UNDER - BICYCLE,2017-11-02,2017,November,Thursday,2,306,9,2017-11-02,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23300,22323,GO-20189027674,THEFT UNDER - BICYCLE,2018-08-23,2018,August,Thursday,23,235,16,2018-08-23,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23301,22327,GO-20181655322,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,4,2018-09-07,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23302,22328,GO-20181655322,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,4,2018-09-07,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23303,22333,GO-20189030515,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,21,2018-09-15,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23304,22430,GO-20199038033,THEFT UNDER - BICYCLE,2019-11-18,2019,November,Monday,18,322,22,2019-11-19,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23305,22495,GO-20201241652,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,16,2020-07-05,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23306,22514,GO-20201404584,B&E,2020-07-26,2020,July,Sunday,26,208,0,2020-07-28,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23307,22540,GO-20201592324,THEFT OVER - BICYCLE,2020-08-24,2020,August,Monday,24,237,3,2020-08-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23308,22541,GO-20201592324,THEFT OVER - BICYCLE,2020-08-24,2020,August,Monday,24,237,3,2020-08-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23309,22567,GO-20209024131,THEFT UNDER - BICYCLE,2020-09-22,2020,September,Tuesday,22,266,8,2020-09-22,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23310,22826,GO-20142140082,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,1,2014-05-24,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23311,22877,GO-20149007399,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,16,2014-10-04,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23312,25391,GO-20161615608,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,0,2016-09-15,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23313,25392,GO-20161615608,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,0,2016-09-15,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23314,25475,GO-20179012897,THEFT UNDER - BICYCLE,2017-08-19,2017,August,Saturday,19,231,9,2017-08-21,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23315,25525,GO-20189009406,THEFT UNDER - BICYCLE,2018-03-22,2018,March,Thursday,22,81,12,2018-03-25,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23316,25554,GO-20189020548,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,18,2018-06-28,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23317,25632,GO-20199017538,THEFT UNDER - BICYCLE,2019-06-04,2019,June,Tuesday,4,155,10,2019-06-05,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23318,25657,GO-20199025547,THEFT UNDER - BICYCLE,2019-08-08,2019,August,Thursday,8,220,8,2019-08-09,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23319,25711,GO-2020960593,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,2,2020-05-25,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23320,25712,GO-2020960593,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,2,2020-05-25,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23321,25785,GO-20209025201,THEFT UNDER - BICYCLE,2020-09-27,2020,September,Sunday,27,271,23,2020-10-02,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)}",Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -23322,6,GO-20162196370,B&E,2016-12-10,2016,December,Saturday,10,345,23,2016-12-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23323,9,GO-20169014581,THEFT UNDER - BICYCLE,2016-12-10,2016,December,Saturday,10,345,20,2016-12-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23324,10,GO-20169014581,THEFT UNDER - BICYCLE,2016-12-10,2016,December,Saturday,10,345,20,2016-12-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23325,180,GO-2017555793,B&E,2017-03-19,2017,March,Sunday,19,78,14,2017-03-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23326,181,GO-2017555793,B&E,2017-03-19,2017,March,Sunday,19,78,14,2017-03-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23327,314,GO-2017770172,B&E W'INTENT,2017-04-28,2017,April,Friday,28,118,20,2017-05-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23328,315,GO-2017770172,B&E W'INTENT,2017-04-28,2017,April,Friday,28,118,20,2017-05-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23329,556,GO-20179007663,THEFT UNDER - BICYCLE,2017-06-07,2017,June,Wednesday,7,158,11,2017-06-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23330,854,GO-20171247410,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,21,2017-07-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23331,875,GO-20171290427,THEFT UNDER - BICYCLE,2017-07-18,2017,July,Tuesday,18,199,2,2017-07-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23332,915,GO-20179010562,THEFT UNDER - BICYCLE,2017-04-14,2017,April,Friday,14,104,0,2017-07-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23333,916,GO-20179010562,THEFT UNDER - BICYCLE,2017-04-14,2017,April,Friday,14,104,0,2017-07-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23334,960,GO-20179010905,THEFT FROM MOTOR VEHICLE UNDER,2017-07-23,2017,July,Sunday,23,204,23,2017-07-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23335,1134,GO-20179012267,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,17,2017-08-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23336,1174,GO-20179012700,THEFT UNDER - BICYCLE,2017-08-17,2017,August,Thursday,17,229,13,2017-08-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23337,1482,GO-20179015366,THEFT UNDER - BICYCLE,2017-09-19,2017,September,Tuesday,19,262,23,2017-09-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23338,1760,GO-20179018418,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,12,2017-10-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23339,1811,GO-20172021742,B&E,2017-11-07,2017,November,Tuesday,7,311,9,2017-11-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23340,1870,GO-20179020359,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,1,2017-11-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23341,1871,GO-20179020359,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,1,2017-11-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23342,2021,GO-2018258177,B&E W'INTENT,2017-12-17,2017,December,Sunday,17,351,12,2018-02-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23343,2036,GO-20189004723,THEFT UNDER - BICYCLE,2018-02-15,2018,February,Thursday,15,46,4,2018-02-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23344,2119,GO-20189010019,THEFT UNDER - BICYCLE,2018-03-30,2018,March,Friday,30,89,12,2018-03-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23345,2268,GO-20189014099,THEFT UNDER - BICYCLE,2018-05-06,2018,May,Sunday,6,126,14,2018-05-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23346,2379,GO-20189015928,THEFT UNDER - BICYCLE,2018-04-12,2018,April,Thursday,12,102,11,2018-05-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23347,11470,GO-20169005474,THEFT UNDER - BICYCLE,2016-05-27,2016,May,Friday,27,148,0,2016-06-08,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23348,11963,GO-20169007991,THEFT UNDER,2016-06-11,2016,June,Saturday,11,163,22,2016-07-31,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23349,12656,GO-20161874641,THEFT OVER - BICYCLE,2016-10-17,2016,October,Monday,17,291,7,2016-10-21,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23350,12657,GO-20161874641,THEFT OVER - BICYCLE,2016-10-17,2016,October,Monday,17,291,7,2016-10-21,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23351,12658,GO-20161874641,THEFT OVER - BICYCLE,2016-10-17,2016,October,Monday,17,291,7,2016-10-21,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23352,13502,GO-20199019517,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,19,2019-06-21,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23353,14872,GO-20199036303,THEFT UNDER - BICYCLE,2019-10-03,2019,October,Thursday,3,276,15,2019-11-03,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23354,15341,GO-20142599921,THEFT OVER,2014-07-30,2014,July,Wednesday,30,211,0,2014-07-30,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23355,15558,GO-20161711626,THEFT OVER - BICYCLE,2016-08-01,2016,August,Monday,1,214,0,2016-09-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23356,15559,GO-20161711626,THEFT OVER - BICYCLE,2016-08-01,2016,August,Monday,1,214,0,2016-09-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23357,15575,GO-20162005138,THEFT OF EBIKE UNDER $5000,2016-11-10,2016,November,Thursday,10,315,8,2016-11-11,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23358,15922,GO-20143440547,PROPERTY - FOUND,2014-12-06,2014,December,Saturday,6,340,23,2014-12-07,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23359,16097,GO-20209027514,THEFT UNDER,2020-10-24,2020,October,Saturday,24,298,10,2020-10-24,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23360,13513,GO-20199025034,THEFT UNDER - BICYCLE,2019-08-05,2019,August,Monday,5,217,3,2019-08-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23361,18180,GO-20169014597,THEFT UNDER - BICYCLE,2016-12-06,2016,December,Tuesday,6,341,8,2016-12-13,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23362,2947,GO-20181331605,THEFT OVER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,21,2018-07-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23363,7373,GO-20201848964,B&E,2020-09-28,2020,September,Monday,28,272,20,2020-09-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23364,13516,GO-20191620204,THEFT UNDER - BICYCLE,2019-08-03,2019,August,Saturday,3,215,4,2019-08-25,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23365,13585,GO-20209023773,THEFT UNDER,2020-09-16,2020,September,Wednesday,16,260,17,2020-09-18,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23366,14659,GO-20171109783,THEFT UNDER - BICYCLE,2017-06-16,2017,June,Friday,16,167,15,2017-06-21,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23367,14663,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,1,2017-06-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23368,14664,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,1,2017-06-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23369,14674,GO-20179010938,THEFT UNDER - BICYCLE,2017-07-21,2017,July,Friday,21,202,19,2017-07-24,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23370,14837,GO-20189026725,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,7,2018-08-16,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23371,14922,GO-20149004246,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,16,2014-06-20,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23372,14969,GO-20151328649,THEFT UNDER,2015-07-28,2015,July,Tuesday,28,209,12,2015-08-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23373,15012,GO-20169007862,THEFT UNDER - BICYCLE,2016-07-26,2016,July,Tuesday,26,208,14,2016-07-27,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23374,15027,GO-20169010116,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,13,2016-09-07,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23375,15043,GO-20179004977,THEFT UNDER,2017-04-16,2017,April,Sunday,16,106,3,2017-04-20,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23376,16801,GO-20199039000,THEFT UNDER - BICYCLE,2019-11-23,2019,November,Saturday,23,327,11,2019-11-27,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23377,16802,GO-20192316774,PROPERTY - FOUND,2019-12-01,2019,December,Sunday,1,335,9,2019-12-01,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23378,16842,GO-20201604449,THEFT UNDER - BICYCLE,2020-08-25,2020,August,Tuesday,25,238,0,2020-08-26,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23379,17730,GO-20179015026,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,12,2017-09-18,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23380,17731,GO-20179015026,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,12,2017-09-18,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23381,17732,GO-20179015026,THEFT UNDER - BICYCLE,2017-08-24,2017,August,Thursday,24,236,12,2017-09-18,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23382,17953,GO-20143385031,THEFT UNDER,2014-11-24,2014,November,Monday,24,328,14,2014-11-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23383,17978,GO-20159004425,THEFT UNDER,2014-11-01,2014,November,Saturday,1,305,11,2015-07-11,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23384,18018,GO-2016640801,THEFT UNDER - BICYCLE,2016-04-01,2016,April,Friday,1,92,0,2016-04-15,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23385,18042,GO-20169008548,THEFT UNDER - BICYCLE,2016-08-10,2016,August,Wednesday,10,223,8,2016-08-10,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23386,18055,GO-20169011498,THEFT UNDER - BICYCLE,2016-10-01,2016,October,Saturday,1,275,3,2016-10-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23387,18074,GO-20179008070,THEFT UNDER - BICYCLE,2017-06-11,2017,June,Sunday,11,162,23,2017-06-14,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23388,20070,GO-20199030007,THEFT UNDER - BICYCLE,2019-09-13,2019,September,Friday,13,256,12,2019-09-14,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23389,20077,GO-20199034056,THEFT UNDER - BICYCLE,2019-10-15,2019,October,Tuesday,15,288,23,2019-10-16,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23390,20111,GO-20209019394,THEFT UNDER - BICYCLE,2020-08-05,2020,August,Wednesday,5,218,7,2020-08-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23391,20126,GO-20209024641,THEFT UNDER - BICYCLE,2020-09-03,2020,September,Thursday,3,247,16,2020-09-27,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23392,21171,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,1,2017-06-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23393,21172,GO-20179009094,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,1,2017-06-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23394,21196,GO-20179012014,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,20,2017-08-09,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23395,21309,GO-20189021696,THEFT UNDER - BICYCLE,2018-07-08,2018,July,Sunday,8,189,10,2018-07-09,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23396,22045,GO-20149008620,THEFT UNDER,2014-12-07,2014,December,Sunday,7,341,22,2014-12-08,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23397,22057,GO-2015777998,B&E,2015-05-10,2015,May,Sunday,10,130,1,2015-05-10,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23398,22111,GO-20161115967,THEFT OVER,2016-06-01,2016,June,Wednesday,1,153,0,2016-06-26,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23399,22147,GO-20179005652,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,7,2017-05-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23400,22148,GO-20179005652,THEFT UNDER - BICYCLE,2017-05-03,2017,May,Wednesday,3,123,7,2017-05-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23401,23302,GO-20199028652,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,19,2019-09-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23402,23305,GO-20199030434,THEFT UNDER - BICYCLE,2019-09-17,2019,September,Tuesday,17,260,7,2019-09-17,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23403,23311,GO-20192375874,THEFT UNDER - BICYCLE,2019-10-08,2019,October,Tuesday,8,281,0,2019-12-09,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23404,24206,GO-20179011958,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,20,2017-08-08,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23405,24283,GO-20189008068,THEFT UNDER - BICYCLE,2018-03-10,2018,March,Saturday,10,69,20,2018-03-15,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23406,24346,GO-20189024200,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,1,2018-07-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23407,24458,GO-20151007116,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,14,2015-06-15,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23408,24501,GO-20159011157,THEFT UNDER,2015-12-19,2015,December,Saturday,19,353,17,2015-12-20,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23409,24513,GO-2016658566,THEFT UNDER - BICYCLE,2016-02-28,2016,February,Sunday,28,59,12,2016-04-18,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23410,24524,GO-20169005435,THEFT UNDER - BICYCLE,2016-06-07,2016,June,Tuesday,7,159,13,2016-06-07,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23411,24555,GO-20169013645,THEFT UNDER - BICYCLE,2016-10-24,2016,October,Monday,24,298,9,2016-11-20,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23412,24581,GO-20179009499,THEFT UNDER - BICYCLE,2016-12-06,2016,December,Tuesday,6,341,8,2017-07-06,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23413,2291,GO-2018838125,B&E,2018-05-09,2018,May,Wednesday,9,129,13,2018-05-09,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23414,256,GO-20179005050,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,11,2017-04-21,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23415,257,GO-20179005054,THEFT UNDER,2017-04-21,2017,April,Friday,21,111,11,2017-04-21,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23416,630,GO-20171060827,THEFT OF EBIKE UNDER $5000,2017-06-13,2017,June,Tuesday,13,164,18,2017-06-14,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23417,896,GO-20179010429,THEFT UNDER,2017-07-15,2017,July,Saturday,15,196,16,2017-07-17,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23418,897,GO-20179010429,THEFT UNDER,2017-07-15,2017,July,Saturday,15,196,16,2017-07-17,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23419,1045,GO-20171398969,THEFT UNDER - BICYCLE,2017-08-03,2017,August,Thursday,3,215,10,2017-08-03,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23420,1106,GO-20179012119,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,10,2017-08-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23421,2081,GO-20189008366,THEFT UNDER,2018-03-16,2018,March,Friday,16,75,0,2018-03-18,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23422,2809,GO-20189021970,THEFT UNDER,2018-07-05,2018,July,Thursday,5,186,8,2018-07-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23423,2928,GO-20181346912,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,11,2018-07-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23424,3020,GO-20189024454,THEFT UNDER - BICYCLE,2018-07-29,2018,July,Sunday,29,210,14,2018-07-29,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23425,3143,GO-20189025793,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,23,2018-08-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23426,3216,GO-20189026554,THEFT UNDER - BICYCLE,2018-08-11,2018,August,Saturday,11,223,21,2018-08-15,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23427,3312,GO-20189027820,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,18,2018-08-24,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23428,3326,GO-20189028041,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,12,2018-08-26,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23429,3388,GO-20189029019,THEFT UNDER,2018-08-25,2018,August,Saturday,25,237,11,2018-09-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23430,4496,GO-20191106615,B&E W'INTENT,2019-06-08,2019,June,Saturday,8,159,18,2019-06-15,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23431,4497,GO-20191106615,B&E W'INTENT,2019-06-08,2019,June,Saturday,8,159,18,2019-06-15,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23432,4591,GO-20199019907,THEFT UNDER - BICYCLE,2019-06-19,2019,June,Wednesday,19,170,19,2019-06-24,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23433,4602,GO-20199020056,THEFT UNDER - BICYCLE,2019-06-23,2019,June,Sunday,23,174,13,2019-06-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23434,4763,GO-20199022075,THEFT UNDER - BICYCLE,2019-06-09,2019,June,Sunday,9,160,18,2019-07-13,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23435,4768,GO-20191320205,THEFT UNDER - BICYCLE,2019-07-13,2019,July,Saturday,13,194,13,2019-07-14,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23436,4869,GO-20191397081,THEFT UNDER - BICYCLE,2019-07-25,2019,July,Thursday,25,206,7,2019-07-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23437,7565,GO-20209027958,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,12,2020-10-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23438,5368,GO-20199030702,THEFT UNDER - BICYCLE,2019-09-17,2019,September,Tuesday,17,260,18,2019-09-19,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23439,5953,GO-20209008499,THEFT UNDER,2020-03-06,2020,March,Friday,6,66,15,2020-03-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23440,5956,GO-2020497965,B&E,2020-03-06,2020,March,Friday,6,66,11,2020-03-09,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23441,6005,GO-20209010179,THEFT UNDER - BICYCLE,2020-03-26,2020,March,Thursday,26,86,8,2020-03-29,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23442,6355,GO-20209015108,THEFT FROM MOTOR VEHICLE UNDER,2020-06-06,2020,June,Saturday,6,158,23,2020-06-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23443,6419,GO-20201120354,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,23,2020-06-18,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23444,6524,GO-20209016757,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,0,2020-07-03,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23445,6575,GO-20201278611,B&E,2020-07-07,2020,July,Tuesday,7,189,3,2020-07-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -23446,18785,GO-20209030424,THEFT UNDER,2020-11-23,2020,November,Monday,23,328,16,2020-11-24,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23447,22548,GO-20201651701,THEFT OF EBIKE UNDER $5000,2020-09-01,2020,September,Tuesday,1,245,22,2020-09-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23448,18723,GO-20209019000,THEFT UNDER - BICYCLE,2020-07-31,2020,July,Friday,31,213,7,2020-07-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23449,7374,GO-20201848964,B&E,2020-09-28,2020,September,Monday,28,272,20,2020-09-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23450,7393,GO-20209025058,THEFT UNDER - BICYCLE,2020-09-25,2020,September,Friday,25,269,19,2020-10-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23451,7407,GO-20201863396,THEFT UNDER - BICYCLE,2020-09-21,2020,September,Monday,21,265,18,2020-09-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23452,7421,GO-20201898889,PROPERTY - FOUND,2020-10-06,2020,October,Tuesday,6,280,15,2020-10-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23453,7540,GO-20209027558,THEFT UNDER,2020-10-22,2020,October,Thursday,22,296,16,2020-10-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23454,7648,GO-20209030187,THEFT UNDER,2020-11-16,2020,November,Monday,16,321,11,2020-11-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23455,7653,GO-20202213058,THEFT OF EBIKE UNDER $5000,2020-11-19,2020,November,Thursday,19,324,21,2020-11-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23456,7655,GO-20202213058,THEFT OF EBIKE UNDER $5000,2020-11-19,2020,November,Thursday,19,324,21,2020-11-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23457,7693,GO-20209031411,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,14,2020-12-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23458,18242,GO-20189031298,THEFT UNDER,2018-09-20,2018,September,Thursday,20,263,13,2018-09-20,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23459,18247,GO-20199009516,THEFT UNDER - BICYCLE,2019-03-22,2019,March,Friday,22,81,17,2019-03-25,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23460,18786,GO-20209030424,THEFT UNDER,2020-11-23,2020,November,Monday,23,328,16,2020-11-24,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23461,18248,GO-20199009516,THEFT UNDER - BICYCLE,2019-03-22,2019,March,Friday,22,81,17,2019-03-25,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23462,3075,GO-20181433466,ROBBERY WITH WEAPON,2018-08-05,2018,August,Sunday,5,217,2,2018-08-05,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23463,18787,GO-20202244241,THEFT OF EBIKE UNDER $5000,2020-11-22,2020,November,Sunday,22,327,17,2020-11-27,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23464,22559,GO-20201748714,B&E,2020-09-15,2020,September,Tuesday,15,259,12,2020-09-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23465,7710,GO-20202395143,THEFT OF EBIKE UNDER $5000,2020-12-05,2020,December,Saturday,5,340,13,2020-12-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23466,18727,GO-20209019597,THEFT UNDER - BICYCLE,2020-08-03,2020,August,Monday,3,216,2,2020-08-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23467,3374,GO-20189028724,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,22,2018-08-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23468,7782,GO-20141731597,THEFT UNDER,2014-03-10,2014,March,Monday,10,69,21,2014-03-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23469,18740,GO-20201572188,B&E W'INTENT,2020-08-18,2020,August,Tuesday,18,231,16,2020-08-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23470,22570,GO-20201848964,B&E,2020-09-28,2020,September,Monday,28,272,20,2020-09-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23471,3375,GO-20189028724,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,22,2018-08-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23472,18831,GO-20142097821,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,12,2014-05-17,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23473,18266,GO-2020727981,THEFT UNDER - BICYCLE,2020-04-03,2020,April,Friday,3,94,9,2020-04-15,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23474,7865,GO-20141955292,THEFT UNDER,2013-12-25,2013,December,Wednesday,25,359,12,2014-04-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23475,18751,GO-20209021776,THEFT UNDER - BICYCLE,2020-08-27,2020,August,Thursday,27,240,16,2020-08-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23476,22602,GO-20209032070,THEFT UNDER,2020-12-01,2020,December,Tuesday,1,336,0,2020-12-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23477,3468,GO-20189030429,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,7,2018-09-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23478,3594,GO-20189032625,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,20,2018-10-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23479,3642,GO-20189033293,THEFT UNDER - BICYCLE,2018-09-30,2018,September,Sunday,30,273,15,2018-10-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23480,3798,GO-20181990701,THEFT OF EBIKE UNDER $5000,2018-10-27,2018,October,Saturday,27,300,13,2018-10-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23481,3830,GO-20189037485,THEFT UNDER - BICYCLE,2018-11-08,2018,November,Thursday,8,312,21,2018-11-09,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23482,3892,GO-20189039517,THEFT UNDER - BICYCLE,2018-11-18,2018,November,Sunday,18,322,11,2018-11-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23483,3984,GO-20199000628,THEFT UNDER - BICYCLE,2019-01-06,2019,January,Sunday,6,6,12,2019-01-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23484,4028,GO-20199003938,THEFT UNDER - BICYCLE,2019-01-27,2019,January,Sunday,27,27,19,2019-01-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23485,4296,GO-2019904779,B&E,2019-05-05,2019,May,Sunday,5,125,16,2019-05-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23486,4416,GO-20199017531,THEFT UNDER - BICYCLE,2019-06-05,2019,June,Wednesday,5,156,1,2019-06-05,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23487,4423,GO-20199017761,THEFT UNDER - BICYCLE,2019-06-07,2019,June,Friday,7,158,15,2019-06-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23488,4424,GO-20199017761,THEFT UNDER - BICYCLE,2019-06-07,2019,June,Friday,7,158,15,2019-06-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23489,4610,GO-20199020190,THEFT UNDER,2019-06-15,2019,June,Saturday,15,166,5,2019-06-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23490,4627,GO-20199020304,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,1,2019-06-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23491,4628,GO-20199020304,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,1,2019-06-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23492,4651,GO-20199020690,THEFT UNDER - BICYCLE,2019-06-28,2019,June,Friday,28,179,17,2019-07-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23493,4661,GO-20199020850,THEFT UNDER - BICYCLE,2019-06-26,2019,June,Wednesday,26,177,19,2019-07-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23494,4796,GO-20199022799,THEFT UNDER - BICYCLE,2019-07-18,2019,July,Thursday,18,199,4,2019-07-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23495,4865,GO-20199023578,THEFT UNDER - BICYCLE,2019-07-23,2019,July,Tuesday,23,204,13,2019-07-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23496,22829,GO-20142138810,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,16,2014-05-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23497,18420,GO-20151071822,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,20,2015-06-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23498,18757,GO-20201691491,THEFT UNDER - BICYCLE,2020-09-07,2020,September,Monday,7,251,12,2020-09-09,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23499,18898,GO-20159003554,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,18,2015-06-12,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23500,7874,GO-20141990152,B&E,2014-04-30,2014,April,Wednesday,30,120,3,2014-04-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23501,4868,GO-20191389818,B&E,2019-07-13,2019,July,Saturday,13,194,7,2019-07-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23502,4880,GO-20199023710,THEFT UNDER,2019-07-21,2019,July,Sunday,21,202,17,2019-07-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23503,4950,GO-20199024640,THEFT UNDER - BICYCLE,2019-07-01,2019,July,Monday,1,182,14,2019-08-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23504,5071,GO-20199026248,THEFT UNDER - BICYCLE,2019-08-13,2019,August,Tuesday,13,225,23,2019-08-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23505,5083,GO-20199026371,THEFT UNDER,2019-08-15,2019,August,Thursday,15,227,8,2019-08-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23506,5205,GO-20199028413,THEFT UNDER - BICYCLE,2019-08-30,2019,August,Friday,30,242,22,2019-09-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23507,5354,GO-20191789595,B&E W'INTENT,2019-09-17,2019,September,Tuesday,17,260,5,2019-09-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23508,5360,GO-20191794467,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,0,2019-09-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23509,5361,GO-20191794467,THEFT UNDER - BICYCLE,2019-07-15,2019,July,Monday,15,196,0,2019-09-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23510,5375,GO-20199031027,THEFT UNDER - BICYCLE,2019-09-21,2019,September,Saturday,21,264,16,2019-09-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23511,5448,GO-20199032200,THEFT UNDER - BICYCLE,2019-10-01,2019,October,Tuesday,1,274,12,2019-10-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23512,5450,GO-20199032225,THEFT UNDER - BICYCLE,2019-09-24,2019,September,Tuesday,24,267,18,2019-10-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23513,5603,GO-20199035525,THEFT FROM MOTOR VEHICLE UNDER,2019-10-26,2019,October,Saturday,26,299,14,2019-10-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23514,5624,GO-20199035808,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,18,2019-10-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23515,5627,GO-20199035808,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,18,2019-10-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23516,5684,GO-20192191692,B&E,2019-10-11,2019,October,Friday,11,284,12,2019-11-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23517,5689,GO-20199037461,THEFT UNDER - BICYCLE,2019-11-13,2019,November,Wednesday,13,317,19,2019-11-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23518,5711,GO-20192222943,B&E,2019-11-17,2019,November,Sunday,17,321,6,2019-11-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23519,5745,GO-20199039769,THEFT UNDER - BICYCLE,2019-12-02,2019,December,Monday,2,336,13,2019-12-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23520,5997,GO-2020595356,THEFT UNDER - BICYCLE,2020-03-22,2020,March,Sunday,22,82,12,2020-03-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23521,6028,GO-20209010562,THEFT UNDER - BICYCLE,2020-04-05,2020,April,Sunday,5,96,17,2020-04-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23522,6029,GO-20209010573,THEFT UNDER - BICYCLE,2020-04-02,2020,April,Thursday,2,93,9,2020-04-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23523,6085,GO-20209011580,THEFT UNDER,2020-04-13,2020,April,Monday,13,104,13,2020-04-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23524,6114,GO-20209012072,THEFT UNDER - BICYCLE,2020-04-25,2020,April,Saturday,25,116,1,2020-04-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23525,6126,GO-2020819178,B&E,2020-04-30,2020,April,Thursday,30,121,21,2020-05-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23526,6163,GO-20209012896,THEFT UNDER - BICYCLE,2020-05-08,2020,May,Friday,8,129,6,2020-05-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23527,6170,GO-2020873463,B&E,2020-04-09,2020,April,Thursday,9,100,0,2020-05-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23528,6207,GO-20209013441,THEFT UNDER - BICYCLE,2020-05-08,2020,May,Friday,8,129,6,2020-05-19,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23529,6216,GO-20209013608,THEFT UNDER - BICYCLE,2020-05-18,2020,May,Monday,18,139,7,2020-05-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23530,6219,GO-20209013642,THEFT UNDER,2020-05-20,2020,May,Wednesday,20,141,17,2020-05-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23531,6238,GO-20209013835,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,20,2020-05-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23532,6245,GO-20209013875,INVALID GO - RMS ONLY,2020-05-24,2020,May,Sunday,24,145,19,2020-05-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23533,6268,GO-2020989156,B&E,2020-04-13,2020,April,Monday,13,104,4,2020-05-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23534,6274,GO-20209014286,THEFT UNDER - BICYCLE,2020-05-30,2020,May,Saturday,30,151,12,2020-05-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23535,6281,GO-20201008550,B&E,2020-06-01,2020,June,Monday,1,153,13,2020-06-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23536,6323,GO-20209014819,THEFT UNDER - BICYCLE,2020-06-08,2020,June,Monday,8,160,9,2020-06-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23537,6327,GO-20209014825,THEFT UNDER - BICYCLE,2020-06-07,2020,June,Sunday,7,159,12,2020-06-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23538,6328,GO-20201042760,B&E,2020-05-31,2020,May,Sunday,31,152,17,2020-06-09,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23539,6329,GO-20201042760,B&E,2020-05-31,2020,May,Sunday,31,152,17,2020-06-09,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23540,6414,GO-20209015562,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,12,2020-06-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23541,6422,GO-20209015617,FTC PROBATION ORDER,2020-06-17,2020,June,Wednesday,17,169,4,2020-06-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23542,6452,GO-20201148610,B&E,2020-06-20,2020,June,Saturday,20,172,7,2020-06-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23543,6474,GO-20209016244,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,1,2020-06-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23544,6477,GO-20209016251,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,23,2020-06-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23545,6483,GO-20209016251,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,23,2020-06-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23546,6512,GO-20209016251,THEFT UNDER - BICYCLE,2020-06-25,2020,June,Thursday,25,177,23,2020-06-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23547,6523,GO-20209016730,THEFT UNDER - BICYCLE,2020-07-03,2020,July,Friday,3,185,0,2020-07-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23548,6536,GO-20209016894,THEFT UNDER - BICYCLE,2020-07-05,2020,July,Sunday,5,187,15,2020-07-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23549,6551,GO-20209017024,THEFT UNDER - BICYCLE,2020-06-22,2020,June,Monday,22,174,17,2020-07-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23550,6634,GO-20201318761,B&E,2020-07-13,2020,July,Monday,13,195,21,2020-07-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23551,6636,GO-20209017724,THEFT UNDER - BICYCLE,2020-07-16,2020,July,Thursday,16,198,14,2020-07-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23552,6649,GO-20201314626,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,21,2020-07-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23553,6681,GO-20209018077,THEFT UNDER,2020-07-18,2020,July,Saturday,18,200,18,2020-07-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23554,6720,GO-20209018395,THEFT UNDER - BICYCLE,2020-07-22,2020,July,Wednesday,22,204,19,2020-07-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23555,6724,GO-20209018440,THEFT UNDER - BICYCLE,2020-07-17,2020,July,Friday,17,199,6,2020-07-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23556,6746,GO-20209018615,THEFT UNDER - BICYCLE,2020-07-26,2020,July,Sunday,26,208,17,2020-07-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23557,6747,GO-20209018615,THEFT UNDER - BICYCLE,2020-07-26,2020,July,Sunday,26,208,17,2020-07-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23558,6808,GO-20201395579,THEFT UNDER - BICYCLE,2020-07-26,2020,July,Sunday,26,208,20,2020-07-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23559,6821,GO-20209019049,THEFT FROM MOTOR VEHICLE UNDER,2020-07-30,2020,July,Thursday,30,212,1,2020-07-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23560,6931,GO-20209019830,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,0,2020-08-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23561,6956,GO-20209020240,THEFT UNDER - BICYCLE,2020-08-12,2020,August,Wednesday,12,225,10,2020-08-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23562,7030,GO-20209020935,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,5,2020-08-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23563,7031,GO-20209020936,THEFT UNDER - BICYCLE,2020-08-17,2020,August,Monday,17,230,23,2020-08-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23564,7034,GO-20209020958,THEFT UNDER - BICYCLE,2020-07-16,2020,July,Thursday,16,198,16,2020-08-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23565,7062,GO-20201599256,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,13,2020-08-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23566,7103,GO-20209021595,THEFT UNDER - BICYCLE,2020-08-27,2020,August,Thursday,27,240,22,2020-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23567,7144,GO-20209021963,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,0,2020-09-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23568,7145,GO-20209021963,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,0,2020-09-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23569,7148,GO-20209022004,THEFT UNDER - BICYCLE,2020-09-01,2020,September,Tuesday,1,245,15,2020-09-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23570,7304,GO-20209023868,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19,2020,September,Saturday,19,263,21,2020-09-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23571,7306,GO-20201790491,B&E,2020-09-20,2020,September,Sunday,20,264,23,2020-09-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23572,7309,GO-20209023868,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19,2020,September,Saturday,19,263,21,2020-09-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23573,22397,GO-20191375481,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,0,2019-07-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23574,22865,GO-20142819749,THEFT UNDER,2014-08-11,2014,August,Monday,11,223,0,2014-09-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23575,18959,GO-20169000061,THEFT UNDER,2015-10-31,2015,October,Saturday,31,304,15,2016-01-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23576,18760,GO-20209023868,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19,2020,September,Saturday,19,263,21,2020-09-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23577,18767,GO-20209026834,THEFT UNDER - BICYCLE,2020-10-17,2020,October,Saturday,17,291,20,2020-10-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23578,7875,GO-20141990152,B&E,2014-04-30,2014,April,Wednesday,30,120,3,2014-04-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23579,18777,GO-20202052063,B&E,2020-10-31,2020,October,Saturday,31,305,7,2020-10-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23580,18943,GO-20159007914,THEFT UNDER,2015-09-28,2015,September,Monday,28,271,0,2015-09-29,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23581,18856,GO-20149006537,THEFT UNDER,2014-09-03,2014,September,Wednesday,3,246,1,2014-09-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23582,8200,GO-20149004276,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,16,2014-06-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23583,18891,GO-20159003251,THEFT UNDER,2015-05-28,2015,May,Thursday,28,148,0,2015-06-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23584,18986,GO-20161009717,THEFT UNDER - BICYCLE,2016-06-06,2016,June,Monday,6,158,15,2016-06-10,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23585,18995,GO-20161146806,THEFT UNDER - BICYCLE,2016-06-30,2016,June,Thursday,30,182,12,2016-06-30,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23586,8458,GO-20149005134,THEFT UNDER,2014-07-19,2014,July,Saturday,19,200,12,2014-07-19,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23587,18897,GO-20159003539,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,16,2015-06-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23588,19034,GO-20169009928,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,16,2016-09-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23589,25563,GO-20189022114,THEFT UNDER - BICYCLE,2018-07-11,2018,July,Wednesday,11,192,10,2018-07-11,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23590,19072,GO-2017369380,THEFT UNDER - BICYCLE,2017-02-27,2017,February,Monday,27,58,18,2017-02-28,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23591,19080,GO-2017857396,THEFT UNDER - SHOPLIFTING,2017-05-15,2017,May,Monday,15,135,17,2017-05-15,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23592,19107,GO-20179012704,THEFT UNDER - BICYCLE,2017-08-17,2017,August,Thursday,17,229,14,2017-08-18,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23593,19109,GO-20179013016,THEFT UNDER - BICYCLE,2017-08-21,2017,August,Monday,21,233,14,2017-08-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23594,19252,GO-20199022198,THEFT UNDER - BICYCLE,2019-07-13,2019,July,Saturday,13,194,17,2019-07-13,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23595,19352,GO-20209010892,THEFT UNDER - BICYCLE,2020-04-10,2020,April,Friday,10,101,23,2020-04-11,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23596,19670,GO-20149008653,THEFT UNDER,2014-12-09,2014,December,Tuesday,9,343,11,2014-12-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23597,19676,GO-2015615204,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,16,2015-04-14,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23598,19762,GO-20169004225,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,0,2016-05-06,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23599,22205,GO-20169011463,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,8,2016-10-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23600,22251,GO-20179013651,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,14,2017-08-29,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23601,22288,GO-20189015076,THEFT UNDER - BICYCLE,2018-05-14,2018,May,Monday,14,134,21,2018-05-15,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23602,22315,GO-20189024334,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,14,2018-07-28,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23603,22357,GO-20189036620,THEFT UNDER - BICYCLE,2018-11-02,2018,November,Friday,2,306,16,2018-11-02,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23604,22897,GO-20159002538,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,22,2015-05-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23605,22475,GO-20209014862,THEFT UNDER - BICYCLE,2020-06-08,2020,June,Monday,8,160,12,2020-06-08,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23606,22480,GO-20209015555,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,1,2020-06-17,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23607,22481,GO-20209015555,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,1,2020-06-17,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23608,22503,GO-20209017489,THEFT UNDER - BICYCLE,2020-07-13,2020,July,Monday,13,195,8,2020-07-13,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23609,22521,GO-20201448054,B&E,2020-08-03,2020,August,Monday,3,216,17,2020-08-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23610,22535,GO-20209020967,THEFT UNDER - BICYCLE,2020-08-19,2020,August,Wednesday,19,232,13,2020-08-22,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23611,22538,GO-20209021333,THEFT UNDER - SHOPLIFTING,2020-08-18,2020,August,Tuesday,18,231,20,2020-08-25,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23612,22814,GO-20149002904,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,9,2014-04-18,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23613,22834,GO-20149003807,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,12,2014-06-04,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23614,22855,GO-20149005078,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,8,2014-07-17,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23615,22890,GO-2015548904,THEFT UNDER,2015-04-02,2015,April,Thursday,2,92,10,2015-04-02,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23616,22915,GO-20159005289,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,11,2015-08-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23617,22916,GO-20159005376,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,11,2015-08-03,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23618,22945,GO-20151984412,FTC PROBATION ORDER,2015-11-18,2015,November,Wednesday,18,322,17,2015-11-19,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23619,25462,GO-20179010324,THEFT UNDER - BICYCLE,2017-07-16,2017,July,Sunday,16,197,9,2017-07-16,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23620,25472,GO-20171349639,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,20,2017-07-27,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23621,25619,GO-20199013085,THEFT UNDER - BICYCLE,2019-04-20,2019,April,Saturday,20,110,0,2019-04-25,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23622,25622,GO-20199014049,THEFT UNDER - BICYCLE,2019-05-06,2019,May,Monday,6,126,6,2019-05-06,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23623,25654,GO-20199025185,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,19,2019-08-07,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23624,25675,GO-20191812962,THEFT UNDER - BICYCLE,2019-09-20,2019,September,Friday,20,263,14,2019-09-20,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23625,25676,GO-20191812962,THEFT UNDER - BICYCLE,2019-09-20,2019,September,Friday,20,263,14,2019-09-20,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23626,25751,GO-20209017953,THEFT UNDER - BICYCLE,2020-07-17,2020,July,Friday,17,199,14,2020-07-19,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23627,25759,GO-20201489689,THEFT UNDER - BICYCLE,2020-08-09,2020,August,Sunday,9,222,16,2020-08-09,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23628,2228,GO-20189013314,THEFT UNDER - BICYCLE,2018-04-29,2018,April,Sunday,29,119,16,2018-04-30,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23629,25762,GO-20209020745,THEFT UNDER - BICYCLE,2020-08-18,2020,August,Tuesday,18,231,16,2020-08-20,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23630,25775,GO-20201785996,THEFT UNDER - BICYCLE,2020-09-19,2020,September,Saturday,19,263,21,2020-09-21,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)}",Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -23631,97,GO-2017323688,B&E,2017-02-21,2017,February,Tuesday,21,52,12,2017-02-21,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23632,1034,GO-20179011491,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,14,2017-08-01,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23633,1172,GO-20179012640,THEFT UNDER - BICYCLE,2017-07-15,2017,July,Saturday,15,196,14,2017-08-17,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23634,1435,GO-20179014984,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,12,2017-09-17,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23635,1484,GO-20179015387,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,19,2017-09-21,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23636,2227,GO-20189013314,THEFT UNDER - BICYCLE,2018-04-29,2018,April,Sunday,29,119,16,2018-04-30,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23637,2307,GO-20189014844,THEFT UNDER - BICYCLE,2018-05-03,2018,May,Thursday,3,123,8,2018-05-14,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23638,2440,GO-20189017052,THEFT UNDER - BICYCLE,2018-05-31,2018,May,Thursday,31,151,11,2018-06-01,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23639,2526,GO-20189018135,THEFT UNDER - BICYCLE,2018-06-10,2018,June,Sunday,10,161,18,2018-06-10,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23640,2663,GO-20189019972,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,14,2018-06-24,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23641,2784,GO-20181228863,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,16,2018-07-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23642,2785,GO-20181228863,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,16,2018-07-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23643,2923,GO-20181345080,B&E,2018-07-14,2018,July,Saturday,14,195,21,2018-07-23,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23644,2989,GO-20189024113,THEFT UNDER - BICYCLE,2018-07-26,2018,July,Thursday,26,207,9,2018-07-27,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23645,3028,GO-20189024513,THEFT UNDER - BICYCLE,2018-07-30,2018,July,Monday,30,211,14,2018-07-30,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23646,3826,GO-20189037324,THEFT UNDER,2018-11-03,2018,November,Saturday,3,307,15,2018-11-08,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23647,3877,GO-20189038833,THEFT UNDER - BICYCLE,2018-11-18,2018,November,Sunday,18,322,14,2018-11-19,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23648,4064,GO-20199006383,THEFT UNDER - BICYCLE,2019-01-24,2019,January,Thursday,24,24,11,2019-02-23,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23649,4425,GO-20199017777,THEFT UNDER,2019-06-05,2019,June,Wednesday,5,156,0,2019-06-07,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23650,5162,GO-20191627434,THEFT UNDER - BICYCLE,2019-08-22,2019,August,Thursday,22,234,7,2019-08-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23651,5163,GO-20191627434,THEFT UNDER - BICYCLE,2019-08-22,2019,August,Thursday,22,234,7,2019-08-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23652,5867,GO-20209003751,THEFT UNDER,2020-01-30,2020,January,Thursday,30,30,16,2020-01-31,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23653,5930,GO-20209007013,THEFT UNDER,2020-02-24,2020,February,Monday,24,55,9,2020-02-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23654,5985,GO-20209009659,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,19,2020-03-23,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23655,6494,GO-20201197157,B&E,2020-06-28,2020,June,Sunday,28,180,21,2020-06-29,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23656,6542,GO-20209016968,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,17,2020-07-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23657,6572,GO-20209016968,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,17,2020-07-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23658,6596,GO-20209017380,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,19,2020-07-12,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23659,6597,GO-20209017380,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,19,2020-07-12,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23660,6627,GO-20201314432,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,12,2020-07-15,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23661,7714,GO-20202425964,B&E,2020-12-26,2020,December,Saturday,26,361,13,2020-12-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23662,7715,GO-20202425964,B&E,2020-12-26,2020,December,Saturday,26,361,13,2020-12-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23663,8120,GO-20149004014,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,17,2014-06-12,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23664,8144,GO-20149004051,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,14,2014-06-13,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23665,8881,GO-20149006844,THEFT UNDER,2014-09-11,2014,September,Thursday,11,254,20,2014-09-12,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23666,8900,GO-20149006937,THEFT FROM MOTOR VEHICLE UNDER,2014-09-06,2014,September,Saturday,6,249,12,2014-09-16,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23667,9098,GO-20143154513,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,12,2014-10-22,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23668,9099,GO-20143154513,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,12,2014-10-22,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23669,9784,GO-2015984901,B&E,2015-06-11,2015,June,Thursday,11,162,16,2015-06-12,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23670,9793,GO-20159003563,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,0,2015-06-13,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23671,9845,GO-20159003816,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,9,2015-06-22,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23672,9846,GO-20159003816,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,9,2015-06-22,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23673,10203,GO-20159005464,THEFT UNDER,2015-07-25,2015,July,Saturday,25,206,9,2015-08-07,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23674,10214,GO-20151371489,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,10,2015-08-10,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23675,10215,GO-20151371489,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,10,2015-08-10,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23676,10255,GO-20159005711,THEFT UNDER,2015-08-12,2015,August,Wednesday,12,224,9,2015-08-12,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23677,21514,GO-20179018397,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,9,2017-10-28,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23678,8967,GO-20149007181,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,17,2014-09-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23679,21526,GO-20189020631,THEFT UNDER - BICYCLE,2018-06-28,2018,June,Thursday,28,179,17,2018-06-28,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23680,9247,GO-20159000041,THEFT UNDER,2014-11-15,2014,November,Saturday,15,319,15,2015-01-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23681,21562,GO-20209016968,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,17,2020-07-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23682,22914,GO-20151282144,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,14,2015-07-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23683,18907,GO-20151147329,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,15,2015-07-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23684,9271,GO-2015128960,THEFT UNDER,2015-01-16,2015,January,Friday,16,16,21,2015-01-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23685,9283,GO-2015164941,THEFT UNDER,2015-01-26,2015,January,Monday,26,26,10,2015-01-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23686,9381,GO-20159001783,PROPERTY - LOST,2015-03-16,2015,March,Monday,16,75,12,2015-04-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23687,9762,GO-2015965925,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,17,2015-06-09,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23688,10108,GO-20159005049,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,14,2015-07-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23689,10166,GO-20159005258,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,18,2015-08-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23690,10181,GO-20159005361,THEFT UNDER,2015-07-31,2015,July,Friday,31,212,0,2015-08-05,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23691,10440,GO-20159006993,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,8,2015-09-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23692,11151,GO-20169003508,THEFT UNDER,2016-04-17,2016,April,Sunday,17,108,11,2016-04-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23693,10531,GO-20151651037,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,15,2015-09-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23694,10547,GO-20151663375,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,16,2015-09-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23695,10555,GO-20159007824,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,14,2015-09-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23696,10565,GO-20159007928,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,12,2015-09-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23697,10690,GO-20159009051,THEFT UNDER,2015-10-17,2015,October,Saturday,17,290,16,2015-10-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23698,10812,GO-20152017035,THEFT UNDER,2015-11-20,2015,November,Friday,20,324,12,2015-11-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23699,11016,GO-2016346809,B&E W'INTENT,2016-02-21,2016,February,Sunday,21,52,12,2016-02-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23700,11060,GO-2016480034,THEFT UNDER - BICYCLE,2016-02-20,2016,February,Saturday,20,51,13,2016-03-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23701,11157,GO-20169003565,THEFT UNDER - BICYCLE,2016-04-18,2016,April,Monday,18,109,23,2016-04-19,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23702,11256,GO-2016765465,THEFT UNDER - BICYCLE,2016-05-04,2016,May,Wednesday,4,125,9,2016-05-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23703,11353,GO-2016867506,THEFT UNDER - BICYCLE,2016-05-22,2016,May,Sunday,22,143,20,2016-05-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23704,11396,GO-2016912682,B&E,2016-05-26,2016,May,Thursday,26,147,8,2016-05-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23705,11527,GO-20169005779,THEFT UNDER - BICYCLE,2016-05-26,2016,May,Thursday,26,147,23,2016-06-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23706,11574,GO-20169005998,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,7,2016-06-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23707,11618,GO-20169005998,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,7,2016-06-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23708,12180,GO-20161479867,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,14,2016-08-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23709,12181,GO-20161479867,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,14,2016-08-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23710,12248,GO-20169009882,THEFT UNDER - BICYCLE,2016-08-30,2016,August,Tuesday,30,243,17,2016-09-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23711,12293,GO-20169010137,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,3,2016-09-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23712,12356,GO-20169010504,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,18,2016-09-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23713,12357,GO-20169010504,THEFT UNDER - BICYCLE,2016-09-12,2016,September,Monday,12,256,18,2016-09-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23714,12655,GO-20161806893,THEFT UNDER - BICYCLE,2016-10-21,2016,October,Friday,21,295,19,2016-10-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23715,12871,GO-20189024605,THEFT UNDER - BICYCLE,2018-07-03,2018,July,Tuesday,3,184,16,2018-07-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23716,12883,GO-20189027144,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,0,2018-08-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23717,12884,GO-20189027144,THEFT UNDER - BICYCLE,2018-08-19,2018,August,Sunday,19,231,0,2018-08-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23718,12901,GO-20189034626,THEFT UNDER - BICYCLE,2018-10-18,2018,October,Thursday,18,291,17,2018-10-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23719,12923,GO-2019564151,THEFT UNDER - BICYCLE,2019-03-28,2019,March,Thursday,28,87,19,2019-03-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23720,12924,GO-20199011438,THEFT UNDER - BICYCLE,2019-04-11,2019,April,Thursday,11,101,9,2019-04-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23721,12943,GO-20199019768,THEFT UNDER - BICYCLE,2019-06-01,2019,June,Saturday,1,152,0,2019-06-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23722,12947,GO-20191237601,B&E,2019-06-15,2019,June,Saturday,15,166,12,2019-07-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23723,12949,GO-20199021770,THEFT UNDER - BICYCLE,2019-07-08,2019,July,Monday,8,189,22,2019-07-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23724,12971,GO-20191641951,THEFT UNDER - BICYCLE,2019-08-27,2019,August,Tuesday,27,239,2,2019-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23725,12991,GO-20199033086,THEFT UNDER,2019-10-01,2019,October,Tuesday,1,274,0,2019-10-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23726,13028,GO-2020745105,B&E,2020-04-07,2020,April,Tuesday,7,98,19,2020-04-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23727,13034,GO-2020935369,B&E,2020-05-21,2020,May,Thursday,21,142,4,2020-05-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23728,13035,GO-2020935369,B&E,2020-05-21,2020,May,Thursday,21,142,4,2020-05-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23729,13037,GO-20209014299,THEFT UNDER,2020-05-30,2020,May,Saturday,30,151,19,2020-05-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23730,13038,GO-20209014327,THEFT UNDER - BICYCLE,2020-04-11,2020,April,Saturday,11,102,9,2020-06-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23731,13042,GO-20209014822,THEFT UNDER - BICYCLE,2020-05-31,2020,May,Sunday,31,152,19,2020-06-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23732,13052,GO-20209016167,THEFT FROM MOTOR VEHICLE UNDER,2020-06-25,2020,June,Thursday,25,177,11,2020-06-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23733,14106,GO-20161646492,THEFT UNDER - BICYCLE,2016-09-16,2016,September,Friday,16,260,4,2016-09-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23734,14143,GO-20179001643,THEFT UNDER - BICYCLE,2017-02-06,2017,February,Monday,6,37,16,2017-02-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23735,14184,GO-20179013556,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,16,2017-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23736,14222,GO-2018538431,THEFT UNDER - BICYCLE,2018-03-09,2018,March,Friday,9,68,19,2018-03-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23737,14235,GO-20189016290,THEFT UNDER - BICYCLE,2018-05-25,2018,May,Friday,25,145,21,2018-05-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23738,14237,GO-2018960784,THEFT OF EBIKE UNDER $5000,2018-05-25,2018,May,Friday,25,145,22,2018-05-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23739,14261,GO-20189022856,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,22,2018-07-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23740,15851,GO-20141427708,THEFT UNDER,2014-01-28,2014,January,Tuesday,28,28,21,2014-01-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23741,15853,GO-20141869595,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,11,2014-04-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23742,15864,GO-20142115275,THEFT UNDER,2014-05-14,2014,May,Wednesday,14,134,8,2014-05-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23743,15905,GO-20142899435,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,21,2014-09-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23744,15908,GO-20149007250,THEFT OVER,2014-09-22,2014,September,Monday,22,265,20,2014-09-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23745,15934,GO-2015761815,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,20,2015-05-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23746,15966,GO-20159005703,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,16,2015-08-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23747,15967,GO-20159005703,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,16,2015-08-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23748,15995,GO-20151956829,THEFT UNDER,2015-11-09,2015,November,Monday,9,313,16,2015-11-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23749,16020,GO-2016843973,THEFT UNDER - BICYCLE,2016-05-16,2016,May,Monday,16,137,11,2016-05-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23750,16027,GO-20169005298,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,7,2016-06-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23751,16030,GO-20209017025,THEFT UNDER - BICYCLE,2020-06-17,2020,June,Wednesday,17,169,17,2020-07-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23752,16031,GO-20209017148,THEFT UNDER - BICYCLE,2020-07-08,2020,July,Wednesday,8,190,17,2020-07-08,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23753,16039,GO-20209017661,THEFT UNDER - BICYCLE,2020-07-15,2020,July,Wednesday,15,197,17,2020-07-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23754,16040,GO-20201316091,B&E,2020-07-01,2020,July,Wednesday,1,183,0,2020-07-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23755,16062,GO-20201572188,B&E W'INTENT,2020-08-18,2020,August,Tuesday,18,231,16,2020-08-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23756,16067,GO-20209021661,THEFT UNDER - BICYCLE,2020-08-28,2020,August,Friday,28,241,19,2020-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23757,16069,GO-20201623757,THEFT UNDER - BICYCLE,2020-08-27,2020,August,Thursday,27,240,22,2020-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23758,16074,GO-20201712645,THEFT OF EBIKE UNDER $5000,2020-08-27,2020,August,Thursday,27,240,2,2020-09-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23759,16091,GO-20209025714,THEFT UNDER - BICYCLE,2020-10-03,2020,October,Saturday,3,277,16,2020-10-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23760,22932,GO-20151607350,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,3,2015-09-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23761,21563,GO-20209016968,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,17,2020-07-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23762,22934,GO-20159007391,THEFT UNDER,2015-09-14,2015,September,Monday,14,257,9,2015-09-19,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23763,22974,GO-20169004947,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,23,2016-05-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23764,22976,GO-20169005741,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,8,2016-06-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23765,25436,GO-20179005501,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,16,2017-04-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23766,25437,GO-20179005501,THEFT UNDER - BICYCLE,2017-04-29,2017,April,Saturday,29,119,16,2017-04-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23767,25442,GO-20179007194,THEFT UNDER,2017-04-05,2017,April,Wednesday,5,95,11,2017-05-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23768,25443,GO-20179007194,THEFT UNDER,2017-04-05,2017,April,Wednesday,5,95,11,2017-05-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23769,25444,GO-20179007264,THEFT UNDER - BICYCLE,2017-05-30,2017,May,Tuesday,30,150,14,2017-05-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23770,25447,GO-20179007446,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,4,2017-06-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23771,25448,GO-20179007594,THEFT UNDER - BICYCLE,2017-06-03,2017,June,Saturday,3,154,5,2017-06-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23772,25457,GO-20179009538,THEFT UNDER - BICYCLE,2017-06-29,2017,June,Thursday,29,180,12,2017-07-05,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23773,25471,GO-20171342696,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,9,2017-07-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23774,25473,GO-20179011439,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,20,2017-07-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23775,25477,GO-20171560791,PROPERTY - FOUND,2017-08-29,2017,August,Tuesday,29,241,1,2017-08-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23776,25478,GO-20179013677,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,12,2017-08-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23777,25479,GO-20179013677,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,12,2017-08-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23778,25481,GO-20179013868,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,9,2017-09-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23779,25486,GO-20179015329,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,17,2017-09-20,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23780,25519,GO-20189004895,THEFT UNDER - BICYCLE,2018-02-15,2018,February,Thursday,15,46,0,2018-02-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23781,25521,GO-20189004693,THEFT UNDER - BICYCLE,2018-02-12,2018,February,Monday,12,43,22,2018-02-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23782,25524,GO-20189009087,THEFT UNDER - BICYCLE,2018-03-22,2018,March,Thursday,22,81,11,2018-03-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23783,25547,GO-20189018497,THEFT UNDER - BICYCLE,2018-06-12,2018,June,Tuesday,12,163,19,2018-06-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23784,25571,GO-20181356441,THEFT UNDER - BICYCLE,2018-07-20,2018,July,Friday,20,201,10,2018-07-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23785,25581,GO-20181611829,THEFT OF EBIKE UNDER $5000,2018-08-29,2018,August,Wednesday,29,241,18,2018-08-31,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23786,25601,GO-20181990701,THEFT OF EBIKE UNDER $5000,2018-10-27,2018,October,Saturday,27,300,13,2018-10-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23787,25607,GO-20189038059,THEFT UNDER - BICYCLE,2018-11-13,2018,November,Tuesday,13,317,8,2018-11-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23788,25609,GO-20182143609,THEFT UNDER - BICYCLE,2018-11-15,2018,November,Thursday,15,319,7,2018-11-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23789,25628,GO-20199017342,THEFT UNDER - BICYCLE,2019-05-27,2019,May,Monday,27,147,11,2019-06-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23790,25640,GO-20199019533,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,11,2019-06-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23791,25641,GO-20191163931,B&E,2019-06-22,2019,June,Saturday,22,173,18,2019-06-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23792,25646,GO-20199023156,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,17,2019-07-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23793,18935,GO-20159007132,THEFT UNDER,2015-09-06,2015,September,Sunday,6,249,20,2015-09-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23794,25647,GO-20191391427,THEFT UNDER - BICYCLE,2019-07-21,2019,July,Sunday,21,202,17,2019-07-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23795,25700,GO-20209009595,THEFT UNDER,2020-03-22,2020,March,Sunday,22,82,10,2020-03-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23796,25701,GO-20209009726,THEFT UNDER - BICYCLE,2020-03-22,2020,March,Sunday,22,82,12,2020-03-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23797,25707,GO-20209010287,B&E,2020-03-30,2020,March,Monday,30,90,23,2020-04-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23798,25708,GO-20209011082,THEFT UNDER,2020-04-12,2020,April,Sunday,12,103,15,2020-04-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23799,25709,GO-20209011082,THEFT UNDER,2020-04-12,2020,April,Sunday,12,103,15,2020-04-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23800,25713,GO-20209013835,THEFT UNDER - BICYCLE,2020-05-24,2020,May,Sunday,24,145,20,2020-05-24,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23801,25717,GO-2020977772,B&E,2020-05-18,2020,May,Monday,18,139,15,2020-05-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23802,25719,GO-20209014586,THEFT UNDER - BICYCLE,2020-05-29,2020,May,Friday,29,150,18,2020-06-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23803,25726,GO-20209015514,THEFT UNDER - BICYCLE,2020-06-09,2020,June,Tuesday,9,161,20,2020-06-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23804,25730,GO-20201128853,THEFT UNDER - BICYCLE,2020-06-16,2020,June,Tuesday,16,168,9,2020-06-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23805,25732,GO-20201170170,B&E,2020-06-20,2020,June,Saturday,20,172,10,2020-06-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23806,25736,GO-20201168880,THEFT UNDER - BICYCLE,2020-06-20,2020,June,Saturday,20,172,9,2020-06-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23807,25739,GO-20201233297,THEFT UNDER - BICYCLE,2020-05-31,2020,May,Sunday,31,152,12,2020-07-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23808,25741,GO-20209016965,THEFT UNDER - BICYCLE,2020-07-05,2020,July,Sunday,5,187,23,2020-07-06,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23809,25749,GO-20209017774,THEFT UNDER - BICYCLE,2020-07-12,2020,July,Sunday,12,194,23,2020-07-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23810,25750,GO-20209017774,THEFT UNDER - BICYCLE,2020-07-12,2020,July,Sunday,12,194,23,2020-07-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23811,25782,GO-20201848964,B&E,2020-09-28,2020,September,Monday,28,272,20,2020-09-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23812,25786,GO-20209025246,THEFT UNDER - BICYCLE,2020-10-01,2020,October,Thursday,1,275,16,2020-10-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23813,25791,GO-20209026119,THEFT UNDER - BICYCLE,2020-10-09,2020,October,Friday,9,283,18,2020-10-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23814,687,GO-20179008680,THEFT UNDER - BICYCLE,2017-06-21,2017,June,Wednesday,21,172,23,2017-06-22,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23815,733,GO-20179009085,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,0,2017-06-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23816,734,GO-20179009085,THEFT UNDER - BICYCLE,2017-06-28,2017,June,Wednesday,28,179,0,2017-06-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23817,887,GO-20171276425,THEFT UNDER - BICYCLE,2017-07-13,2017,July,Thursday,13,194,8,2017-07-18,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23818,2383,GO-20189015974,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,23,2018-05-23,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23819,2384,GO-20189015974,THEFT UNDER - BICYCLE,2018-05-22,2018,May,Tuesday,22,142,23,2018-05-23,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23820,2496,GO-20189017878,THEFT UNDER - BICYCLE,2018-06-08,2018,June,Friday,8,159,12,2018-06-08,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23821,2873,GO-20189022824,THEFT UNDER - BICYCLE,2018-07-17,2018,July,Tuesday,17,198,14,2018-07-17,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23822,2998,GO-20189024200,THEFT UNDER - BICYCLE,2018-07-23,2018,July,Monday,23,204,1,2018-07-28,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23823,3258,GO-20181523337,THEFT UNDER - BICYCLE,2018-05-01,2018,May,Tuesday,1,121,9,2018-08-18,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23824,3487,GO-20189030722,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,23,2018-09-16,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23825,3653,GO-20189033494,THEFT UNDER - BICYCLE,2018-09-26,2018,September,Wednesday,26,269,9,2018-10-10,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23826,4220,GO-2019242567,B&E,2019-04-29,2019,April,Monday,29,119,19,2019-04-30,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23827,4334,GO-2019393310,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,12,2019-05-24,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23828,4342,GO-2019955251,B&E,2019-05-16,2019,May,Thursday,16,136,17,2019-05-25,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23829,4343,GO-2019955251,B&E,2019-05-16,2019,May,Thursday,16,136,17,2019-05-25,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23830,4344,GO-2019955251,B&E,2019-05-16,2019,May,Thursday,16,136,17,2019-05-25,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23831,4580,GO-20199019617,THEFT UNDER - BICYCLE,2019-06-20,2019,June,Thursday,20,171,15,2019-06-21,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23832,4830,GO-20191375613,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,0,2019-07-22,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23833,5035,GO-20199051786,THEFT UNDER - BICYCLE,2019-08-12,2019,August,Monday,12,224,8,2019-08-12,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23834,5256,GO-20199029005,THEFT UNDER - BICYCLE,2019-09-05,2019,September,Thursday,5,248,20,2019-09-06,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23835,5406,GO-20199031542,THEFT UNDER,2019-09-24,2019,September,Tuesday,24,267,21,2019-09-25,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23836,5470,GO-20199032657,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,11,2019-10-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23837,5471,GO-20199032657,THEFT UNDER - BICYCLE,2019-10-04,2019,October,Friday,4,277,11,2019-10-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23838,5730,GO-20199039000,THEFT UNDER - BICYCLE,2019-11-23,2019,November,Saturday,23,327,11,2019-11-27,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23839,6066,GO-2020725984,THEFT UNDER - BICYCLE,2020-04-14,2020,April,Tuesday,14,105,22,2020-04-15,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23840,6131,GO-20209012395,THEFT UNDER,2020-04-11,2020,April,Saturday,11,102,11,2020-05-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23841,6133,GO-20209012406,THEFT UNDER - BICYCLE,2020-05-02,2020,May,Saturday,2,123,20,2020-05-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23842,6143,GO-20209012524,THEFT UNDER,2020-05-04,2020,May,Monday,4,125,23,2020-05-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23843,6144,GO-20209012524,THEFT UNDER,2020-05-04,2020,May,Monday,4,125,23,2020-05-05,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23844,6324,GO-20201059890,THEFT UNDER - BICYCLE,2020-06-09,2020,June,Tuesday,9,161,10,2020-06-09,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23845,6356,GO-20201076537,THEFT UNDER - BICYCLE,2020-06-10,2020,June,Wednesday,10,162,18,2020-06-11,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23846,6622,GO-20201311008,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,4,2020-07-15,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23847,6623,GO-20201311008,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,4,2020-07-15,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23848,6624,GO-20201311008,THEFT UNDER - BICYCLE,2020-07-14,2020,July,Tuesday,14,196,4,2020-07-15,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23849,6854,GO-20209019257,THEFT UNDER - BICYCLE,2020-05-27,2020,May,Wednesday,27,148,23,2020-08-03,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23850,6941,GO-20201509017,THEFT UNDER - BICYCLE,2020-08-05,2020,August,Wednesday,5,218,19,2020-08-12,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)}",Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -23851,21879,GO-20151039069,THEFT UNDER,2015-06-13,2015,June,Saturday,13,164,16,2015-06-20,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23852,21974,GO-20201665464,B&E,2020-08-29,2020,August,Saturday,29,242,3,2020-09-03,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23853,21993,GO-20202321101,B&E,2020-12-07,2020,December,Monday,7,342,22,2020-12-09,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23854,22467,GO-2020971818,B&E,2020-05-26,2020,May,Tuesday,26,147,0,2020-05-26,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23855,24396,GO-20209019529,THEFT UNDER,2020-08-04,2020,August,Tuesday,4,217,19,2020-08-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23856,24402,GO-20209021486,THEFT UNDER,2020-08-24,2020,August,Monday,24,237,8,2020-08-27,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23857,18975,GO-20169004353,THEFT UNDER - BICYCLE,2016-05-05,2016,May,Thursday,5,126,15,2016-05-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23858,24407,GO-20201973950,B&E,2020-10-17,2020,October,Saturday,17,291,21,2020-10-17,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23859,24613,GO-20149004509,THEFT UNDER,2014-06-26,2014,June,Thursday,26,177,9,2014-06-30,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23860,25310,GO-20179008552,THEFT UNDER - BICYCLE,2017-06-19,2017,June,Monday,19,170,22,2017-06-20,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23861,25358,GO-20199030699,THEFT UNDER - BICYCLE,2019-06-13,2019,June,Thursday,13,164,12,2019-09-19,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23862,25373,GO-20209016968,THEFT UNDER,2020-07-06,2020,July,Monday,6,188,17,2020-07-06,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23863,25487,GO-20179015387,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,19,2017-09-21,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23864,25536,GO-20189015427,THEFT UNDER - BICYCLE,2018-05-17,2018,May,Thursday,17,137,8,2018-05-18,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)}",Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -23865,1415,GO-20179014819,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,18,2017-09-15,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23866,1521,GO-20179015738,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,10,2017-09-25,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23867,1579,GO-20179016335,THEFT UNDER - BICYCLE,2017-10-02,2017,October,Monday,2,275,11,2017-10-02,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23868,1808,GO-20172005038,THEFT FROM MOTOR VEHICLE UNDER,2017-11-03,2017,November,Friday,3,307,18,2017-11-05,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23869,1830,GO-20172057171,B&E,2017-11-13,2017,November,Monday,13,317,21,2017-11-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23870,1831,GO-20172057171,B&E,2017-11-13,2017,November,Monday,13,317,21,2017-11-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23871,3547,GO-20189031719,THEFT UNDER - BICYCLE,2018-09-18,2018,September,Tuesday,18,261,18,2018-09-24,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23872,3793,GO-20189036347,THEFT UNDER - BICYCLE,2018-10-29,2018,October,Monday,29,302,19,2018-10-31,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23873,3816,GO-20181914283,B&E,2018-10-08,2018,October,Monday,8,281,0,2018-10-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23874,3817,GO-20181914283,B&E,2018-10-08,2018,October,Monday,8,281,0,2018-10-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23875,3818,GO-20181914283,B&E,2018-10-08,2018,October,Monday,8,281,0,2018-10-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23876,4440,GO-20199017989,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,15,2019-06-10,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23877,4852,GO-20191388635,THEFT UNDER - BICYCLE,2019-07-22,2019,July,Monday,22,203,17,2019-07-24,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23878,4899,GO-20199024008,THEFT UNDER,2019-07-27,2019,July,Saturday,27,208,9,2019-07-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23879,5182,GO-20191636171,B&E,2019-08-21,2019,August,Wednesday,21,233,0,2019-08-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23880,5314,GO-20191761321,THEFT UNDER - BICYCLE,2019-09-12,2019,September,Thursday,12,255,18,2019-09-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23881,5315,GO-20191761321,THEFT UNDER - BICYCLE,2019-09-12,2019,September,Thursday,12,255,18,2019-09-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23882,5399,GO-20199031476,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,9,2019-09-25,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23883,5691,GO-20192198412,B&E,2019-11-14,2019,November,Thursday,14,318,4,2019-11-14,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23884,5974,GO-2020561689,THEFT UNDER - BICYCLE,2020-03-01,2020,March,Sunday,1,61,0,2020-03-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23885,5975,GO-2020561689,THEFT UNDER - BICYCLE,2020-03-01,2020,March,Sunday,1,61,0,2020-03-18,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23886,6027,GO-20209010556,THEFT UNDER,2020-04-05,2020,April,Sunday,5,96,17,2020-04-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23887,6383,GO-20209015327,THEFT UNDER,2020-01-01,2020,January,Wednesday,1,1,0,2020-06-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23888,6440,GO-20201151717,B&E,2020-06-22,2020,June,Monday,22,174,15,2020-06-22,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23889,6555,GO-20209017054,THEFT UNDER - BICYCLE,2020-07-01,2020,July,Wednesday,1,183,9,2020-07-07,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23890,6973,GO-20201544492,B&E,2020-08-14,2020,August,Friday,14,227,23,2020-08-17,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23891,7078,GO-20201600726,B&E,2020-08-24,2020,August,Monday,24,237,18,2020-08-25,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23892,7079,GO-20201600726,B&E,2020-08-24,2020,August,Monday,24,237,18,2020-08-25,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23893,7139,GO-20201643900,B&E,2020-08-29,2020,August,Saturday,29,242,9,2020-08-31,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23894,7155,GO-20201609268,B&E,2020-08-15,2020,August,Saturday,15,228,0,2020-08-26,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23895,7240,GO-20201734638,B&E,2020-09-12,2020,September,Saturday,12,256,22,2020-09-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23896,7429,GO-20201915909,B&E,2020-10-09,2020,October,Friday,9,283,5,2020-10-09,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23897,8121,GO-20149004011,THEFT FROM MOTOR VEHICLE UNDER,2014-06-10,2014,June,Tuesday,10,161,0,2014-06-12,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23898,8955,GO-20142968353,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,12,2014-09-23,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23899,8956,GO-20142968353,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,12,2014-09-23,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23900,9011,GO-20143030195,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,23,2014-10-02,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23901,9012,GO-20143030195,THEFT UNDER,2014-09-30,2014,September,Tuesday,30,273,23,2014-10-02,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23902,9050,GO-20143096445,THEFT OVER,2014-10-08,2014,October,Wednesday,8,281,20,2014-10-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23903,9051,GO-20143096445,THEFT OVER,2014-10-08,2014,October,Wednesday,8,281,20,2014-10-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23904,9052,GO-20143096445,THEFT OVER,2014-10-08,2014,October,Wednesday,8,281,20,2014-10-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23905,9069,GO-20143114256,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,7,2014-10-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23906,9070,GO-20143114256,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,7,2014-10-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23907,9081,GO-20149007680,THEFT UNDER,2014-10-12,2014,October,Sunday,12,285,22,2014-10-19,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23908,9082,GO-20149007680,THEFT UNDER,2014-10-12,2014,October,Sunday,12,285,22,2014-10-19,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23909,9102,GO-20143152503,B&E,2014-10-19,2014,October,Sunday,19,292,18,2014-10-22,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23910,9305,GO-2015368071,THEFT UNDER,2015-03-01,2015,March,Sunday,1,60,11,2015-03-04,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23911,9374,GO-2015568150,THEFT FROM MOTOR VEHICLE UNDER,2015-04-03,2015,April,Friday,3,93,17,2015-04-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23912,9410,GO-20159001952,THEFT UNDER,2015-04-15,2015,April,Wednesday,15,105,2,2015-04-15,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23913,9414,GO-2015628071,B&E,2015-04-15,2015,April,Wednesday,15,105,18,2015-04-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23914,9415,GO-2015628071,B&E,2015-04-15,2015,April,Wednesday,15,105,18,2015-04-16,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23915,9484,GO-2015696151,THEFT OVER,2015-04-26,2015,April,Sunday,26,116,12,2015-04-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23916,9485,GO-2015696151,THEFT OVER,2015-04-26,2015,April,Sunday,26,116,12,2015-04-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23917,9487,GO-2015700822,B&E,2015-04-27,2015,April,Monday,27,117,20,2015-04-28,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23918,9514,GO-20159002415,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,19,2015-05-03,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23919,9516,GO-20159002416,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,19,2015-05-03,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23920,9517,GO-20159002416,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,19,2015-05-03,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23921,9571,GO-2015800828,B&E W'INTENT,2015-05-09,2015,May,Saturday,9,129,23,2015-05-13,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23922,9665,GO-2015886713,B&E,2015-05-24,2015,May,Sunday,24,144,19,2015-05-27,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23923,9679,GO-2015896167,B&E,2015-05-03,2015,May,Sunday,3,123,12,2015-05-29,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23924,9698,GO-20159003238,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,17,2015-06-01,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23925,9699,GO-20159003238,THEFT UNDER,2015-05-31,2015,May,Sunday,31,151,17,2015-06-01,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23926,9733,GO-2015878765,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,11,2015-05-26,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23927,9734,GO-2015878765,THEFT UNDER,2015-05-26,2015,May,Tuesday,26,146,11,2015-05-26,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23928,9735,GO-20159003377,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,22,2015-06-06,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)}",Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -23929,18991,GO-20169005919,THEFT UNDER - BICYCLE,2016-06-15,2016,June,Wednesday,15,167,16,2016-06-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23930,19044,GO-20161753234,THEFT UNDER - BICYCLE,2016-10-02,2016,October,Sunday,2,276,15,2016-10-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23931,19048,GO-20161802449,THEFT UNDER - BICYCLE,2016-09-24,2016,September,Saturday,24,268,12,2016-10-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23932,19055,GO-20161903066,THEFT UNDER - BICYCLE,2016-10-07,2016,October,Friday,7,281,10,2016-10-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23933,19056,GO-20161903066,THEFT UNDER - BICYCLE,2016-10-07,2016,October,Friday,7,281,10,2016-10-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23934,19066,GO-201719075,B&E,2017-01-04,2017,January,Wednesday,4,4,12,2017-01-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23935,19067,GO-201719075,B&E,2017-01-04,2017,January,Wednesday,4,4,12,2017-01-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23936,19068,GO-201719075,B&E,2017-01-04,2017,January,Wednesday,4,4,12,2017-01-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23937,19095,GO-20179009284,THEFT UNDER - BICYCLE,2017-07-02,2017,July,Sunday,2,183,16,2017-07-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23938,19103,GO-20179012477,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,11,2017-08-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23939,19104,GO-20179012477,THEFT UNDER - BICYCLE,2017-08-15,2017,August,Tuesday,15,227,11,2017-08-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23940,19111,GO-20179014054,FTC PROBATION ORDER,2017-09-05,2017,September,Tuesday,5,248,12,2017-09-05,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23941,19132,GO-20179020407,THEFT UNDER - BICYCLE,2017-11-13,2017,November,Monday,13,317,8,2017-11-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23942,19151,GO-20189011048,THEFT UNDER - BICYCLE,2018-04-09,2018,April,Monday,9,99,18,2018-04-09,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23943,19161,GO-2018923094,B&E,2018-05-16,2018,May,Wednesday,16,136,18,2018-05-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23944,19190,GO-20189025961,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,2,2018-08-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23945,19191,GO-20189026523,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,18,2018-08-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23946,19192,GO-20189026523,THEFT UNDER - BICYCLE,2018-08-14,2018,August,Tuesday,14,226,18,2018-08-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23947,19205,GO-20189034089,THEFT UNDER - BICYCLE,2018-10-12,2018,October,Friday,12,285,14,2018-10-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23948,19225,GO-2019849156,B&E,2019-05-09,2019,May,Thursday,9,129,15,2019-05-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23949,19234,GO-20199017761,THEFT UNDER - BICYCLE,2019-06-07,2019,June,Friday,7,158,15,2019-06-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23950,19283,GO-20199029447,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,19,2019-09-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23951,19284,GO-20199029447,THEFT UNDER - BICYCLE,2019-09-08,2019,September,Sunday,8,251,19,2019-09-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23952,19295,GO-20199031219,THEFT UNDER - BICYCLE,2019-09-22,2019,September,Sunday,22,265,13,2019-09-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23953,19301,GO-20199032242,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,17,2019-10-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23954,19307,GO-20199032859,THEFT UNDER,2019-10-07,2019,October,Monday,7,280,9,2019-10-07,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23955,19319,GO-20192185319,B&E W'INTENT,2019-10-12,2019,October,Saturday,12,285,0,2019-11-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23956,19321,GO-20199038293,THEFT UNDER - BICYCLE,2019-04-18,2019,April,Thursday,18,108,12,2019-11-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23957,19322,GO-20192450170,B&E,2019-12-19,2019,December,Thursday,19,353,0,2019-12-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23958,19356,GO-2020720963,THEFT OF EBIKE UNDER $5000,2020-04-11,2020,April,Saturday,11,102,12,2020-04-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23959,19359,GO-20209012867,THEFT UNDER - BICYCLE,2020-05-08,2020,May,Friday,8,129,15,2020-05-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23960,19377,GO-20201072026,THEFT UNDER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,4,2020-06-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23961,19381,GO-20209015856,THEFT UNDER - BICYCLE,2020-06-20,2020,June,Saturday,20,172,19,2020-06-21,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23962,19382,GO-20201128724,THEFT OF EBIKE UNDER $5000,2020-06-01,2020,June,Monday,1,153,10,2020-06-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23963,19620,GO-20149003600,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,11,2014-05-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23964,19621,GO-20142162691,THEFT OVER,2014-05-14,2014,May,Wednesday,14,134,21,2014-05-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23965,19648,GO-20142679639,THEFT OVER,2014-08-06,2014,August,Wednesday,6,218,15,2014-08-11,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23966,19653,GO-20142809534,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,10,2014-08-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23967,19662,GO-20143079097,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,18,2014-10-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23968,19665,GO-20149007982,THEFT UNDER,2014-11-03,2014,November,Monday,3,307,8,2014-11-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23969,19686,GO-20151004472,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,8,2015-06-15,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23970,19703,GO-20159005330,THEFT UNDER,2015-08-01,2015,August,Saturday,1,213,17,2015-08-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23971,19734,GO-20151714163,THEFT OVER,2015-09-30,2015,September,Wednesday,30,273,22,2015-10-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23972,19735,GO-20151714163,THEFT OVER,2015-09-30,2015,September,Wednesday,30,273,22,2015-10-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23973,19749,GO-20169000445,THEFT UNDER - BICYCLE,2016-01-12,2016,January,Tuesday,12,12,15,2016-01-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23974,19759,GO-2016731112,THEFT UNDER - BICYCLE,2016-04-29,2016,April,Friday,29,120,11,2016-04-29,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23975,19775,GO-20169006230,THEFT UNDER - BICYCLE,2016-06-22,2016,June,Wednesday,22,174,17,2016-06-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23976,22188,GO-20169009964,THEFT UNDER - BICYCLE,2016-09-03,2016,September,Saturday,3,247,17,2016-09-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23977,22214,GO-20169014142,THEFT UNDER - BICYCLE,2016-11-21,2016,November,Monday,21,326,7,2016-12-02,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23978,22222,GO-2017835997,B&E,2017-04-17,2017,April,Monday,17,107,0,2017-05-12,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23979,22243,GO-20179011457,THEFT UNDER - BICYCLE,2017-08-01,2017,August,Tuesday,1,213,11,2017-08-01,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23980,22247,GO-20179012695,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,18,2017-08-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23981,22248,GO-20179012695,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,18,2017-08-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23982,22319,GO-20189026756,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,10,2018-08-17,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23983,22332,GO-20189030429,THEFT UNDER - BICYCLE,2018-09-14,2018,September,Friday,14,257,7,2018-09-14,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23984,22344,GO-20189032146,THEFT UNDER - BICYCLE,2018-08-07,2018,August,Tuesday,7,219,16,2018-09-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23985,22360,GO-20189038849,THEFT UNDER - BICYCLE,2018-11-16,2018,November,Friday,16,320,19,2018-11-19,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23986,22369,GO-2019726279,THEFT UNDER - BICYCLE,2019-04-21,2019,April,Sunday,21,111,23,2019-04-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23987,22380,GO-20191126384,B&E,2019-06-15,2019,June,Saturday,15,166,23,2019-06-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23988,22381,GO-20191126384,B&E,2019-06-15,2019,June,Saturday,15,166,23,2019-06-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23989,22382,GO-20191126384,B&E,2019-06-15,2019,June,Saturday,15,166,23,2019-06-18,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23990,22384,GO-20199019777,THEFT UNDER - BICYCLE,2019-06-01,2019,June,Saturday,1,152,0,2019-06-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23991,22386,GO-20199020219,THEFT UNDER - BICYCLE,2019-06-26,2019,June,Wednesday,26,177,14,2019-06-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23992,22415,GO-20199029864,THEFT UNDER - BICYCLE,2019-09-07,2019,September,Saturday,7,250,12,2019-09-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23993,22423,GO-20191853166,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,9,2019-09-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23994,22424,GO-20191853166,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,9,2019-09-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23995,22428,GO-20199035808,THEFT UNDER - BICYCLE,2019-10-29,2019,October,Tuesday,29,302,18,2019-10-30,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23996,22435,GO-202084277,B&E,2020-01-07,2020,January,Tuesday,7,7,9,2020-01-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23997,22448,GO-20209009590,THEFT UNDER,2020-03-22,2020,March,Sunday,22,82,10,2020-03-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23998,22449,GO-20209009590,THEFT UNDER,2020-03-22,2020,March,Sunday,22,82,10,2020-03-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -23999,22465,GO-20209013441,THEFT UNDER - BICYCLE,2020-05-08,2020,May,Friday,8,129,6,2020-05-19,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24000,22471,GO-20209014480,THEFT UNDER - BICYCLE,2020-05-22,2020,May,Friday,22,143,14,2020-06-03,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24001,22486,GO-20209016168,B&E,2020-06-22,2020,June,Monday,22,174,17,2020-06-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24002,22488,GO-20209016325,THEFT UNDER - BICYCLE,2020-06-27,2020,June,Saturday,27,179,15,2020-06-27,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24003,22505,GO-20209017721,THEFT UNDER - BICYCLE,2020-07-15,2020,July,Wednesday,15,197,8,2020-07-16,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24004,22510,GO-20209018351,THEFT UNDER - BICYCLE,2020-07-23,2020,July,Thursday,23,205,14,2020-07-23,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24005,22513,GO-20201378158,B&E,2020-07-15,2020,July,Wednesday,15,197,11,2020-07-25,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24006,22522,GO-20209019370,THEFT UNDER - BICYCLE,2020-08-04,2020,August,Tuesday,4,217,17,2020-08-04,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24007,22525,GO-20209019826,THEFT UNDER,2020-08-07,2020,August,Friday,7,220,20,2020-08-10,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24008,22528,GO-20201494716,THEFT UNDER - BICYCLE,2020-08-07,2020,August,Friday,7,220,0,2020-08-13,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24009,22536,GO-20209021026,THEFT UNDER - BICYCLE,2020-08-20,2020,August,Thursday,20,233,17,2020-08-22,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24010,22539,GO-20201607176,B&E,2020-08-19,2020,August,Wednesday,19,232,20,2020-08-26,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24011,22542,GO-20201620331,B&E,2020-08-28,2020,August,Friday,28,241,4,2020-08-28,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)}",Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -24012,20916,GO-20142753067,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,9,2014-08-22,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24013,23276,GO-20191218840,THEFT UNDER - BICYCLE,2019-06-30,2019,June,Sunday,30,181,17,2019-07-01,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24014,23322,GO-20209014194,THEFT UNDER,2020-04-09,2020,April,Thursday,9,100,12,2020-05-29,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24015,23612,GO-2015953695,THEFT UNDER,2015-06-06,2015,June,Saturday,6,157,16,2015-06-08,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24016,21889,GO-20159004329,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,21,2015-07-09,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24017,23956,GO-20149007098,B&E,2014-09-18,2014,September,Thursday,18,261,23,2014-09-22,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24018,23967,GO-20143317126,THEFT UNDER,2014-11-16,2014,November,Sunday,16,320,23,2014-11-17,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24019,74,GO-2017182170,THEFT UNDER - BICYCLE,2017-01-27,2017,January,Friday,27,27,2,2017-01-29,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24020,75,GO-2017182170,THEFT UNDER - BICYCLE,2017-01-27,2017,January,Friday,27,27,2,2017-01-29,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24021,230,GO-20179004770,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,1,2017-04-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24022,736,GO-20179009115,THEFT UNDER,2017-06-27,2017,June,Tuesday,27,178,12,2017-06-28,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24023,994,GO-20171359192,THEFT UNDER - BICYCLE,2017-07-28,2017,July,Friday,28,209,8,2017-07-28,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24024,1766,GO-20171945222,THEFT OF EBIKE UNDER $5000,2017-10-26,2017,October,Thursday,26,299,2,2017-10-27,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24025,1854,GO-20179019838,THEFT UNDER - BICYCLE,2017-11-16,2017,November,Thursday,16,320,16,2017-11-16,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24026,2275,GO-20189014250,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,18,2018-05-09,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24027,3133,GO-20189025699,THEFT UNDER - BICYCLE,2018-08-09,2018,August,Thursday,9,221,7,2018-08-09,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24028,2405,GO-20189016424,THEFT UNDER - BICYCLE,2018-05-26,2018,May,Saturday,26,146,16,2018-05-27,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24029,3295,GO-20181517659,THEFT UNDER,2018-08-15,2018,August,Wednesday,15,227,20,2018-08-23,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24030,3608,GO-20181808878,B&E,2018-09-29,2018,September,Saturday,29,272,8,2018-09-30,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24031,3999,GO-201971544,THEFT UNDER,2019-01-09,2019,January,Wednesday,9,9,13,2019-01-12,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24032,5639,GO-20199036326,THEFT UNDER,2019-11-03,2019,November,Sunday,3,307,16,2019-11-03,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24033,7279,GO-20209023668,THEFT UNDER - BICYCLE,2020-09-17,2020,September,Thursday,17,261,20,2020-09-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24034,24591,GO-20141587267,THEFT UNDER,2014-02-23,2014,February,Sunday,23,54,20,2014-02-24,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24035,3539,GO-20189031625,THEFT UNDER,2018-09-23,2018,September,Sunday,23,266,12,2018-09-23,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24036,7280,GO-20209023668,THEFT UNDER - BICYCLE,2020-09-17,2020,September,Thursday,17,261,20,2020-09-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24037,7577,GO-20209028241,THEFT UNDER,2020-10-30,2020,October,Friday,30,304,23,2020-10-31,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24038,7809,GO-20141825417,B&E,2014-04-01,2014,April,Tuesday,1,91,7,2014-04-04,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24039,7810,GO-20141825417,B&E,2014-04-01,2014,April,Tuesday,1,91,7,2014-04-04,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24040,7811,GO-20141825417,B&E,2014-04-01,2014,April,Tuesday,1,91,7,2014-04-04,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24041,7812,GO-20141825417,B&E,2014-04-01,2014,April,Tuesday,1,91,7,2014-04-04,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24042,7813,GO-20141825417,B&E,2014-04-01,2014,April,Tuesday,1,91,7,2014-04-04,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24043,7996,GO-20149003651,THEFT UNDER,2014-05-26,2014,May,Monday,26,146,18,2014-05-27,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24044,8423,GO-20142524077,B&E,2014-07-18,2014,July,Friday,18,199,0,2014-07-18,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24045,8607,GO-20142659449,THEFT UNDER,2013-06-01,2013,June,Saturday,1,152,19,2014-08-08,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24046,8608,GO-20142659449,THEFT UNDER,2013-06-01,2013,June,Saturday,1,152,19,2014-08-08,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24047,8609,GO-20142659449,THEFT UNDER,2013-06-01,2013,June,Saturday,1,152,19,2014-08-08,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24048,8610,GO-20142659449,THEFT UNDER,2013-06-01,2013,June,Saturday,1,152,19,2014-08-08,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24049,8904,GO-20142913613,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,21,2014-09-15,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24050,8905,GO-20142913613,THEFT UNDER,2014-09-06,2014,September,Saturday,6,249,21,2014-09-15,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24051,8912,GO-20149006987,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,20,2014-09-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24052,8913,GO-20149006987,THEFT UNDER,2014-09-17,2014,September,Wednesday,17,260,20,2014-09-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24053,9376,GO-2015573479,THEFT UNDER,2015-04-07,2015,April,Tuesday,7,97,10,2015-04-07,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24054,9838,GO-20151032923,THEFT UNDER,2015-06-19,2015,June,Friday,19,170,18,2015-06-19,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24055,9934,GO-20151120016,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,12,2015-07-03,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24056,9937,GO-20151122958,THEFT UNDER,2015-07-03,2015,July,Friday,3,184,20,2015-07-03,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24057,9972,GO-20151168023,THEFT UNDER,2015-07-10,2015,July,Friday,10,191,16,2015-07-10,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24058,10002,GO-20159004518,THEFT UNDER,2015-07-09,2015,July,Thursday,9,190,6,2015-07-13,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24059,10037,GO-20151213424,B&E,2015-07-17,2015,July,Friday,17,198,9,2015-07-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24060,10038,GO-20151213424,B&E,2015-07-17,2015,July,Friday,17,198,9,2015-07-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24061,10123,GO-20151289939,THEFT OVER,2014-09-01,2014,September,Monday,1,244,18,2015-07-29,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24062,10182,GO-20159005379,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,21,2015-08-05,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24063,10259,GO-20151403011,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,13,2015-08-15,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24064,10427,GO-20151553094,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,9,2015-09-08,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24065,10999,GO-2016297539,THEFT UNDER,2016-02-19,2016,February,Friday,19,50,8,2016-02-19,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24066,11217,GO-20152196792,PROPERTY - FOUND,2015-12-23,2015,December,Wednesday,23,357,13,2015-12-23,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24067,12511,GO-20169011325,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,6,2016-09-29,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24068,12666,GO-20169012446,THEFT UNDER,2016-10-22,2016,October,Saturday,22,296,18,2016-10-22,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24069,13512,GO-20199024598,THEFT UNDER,2019-07-31,2019,July,Wednesday,31,212,13,2019-08-01,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24070,13582,GO-20209022091,THEFT FROM MOTOR VEHICLE UNDER,2020-09-01,2020,September,Tuesday,1,245,0,2020-09-02,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24071,13671,GO-20179007875,THEFT UNDER,2017-06-10,2017,June,Saturday,10,161,12,2017-06-11,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24072,13749,GO-20189014250,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,18,2018-05-09,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24073,13794,GO-20189024770,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,0,2018-08-01,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24074,13829,GO-20181808878,B&E,2018-09-29,2018,September,Saturday,29,272,8,2018-09-30,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24075,17128,GO-20159002816,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,17,2015-05-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24076,13912,GO-20159007573,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,21,2015-09-22,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24077,13966,GO-2016797776,THEFT UNDER - BICYCLE,2016-05-07,2016,May,Saturday,7,128,3,2016-05-09,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24078,14401,GO-20142667728,THEFT UNDER,2014-07-23,2014,July,Wednesday,23,204,20,2014-08-09,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24079,16942,GO-20179009559,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,14,2017-07-06,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24080,16950,GO-20171282723,B&E,2017-06-30,2017,June,Friday,30,181,0,2017-07-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24081,16962,GO-20179012034,THEFT UNDER - BICYCLE,2017-08-02,2017,August,Wednesday,2,214,15,2017-08-09,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24082,17002,GO-20179018989,THEFT UNDER,2017-11-01,2017,November,Wednesday,1,305,12,2017-11-06,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24083,764,GO-20179009343,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,10,2017-07-03,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24084,17197,GO-20152195193,THEFT UNDER,2015-12-22,2015,December,Tuesday,22,356,7,2015-12-23,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24085,17209,GO-2016482658,THEFT UNDER,2016-03-20,2016,March,Sunday,20,80,13,2016-03-21,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24086,17307,GO-20179004770,THEFT UNDER - BICYCLE,2017-04-17,2017,April,Monday,17,107,1,2017-04-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24087,17308,GO-2017677924,THEFT OF EBIKE UNDER $5000,2017-04-18,2017,April,Tuesday,18,108,4,2017-04-18,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24088,17462,GO-20142623529,B&E,2014-07-26,2014,July,Saturday,26,207,9,2014-08-02,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24089,17473,GO-20142794571,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,17,2014-08-28,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24090,19979,GO-20189032209,THEFT UNDER,2018-09-25,2018,September,Tuesday,25,268,12,2018-09-28,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24091,20017,GO-20199009452,THEFT UNDER,2019-03-10,2019,March,Sunday,10,69,15,2019-03-24,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24092,20018,GO-20199009452,THEFT UNDER,2019-03-10,2019,March,Sunday,10,69,15,2019-03-24,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24093,20043,GO-20199019623,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,15,2019-06-21,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24094,20308,GO-20189017016,THEFT UNDER - BICYCLE,2018-05-18,2018,May,Friday,18,138,18,2018-06-01,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24095,20345,GO-20181490479,THEFT OF EBIKE UNDER $5000,2018-08-13,2018,August,Monday,13,225,12,2018-08-13,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24096,20395,GO-20151022302,THEFT UNDER,2015-06-18,2015,June,Thursday,18,169,9,2015-06-18,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24097,20575,GO-2017861518,THEFT FROM MOTOR VEHICLE OVER,2017-05-15,2017,May,Monday,15,135,21,2017-05-16,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24098,832,GO-20179009983,THEFT UNDER - BICYCLE,2017-07-11,2017,July,Tuesday,11,192,7,2017-07-11,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24099,20862,GO-20142053191,THEFT UNDER,2014-05-10,2014,May,Saturday,10,130,16,2014-05-10,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24100,20864,GO-20142197431,B&E,2014-05-29,2014,May,Thursday,29,149,14,2014-06-01,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24101,20878,GO-20142464589,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,17,2014-07-09,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24102,20879,GO-20142464589,THEFT UNDER,2014-07-09,2014,July,Wednesday,9,190,17,2014-07-09,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24103,23416,GO-20179007351,B&E,2017-05-29,2017,May,Monday,29,149,19,2017-06-01,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24104,23606,GO-2015921746,THEFT UNDER,2015-06-02,2015,June,Tuesday,2,153,11,2015-06-02,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24105,23609,GO-20159003385,THEFT UNDER,2015-06-05,2015,June,Friday,5,156,10,2015-06-06,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24106,23653,GO-20159007316,THEFT UNDER,2015-09-16,2015,September,Wednesday,16,259,19,2015-09-17,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24107,23708,GO-20169005916,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,8,2016-06-16,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24108,23709,GO-20169005916,THEFT UNDER - BICYCLE,2016-06-13,2016,June,Monday,13,165,8,2016-06-16,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24109,23902,GO-20149004355,THEFT UNDER,2014-06-22,2014,June,Sunday,22,173,11,2014-06-23,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24110,23949,GO-20142894748,B&E,2014-09-11,2014,September,Thursday,11,254,23,2014-09-12,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24111,23950,GO-20142894748,B&E,2014-09-11,2014,September,Thursday,11,254,23,2014-09-12,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24112,23962,GO-20143016122,THEFT UNDER,2014-09-29,2014,September,Monday,29,272,10,2014-09-30,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)}",Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -24113,519,GO-20179007373,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,14,2017-06-02,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24114,579,GO-20179007870,THEFT UNDER,2017-06-10,2017,June,Saturday,10,161,18,2017-06-10,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24115,962,GO-20171319281,THEFT UNDER,2017-07-10,2017,July,Monday,10,191,21,2017-07-22,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24116,15071,GO-20149006349,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,3,2014-08-27,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24117,11378,GO-2016905732,THEFT UNDER - BICYCLE,2016-05-25,2016,May,Wednesday,25,146,21,2016-05-26,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24118,11379,GO-2016905732,THEFT UNDER - BICYCLE,2016-05-25,2016,May,Wednesday,25,146,21,2016-05-26,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24119,15620,GO-20179011049,THEFT UNDER - BICYCLE,2017-07-25,2017,July,Tuesday,25,206,21,2017-07-26,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24120,6457,GO-20201146361,THEFT UNDER - BICYCLE,2020-05-25,2020,May,Monday,25,146,9,2020-06-22,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24121,18132,GO-20161397494,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,17,2016-08-08,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24122,9687,GO-2015905086,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,12,2015-05-30,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24123,18133,GO-20161397494,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,17,2016-08-08,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24124,9726,GO-2015935925,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,15,2015-06-05,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24125,18134,GO-20161397494,THEFT UNDER - BICYCLE,2016-08-04,2016,August,Thursday,4,217,17,2016-08-08,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24126,10627,GO-20151771239,THEFT UNDER,2015-10-14,2015,October,Wednesday,14,287,12,2015-10-14,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24127,18136,GO-20161457198,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,20,2016-08-17,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24128,11180,GO-2016689998,THEFT UNDER - BICYCLE,2016-04-19,2016,April,Tuesday,19,110,14,2016-04-22,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24129,18223,GO-20179011884,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,0,2017-08-08,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24130,11909,GO-20161309573,CARELESS DRIVING- HTA,2016-07-25,2016,July,Monday,25,207,23,2016-07-26,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24131,18255,GO-20191228393,THEFT UNDER - BICYCLE,2019-06-28,2019,June,Friday,28,179,19,2019-07-02,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24132,13484,GO-20199014227,THEFT UNDER,2019-05-05,2019,May,Sunday,5,125,12,2019-05-07,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24133,18285,GO-20209020988,THEFT UNDER,2020-08-16,2020,August,Sunday,16,229,2,2020-08-22,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24134,13523,GO-20191767265,THEFT UNDER,2019-09-13,2019,September,Friday,13,256,15,2019-09-14,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24135,24652,GO-20142890505,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,18,2014-09-11,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24136,18293,GO-20209023075,THEFT UNDER,2020-09-12,2020,September,Saturday,12,256,2,2020-09-12,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24137,18294,GO-20209023075,THEFT UNDER,2020-09-12,2020,September,Saturday,12,256,2,2020-09-12,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24138,18295,GO-20209023075,THEFT UNDER,2020-09-12,2020,September,Saturday,12,256,2,2020-09-12,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24139,18335,GO-20149003711,THEFT UNDER,2014-05-30,2014,May,Friday,30,150,0,2014-05-31,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24140,18347,GO-20142493630,THEFT UNDER,2014-07-13,2014,July,Sunday,13,194,23,2014-07-14,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24141,18386,GO-2015452947,THEFT UNDER,2015-03-17,2015,March,Tuesday,17,76,18,2015-03-17,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24142,18464,GO-20159008274,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,16,2015-10-06,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24143,21505,GO-20171353969,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,0,2017-08-01,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24144,21506,GO-20171485126,B&E,2017-08-14,2017,August,Monday,14,226,20,2017-08-17,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24145,21525,GO-20189014355,THEFT UNDER,2018-05-07,2018,May,Monday,7,127,19,2018-05-09,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24146,21539,GO-20199019993,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,16,2019-06-25,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24147,21540,GO-20199019993,THEFT UNDER - BICYCLE,2019-06-24,2019,June,Monday,24,175,16,2019-06-25,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24148,21546,GO-20199028531,THEFT UNDER - BICYCLE,2019-09-02,2019,September,Monday,2,245,0,2019-09-02,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24149,21560,GO-20201203997,THEFT UNDER - BICYCLE,2020-06-26,2020,June,Friday,26,178,22,2020-06-30,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24150,21990,GO-20202148043,B&E,2020-11-11,2020,November,Wednesday,11,316,12,2020-11-12,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24151,24661,GO-20143057626,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,0,2014-10-07,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24152,24590,GO-20141474673,THEFT UNDER,2014-01-31,2014,January,Friday,31,31,15,2014-02-05,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24153,15072,GO-20149006349,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,3,2014-08-27,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24154,11535,GO-20161038443,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,20,2016-06-14,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24155,24662,GO-20143057626,THEFT UNDER,2014-10-07,2014,October,Tuesday,7,280,0,2014-10-07,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24156,25191,GO-2016877046,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,13,2016-05-21,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24157,25271,GO-20161712929,THEFT UNDER - BICYCLE,2016-09-26,2016,September,Monday,26,270,13,2016-09-26,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24158,25331,GO-20189024705,THEFT UNDER - BICYCLE,2018-07-31,2018,July,Tuesday,31,212,16,2018-07-31,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24159,25332,GO-20189026734,THEFT UNDER - BICYCLE,2018-08-16,2018,August,Thursday,16,228,21,2018-08-17,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24160,25334,GO-20189028088,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,0,2018-08-27,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24161,25346,GO-20199023781,THEFT UNDER,2019-06-20,2019,June,Thursday,20,171,3,2019-07-26,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24162,25357,GO-20191694085,THEFT UNDER - BICYCLE,2019-09-04,2019,September,Wednesday,4,247,15,2019-09-06,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24163,25372,GO-20209016734,THEFT UNDER,2020-07-03,2020,July,Friday,3,185,9,2020-07-03,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24164,237,GO-2017677454,PROPERTY - RECOVERED,2017-04-18,2017,April,Tuesday,18,108,2,2017-04-18,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24165,1004,GO-20171346509,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,22,2017-07-27,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24166,1058,GO-20179011762,THEFT UNDER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,15,2017-08-05,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24167,1534,GO-20171734226,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,10,2017-09-24,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24168,1651,GO-20171857722,THEFT UNDER - BICYCLE,2017-10-01,2017,October,Sunday,1,274,0,2017-10-13,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24169,1677,GO-20179017454,THEFT UNDER,2017-10-17,2017,October,Tuesday,17,290,17,2017-10-17,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24170,2115,GO-2018553677,B&E,2018-03-09,2018,March,Friday,9,68,8,2018-03-27,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24171,2171,GO-2018697880,THEFT OF EBIKE UNDER $5000,2018-04-10,2018,April,Tuesday,10,100,11,2018-04-19,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24172,2196,GO-20189012711,THEFT UNDER - BICYCLE,2018-04-23,2018,April,Monday,23,113,14,2018-04-24,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24173,2325,GO-20189015162,THEFT UNDER - BICYCLE,2018-04-15,2018,April,Sunday,15,105,18,2018-05-16,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24174,2533,GO-20189018329,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,19,2018-06-12,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24175,2991,GO-20181046421,THEFT OVER,2018-06-09,2018,June,Saturday,9,160,3,2018-06-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24176,3583,GO-20181812898,B&E,2018-09-19,2018,September,Wednesday,19,262,9,2018-10-01,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24177,3584,GO-20181812898,B&E,2018-09-19,2018,September,Wednesday,19,262,9,2018-10-01,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24178,3175,GO-20189026068,THEFT UNDER,2018-08-10,2018,August,Friday,10,222,7,2018-08-12,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24179,3585,GO-20181812898,B&E,2018-09-19,2018,September,Wednesday,19,262,9,2018-10-01,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24180,3797,GO-20182013667,B&E,2018-10-31,2018,October,Wednesday,31,304,20,2018-11-01,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24181,5232,GO-20199028732,THEFT UNDER,2019-08-27,2019,August,Tuesday,27,239,8,2019-09-04,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24182,6075,GO-20209011409,B&E,2020-04-12,2020,April,Sunday,12,103,22,2020-04-13,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24183,6099,GO-20209011901,THEFT UNDER,2020-04-24,2020,April,Friday,24,115,19,2020-04-24,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24184,6315,GO-20201054624,THEFT UNDER,2020-06-08,2020,June,Monday,8,160,2,2020-06-08,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24185,7161,GO-20201635472,THEFT UNDER - BICYCLE,2020-08-29,2020,August,Saturday,29,242,2,2020-09-03,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24186,8864,GO-20149006768,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,9,2014-09-10,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24187,7491,GO-20201479095,THEFT UNDER - BICYCLE,2020-08-07,2020,August,Friday,7,220,2,2020-08-10,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24188,7492,GO-20201479095,THEFT UNDER - BICYCLE,2020-08-07,2020,August,Friday,7,220,2,2020-08-10,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24189,7538,GO-20209027549,B&E,2020-10-24,2020,October,Saturday,24,298,22,2020-10-25,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24190,7548,GO-20209027714,THEFT UNDER,2020-10-25,2020,October,Sunday,25,299,1,2020-10-26,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24191,7630,GO-20202135591,THEFT UNDER - BICYCLE,2020-11-09,2020,November,Monday,9,314,13,2020-11-10,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24192,7645,GO-20209029996,THEFT UNDER,2020-11-18,2020,November,Wednesday,18,323,21,2020-11-18,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24193,7652,GO-20209030300,THEFT UNDER,2020-11-15,2020,November,Sunday,15,320,11,2020-11-22,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24194,7786,GO-20141746457,THEFT UNDER,2014-03-21,2014,March,Friday,21,80,9,2014-03-22,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24195,8376,GO-20149004847,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,21,2014-07-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24196,8377,GO-20149004847,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,21,2014-07-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24197,8619,GO-20142687246,THEFT UNDER,2014-08-12,2014,August,Tuesday,12,224,13,2014-08-12,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24198,9115,GO-20143102933,PROPERTY - FOUND,2014-10-14,2014,October,Tuesday,14,287,15,2014-10-14,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24199,9116,GO-20143102933,PROPERTY - FOUND,2014-10-14,2014,October,Tuesday,14,287,15,2014-10-14,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24200,9136,GO-20143220683,THEFT UNDER,2014-10-28,2014,October,Tuesday,28,301,20,2014-11-01,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24201,9137,GO-20143220683,THEFT UNDER,2014-10-28,2014,October,Tuesday,28,301,20,2014-11-01,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24202,9165,GO-20143271178,THEFT UNDER,2014-11-08,2014,November,Saturday,8,312,21,2014-11-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24203,9166,GO-20143271178,THEFT UNDER,2014-11-08,2014,November,Saturday,8,312,21,2014-11-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24204,9537,GO-2015736225,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,21,2015-05-03,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24205,9640,GO-2015861915,B&E,2015-05-10,2015,May,Sunday,10,130,0,2015-05-23,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24206,9912,GO-20151102682,B&E,2015-06-30,2015,June,Tuesday,30,181,0,2015-06-30,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24207,9975,GO-20159004347,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,23,2015-07-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24208,10035,GO-20159004640,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,20,2015-07-16,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24209,12731,GO-20161975678,THEFT OF EBIKE UNDER $5000,2016-11-06,2016,November,Sunday,6,311,7,2016-11-06,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24210,14863,GO-20199024178,THEFT UNDER,2019-07-05,2019,July,Friday,5,186,22,2019-07-28,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24211,14889,GO-20201564720,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,7,2020-08-20,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24212,15331,GO-20142485900,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,17,2014-07-13,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24213,15345,GO-20149005645,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,2,2014-08-05,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24214,15367,GO-20143080742,PROPERTY - FOUND,2014-10-09,2014,October,Thursday,9,282,0,2014-10-10,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24215,15381,GO-20143305299,THEFT UNDER,2014-11-12,2014,November,Wednesday,12,316,12,2014-11-15,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24216,15395,GO-2015736225,THEFT UNDER,2015-05-03,2015,May,Sunday,3,123,21,2015-05-03,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24217,15433,GO-20151288348,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,21,2015-07-27,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24218,20866,GO-20142268363,THEFT UNDER,2014-06-10,2014,June,Tuesday,10,161,22,2014-06-11,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24219,15507,GO-2016962728,THEFT UNDER - BICYCLE,2016-06-01,2016,June,Wednesday,1,153,20,2016-06-03,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24220,15528,GO-20161302463,THEFT UNDER,2016-07-20,2016,July,Wednesday,20,202,12,2016-07-24,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24221,15637,GO-20189021923,THEFT UNDER,2018-07-05,2018,July,Thursday,5,186,21,2018-07-11,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24222,18320,GO-20141877361,THEFT UNDER,2013-12-01,2013,December,Sunday,1,335,9,2014-04-12,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24223,18355,GO-20149005420,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,18,2014-07-28,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24224,18356,GO-20149005420,THEFT UNDER,2014-07-28,2014,July,Monday,28,209,18,2014-07-28,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24225,18387,GO-20159001415,THEFT UNDER,2015-03-17,2015,March,Tuesday,17,76,15,2015-03-19,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24226,2990,GO-20189024117,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,17,2018-07-27,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24227,18415,GO-2015965206,THEFT UNDER,2015-05-06,2015,May,Wednesday,6,126,14,2015-06-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24228,21379,GO-20169005921,THEFT UNDER - BICYCLE,2016-06-14,2016,June,Tuesday,14,166,12,2016-06-17,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24229,21524,GO-2018832636,THEFT UNDER - BICYCLE,2018-05-08,2018,May,Tuesday,8,128,9,2018-05-08,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24230,21792,GO-20141799234,THEFT UNDER,2014-03-25,2014,March,Tuesday,25,84,7,2014-03-31,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24231,21808,GO-20142524469,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,22,2014-07-18,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24232,21919,GO-20159006491,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,18,2015-08-29,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24233,24409,GO-20209028065,THEFT FROM MOTOR VEHICLE UNDER,2020-10-26,2020,October,Monday,26,300,1,2020-10-28,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24234,3011,GO-20181387628,THEFT UNDER - BICYCLE,2018-07-27,2018,July,Friday,27,208,8,2018-07-29,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24235,24658,GO-20149007354,THEFT UNDER,2014-09-04,2014,September,Thursday,4,247,14,2014-10-02,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24236,24692,GO-2015672294,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,17,2015-04-23,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24237,24696,GO-2015760857,ROBBERY - SWARMING,2015-05-07,2015,May,Thursday,7,127,16,2015-05-07,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24238,25117,GO-20189022673,THEFT UNDER - BICYCLE,2018-07-16,2018,July,Monday,16,197,18,2018-07-16,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24239,25233,GO-20161350898,THREAT - PERSON,2016-07-21,2016,July,Thursday,21,203,12,2016-08-01,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24240,23286,GO-20199021492,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,19,2019-07-08,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24241,25340,GO-2019848139,THEFT OF EBIKE UNDER $5000,2019-05-09,2019,May,Thursday,9,129,23,2019-05-10,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24242,18273,GO-20209018368,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,11,2020-07-23,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24243,25354,GO-20199027785,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,22,2019-08-26,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24244,25355,GO-20199027785,THEFT UNDER,2019-08-17,2019,August,Saturday,17,229,22,2019-08-26,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24245,25365,GO-20199038406,THEFT UNDER,2019-11-20,2019,November,Wednesday,20,324,21,2019-11-22,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24246,3325,GO-20189028028,THEFT UNDER - BICYCLE,2018-08-26,2018,August,Sunday,26,238,14,2018-08-26,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24247,12237,GO-20169009754,THEFT UNDER,2016-08-31,2016,August,Wednesday,31,244,2,2016-08-31,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24248,15471,GO-20152003074,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,23,2015-11-22,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24249,15472,GO-20152003074,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,23,2015-11-22,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24250,15473,GO-20152003074,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,23,2015-11-22,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24251,15474,GO-20152003074,THEFT UNDER,2015-11-21,2015,November,Saturday,21,325,23,2015-11-22,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24252,18444,GO-20151414258,THEFT UNDER,2015-08-17,2015,August,Monday,17,229,13,2015-08-17,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24253,21535,GO-20199015730,THEFT UNDER,2019-05-20,2019,May,Monday,20,140,10,2019-05-21,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24254,24597,GO-20142129186,THEFT UNDER,2014-05-20,2014,May,Tuesday,20,140,22,2014-05-22,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)}",Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -24255,1430,GO-20179014951,THEFT UNDER - BICYCLE,2017-09-17,2017,September,Sunday,17,260,0,2017-09-17,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24256,1523,GO-20179015762,THEFT UNDER - BICYCLE,2017-09-25,2017,September,Monday,25,268,14,2017-09-25,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24257,2919,GO-20181337194,THEFT UNDER - BICYCLE,2018-07-09,2018,July,Monday,9,190,16,2018-07-22,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24258,2955,GO-20189023830,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,7,2018-07-25,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24259,3181,GO-20181490604,THEFT OF EBIKE UNDER $5000,2018-08-09,2018,August,Thursday,9,221,10,2018-08-13,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24260,5750,GO-20199040161,THEFT UNDER,2019-12-06,2019,December,Friday,6,340,10,2019-12-08,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24261,6431,GO-20201144648,THEFT UNDER,2020-06-21,2020,June,Sunday,21,173,20,2020-06-21,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24262,6940,GO-20209019948,THEFT UNDER,2020-08-11,2020,August,Tuesday,11,224,6,2020-08-11,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24263,7009,GO-20201558842,THEFT UNDER - BICYCLE,2020-08-13,2020,August,Thursday,13,226,5,2020-08-19,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24264,7526,GO-20209027339,THEFT UNDER,2020-10-20,2020,October,Tuesday,20,294,2,2020-10-22,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24265,7762,GO-20141545179,THEFT UNDER,2014-02-16,2014,February,Sunday,16,47,20,2014-02-17,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24266,8611,GO-20142663641,THEFT UNDER,2014-07-11,2014,July,Friday,11,192,18,2014-08-08,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24267,15083,GO-2015788277,THEFT UNDER,2015-05-08,2015,May,Friday,8,128,18,2015-05-11,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24268,9111,GO-20149007794,THEFT UNDER,2014-10-23,2014,October,Thursday,23,296,18,2014-10-24,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24269,9900,GO-20151089835,B&E,2015-06-24,2015,June,Wednesday,24,175,21,2015-06-28,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24270,10127,GO-20151284469,THEFT UNDER,2015-07-23,2015,July,Thursday,23,204,16,2015-07-27,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24271,10289,GO-20151408714,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,13,2015-08-16,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24272,10517,GO-20151634310,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,16,2015-09-21,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24273,10913,GO-20169000229,THEFT UNDER,2016-01-05,2016,January,Tuesday,5,5,18,2016-01-07,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24274,10921,GO-20169000340,THEFT UNDER,2016-01-08,2016,January,Friday,8,8,18,2016-01-10,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24275,11904,GO-20169007723,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,9,2016-07-25,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24276,14876,GO-20209003065,THEFT UNDER,2020-01-22,2020,January,Wednesday,22,22,8,2020-01-26,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24277,11536,GO-20161038443,THEFT UNDER,2016-06-14,2016,June,Tuesday,14,166,20,2016-06-14,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24278,14902,GO-20209024624,THEFT UNDER,2020-09-26,2020,September,Saturday,26,270,15,2020-09-26,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24279,15521,GO-20161270704,THEFT UNDER,2016-07-19,2016,July,Tuesday,19,201,9,2016-07-20,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24280,15578,GO-20162088295,THEFT OF EBIKE UNDER $5000,2016-11-23,2016,November,Wednesday,23,328,20,2016-11-25,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24281,15624,GO-20179013756,THEFT UNDER - BICYCLE,2017-08-30,2017,August,Wednesday,30,242,18,2017-08-31,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24282,15636,GO-20189020900,THEFT UNDER - BICYCLE,2018-06-29,2018,June,Friday,29,180,17,2018-07-02,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24283,18218,GO-20179008343,THEFT UNDER - BICYCLE,2017-06-18,2017,June,Sunday,18,169,10,2017-06-18,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24284,18224,GO-20179015481,THEFT UNDER - BICYCLE,2017-09-18,2017,September,Monday,18,261,12,2017-09-22,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24285,18225,GO-20179020719,THEFT UNDER - BICYCLE,2017-11-25,2017,November,Saturday,25,329,2,2017-11-27,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24286,13573,GO-20201461862,THEFT UNDER,2020-06-01,2020,June,Monday,1,153,9,2020-08-05,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24287,24678,GO-20143499160,THEFT UNDER,2014-12-15,2014,December,Monday,15,349,1,2014-12-16,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24288,18233,GO-20189015231,THEFT UNDER - BICYCLE,2018-05-16,2018,May,Wednesday,16,136,16,2018-05-16,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24289,18245,GO-20182052108,THEFT UNDER - BICYCLE,2018-11-05,2018,November,Monday,5,309,17,2018-11-07,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24290,18246,GO-201922001,THEFT UNDER,2018-06-01,2018,June,Friday,1,152,16,2019-01-04,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24291,18405,GO-2015848383,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,12,2015-05-21,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24292,18502,GO-20169006027,THEFT UNDER - BICYCLE,2016-06-19,2016,June,Sunday,19,171,17,2016-06-19,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24293,21504,GO-20179010806,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,12,2017-07-22,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24294,21509,GO-20179015701,THEFT UNDER - BICYCLE,2017-08-29,2017,August,Tuesday,29,241,7,2017-09-25,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24295,21510,GO-20179015993,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,18,2017-09-28,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24296,21528,GO-20189022760,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,12,2018-07-17,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24297,21543,GO-20199024804,THEFT UNDER,2019-07-29,2019,July,Monday,29,210,9,2019-08-02,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24298,21547,GO-20199028621,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,0,2019-09-03,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24299,21567,GO-20201355583,POSSESSION PROPERTY OBC UNDER,2020-07-18,2020,July,Saturday,18,200,16,2020-07-21,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24300,21568,GO-20201355583,POSSESSION PROPERTY OBC UNDER,2020-07-18,2020,July,Saturday,18,200,16,2020-07-21,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24301,21801,GO-20142447595,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,8,2014-07-07,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24302,21830,GO-20142882390,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,8,2014-09-10,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24303,21831,GO-20142882390,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,8,2014-09-10,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24304,25329,GO-20189024126,THEFT UNDER - BICYCLE,2018-07-13,2018,July,Friday,13,194,17,2018-07-27,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24305,25330,GO-20189024135,THEFT UNDER - BICYCLE,2018-07-01,2018,July,Sunday,1,182,10,2018-07-27,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24306,25342,GO-20199020419,THEFT UNDER,2019-06-23,2019,June,Sunday,23,174,16,2019-06-28,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24307,25351,GO-20199027643,THEFT UNDER,2019-08-22,2019,August,Thursday,22,234,16,2019-08-25,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24308,25353,GO-20199027677,THEFT UNDER,2019-07-23,2019,July,Tuesday,23,204,2,2019-08-26,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24309,25364,GO-20192166808,THEFT UNDER,2019-11-08,2019,November,Friday,8,312,10,2019-11-09,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24310,25371,GO-20209015875,THEFT UNDER,2020-06-20,2020,June,Saturday,20,172,18,2020-06-22,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)}",Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -24311,947,GO-20179010794,THEFT UNDER - BICYCLE,2017-07-22,2017,July,Saturday,22,203,4,2017-07-22,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24312,2471,GO-20181022087,THEFT UNDER,2018-06-04,2018,June,Monday,4,155,5,2018-06-06,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24313,2472,GO-20181022087,THEFT UNDER,2018-06-04,2018,June,Monday,4,155,5,2018-06-06,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24314,2489,GO-20189017742,THEFT UNDER,2018-06-06,2018,June,Wednesday,6,157,9,2018-06-07,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24315,3187,GO-20189026198,THEFT UNDER,2018-08-10,2018,August,Friday,10,222,21,2018-08-13,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24316,3571,GO-20189032259,THEFT UNDER - BICYCLE,2018-09-27,2018,September,Thursday,27,270,9,2018-09-28,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24317,4748,GO-20199021890,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,18,2019-07-11,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24318,6153,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03,2020,May,Sunday,3,124,21,2020-05-05,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24319,6154,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03,2020,May,Sunday,3,124,21,2020-05-05,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24320,6748,GO-20209018617,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,5,2020-07-26,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24321,6919,GO-20209019796,THEFT UNDER,2020-08-08,2020,August,Saturday,8,221,22,2020-08-10,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24322,7220,GO-20209022793,THEFT UNDER,2020-08-23,2020,August,Sunday,23,236,17,2020-09-09,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24323,7270,GO-20209023525,THEFT UNDER,2020-09-16,2020,September,Wednesday,16,260,9,2020-09-17,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24324,7387,GO-20209024926,THEFT UNDER,2020-09-28,2020,September,Monday,28,272,17,2020-09-29,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24325,9802,GO-20159003586,THEFT UNDER,2015-06-11,2015,June,Thursday,11,162,18,2015-06-13,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24326,9999,GO-20159004484,THEFT FROM MOTOR VEHICLE UNDER,2015-07-11,2015,July,Saturday,11,192,22,2015-07-13,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24327,10184,GO-20159005395,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,13,2015-08-06,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24328,10185,GO-20159005395,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,13,2015-08-06,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24329,10452,GO-20159007081,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,16,2015-09-12,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24330,11147,GO-20142252919,B&E,2014-05-23,2014,May,Friday,23,143,19,2014-06-09,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24331,14893,GO-20201660494,THEFT UNDER,2020-09-02,2020,September,Wednesday,2,246,11,2020-09-02,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24332,15070,GO-20149006349,THEFT UNDER,2014-08-14,2014,August,Thursday,14,226,3,2014-08-27,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24333,21401,GO-20161363083,THEFT UNDER - BICYCLE,2016-07-24,2016,July,Sunday,24,206,13,2016-08-03,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24334,1162,GO-20171481928,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,19,2017-08-16,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24335,23525,GO-2018916273,THEFT UNDER - BICYCLE,2018-05-21,2018,May,Monday,21,141,17,2018-05-21,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24336,21450,GO-20169013946,THEFT UNDER,2016-11-28,2016,November,Monday,28,333,18,2016-11-28,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24337,24743,GO-20151487905,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,18,2015-08-29,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24338,1780,GO-20179018703,THEFT UNDER,2017-11-01,2017,November,Wednesday,1,305,7,2017-11-01,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24339,13669,GO-20171004111,THEFT UNDER - BICYCLE,2017-06-06,2017,June,Tuesday,6,157,9,2017-06-06,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24340,23552,GO-20189021977,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,21,2018-07-11,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24341,21511,GO-20179016103,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,12,2017-09-29,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24342,21519,GO-20189005793,THEFT UNDER - BICYCLE,2018-02-23,2018,February,Friday,23,54,2,2018-02-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24343,21520,GO-20189005793,THEFT UNDER - BICYCLE,2018-02-23,2018,February,Friday,23,54,2,2018-02-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24344,21521,GO-20189005793,THEFT UNDER - BICYCLE,2018-02-23,2018,February,Friday,23,54,2,2018-02-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24345,21522,GO-2018355547,B&E,2018-02-24,2018,February,Saturday,24,55,22,2018-02-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24346,21531,GO-20189041448,THEFT UNDER - BICYCLE,2018-12-09,2018,December,Sunday,9,343,15,2018-12-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24347,21564,GO-20201306023,THEFT UNDER - BICYCLE,2020-05-01,2020,May,Friday,1,122,0,2020-07-14,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24348,21789,GO-20149000137,THEFT UNDER,2014-01-03,2014,January,Friday,3,3,8,2014-01-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24349,21839,GO-20143110100,THEFT UNDER,2014-10-15,2014,October,Wednesday,15,288,20,2014-10-15,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24350,21840,GO-20149007660,THEFT UNDER,2014-10-17,2014,October,Friday,17,290,23,2014-10-18,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24351,21851,GO-2015574654,B&E,2015-04-06,2015,April,Monday,6,96,0,2015-04-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24352,21923,GO-20151596050,B&E,2015-09-01,2015,September,Tuesday,1,244,0,2015-09-15,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24353,21927,GO-20151700490,THEFT UNDER,2015-09-23,2015,September,Wednesday,23,266,3,2015-10-02,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24354,21928,GO-20151724523,THEFT UNDER,2015-10-05,2015,October,Monday,5,278,21,2015-10-06,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24355,21931,GO-20159008289,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,6,2015-10-07,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24356,21951,GO-2016527664,THEFT UNDER - BICYCLE,2016-03-27,2016,March,Sunday,27,87,22,2016-03-28,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24357,21962,GO-20169004461,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,12,2016-05-12,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24358,21976,GO-20209023190,B&E,2020-09-14,2020,September,Monday,14,258,1,2020-09-14,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24359,24397,GO-20201480161,B&E,2020-08-08,2020,August,Saturday,8,221,9,2020-08-08,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24360,24398,GO-20201480161,B&E,2020-08-08,2020,August,Saturday,8,221,9,2020-08-08,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24361,24408,GO-20209027309,THEFT UNDER,2020-10-19,2020,October,Monday,19,293,23,2020-10-22,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24362,24686,GO-2015551780,B&E,2015-04-02,2015,April,Thursday,2,92,16,2015-04-03,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24363,24687,GO-2015551780,B&E,2015-04-02,2015,April,Thursday,2,92,16,2015-04-03,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24364,15097,GO-20151236434,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,16,2015-07-20,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24365,24699,GO-20159003034,THEFT UNDER,2015-05-23,2015,May,Saturday,23,143,17,2015-05-23,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24366,24732,GO-20159005351,THEFT UNDER,2015-08-05,2015,August,Wednesday,5,217,3,2015-08-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24367,24749,GO-20159006761,THEFT UNDER,2015-08-30,2015,August,Sunday,30,242,19,2015-09-04,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24368,25249,GO-20161507945,B&E,2016-08-22,2016,August,Monday,22,235,7,2016-08-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24369,11664,GO-20169006519,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,18,2016-06-29,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24370,25255,GO-20169009975,THEFT UNDER,2016-09-05,2016,September,Monday,5,249,4,2016-09-05,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24371,25321,GO-20179019032,THEFT UNDER - BICYCLE,2017-11-02,2017,November,Thursday,2,306,21,2017-11-06,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24372,25326,GO-20189020518,THEFT UNDER,2018-06-27,2018,June,Wednesday,27,178,18,2018-06-27,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24373,25333,GO-20181570057,THEFT UNDER,2018-08-20,2018,August,Monday,20,232,18,2018-08-25,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24374,25361,GO-20191957994,THEFT OF EBIKE UNDER $5000,2019-10-08,2019,October,Tuesday,8,281,23,2019-10-10,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24375,25378,GO-20209018780,THEFT UNDER,2016-07-28,2016,July,Thursday,28,210,13,2020-07-28,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)}",Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -24376,4,GO-20169014546,THEFT UNDER - BICYCLE,2016-11-01,2016,November,Tuesday,1,306,12,2016-12-12,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24377,526,GO-2017986407,THEFT UNDER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,11,2017-06-03,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24378,527,GO-2017986407,THEFT UNDER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,11,2017-06-03,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24379,528,GO-2017986749,THEFT UNDER - BICYCLE,2017-05-21,2017,May,Sunday,21,141,2,2017-06-03,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24380,1012,GO-20179011344,THEFT UNDER - BICYCLE,2017-07-30,2017,July,Sunday,30,211,11,2017-07-30,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24381,1015,GO-20171376656,THEFT UNDER,2017-07-27,2017,July,Thursday,27,208,9,2017-07-31,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24382,1024,GO-20179011422,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,17,2017-07-31,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24383,1025,GO-20179011422,THEFT UNDER - BICYCLE,2017-07-31,2017,July,Monday,31,212,17,2017-07-31,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24384,1254,GO-20179013458,THEFT UNDER,2017-08-27,2017,August,Sunday,27,239,11,2017-08-27,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24385,1424,GO-20179014934,THEFT UNDER - BICYCLE,2017-09-15,2017,September,Friday,15,258,0,2017-09-16,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24386,1565,GO-20171785906,THEFT UNDER - BICYCLE,2017-09-27,2017,September,Wednesday,27,270,18,2017-10-02,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24387,2449,GO-20189017282,THEFT UNDER - BICYCLE,2018-06-04,2018,June,Monday,4,155,19,2018-06-04,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24388,2963,GO-20189023962,THEFT UNDER,2018-07-26,2018,July,Thursday,26,207,3,2018-07-26,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24389,3426,GO-20189029619,THEFT UNDER - BICYCLE,2018-09-07,2018,September,Friday,7,250,21,2018-09-08,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24390,4539,GO-20199019185,THEFT UNDER - BICYCLE,2019-06-19,2019,June,Wednesday,19,170,6,2019-06-19,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24391,5400,GO-20199031454,THEFT UNDER - BICYCLE,2019-06-27,2019,June,Thursday,27,178,21,2019-09-25,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24392,6411,GO-20209015546,THEFT UNDER,2020-06-17,2020,June,Wednesday,17,169,3,2020-06-17,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24393,6818,GO-20201424192,THEFT UNDER - BICYCLE,2020-07-23,2020,July,Thursday,23,205,22,2020-07-31,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24394,6879,GO-20201467382,THEFT UNDER - BICYCLE,2020-08-01,2020,August,Saturday,1,214,21,2020-08-06,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24395,7445,GO-20209026147,THEFT FROM MOTOR VEHICLE UNDER,2020-10-11,2020,October,Sunday,11,285,8,2020-10-11,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24396,7827,GO-20141871876,THEFT UNDER,2014-04-11,2014,April,Friday,11,101,0,2014-04-11,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24397,7876,GO-20141992869,THEFT UNDER,2014-04-30,2014,April,Wednesday,30,120,20,2014-05-01,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24398,8138,GO-20149003996,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,20,2014-06-11,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24399,8293,GO-20142442769,THEFT UNDER,2014-07-06,2014,July,Sunday,6,187,2,2014-07-06,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24400,8327,GO-20142464104,ROBBERY - OTHER,2014-07-09,2014,July,Wednesday,9,190,16,2014-07-09,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24401,8495,GO-20142543704,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,10,2014-07-25,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24402,8595,GO-20142673124,ROBBERY - MUGGING,2014-08-09,2014,August,Saturday,9,221,1,2014-08-10,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24403,8617,GO-20149005714,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,20,2014-08-07,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24404,8851,GO-20142888521,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,14,2014-09-11,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24405,9112,GO-20143172009,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,9,2014-10-25,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24406,9246,GO-20159000017,THEFT UNDER,2015-01-02,2015,January,Friday,2,2,9,2015-01-02,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24407,9251,GO-20159000107,THEFT UNDER,2015-01-06,2015,January,Tuesday,6,6,15,2015-01-07,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24408,9330,GO-2015451871,THEFT UNDER,2015-03-17,2015,March,Tuesday,17,76,15,2015-03-17,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24409,9352,GO-20159001535,THEFT UNDER,2015-03-23,2015,March,Monday,23,82,1,2015-03-25,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24410,9567,GO-20159002664,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,21,2015-05-13,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24411,9909,GO-20151099635,THEFT UNDER,2015-06-29,2015,June,Monday,29,180,1,2015-06-30,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24412,9969,GO-20151165342,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,20,2015-07-10,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24413,10294,GO-20159005960,THEFT UNDER,2014-08-01,2014,August,Friday,1,213,0,2015-08-18,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24414,10355,GO-20151508954,ROBBERY - MUGGING,2015-09-01,2015,September,Tuesday,1,244,16,2015-09-01,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24415,10391,GO-20159006671,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,21,2015-09-02,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24416,10553,GO-20159007794,THEFT UNDER,2015-09-26,2015,September,Saturday,26,269,15,2015-09-26,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24417,10695,GO-20151848755,B&E,2015-10-27,2015,October,Tuesday,27,300,17,2015-10-27,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24418,10696,GO-20151848755,B&E,2015-10-27,2015,October,Tuesday,27,300,17,2015-10-27,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24419,10792,GO-20159009928,THEFT UNDER,2015-11-18,2015,November,Wednesday,18,322,20,2015-11-19,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24420,11468,GO-2016997795,PROPERTY - FOUND,2016-06-08,2016,June,Wednesday,8,160,17,2016-06-08,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24421,11629,GO-20169006299,THEFT UNDER,2016-06-22,2016,June,Wednesday,22,174,23,2016-06-24,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24422,11655,GO-20169006472,THEFT UNDER - BICYCLE,2016-06-28,2016,June,Tuesday,28,180,6,2016-06-28,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24423,11701,GO-20169006710,THEFT UNDER,2015-09-01,2015,September,Tuesday,1,244,15,2016-07-04,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24424,12501,GO-20169011292,THEFT UNDER - BICYCLE,2016-09-27,2016,September,Tuesday,27,271,23,2016-09-29,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24425,12520,GO-20169011390,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,1,2016-10-01,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24426,12603,GO-20169011390,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,1,2016-10-01,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24427,14856,GO-20191294339,THEFT UNDER - BICYCLE,2019-07-08,2019,July,Monday,8,189,17,2019-07-11,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24428,14866,GO-20199028659,THEFT UNDER,2019-09-03,2019,September,Tuesday,3,246,19,2019-09-03,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24429,14870,GO-20199032050,THEFT UNDER - BICYCLE,2019-09-25,2019,September,Wednesday,25,268,7,2019-09-30,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24430,14871,GO-20199035646,THEFT UNDER,2019-10-28,2019,October,Monday,28,301,3,2019-10-29,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24431,14882,GO-20201243716,PROPERTY - FOUND,2020-07-05,2020,July,Sunday,5,187,21,2020-07-05,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24432,14905,GO-20209026120,THEFT UNDER,2020-10-11,2020,October,Sunday,11,285,0,2020-10-11,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24433,15342,GO-20142603589,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,23,2014-07-30,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24434,15370,GO-20143109892,THEFT UNDER,2014-10-13,2014,October,Monday,13,286,10,2014-10-15,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24435,15447,GO-20159006770,THEFT UNDER,2015-09-04,2015,September,Friday,4,247,1,2015-09-05,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24436,15466,GO-20151944837,THEFT UNDER,2015-10-23,2015,October,Friday,23,296,11,2015-11-12,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24437,15469,GO-20159010029,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,12,2015-11-22,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24438,15470,GO-20159010029,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,12,2015-11-22,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24439,15479,GO-201687963,THEFT UNDER,2016-01-15,2016,January,Friday,15,15,12,2016-01-15,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24440,15519,GO-20161177848,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,9,2016-07-06,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)}",Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -24441,2046,GO-20189005988,THEFT UNDER - BICYCLE,2018-02-24,2018,February,Saturday,24,55,1,2018-02-25,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24442,2912,GO-20189023388,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,10,2018-07-22,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24443,2913,GO-20189023388,THEFT UNDER - BICYCLE,2018-07-22,2018,July,Sunday,22,203,10,2018-07-22,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24444,3836,GO-20189037631,THEFT UNDER,2018-11-09,2018,November,Friday,9,313,8,2018-11-09,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24445,25184,GO-2016682372,THEFT UNDER - BICYCLE,2016-04-21,2016,April,Thursday,21,112,15,2016-04-21,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24446,3965,GO-20189043566,THEFT FROM MOTOR VEHICLE UNDER,2018-12-24,2018,December,Monday,24,358,0,2018-12-28,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24447,4152,GO-20199011397,THEFT UNDER,2019-04-10,2019,April,Wednesday,10,100,10,2019-04-10,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24448,25234,GO-20161405071,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,23,2016-08-09,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24449,13716,GO-20171699194,THEFT UNDER - BICYCLE,2017-09-14,2017,September,Thursday,14,257,19,2017-09-19,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24450,4256,GO-2019838050,THEFT UNDER,2019-05-06,2019,May,Monday,6,126,19,2019-05-08,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24451,12411,GO-20169010794,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,10,2016-09-20,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24452,13722,GO-20171889537,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,14,2017-10-18,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24453,25253,GO-20161551000,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,13,2016-09-01,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24454,4257,GO-2019838050,THEFT UNDER,2019-05-06,2019,May,Monday,6,126,19,2019-05-08,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24455,23571,GO-20189024785,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,16,2018-08-01,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24456,15140,GO-20161615629,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,15,2016-09-11,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24457,13753,GO-2018859036,B&E,2018-05-11,2018,May,Friday,11,131,20,2018-05-12,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24458,13899,GO-20151418390,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,0,2015-08-18,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24459,15143,GO-20161676102,PROPERTY - FOUND,2016-09-20,2016,September,Tuesday,20,264,20,2016-09-20,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24460,25312,GO-20179010751,THEFT UNDER - BICYCLE,2017-07-20,2017,July,Thursday,20,201,20,2017-07-21,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24461,14414,GO-20149006907,THEFT UNDER,2014-09-14,2014,September,Sunday,14,257,17,2014-09-14,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24462,18547,GO-20159005387,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,9,2015-08-06,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24463,13549,GO-20209017049,THEFT UNDER,2020-06-07,2020,June,Sunday,7,159,23,2020-07-07,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24464,865,GO-20179010234,THEFT UNDER - BICYCLE,2017-07-10,2017,July,Monday,10,191,16,2017-07-14,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24465,4258,GO-2019838050,THEFT UNDER,2019-05-06,2019,May,Monday,6,126,19,2019-05-08,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24466,13556,GO-20209017549,THEFT UNDER,2020-07-12,2020,July,Sunday,12,194,10,2020-07-14,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24467,16783,GO-20191311149,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,16,2019-07-13,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24468,6275,GO-20201000583,THEFT UNDER - BICYCLE,2020-05-31,2020,May,Sunday,31,152,3,2020-05-31,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24469,1273,GO-20179013719,THEFT UNDER,2017-08-30,2017,August,Wednesday,30,242,18,2017-08-30,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24470,13593,GO-20209027619,THEFT UNDER - BICYCLE,2020-10-24,2020,October,Saturday,24,298,22,2020-10-25,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24471,18548,GO-20159005387,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,9,2015-08-06,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24472,25350,GO-20191579710,THEFT UNDER - BICYCLE,2019-08-15,2019,August,Thursday,15,227,14,2019-08-19,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)}",Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -24473,16949,GO-20179010158,THEFT UNDER,2017-07-13,2017,July,Thursday,13,194,8,2017-07-13,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24474,6714,GO-20209018342,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,23,2020-07-23,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24475,1331,GO-20171621993,THEFT UNDER - BICYCLE,2017-08-20,2017,August,Sunday,20,232,19,2017-09-07,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24476,2648,GO-20189019672,THEFT UNDER - BICYCLE,2018-06-21,2018,June,Thursday,21,172,13,2018-06-21,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24477,4222,GO-20199004628,THEFT UNDER - BICYCLE,2019-02-05,2019,February,Tuesday,5,36,20,2019-02-06,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24478,5416,GO-20199031658,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,18,2019-09-26,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24479,6350,GO-20209015055,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,22,2020-06-10,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24480,6351,GO-20209015055,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,22,2020-06-10,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24481,6951,GO-20209020117,THEFT FROM MOTOR VEHICLE UNDER,2020-08-10,2020,August,Monday,10,223,23,2020-08-14,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24482,7432,GO-20201913937,B&E,2020-10-08,2020,October,Thursday,8,282,19,2020-10-09,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24483,7433,GO-20209025947,THEFT UNDER,2020-10-09,2020,October,Friday,9,283,15,2020-10-09,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24484,8217,GO-20142331486,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,12,2014-06-20,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24485,8717,GO-20142624088,THEFT UNDER - SHOPLIFTING,2014-08-02,2014,August,Saturday,2,214,19,2014-08-02,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24486,10290,GO-20151433902,THEFT UNDER,2015-08-16,2015,August,Sunday,16,228,14,2015-08-20,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24487,13580,GO-20201601229,THEFT OF MOTOR VEHICLE,2020-08-25,2020,August,Tuesday,25,238,11,2020-08-25,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24488,13581,GO-20201600562,THEFT UNDER,2020-08-19,2020,August,Wednesday,19,232,18,2020-08-25,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24489,13859,GO-20199004628,THEFT UNDER - BICYCLE,2019-02-05,2019,February,Tuesday,5,36,20,2019-02-06,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24490,13934,GO-20151953228,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,22,2015-11-13,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24491,16796,GO-20199031658,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,18,2019-09-26,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24492,16817,GO-20209014978,THEFT UNDER,2020-06-09,2020,June,Tuesday,9,161,8,2020-06-09,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24493,16844,GO-20209024236,THEFT UNDER,2020-09-22,2020,September,Tuesday,22,266,10,2020-09-23,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24494,16977,GO-20179014237,THEFT UNDER - BICYCLE,2017-09-06,2017,September,Wednesday,6,249,14,2017-09-08,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24495,17022,GO-20189011843,THEFT UNDER,2018-04-14,2018,April,Saturday,14,104,20,2018-04-16,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24496,17067,GO-20189021628,THEFT UNDER,2018-07-08,2018,July,Sunday,8,189,18,2018-07-09,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24497,20125,GO-20209024384,THEFT UNDER,2020-09-11,2020,September,Friday,11,255,18,2020-09-24,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24498,20132,GO-20209028114,THEFT UNDER,2020-10-17,2020,October,Saturday,17,291,11,2020-10-29,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24499,20203,GO-20179010229,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,16,2017-07-14,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24500,20475,GO-2016339533,THEFT UNDER,2016-02-26,2016,February,Friday,26,57,12,2016-02-26,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24501,23231,GO-20182190597,B&E,2018-10-08,2018,October,Monday,8,281,19,2018-11-28,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24502,23244,GO-20199010932,THEFT UNDER,2019-04-04,2019,April,Thursday,4,94,14,2019-04-07,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24503,23292,GO-20191484293,THEFT UNDER - BICYCLE,2019-07-27,2019,July,Saturday,27,208,21,2019-08-06,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24504,23353,GO-20209021888,THEFT UNDER,2020-08-21,2020,August,Friday,21,234,1,2020-08-31,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24505,23365,GO-20202058434,THEFT UNDER,2020-10-21,2020,October,Wednesday,21,295,23,2020-10-30,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24506,10346,GO-20159006347,THEFT UNDER,2015-08-24,2015,August,Monday,24,236,11,2015-08-24,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24507,23722,GO-20169008136,THEFT UNDER - BICYCLE,2016-08-03,2016,August,Wednesday,3,216,12,2016-08-03,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)}",Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -24508,504,GO-2017954713,THEFT UNDER - BICYCLE,2017-05-30,2017,May,Tuesday,30,150,11,2017-05-30,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24509,571,GO-20171032895,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,8,2017-06-10,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24510,2601,GO-20189019072,THEFT UNDER - BICYCLE,2018-06-17,2018,June,Sunday,17,168,1,2018-06-17,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24511,2999,GO-20189024222,THEFT UNDER - BICYCLE,2018-07-25,2018,July,Wednesday,25,206,12,2018-07-27,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24512,3109,GO-20189025478,THEFT UNDER,2018-08-07,2018,August,Tuesday,7,219,19,2018-08-07,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24513,3389,GO-20189029091,THEFT UNDER - BICYCLE,2018-09-04,2018,September,Tuesday,4,247,13,2018-09-04,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24514,4015,GO-20199002943,THEFT UNDER,2019-01-22,2019,January,Tuesday,22,22,1,2019-01-22,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24515,4616,GO-20191170214,THEFT UNDER - BICYCLE,2019-06-21,2019,June,Friday,21,172,12,2019-06-27,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24516,5984,GO-2020589399,B&E,2020-03-23,2020,March,Monday,23,83,3,2020-03-23,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24517,6644,GO-20201328102,B&E,2020-07-13,2020,July,Monday,13,195,0,2020-07-17,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24518,6775,GO-20209018751,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,18,2020-07-28,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24519,6776,GO-20209018751,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,18,2020-07-28,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24520,6777,GO-20209018751,THEFT UNDER - BICYCLE,2020-07-27,2020,July,Monday,27,209,18,2020-07-28,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24521,7747,GO-20141367591,B&E,2014-01-18,2014,January,Saturday,18,18,0,2014-01-18,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24522,7997,GO-20149003659,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,19,2014-05-28,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24523,8061,GO-20142239753,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,15,2014-06-07,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24524,8204,GO-20142346316,ROBBERY WITH WEAPON,2014-06-22,2014,June,Sunday,22,173,19,2014-06-22,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24525,8225,GO-20142346204,B&E,2014-06-20,2014,June,Friday,20,171,18,2014-06-22,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24526,8361,GO-20149004787,THEFT UNDER,2014-07-07,2014,July,Monday,7,188,16,2014-07-07,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24527,8578,GO-20149005580,THEFT UNDER,2014-08-03,2014,August,Sunday,3,215,15,2014-08-03,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24528,8652,GO-20142700059,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,20,2014-08-14,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24529,9057,GO-20143104178,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,19,2014-10-14,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24530,9058,GO-20143104178,THEFT UNDER,2014-10-14,2014,October,Tuesday,14,287,19,2014-10-14,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24531,9191,GO-20143317126,THEFT UNDER,2014-11-16,2014,November,Sunday,16,320,23,2014-11-17,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24532,9244,GO-20143575272,THEFT UNDER,2014-11-06,2014,November,Thursday,6,310,12,2014-12-30,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24533,9375,GO-2015576595,THEFT UNDER - SHOPLIFTING,2015-04-07,2015,April,Tuesday,7,97,20,2015-04-07,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24534,9474,GO-2015688534,THEFT UNDER,2015-04-26,2015,April,Sunday,26,116,3,2015-04-26,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24535,9740,GO-2015947558,B&E,2015-05-05,2015,May,Tuesday,5,125,23,2015-06-06,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24536,9953,GO-20159004233,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,19,2015-07-06,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24537,10066,GO-20151236241,THEFT UNDER,2015-07-17,2015,July,Friday,17,198,15,2015-07-20,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24538,10067,GO-20151236482,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,15,2015-07-20,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24539,11171,GO-2016678464,B&E,2016-04-06,2016,April,Wednesday,6,97,17,2016-04-21,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24540,11441,GO-2016974707,THEFT FROM MOTOR VEHICLE UNDER,2016-06-04,2016,June,Saturday,4,156,22,2016-06-05,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24541,11442,GO-2016974707,THEFT FROM MOTOR VEHICLE UNDER,2016-06-04,2016,June,Saturday,4,156,22,2016-06-05,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24542,11650,GO-20169006444,THEFT UNDER - BICYCLE,2016-06-06,2016,June,Monday,6,158,22,2016-06-27,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24543,12631,GO-20169012177,THEFT UNDER,2016-10-12,2016,October,Wednesday,12,286,23,2016-10-17,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24544,13551,GO-20209017099,FRAUD UNDER,2020-06-14,2020,June,Sunday,14,166,4,2020-07-08,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24545,13552,GO-20209017099,FRAUD UNDER,2020-06-14,2020,June,Sunday,14,166,4,2020-07-08,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24546,13553,GO-20209017099,FRAUD UNDER,2020-06-14,2020,June,Sunday,14,166,4,2020-07-08,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24547,13896,GO-20159005451,THEFT UNDER,2015-08-04,2015,August,Tuesday,4,216,10,2015-08-07,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24548,13965,GO-2016791423,B&E,2016-05-07,2016,May,Saturday,7,128,10,2016-05-08,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24549,14026,GO-20161863182,THEFT OF EBIKE UNDER $5000,2016-10-18,2016,October,Tuesday,18,292,23,2016-10-19,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24550,16744,GO-2019757188,B&E,2019-04-10,2019,April,Wednesday,10,100,14,2019-04-27,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24551,16774,GO-20199020181,THEFT UNDER,2019-06-25,2019,June,Tuesday,25,176,9,2019-06-26,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24552,16778,GO-20199021278,THEFT UNDER,2019-07-06,2019,July,Saturday,6,187,19,2019-07-06,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24553,16849,GO-20201978160,THEFT UNDER - BICYCLE,2020-10-14,2020,October,Wednesday,14,288,17,2020-10-18,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24554,16854,GO-20209028629,THEFT UNDER - BICYCLE,2020-11-04,2020,November,Wednesday,4,309,7,2020-11-04,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24555,16937,GO-20171156432,THEFT OF EBIKE UNDER $5000,2017-06-14,2017,June,Wednesday,14,165,20,2017-06-28,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24556,16964,GO-20171463551,B&E,2017-08-14,2017,August,Monday,14,226,4,2017-08-14,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24557,16969,GO-20179012959,THEFT UNDER,2017-07-31,2017,July,Monday,31,212,14,2017-08-21,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24558,17027,GO-2018863058,B&E,2018-05-12,2018,May,Saturday,12,132,18,2018-05-13,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24559,17030,GO-20189015347,THEFT UNDER - SHOPLIFTING,2018-05-05,2018,May,Saturday,5,125,13,2018-05-17,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24560,17161,GO-20151464513,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,16,2015-08-27,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24561,17468,GO-20142706793,THEFT UNDER,2014-08-13,2014,August,Wednesday,13,225,21,2014-08-15,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24562,20285,GO-201849489,THEFT FROM MOTOR VEHICLE UNDER,2018-01-09,2018,January,Tuesday,9,9,0,2018-01-09,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24563,20558,GO-20162155757,THEFT UNDER - BICYCLE,2016-12-03,2016,December,Saturday,3,338,8,2016-12-05,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24564,20874,GO-20142350524,THEFT OVER,2014-06-22,2014,June,Sunday,22,173,11,2014-06-23,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24565,20881,GO-20149004672,THEFT UNDER,2013-06-30,2013,June,Sunday,30,181,22,2014-07-03,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24566,20883,GO-20142498638,THEFT UNDER,2014-07-14,2014,July,Monday,14,195,21,2014-07-14,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)}",Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -24567,20083,GO-2020594592,THEFT UNDER - BICYCLE,2020-03-21,2020,March,Saturday,21,81,23,2020-03-24,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24568,192,GO-2017557023,THEFT OF EBIKE UNDER $5000,2017-03-28,2017,March,Tuesday,28,87,19,2017-03-29,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24569,18572,GO-20161610311,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,18,2016-09-10,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24570,13770,GO-20189019035,THEFT UNDER - BICYCLE,2018-06-16,2018,June,Saturday,16,167,11,2018-06-17,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24571,20218,GO-20171442875,B&E,2017-08-04,2017,August,Friday,4,216,18,2017-08-10,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24572,7337,GO-20201804320,THEFT UNDER - BICYCLE,2020-09-14,2020,September,Monday,14,258,3,2020-09-24,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24573,18573,GO-20161610311,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,18,2016-09-10,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24574,18608,GO-20179010627,THEFT UNDER,2017-07-18,2017,July,Tuesday,18,199,21,2017-07-19,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24575,18653,GO-20189027797,THEFT UNDER,2018-08-23,2018,August,Thursday,23,235,20,2018-08-24,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24576,21565,GO-20209017585,THEFT UNDER,2020-07-14,2020,July,Tuesday,14,196,17,2020-07-14,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24577,21603,GO-20143180763,THEFT UNDER,2014-10-25,2014,October,Saturday,25,298,18,2014-10-26,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24578,21657,GO-20161871669,THEFT UNDER,2016-10-20,2016,October,Thursday,20,294,19,2016-10-21,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24579,21664,GO-2017672730,THEFT OF MOTOR VEHICLE,2017-04-16,2017,April,Sunday,16,106,22,2017-04-17,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24580,21729,GO-2019904841,PROPERTY - FOUND,2019-05-18,2019,May,Saturday,18,138,12,2019-05-18,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24581,21730,GO-2019904841,PROPERTY - FOUND,2019-05-18,2019,May,Saturday,18,138,12,2019-05-18,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24582,21731,GO-2019904841,PROPERTY - FOUND,2019-05-18,2019,May,Saturday,18,138,12,2019-05-18,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24583,21732,GO-2019904841,PROPERTY - FOUND,2019-05-18,2019,May,Saturday,18,138,12,2019-05-18,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24584,21733,GO-2019904841,PROPERTY - FOUND,2019-05-18,2019,May,Saturday,18,138,12,2019-05-18,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24585,21734,GO-2019904841,PROPERTY - FOUND,2019-05-18,2019,May,Saturday,18,138,12,2019-05-18,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24586,21735,GO-2019904841,PROPERTY - FOUND,2019-05-18,2019,May,Saturday,18,138,12,2019-05-18,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24587,21736,GO-20199016934,THEFT UNDER,2019-05-30,2019,May,Thursday,30,150,10,2019-05-30,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24588,21774,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03,2020,May,Sunday,3,124,21,2020-05-05,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24589,21775,GO-2020842072,THEFT UNDER - BICYCLE,2020-05-03,2020,May,Sunday,3,124,21,2020-05-05,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24590,24995,GO-20142527558,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,16,2014-07-19,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24591,24996,GO-20142527558,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,16,2014-07-19,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24592,25011,GO-20159002529,THEFT UNDER,2015-05-02,2015,May,Saturday,2,122,19,2015-05-07,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24593,25050,GO-20161179669,THEFT UNDER - BICYCLE,2016-07-05,2016,July,Tuesday,5,187,20,2016-07-06,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)}",Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -24594,1095,GO-20171416787,THEFT OVER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-06,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24595,1096,GO-20171416787,THEFT OVER - BICYCLE,2017-08-05,2017,August,Saturday,5,217,23,2017-08-06,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24596,1689,GO-20179017568,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,20,2017-10-19,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24597,1690,GO-20179017568,THEFT UNDER - BICYCLE,2017-10-18,2017,October,Wednesday,18,291,20,2017-10-19,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24598,1724,GO-20171912376,THEFT UNDER - BICYCLE,2017-10-19,2017,October,Thursday,19,292,21,2017-10-22,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24599,1990,GO-2018118627,THEFT UNDER - BICYCLE,2018-01-18,2018,January,Thursday,18,18,6,2018-01-19,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24600,4359,GO-20199016507,THEFT UNDER,2019-05-27,2019,May,Monday,27,147,11,2019-05-27,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24601,8167,GO-20142301504,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,20,2014-06-16,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24602,8210,GO-20142330880,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,12,2014-06-20,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24603,8448,GO-20142513448,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,23,2014-07-17,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24604,9641,GO-20159003028,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,0,2015-05-22,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24605,11541,GO-2016978673,THEFT UNDER - BICYCLE,2016-06-05,2016,June,Sunday,5,157,21,2016-06-05,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24606,12222,GO-20161533872,THEFT OF EBIKE UNDER $5000,2016-08-29,2016,August,Monday,29,242,16,2016-08-29,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24607,15482,GO-2016263922,THEFT UNDER,2016-02-12,2016,February,Friday,12,43,9,2016-02-14,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24608,15635,GO-20189019998,THEFT UNDER - BICYCLE,2018-06-20,2018,June,Wednesday,20,171,1,2018-06-24,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24609,18275,GO-20209018741,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,19,2020-07-27,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24610,25362,GO-20192045085,THEFT UNDER - BICYCLE,2019-10-09,2019,October,Wednesday,9,282,18,2019-10-23,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)}",Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -24611,216,GO-2017652451,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,10,2017-04-14,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24612,366,GO-2017832969,THEFT UNDER - BICYCLE,2017-05-10,2017,May,Wednesday,10,130,0,2017-05-12,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24613,521,GO-20179007406,THEFT UNDER - BICYCLE,2017-06-02,2017,June,Friday,2,153,12,2017-06-02,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24614,7887,GO-20149003198,THEFT UNDER,2014-05-06,2014,May,Tuesday,6,126,8,2014-05-07,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24615,9549,GO-2015760722,THEFT UNDER,2015-04-28,2015,April,Tuesday,28,118,15,2015-05-07,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24616,10154,GO-20151323285,THEFT UNDER,2015-08-02,2015,August,Sunday,2,214,8,2015-08-02,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24617,10584,GO-20151712854,THEFT UNDER,2015-07-19,2015,July,Sunday,19,200,20,2015-10-04,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24618,14055,GO-20179005163,THEFT UNDER,2017-04-24,2017,April,Monday,24,114,10,2017-04-24,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24619,16922,GO-20179007879,THEFT UNDER - BICYCLE,2017-06-10,2017,June,Saturday,10,161,9,2017-06-11,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24620,20244,GO-20179015807,THEFT UNDER - BICYCLE,2017-09-24,2017,September,Sunday,24,267,11,2017-09-26,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24621,20466,GO-20159011212,THEFT UNDER,2015-12-22,2015,December,Tuesday,22,356,22,2015-12-23,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24622,20551,GO-20161995795,THEFT UNDER - BICYCLE,2016-11-09,2016,November,Wednesday,9,314,18,2016-11-09,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)}",Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -24623,709,GO-20171135329,B&E,2017-06-24,2017,June,Saturday,24,175,12,2017-06-25,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24624,846,GO-20171241303,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,12,2017-07-11,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24625,847,GO-20171241303,THEFT UNDER - BICYCLE,2017-07-03,2017,July,Monday,3,184,12,2017-07-11,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24626,1231,GO-20179013165,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,18,2017-08-23,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24627,1274,GO-20179013732,THEFT UNDER,2017-08-30,2017,August,Wednesday,30,242,18,2017-08-30,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24628,1284,GO-20179013822,THEFT UNDER - BICYCLE,2017-09-01,2017,September,Friday,1,244,22,2017-09-02,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24629,2517,GO-20181034413,THEFT UNDER - BICYCLE,2018-06-07,2018,June,Thursday,7,158,18,2018-06-07,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24630,2888,GO-20189022875,THEFT UNDER,2018-07-17,2018,July,Tuesday,17,198,17,2018-07-18,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24631,3083,GO-20189024785,THEFT UNDER - BICYCLE,2018-08-01,2018,August,Wednesday,1,213,16,2018-08-01,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24632,3527,GO-20189031353,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,18,2018-09-21,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24633,3887,GO-20189039263,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,9,2018-11-21,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24634,4695,GO-20191272179,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,14,2019-07-08,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24635,4946,GO-20191451743,B&E,2019-08-01,2019,August,Thursday,1,213,17,2019-08-01,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24636,5429,GO-20199031910,THEFT UNDER,2019-09-28,2019,September,Saturday,28,271,8,2019-09-28,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24637,5852,GO-20209003126,THEFT UNDER,2020-01-26,2020,January,Sunday,26,26,17,2020-01-26,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24638,7266,GO-20209023524,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,21,2020-09-17,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24639,7267,GO-20209023524,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,21,2020-09-17,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24640,7268,GO-20209023524,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,21,2020-09-17,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24641,7269,GO-20209023524,THEFT UNDER,2020-08-27,2020,August,Thursday,27,240,21,2020-09-17,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24642,8179,GO-20142310935,THEFT UNDER,2014-06-11,2014,June,Wednesday,11,162,18,2014-06-17,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24643,9557,GO-2015721289,THEFT UNDER,2015-05-01,2015,May,Friday,1,121,12,2015-05-01,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24644,11168,GO-2015641040,PROPERTY - FOUND,2015-04-18,2015,April,Saturday,18,108,11,2015-04-18,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24645,11432,GO-20169005272,THEFT UNDER,2016-06-02,2016,June,Thursday,2,154,9,2016-06-02,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24646,11445,GO-20169005272,THEFT UNDER,2016-06-02,2016,June,Thursday,2,154,9,2016-06-02,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24647,11489,GO-20169005573,THEFT UNDER,2016-06-09,2016,June,Thursday,9,161,22,2016-06-10,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24648,11992,GO-20169008200,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,16,2016-08-04,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24649,11993,GO-20169008200,THEFT UNDER - BICYCLE,2016-07-27,2016,July,Wednesday,27,209,16,2016-08-04,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24650,13508,GO-20199021757,THEFT UNDER,2019-07-10,2019,July,Wednesday,10,191,16,2019-07-10,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24651,13524,GO-20191812711,B&E,2019-09-17,2019,September,Tuesday,17,260,12,2019-09-20,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24652,13525,GO-20191812711,B&E,2019-09-17,2019,September,Tuesday,17,260,12,2019-09-20,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24653,13526,GO-20191812711,B&E,2019-09-17,2019,September,Tuesday,17,260,12,2019-09-20,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24654,13589,GO-20209024677,THEFT UNDER,2020-09-18,2020,September,Friday,18,262,11,2020-09-27,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24655,13777,GO-20189020080,THEFT UNDER - BICYCLE,2018-06-22,2018,June,Friday,22,173,12,2018-06-24,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24656,13778,GO-20189020716,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,10,2018-06-29,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24657,13825,GO-20189031353,THEFT UNDER - BICYCLE,2018-09-20,2018,September,Thursday,20,263,18,2018-09-21,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24658,13921,GO-20151708559,THEFT UNDER,2015-09-30,2015,September,Wednesday,30,273,18,2015-10-03,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24659,13992,GO-20169008138,THEFT UNDER - BICYCLE,2016-07-29,2016,July,Friday,29,211,20,2016-08-03,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24660,16936,GO-20171166225,B&E,2017-06-29,2017,June,Thursday,29,180,19,2017-06-29,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24661,17289,GO-20169013451,THEFT UNDER,2016-11-15,2016,November,Tuesday,15,320,9,2016-11-15,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24662,17313,GO-20179005153,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,20,2017-04-23,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24663,20213,GO-20179011244,THEFT UNDER - BICYCLE,2017-07-27,2017,July,Thursday,27,208,19,2017-07-28,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)}",L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -24664,7957,GO-20142151692,THEFT UNDER,2014-05-25,2014,May,Sunday,25,145,11,2014-05-25,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24665,8010,GO-20142129798,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,14,2014-05-22,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24666,8011,GO-20142129798,THEFT UNDER,2014-05-22,2014,May,Thursday,22,142,14,2014-05-22,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24667,20242,GO-20171709120,THEFT UNDER - BICYCLE,2017-09-20,2017,September,Wednesday,20,263,16,2017-09-24,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24668,8371,GO-20142507257,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,22,2014-07-16,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24669,8467,GO-20142547092,B&E,2014-07-20,2014,July,Sunday,20,201,19,2014-07-22,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24670,20303,GO-2018954293,B&E,2018-05-24,2018,May,Thursday,24,144,12,2018-05-27,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24671,8535,GO-20142582735,THEFT UNDER,2014-07-26,2014,July,Saturday,26,207,14,2014-07-27,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24672,246,GO-20179004952,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,12,2017-04-19,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24673,13881,GO-20151086931,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,21,2015-06-28,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24674,20485,GO-2016706440,THEFT UNDER,2016-04-25,2016,April,Monday,25,116,16,2016-04-25,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24675,13886,GO-20151213116,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,18,2015-07-17,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24676,794,GO-20171219252,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,22,2017-07-07,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24677,20510,GO-20161234262,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,18,2016-07-14,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24678,8760,GO-20149006348,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,8,2014-08-27,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24679,13898,GO-20151370922,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,23,2015-08-10,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24680,2872,GO-20181313611,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,0,2018-07-18,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24681,23364,GO-20202053138,THEFT UNDER - BICYCLE,2020-10-20,2020,October,Tuesday,20,294,8,2020-10-29,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24682,8766,GO-20149006380,THEFT UNDER,2014-08-27,2014,August,Wednesday,27,239,11,2014-08-28,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24683,13928,GO-20151863737,THEFT UNDER,2015-10-20,2015,October,Tuesday,20,293,19,2015-10-30,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24684,3132,GO-20189025662,THEFT UNDER,2018-08-08,2018,August,Wednesday,8,220,6,2018-08-09,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24685,23438,GO-20179009820,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,19,2017-07-10,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24686,9055,GO-20143102788,B&E,2014-10-11,2014,October,Saturday,11,284,20,2014-10-14,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24687,13956,GO-2016597176,THEFT UNDER,2016-03-29,2016,March,Tuesday,29,89,18,2016-04-08,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24688,13990,GO-20161339012,B&E W'INTENT,2016-07-29,2016,July,Friday,29,211,21,2016-07-30,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24689,14007,GO-20161575536,B&E,2016-09-05,2016,September,Monday,5,249,0,2016-09-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24690,14008,GO-20161575536,B&E,2016-09-05,2016,September,Monday,5,249,0,2016-09-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24691,14011,GO-20169010227,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,2,2016-09-10,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24692,14347,GO-20141692241,THEFT UNDER,2014-03-08,2014,March,Saturday,8,67,19,2014-03-13,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24693,14375,GO-20149004331,THEFT UNDER,2014-06-20,2014,June,Friday,20,171,20,2014-06-22,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24694,16830,GO-20209018685,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,14,2020-07-27,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24695,16831,GO-20209018952,THEFT UNDER - BICYCLE,2020-07-30,2020,July,Thursday,30,212,6,2020-07-30,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24696,16940,GO-20171199395,B&E,2017-07-04,2017,July,Tuesday,4,185,22,2017-07-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24697,16941,GO-20171199395,B&E,2017-07-04,2017,July,Tuesday,4,185,22,2017-07-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24698,16982,GO-20171715294,THEFT OF EBIKE UNDER $5000,2017-09-18,2017,September,Monday,18,261,15,2017-09-21,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24699,17143,GO-20151082042,THEFT UNDER,2015-06-27,2015,June,Saturday,27,178,11,2015-06-27,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24700,17159,GO-20159005894,B&E,2015-08-17,2015,August,Monday,17,229,2,2015-08-17,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24701,17213,GO-2016716892,B&E,2016-04-16,2016,April,Saturday,16,107,0,2016-04-27,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24702,17298,GO-2017405095,B&E,2017-02-19,2017,February,Sunday,19,50,0,2017-03-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24703,17299,GO-2017405095,B&E,2017-02-19,2017,February,Sunday,19,50,0,2017-03-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24704,17300,GO-2017405095,B&E,2017-02-19,2017,February,Sunday,19,50,0,2017-03-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24705,17475,GO-20149006345,THEFT UNDER,2014-08-28,2014,August,Thursday,28,240,11,2014-08-28,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24706,17498,GO-20143403490,THEFT UNDER,2014-11-15,2014,November,Saturday,15,319,22,2014-12-01,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24707,17504,GO-2015332955,B&E,2015-02-25,2015,February,Wednesday,25,56,1,2015-02-25,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24708,17505,GO-2015332955,B&E,2015-02-25,2015,February,Wednesday,25,56,1,2015-02-25,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24709,20087,GO-20209012490,THEFT UNDER,2020-05-01,2020,May,Friday,1,122,19,2020-05-04,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24710,20237,GO-20171625782,B&E,2017-09-07,2017,September,Thursday,7,250,22,2017-09-08,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24711,20246,GO-20179015937,THEFT UNDER,2017-09-26,2017,September,Tuesday,26,269,15,2017-09-27,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24712,20305,GO-2018968329,B&E,2018-05-29,2018,May,Tuesday,29,149,12,2018-05-30,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24713,20419,GO-20159004967,THEFT FROM MOTOR VEHICLE UNDER,2015-07-24,2015,July,Friday,24,205,22,2015-07-25,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24714,20506,GO-20169006740,THEFT UNDER,2016-07-05,2016,July,Tuesday,5,187,11,2016-07-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24715,20517,GO-20169008187,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,6,2016-08-04,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24716,20518,GO-20169008187,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,6,2016-08-04,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24717,20519,GO-20161374708,THEFT UNDER - BICYCLE,2016-08-05,2016,August,Friday,5,218,3,2016-08-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24718,20856,GO-20142014333,B&E,2014-05-02,2014,May,Friday,2,122,18,2014-05-04,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24719,20918,GO-20142901189,THEFT UNDER,2014-09-13,2014,September,Saturday,13,256,10,2014-09-13,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24720,20961,GO-2015659750,THEFT UNDER,2015-04-21,2015,April,Tuesday,21,111,13,2015-04-21,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24721,23203,GO-20189030303,THEFT UNDER - BICYCLE,2018-09-13,2018,September,Thursday,13,256,8,2018-09-13,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24722,23254,GO-20199015511,THEFT UNDER,2019-05-17,2019,May,Friday,17,137,17,2019-05-18,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24723,23340,GO-20209018209,THEFT UNDER,2020-07-21,2020,July,Tuesday,21,203,20,2020-07-22,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24724,23566,GO-20181343749,THEFT UNDER - BICYCLE,2018-07-15,2018,July,Sunday,15,196,12,2018-07-23,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24725,23697,GO-2016933350,THEFT UNDER - BICYCLE,2016-05-30,2016,May,Monday,30,151,10,2016-05-30,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24726,23727,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,12,2016-08-11,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24727,23728,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,12,2016-08-11,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24728,23729,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,12,2016-08-11,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24729,23730,GO-20161415185,THEFT OVER - BICYCLE,2016-07-21,2016,July,Thursday,21,203,12,2016-08-11,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24730,8076,GO-20142236580,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,17,2014-06-06,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24731,693,GO-20171127798,THEFT UNDER,2017-06-23,2017,June,Friday,23,174,17,2017-06-24,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24732,694,GO-20171127798,THEFT UNDER,2017-06-23,2017,June,Friday,23,174,17,2017-06-24,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24733,1230,GO-20179013140,THEFT UNDER - BICYCLE,2017-08-12,2017,August,Saturday,12,224,17,2017-08-23,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24734,1718,GO-20171919540,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,23,2017-10-23,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24735,2667,GO-20189020042,THEFT UNDER - BICYCLE,2018-06-14,2018,June,Thursday,14,165,8,2018-06-24,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24736,4287,GO-20199015304,THEFT UNDER,2019-05-14,2019,May,Tuesday,14,134,19,2019-05-16,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24737,4729,GO-20199021722,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,1,2019-07-10,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24738,5954,GO-2020512353,PROPERTY - FOUND,2020-03-02,2020,March,Monday,2,62,15,2020-03-11,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24739,8112,GO-20142281095,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,15,2014-06-13,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24740,8203,GO-20149004296,THEFT UNDER,2014-06-19,2014,June,Thursday,19,170,8,2014-06-21,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24741,8498,GO-20142569501,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,14,2014-07-25,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24742,9555,GO-20159002549,THEFT UNDER,2015-05-07,2015,May,Thursday,7,127,23,2015-05-08,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24743,10931,GO-201689525,PROPERTY - FOUND,2016-01-15,2016,January,Friday,15,15,1,2016-01-15,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24744,11202,GO-2016711131,PROPERTY - FOUND,2016-04-24,2016,April,Sunday,24,115,17,2016-04-26,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24745,13509,GO-20199022819,THEFT UNDER,2019-07-13,2019,July,Saturday,13,194,21,2019-07-18,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24746,13682,GO-20171128636,THEFT UNDER,2017-06-21,2017,June,Wednesday,21,172,10,2017-06-24,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24747,14053,GO-2017701319,B&E,2017-04-21,2017,April,Friday,21,111,9,2017-04-21,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24748,14430,GO-20143561269,THEFT UNDER,2014-12-27,2014,December,Saturday,27,361,17,2014-12-28,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24749,16821,GO-20209016673,THEFT UNDER,2020-07-02,2020,July,Thursday,2,184,1,2020-07-02,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24750,16822,GO-20209016673,THEFT UNDER,2020-07-02,2020,July,Thursday,2,184,1,2020-07-02,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24751,17251,GO-20169007706,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,6,2016-07-25,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24752,20116,GO-20201583344,THEFT UNDER - BICYCLE,2020-08-22,2020,August,Saturday,22,235,14,2020-08-25,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24753,20459,GO-20151946168,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,8,2015-11-12,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24754,20522,GO-20161487005,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,14,2016-08-22,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24755,20544,GO-20161834413,B&E,2016-10-14,2016,October,Friday,14,288,17,2016-10-15,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24756,20545,GO-20161840791,THEFT UNDER - BICYCLE,2016-10-16,2016,October,Sunday,16,290,5,2016-10-16,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24757,20893,GO-20142569501,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,14,2014-07-25,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24758,23297,GO-20199026173,THEFT UNDER,2019-08-03,2019,August,Saturday,3,215,20,2019-08-14,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24759,23357,GO-20201833853,PROPERTY - FOUND,2020-09-27,2020,September,Sunday,27,271,6,2020-09-27,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24760,23414,GO-2017908606,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,14,2017-05-23,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24761,23431,GO-20171188323,ROBBERY - OTHER,2017-07-02,2017,July,Sunday,2,183,19,2017-07-03,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24762,23479,GO-20179016123,THEFT FROM MOTOR VEHICLE UNDER,2017-08-21,2017,August,Monday,21,233,15,2017-09-29,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24763,23689,GO-20169004133,THEFT UNDER - BICYCLE,2016-04-22,2016,April,Friday,22,113,7,2016-05-04,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)}",Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -24764,763,GO-20179009325,THEFT UNDER - BICYCLE,2017-05-27,2017,May,Saturday,27,147,19,2017-07-03,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24765,802,GO-20171223159,B&E,2017-06-24,2017,June,Saturday,24,175,18,2017-07-08,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24766,2295,GO-2018864087,B&E,2018-05-12,2018,May,Saturday,12,132,14,2018-05-13,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24767,2303,GO-20189014835,THEFT UNDER - BICYCLE,2018-05-07,2018,May,Monday,7,127,10,2018-05-14,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24768,2373,GO-2018904612,THEFT UNDER,2018-05-18,2018,May,Friday,18,138,21,2018-05-19,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24769,2437,GO-2018978710,B&E,2018-05-29,2018,May,Tuesday,29,149,13,2018-05-30,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24770,2438,GO-2018978710,B&E,2018-05-29,2018,May,Tuesday,29,149,13,2018-05-30,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24771,2597,GO-20189019040,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,0,2018-06-17,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24772,2598,GO-20189019040,THEFT UNDER - BICYCLE,2018-06-13,2018,June,Wednesday,13,164,0,2018-06-17,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24773,6655,GO-20209017854,THEFT UNDER,2020-07-13,2020,July,Monday,13,195,23,2020-07-18,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24774,6774,GO-20209018747,THEFT UNDER,2020-07-27,2020,July,Monday,27,209,21,2020-07-28,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24775,7898,GO-20149003251,THEFT UNDER,2014-05-08,2014,May,Thursday,8,128,7,2014-05-09,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24776,9198,GO-20143341073,THEFT UNDER,2014-11-20,2014,November,Thursday,20,324,11,2014-11-21,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24777,10382,GO-20151531361,B&E W'INTENT,2015-09-04,2015,September,Friday,4,247,22,2015-09-05,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24778,11723,GO-20169006788,THEFT UNDER,2016-07-05,2016,July,Tuesday,5,187,13,2016-07-05,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24779,11851,GO-20169007451,THEFT UNDER,2016-07-20,2016,July,Wednesday,20,202,6,2016-07-20,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24780,12785,GO-20162051250,THEFT UNDER,2016-11-18,2016,November,Friday,18,323,17,2016-11-18,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24781,18288,GO-20201606746,THEFT UNDER - BICYCLE,2020-08-21,2020,August,Friday,21,234,21,2020-08-26,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24782,18359,GO-20149005772,THEFT FROM MOTOR VEHICLE UNDER,2014-08-12,2014,August,Tuesday,12,224,8,2014-08-13,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24783,21529,GO-20181639863,THEFT UNDER,2018-09-02,2018,September,Sunday,2,245,21,2018-09-04,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24784,21942,GO-2016264289,THEFT UNDER,2016-01-02,2016,January,Saturday,2,2,9,2016-02-13,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24785,21945,GO-20169002179,THEFT UNDER,2016-03-05,2016,March,Saturday,5,65,15,2016-03-10,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24786,25379,GO-20209018839,THEFT UNDER,2020-07-28,2020,July,Tuesday,28,210,8,2020-07-28,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)}",Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -24787,63,GO-20179001166,THEFT UNDER,2016-12-24,2016,December,Saturday,24,359,14,2017-01-25,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24788,1249,GO-20179013389,THEFT UNDER - BICYCLE,2017-08-26,2017,August,Saturday,26,238,3,2017-08-26,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24789,1287,GO-20179013838,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,16,2017-09-01,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24790,3145,GO-20189025816,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,14,2018-08-10,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24791,4414,GO-20191033262,THEFT UNDER - BICYCLE,2019-05-29,2019,May,Wednesday,29,149,17,2019-06-05,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24792,5069,GO-20199026238,THEFT UNDER,2019-08-14,2019,August,Wednesday,14,226,16,2019-08-14,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24793,6161,GO-2020804076,B&E,2020-04-28,2020,April,Tuesday,28,119,16,2020-04-28,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24794,479,GO-2017932698,SUSPICIOUS INCIDENT,2017-05-27,2017,May,Saturday,27,147,3,2017-05-27,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24795,6212,GO-2020936184,B&E,2020-05-20,2020,May,Wednesday,20,141,21,2020-05-21,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24796,6213,GO-2020936184,B&E,2020-05-20,2020,May,Wednesday,20,141,21,2020-05-21,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24797,7147,GO-20209022003,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,16,2020-09-01,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24798,8342,GO-20149004687,THEFT UNDER,2014-06-05,2014,June,Thursday,5,156,19,2014-07-07,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24799,8718,GO-20142772180,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,17,2014-08-25,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24800,9957,GO-20159004236,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,22,2015-07-06,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24801,9970,GO-20159004334,THEFT UNDER,2015-07-08,2015,July,Wednesday,8,189,13,2015-07-08,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24802,18229,GO-20179021241,THEFT UNDER - BICYCLE,2017-12-04,2017,December,Monday,4,338,18,2017-12-04,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24803,10286,GO-20151431628,THEFT UNDER,2015-08-19,2015,August,Wednesday,19,231,15,2015-08-20,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24804,11073,GO-2016506291,ROBBERY - OTHER,2016-03-24,2016,March,Thursday,24,84,18,2016-03-24,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24805,12163,GO-20169009164,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,11,2016-08-21,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24806,12164,GO-20169009164,THEFT UNDER - BICYCLE,2016-08-14,2016,August,Sunday,14,227,11,2016-08-21,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24807,14892,GO-20209021982,FTC PROBATION ORDER,2020-08-12,2020,August,Wednesday,12,225,5,2020-09-01,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24808,15623,GO-20171537853,THEFT UNDER,2017-08-25,2017,August,Friday,25,237,10,2017-08-25,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24809,15631,GO-2018517795,THEFT UNDER - BICYCLE,2018-03-18,2018,March,Sunday,18,77,1,2018-03-22,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24810,20099,GO-20201248961,THEFT UNDER - BICYCLE,2020-07-02,2020,July,Thursday,2,184,4,2020-07-06,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24811,18344,GO-20149004593,THEFT UNDER,2014-06-28,2014,June,Saturday,28,179,11,2014-07-01,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24812,18428,GO-20151196290,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,16,2015-07-14,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24813,21459,GO-2017161434,THEFT UNDER - BICYCLE,2017-01-22,2017,January,Sunday,22,22,20,2017-01-26,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24814,23483,GO-20179016953,THEFT UNDER - BICYCLE,2017-10-10,2017,October,Tuesday,10,283,21,2017-10-11,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24815,25322,GO-2018963563,THEFT UNDER,2018-05-27,2018,May,Sunday,27,147,17,2018-05-28,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)}",Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -24816,86,GO-2017246191,B&E W'INTENT,2017-02-08,2017,February,Wednesday,8,39,19,2017-02-08,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24817,9604,GO-20159002881,THEFT UNDER,2015-05-19,2015,May,Tuesday,19,139,11,2015-05-19,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24818,87,GO-2017246191,B&E W'INTENT,2017-02-08,2017,February,Wednesday,8,39,19,2017-02-08,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24819,983,GO-20171091245,B&E,2017-06-18,2017,June,Sunday,18,169,21,2017-06-19,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24820,984,GO-20171091245,B&E,2017-06-18,2017,June,Sunday,18,169,21,2017-06-19,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24821,985,GO-20171091245,B&E,2017-06-18,2017,June,Sunday,18,169,21,2017-06-19,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24822,1104,GO-20179012046,THEFT UNDER - BICYCLE,2017-08-07,2017,August,Monday,7,219,20,2017-08-09,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24823,1169,GO-20179012605,THEFT UNDER - BICYCLE,2017-08-16,2017,August,Wednesday,16,228,17,2017-08-17,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24824,1652,GO-20171856644,B&E,2017-10-13,2017,October,Friday,13,286,5,2017-10-13,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24825,3076,GO-20189025138,THEFT UNDER,2018-08-04,2018,August,Saturday,4,216,7,2018-08-04,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24826,3091,GO-20189025138,THEFT UNDER,2018-08-04,2018,August,Saturday,4,216,7,2018-08-04,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24827,5567,GO-20199034804,MISCHIEF UNDER,2019-10-21,2019,October,Monday,21,294,0,2019-10-22,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24828,7767,GO-20141427259,B&E,2014-01-28,2014,January,Tuesday,28,28,19,2014-01-28,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24829,7814,GO-20141831633,THEFT UNDER,2014-04-05,2014,April,Saturday,5,95,1,2014-04-05,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24830,7966,GO-20142145155,THEFT UNDER,2014-05-23,2014,May,Friday,23,143,23,2014-05-24,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24831,8113,GO-20142281314,THEFT UNDER,2014-06-13,2014,June,Friday,13,164,0,2014-06-13,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24832,8762,GO-20142781167,THEFT UNDER,2014-08-24,2014,August,Sunday,24,236,21,2014-08-26,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24833,8889,GO-20142919304,B&E,2014-09-12,2014,September,Friday,12,255,20,2014-09-16,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24834,8890,GO-20142919304,B&E,2014-09-12,2014,September,Friday,12,255,20,2014-09-16,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24835,9369,GO-2015563498,B&E,2015-04-05,2015,April,Sunday,5,95,9,2015-04-06,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24836,9428,GO-2015644777,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,18,2015-04-18,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24837,9515,GO-2015662664,THEFT OVER,2015-04-21,2015,April,Tuesday,21,111,12,2015-04-22,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24838,9964,GO-20151163447,THEFT UNDER,2014-07-01,2014,July,Tuesday,1,182,0,2015-07-10,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24839,10164,GO-20151335944,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,21,2015-08-04,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24840,10165,GO-20151335944,THEFT UNDER,2015-08-03,2015,August,Monday,3,215,21,2015-08-04,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24841,10549,GO-20151670482,THEFT UNDER,2015-09-27,2015,September,Sunday,27,270,13,2015-09-27,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24842,10967,GO-2016202872,PROPERTY - FOUND,2016-02-03,2016,February,Wednesday,3,34,10,2016-02-04,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24843,11915,GO-20169007764,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,16,2016-07-26,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24844,12158,GO-20161463208,THEFT OVER,2016-08-15,2016,August,Monday,15,228,22,2016-08-18,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24845,12159,GO-20161463208,THEFT OVER,2016-08-15,2016,August,Monday,15,228,22,2016-08-18,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24846,12160,GO-20161463208,THEFT OVER,2016-08-15,2016,August,Monday,15,228,22,2016-08-18,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24847,12225,GO-20161534836,THEFT UNDER - BICYCLE,2016-08-29,2016,August,Monday,29,242,18,2016-08-29,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24848,14904,GO-20209025593,THEFT UNDER,2020-10-06,2020,October,Tuesday,6,280,13,2020-10-06,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24849,15317,GO-20142141495,THEFT OVER,2013-11-16,2013,November,Saturday,16,320,14,2014-05-24,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24850,18453,GO-20151532038,B&E,2015-09-04,2015,September,Friday,4,247,23,2015-09-05,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24851,15373,GO-20143133695,THEFT UNDER,2014-10-16,2014,October,Thursday,16,289,23,2014-10-19,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24852,18213,GO-20171014870,THEFT UNDER,2017-06-08,2017,June,Thursday,8,159,0,2017-06-08,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24853,18214,GO-20171014870,THEFT UNDER,2017-06-08,2017,June,Thursday,8,159,0,2017-06-08,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24854,18235,GO-20189021698,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,1,2018-07-09,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24855,18238,GO-20189025138,THEFT UNDER,2018-08-04,2018,August,Saturday,4,216,7,2018-08-04,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24856,18243,GO-20189034482,THEFT UNDER - BICYCLE,2018-10-15,2018,October,Monday,15,288,17,2018-10-17,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24857,18396,GO-2015662664,THEFT OVER,2015-04-21,2015,April,Tuesday,21,111,12,2015-04-22,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24858,23590,GO-20181592117,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,15,2018-08-28,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24859,18454,GO-20151532038,B&E,2015-09-04,2015,September,Friday,4,247,23,2015-09-05,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24860,18493,GO-20169005137,THEFT UNDER - BICYCLE,2016-05-28,2016,May,Saturday,28,149,11,2016-05-31,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24861,21416,GO-20161544740,THEFT UNDER - BICYCLE,2016-08-30,2016,August,Tuesday,30,243,6,2016-08-31,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24862,21486,GO-2017937235,THEFT UNDER - BICYCLE,2017-05-27,2017,May,Saturday,27,147,18,2017-05-27,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)}",Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -24863,10104,GO-20151270522,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,14,2015-07-25,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24864,10222,GO-20151372344,THEFT UNDER,2015-08-06,2015,August,Thursday,6,218,16,2015-08-10,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24865,10248,GO-20151397906,THEFT UNDER,2015-08-13,2015,August,Thursday,13,225,21,2015-08-14,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24866,10442,GO-20159007013,THEFT UNDER,2015-09-10,2015,September,Thursday,10,253,22,2015-09-11,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24867,10502,GO-20159007451,THEFT UNDER,2015-09-21,2015,September,Monday,21,264,0,2015-09-21,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24868,10545,GO-20151668705,THEFT UNDER,2015-09-27,2015,September,Sunday,27,270,4,2015-09-27,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24869,11056,GO-2016461125,THEFT UNDER,2016-03-16,2016,March,Wednesday,16,76,14,2016-03-17,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24870,13718,GO-20179016102,THEFT UNDER - BICYCLE,2017-08-23,2017,August,Wednesday,23,235,14,2017-09-29,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24871,14383,GO-20142427330,THEFT UNDER,2014-07-02,2014,July,Wednesday,2,183,12,2014-07-04,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24872,14404,GO-20142741558,THEFT UNDER,2014-08-06,2014,August,Wednesday,6,218,15,2014-08-20,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24873,16724,GO-20182100483,PROPERTY - FOUND,2018-11-10,2018,November,Saturday,10,314,12,2018-11-13,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24874,16730,GO-20182380584,THEFT OF EBIKE UNDER $5000,2018-12-29,2018,December,Saturday,29,363,8,2018-12-29,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24875,16770,GO-20199018833,THEFT UNDER,2019-06-08,2019,June,Saturday,8,159,18,2019-06-16,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24876,16953,GO-20171293903,THEFT OF EBIKE UNDER $5000,2017-07-19,2017,July,Wednesday,19,200,3,2017-07-19,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24877,16981,GO-20171672658,THEFT UNDER,2017-09-14,2017,September,Thursday,14,257,6,2017-09-15,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24878,17107,GO-20189032380,THEFT UNDER,2018-09-29,2018,September,Saturday,29,272,7,2018-09-29,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24879,17168,GO-20159006898,THEFT UNDER,2015-09-08,2015,September,Tuesday,8,251,21,2015-09-09,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24880,17430,GO-20142218764,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,17,2014-06-04,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24881,20056,GO-20199022136,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,8,2019-07-13,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24882,20074,GO-20191919894,THEFT UNDER,2019-10-05,2019,October,Saturday,5,278,8,2019-10-05,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24883,20114,GO-20201572736,THEFT UNDER - BICYCLE,2020-08-14,2020,August,Friday,14,227,19,2020-08-21,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24884,20272,GO-20172048060,THEFT OF EBIKE UNDER $5000,2017-11-12,2017,November,Sunday,12,316,12,2017-11-12,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24885,20291,GO-20189012763,THEFT UNDER - BICYCLE,2018-03-27,2018,March,Tuesday,27,86,12,2018-04-25,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24886,20333,GO-20181314566,THEFT OF EBIKE UNDER $5000,2018-07-18,2018,July,Wednesday,18,199,22,2018-07-18,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24887,20394,GO-20151017773,THEFT UNDER,2015-06-16,2015,June,Tuesday,16,167,17,2015-06-17,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24888,20397,GO-20151061031,PROPERTY - FOUND,2015-06-24,2015,June,Wednesday,24,175,3,2015-06-24,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24889,20458,GO-20151953361,B&E,2015-11-14,2015,November,Saturday,14,318,0,2015-11-14,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24890,20508,GO-20169007209,THEFT UNDER,2016-07-14,2016,July,Thursday,14,196,2,2016-07-14,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24891,20512,GO-20161294711,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,8,2016-07-23,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24892,20892,GO-20149005248,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,18,2014-07-22,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24893,23285,GO-20199021503,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,7,2019-07-08,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24894,23294,GO-20199025565,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,17,2019-08-09,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24895,23295,GO-20191532394,PROPERTY - FOUND,2019-08-12,2019,August,Monday,12,224,21,2019-08-13,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24896,23368,GO-20209029987,THEFT UNDER - BICYCLE,2020-11-18,2020,November,Wednesday,18,323,17,2020-11-18,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24897,23516,GO-20189012821,THEFT UNDER - BICYCLE,2018-04-24,2018,April,Tuesday,24,114,15,2018-04-25,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24898,23540,GO-20181093477,THEFT UNDER,2018-06-14,2018,June,Thursday,14,165,3,2018-06-16,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24899,20065,GO-20191485584,THEFT UNDER - BICYCLE,2019-08-06,2019,August,Tuesday,6,218,6,2019-08-06,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24900,23625,GO-20151181656,PROPERTY - FOUND,2015-07-12,2015,July,Sunday,12,193,19,2015-07-12,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24901,23657,GO-20159008092,THEFT UNDER,2015-10-03,2015,October,Saturday,3,276,0,2015-10-03,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24902,23749,GO-20161602483,THEFT FROM MOTOR VEHICLE UNDER,2016-08-27,2016,August,Saturday,27,240,8,2016-09-09,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)}",Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -24903,191,GO-20179004142,THEFT UNDER,2017-03-10,2017,March,Friday,10,69,11,2017-04-03,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24904,546,GO-20179007604,THEFT UNDER - BICYCLE,2017-04-23,2017,April,Sunday,23,113,21,2017-06-06,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24905,639,GO-20171087724,B&E,2017-06-17,2017,June,Saturday,17,168,19,2017-06-18,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24906,640,GO-20171087724,B&E,2017-06-17,2017,June,Saturday,17,168,19,2017-06-18,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24907,717,GO-20171141239,THEFT OF EBIKE OVER $5000,2017-06-26,2017,June,Monday,26,177,0,2017-06-26,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24908,1051,GO-20171409360,THEFT OF EBIKE UNDER $5000,2017-08-01,2017,August,Tuesday,1,213,5,2017-08-05,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24909,1195,GO-20171484537,THEFT UNDER - BICYCLE,2017-08-14,2017,August,Monday,14,226,15,2017-08-21,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24910,1919,GO-20173131700,THEFT UNDER,2017-12-04,2017,December,Monday,4,338,14,2017-12-04,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24911,2684,GO-20189020297,THEFT UNDER - BICYCLE,2018-06-25,2018,June,Monday,25,176,8,2018-06-26,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24912,3287,GO-20189027479,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,21,2018-08-22,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24913,3516,GO-20189031159,THEFT UNDER,2018-09-18,2018,September,Tuesday,18,261,14,2018-09-19,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24914,3517,GO-20189031193,THEFT UNDER,2018-09-19,2018,September,Wednesday,19,262,8,2018-09-19,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24915,4097,GO-2019484740,THEFT UNDER - BICYCLE,2018-12-01,2018,December,Saturday,1,335,10,2019-03-19,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24916,4355,GO-2019967318,B&E,2019-05-26,2019,May,Sunday,26,146,19,2019-05-27,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24917,4856,GO-20199023501,THEFT UNDER,2019-07-22,2019,July,Monday,22,203,20,2019-07-24,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24918,4955,GO-20199024689,THEFT UNDER,2019-08-01,2019,August,Thursday,1,213,8,2019-08-01,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24919,6048,GO-2020702469,B&E,2020-04-10,2020,April,Friday,10,101,0,2020-04-11,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24920,6049,GO-2020702469,B&E,2020-04-10,2020,April,Friday,10,101,0,2020-04-11,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24921,6082,GO-20209011532,THEFT UNDER,2020-04-19,2020,April,Sunday,19,110,8,2020-04-20,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24922,6758,GO-20209018681,THEFT UNDER,2020-07-23,2020,July,Thursday,23,205,14,2020-07-27,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24923,6829,GO-20201434162,B&E,2020-07-29,2020,July,Wednesday,29,211,13,2020-08-01,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24924,6865,GO-20201434162,B&E,2020-07-29,2020,July,Wednesday,29,211,13,2020-08-01,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24925,7495,GO-20201977639,B&E,2020-10-09,2020,October,Friday,9,283,2,2020-10-18,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24926,8490,GO-20142567426,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,12,2014-07-25,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24927,8616,GO-20149005713,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,8,2014-08-07,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24928,9119,GO-20143189783,THEFT FROM MOTOR VEHICLE UNDER,2014-10-22,2014,October,Wednesday,22,295,18,2014-10-28,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24929,9164,GO-20143271078,THEFT UNDER,2014-11-09,2014,November,Sunday,9,313,20,2014-11-09,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24930,9302,GO-2015332644,THEFT UNDER,2015-02-05,2015,February,Thursday,5,36,11,2015-02-25,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24931,9468,GO-20159002217,THEFT UNDER,2015-04-24,2015,April,Friday,24,114,16,2015-04-24,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24932,9535,GO-20159002491,THEFT UNDER,2015-05-05,2015,May,Tuesday,5,125,10,2015-05-06,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24933,9870,GO-20151066929,THEFT UNDER,2015-06-24,2015,June,Wednesday,24,175,20,2015-06-24,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24934,10683,GO-20151830176,B&E,2015-10-12,2015,October,Monday,12,285,0,2015-10-24,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24935,10684,GO-20151830176,B&E,2015-10-12,2015,October,Monday,12,285,0,2015-10-24,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24936,10816,GO-20159010230,THEFT UNDER,2015-11-25,2015,November,Wednesday,25,329,18,2015-11-26,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24937,10853,GO-20152008066,PROPERTY - FOUND,2015-11-23,2015,November,Monday,23,327,8,2015-11-23,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24938,11364,GO-2016896750,THEFT UNDER - BICYCLE,2016-05-24,2016,May,Tuesday,24,145,20,2016-05-24,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)}",Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -24939,23591,GO-20181592117,THEFT UNDER - BICYCLE,2018-08-28,2018,August,Tuesday,28,240,15,2018-08-28,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24940,23608,GO-2015935925,THEFT UNDER,2015-04-29,2015,April,Wednesday,29,119,15,2015-06-05,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24941,23620,GO-20151138230,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,7,2015-07-06,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24942,23693,GO-2016813632,THEFT UNDER - BICYCLE,2016-05-06,2016,May,Friday,6,127,17,2016-05-12,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24943,23977,GO-2015636557,THEFT UNDER,2015-04-17,2015,April,Friday,17,107,14,2015-04-17,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)}",Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -24944,1372,GO-20171653228,B&E,2017-09-11,2017,September,Monday,11,254,22,2017-09-12,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24945,2397,GO-201895228,PROPERTY - FOUND,2018-05-26,2018,May,Saturday,26,146,22,2018-05-26,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24946,4873,GO-20199023619,THEFT UNDER,2019-07-24,2019,July,Wednesday,24,205,18,2019-07-24,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24947,4952,GO-20191458049,B&E,2019-08-01,2019,August,Thursday,1,213,14,2019-08-02,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24948,4953,GO-20191458049,B&E,2019-08-01,2019,August,Thursday,1,213,14,2019-08-02,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24949,5833,GO-2020100648,THEFT UNDER - BICYCLE,2020-01-13,2020,January,Monday,13,13,21,2020-01-15,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24950,6788,GO-20201412083,B&E,2020-01-02,2020,January,Thursday,2,2,12,2020-07-29,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24951,10212,GO-20159005510,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,23,2015-08-08,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24952,10213,GO-20159005510,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,23,2015-08-08,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24953,10310,GO-20159006060,THEFT UNDER,2015-08-07,2015,August,Friday,7,219,22,2015-08-20,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24954,16990,GO-20171807426,THEFT UNDER - BICYCLE,2017-10-05,2017,October,Thursday,5,278,7,2017-10-05,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24955,17084,GO-20181446364,B&E,2018-08-06,2018,August,Monday,6,218,21,2018-08-07,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24956,23201,GO-20181658483,THEFT OF EBIKE UNDER $5000,2018-09-05,2018,September,Wednesday,5,248,14,2018-09-07,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24957,23312,GO-2020378350,THEFT UNDER - BICYCLE,2020-02-22,2020,February,Saturday,22,53,13,2020-02-22,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24958,23314,GO-20209009932,THEFT UNDER,2020-03-27,2020,March,Friday,27,87,0,2020-03-27,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24959,23501,GO-20179020127,THEFT UNDER,2017-11-12,2017,November,Sunday,12,316,15,2017-11-20,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)}",Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -24960,1629,GO-20179016868,THEFT UNDER,2017-10-10,2017,October,Tuesday,10,283,14,2017-10-10,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24961,1843,GO-20179019653,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,9,2017-11-14,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24962,3401,GO-20189029272,THEFT UNDER - BICYCLE,2018-08-25,2018,August,Saturday,25,237,15,2018-09-05,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24963,3794,GO-20189036340,THEFT UNDER - BICYCLE,2018-10-30,2018,October,Tuesday,30,303,8,2018-10-31,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24964,4167,GO-20199011847,THEFT UNDER,2019-04-13,2019,April,Saturday,13,103,16,2019-04-14,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24965,6261,GO-2020968026,THEFT UNDER - BICYCLE,2020-05-26,2020,May,Tuesday,26,147,19,2020-05-28,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24966,6864,GO-20201455571,THREAT - PERSON,2020-08-04,2020,August,Tuesday,4,217,17,2020-08-04,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24967,7175,GO-20201643792,THEFT UNDER - BICYCLE,2020-08-23,2020,August,Sunday,23,236,23,2020-08-31,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24968,8615,GO-20149005715,THEFT UNDER,2014-08-05,2014,August,Tuesday,5,217,12,2014-08-07,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24969,8671,GO-20149005984,B&E,2014-08-14,2014,August,Thursday,14,226,2,2014-08-15,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24970,9386,GO-2015598890,MISCHIEF UNDER,2015-03-31,2015,March,Tuesday,31,90,12,2015-04-11,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24971,10318,GO-20151471987,THEFT UNDER,2015-08-25,2015,August,Tuesday,25,237,1,2015-08-25,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24972,13927,GO-20159008593,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,10,2015-10-16,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24973,13969,GO-2016899384,THEFT UNDER,2016-05-22,2016,May,Sunday,22,143,1,2016-05-25,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24974,17480,GO-20142901365,THEFT UNDER,2014-09-12,2014,September,Friday,12,255,21,2014-09-13,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24975,20236,GO-20179013817,THEFT UNDER - BICYCLE,2017-08-26,2017,August,Saturday,26,238,19,2017-09-01,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24976,20450,GO-20151851358,THEFT OF MOTOR VEHICLE,2015-10-27,2015,October,Tuesday,27,300,21,2015-10-28,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24977,20848,GO-20141564097,THEFT UNDER,2014-02-20,2014,February,Thursday,20,51,10,2014-02-20,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24978,20889,GO-20149005064,THEFT UNDER,2014-07-15,2014,July,Tuesday,15,196,8,2014-07-17,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24979,23400,GO-20179004717,THEFT UNDER,2016-04-15,2016,April,Friday,15,106,11,2017-04-15,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24980,23740,GO-20169009526,THEFT UNDER - BICYCLE,2016-08-25,2016,August,Thursday,25,238,16,2016-08-26,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)}",Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -24981,478,GO-2017935614,THEFT UNDER - BICYCLE,2017-05-27,2017,May,Saturday,27,147,13,2017-05-27,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24982,518,GO-2017971560,THEFT UNDER - BICYCLE,2017-05-31,2017,May,Wednesday,31,151,8,2017-06-01,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24983,615,GO-20171050993,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,11,2017-06-13,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24984,798,GO-20179009676,THEFT UNDER - BICYCLE,2017-07-07,2017,July,Friday,7,188,6,2017-07-07,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24985,1269,GO-20171559036,B&E,2017-08-28,2017,August,Monday,28,240,2,2017-08-28,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24986,1615,GO-20179016736,THEFT UNDER,2017-10-08,2017,October,Sunday,8,281,11,2017-10-08,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24987,1729,GO-20179018021,THEFT UNDER - BICYCLE,2017-10-21,2017,October,Saturday,21,294,6,2017-10-24,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24988,5465,GO-20199032546,THEFT UNDER,2019-10-02,2019,October,Wednesday,2,275,18,2019-10-04,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24989,7851,GO-20141938068,THEFT UNDER,2014-04-22,2014,April,Tuesday,22,112,15,2014-04-22,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24990,8036,GO-20149003775,THEFT UNDER,2014-06-03,2014,June,Tuesday,3,154,10,2014-06-03,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24991,8723,GO-20149006250,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,1,2014-08-25,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24992,8724,GO-20149006250,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,1,2014-08-25,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24993,9028,GO-20149007440,THEFT UNDER,2014-10-06,2014,October,Monday,6,279,3,2014-10-06,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24994,9066,GO-20143111591,THEFT UNDER,2010-09-06,2010,September,Monday,6,249,21,2014-10-15,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24995,9067,GO-20143111591,THEFT UNDER,2010-09-06,2010,September,Monday,6,249,21,2014-10-15,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24996,9230,GO-20143497411,THEFT UNDER,2014-11-01,2014,November,Saturday,1,305,19,2014-12-16,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24997,9407,GO-2015623641,THEFT UNDER,2015-04-13,2015,April,Monday,13,103,17,2015-04-15,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24998,9744,GO-2015958012,THEFT OF MOTOR VEHICLE,2015-06-08,2015,June,Monday,8,159,3,2015-06-08,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -24999,9803,GO-20159003602,THEFT UNDER,2015-06-14,2015,June,Sunday,14,165,8,2015-06-14,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25000,9815,GO-20159003669,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,19,2015-06-16,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25001,9991,GO-20159004452,THEFT UNDER,2015-07-11,2015,July,Saturday,11,192,10,2015-07-12,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25002,10337,GO-20159006298,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,15,2015-08-23,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25003,11881,GO-20161293704,THEFT UNDER - BICYCLE,2016-07-18,2016,July,Monday,18,200,19,2016-07-23,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25004,23445,GO-20171322462,THEFT UNDER - BICYCLE,2017-07-23,2017,July,Sunday,23,204,13,2017-07-23,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25005,23645,GO-20151451902,THEFT UNDER,2015-08-15,2015,August,Saturday,15,227,13,2015-08-23,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25006,664,GO-20171105831,B&E,2017-06-20,2017,June,Tuesday,20,171,23,2017-06-21,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25007,665,GO-20171105831,B&E,2017-06-20,2017,June,Tuesday,20,171,23,2017-06-21,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25008,666,GO-20171105831,B&E,2017-06-20,2017,June,Tuesday,20,171,23,2017-06-21,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25009,810,GO-20179009752,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,20,2017-07-09,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25010,892,GO-20171282844,THEFT UNDER - BICYCLE,2017-07-08,2017,July,Saturday,8,189,20,2017-07-17,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25011,1314,GO-20179014019,THEFT UNDER - BICYCLE,2017-08-26,2017,August,Saturday,26,238,12,2017-09-05,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25012,12142,GO-20169009073,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,15,2016-08-19,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25013,1989,GO-20171897929,ROBBERY - MUGGING,2017-10-20,2017,October,Friday,20,293,0,2017-10-20,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25014,6687,GO-20201352499,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,4,2020-07-21,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25015,6793,GO-20201407793,THEFT UNDER - BICYCLE,2020-06-11,2020,June,Thursday,11,163,17,2020-07-28,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25016,7005,GO-20201557877,B&E,2020-08-17,2020,August,Monday,17,230,21,2020-08-20,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25017,7552,GO-20202038435,THEFT UNDER,2020-10-26,2020,October,Monday,26,300,23,2020-10-27,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25018,7656,GO-20209030412,THEFT UNDER,2020-11-21,2020,November,Saturday,21,326,10,2020-11-24,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25019,7752,GO-20141391839,POSSESSION PROPERTY OBC UNDER,2014-01-22,2014,January,Wednesday,22,22,19,2014-01-22,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25020,8614,GO-20149005716,THEFT UNDER,2014-08-07,2014,August,Thursday,7,219,14,2014-08-07,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25021,9869,GO-20151067077,B&E,2015-06-17,2015,June,Wednesday,17,168,12,2015-06-24,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25022,10725,GO-20151908660,THEFT UNDER,2015-11-06,2015,November,Friday,6,310,7,2015-11-06,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25023,16784,GO-20191369572,THEFT UNDER,2019-06-21,2019,June,Friday,21,172,8,2019-07-21,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25024,16813,GO-2020808003,THEFT OF EBIKE UNDER $5000,2020-04-19,2020,April,Sunday,19,110,12,2020-04-30,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25025,16855,GO-20202139323,THEFT UNDER - BICYCLE,2020-11-05,2020,November,Thursday,5,310,10,2020-11-11,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25026,20106,GO-20201343862,THEFT UNDER,2020-07-19,2020,July,Sunday,19,201,12,2020-07-19,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25027,20530,GO-20169010206,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,15,2016-09-09,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25028,23287,GO-20199021712,THEFT UNDER,2019-07-08,2019,July,Monday,8,189,21,2019-07-10,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25029,14392,GO-20149005118,THEFT UNDER,2014-07-18,2014,July,Friday,18,199,8,2014-07-18,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25030,23354,GO-20201667457,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,18,2020-09-03,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25031,23675,GO-2016198296,THEFT UNDER,2016-02-02,2016,February,Tuesday,2,33,19,2016-02-02,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)}",Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -25032,425,GO-20179006655,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,15,2017-05-19,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25033,1818,GO-20172033219,THEFT UNDER,2017-11-10,2017,November,Friday,10,314,0,2017-11-10,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25034,3242,GO-20181526825,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,18,2018-08-18,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25035,5112,GO-20199026931,THEFT UNDER,2019-08-18,2019,August,Sunday,18,230,23,2019-08-20,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25036,6451,GO-20201160890,THEFT UNDER - BICYCLE,2020-06-24,2020,June,Wednesday,24,176,9,2020-06-24,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25037,7063,GO-20201599465,THEFT UNDER - BICYCLE,2020-08-01,2020,August,Saturday,1,214,10,2020-08-25,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25038,7404,GO-20209025284,THEFT UNDER,2020-10-02,2020,October,Friday,2,276,21,2020-10-02,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25039,8257,GO-20149004474,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,23,2014-06-26,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25040,8826,GO-20142869399,MISCHIEF UNDER,2014-09-08,2014,September,Monday,8,251,15,2014-09-08,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25041,12141,GO-20161475640,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,9,2016-08-20,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25042,12365,GO-20169010561,THEFT UNDER - BICYCLE,2016-09-02,2016,September,Friday,2,246,16,2016-09-16,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25043,12512,GO-20169011341,THEFT UNDER - BICYCLE,2016-09-30,2016,September,Friday,30,274,1,2016-09-30,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25044,12622,GO-20169012084,THEFT UNDER - BICYCLE,2016-10-14,2016,October,Friday,14,288,1,2016-10-15,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25045,16760,GO-20191021506,THEFT UNDER - BICYCLE,2019-05-20,2019,May,Monday,20,140,12,2019-06-03,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25046,17431,GO-20142236679,THEFT UNDER,2014-06-06,2014,June,Friday,6,157,14,2014-06-07,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25047,20119,GO-20209021815,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,23,2020-08-30,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25048,20520,GO-20169008373,THEFT UNDER - BICYCLE,2016-08-02,2016,August,Tuesday,2,215,16,2016-08-08,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25049,20547,GO-20161834289,PROPERTY - LOST,2016-10-15,2016,October,Saturday,15,289,10,2016-10-19,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25050,23610,GO-20159003406,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,17,2015-06-07,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25051,23611,GO-20159003406,THEFT UNDER,2015-06-07,2015,June,Sunday,7,158,17,2015-06-07,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)}",Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -25052,545,GO-2017990831,B&E,2017-06-02,2017,June,Friday,2,153,18,2017-06-05,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-14,2017,June,Wednesday,14,165,20,2017-06-15,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-28,2017,September,Thursday,28,271,9,2017-09-28,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-14,2018,August,Tuesday,14,226,9,2018-08-14,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-25,2019,November,Monday,25,329,18,2020-04-06,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-25,2019,November,Monday,25,329,18,2020-04-06,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-07,2020,June,Sunday,7,159,17,2020-06-09,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-27,2020,November,Friday,27,332,0,2020-12-03,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-02,2016,August,Tuesday,2,215,12,2016-08-02,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-02,2016,August,Tuesday,2,215,12,2016-08-02,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-07,2016,November,Monday,7,312,11,2016-11-08,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-18,2019,October,Friday,18,291,17,2019-11-03,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-14,2016,July,Thursday,14,196,18,2016-07-15,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-28,2017,April,Friday,28,118,18,2017-05-01,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-10,2015,August,Monday,10,222,11,2015-08-10,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-09,2014,July,Wednesday,9,190,14,2014-07-11,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-25,2014,July,Friday,25,206,21,2014-08-12,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-03,2014,August,Sunday,3,215,15,2014-08-03,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-10,2016,November,Thursday,10,315,17,2016-11-14,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-10,2016,November,Thursday,10,315,17,2016-11-14,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-06,2018,January,Saturday,6,6,0,2018-01-15,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-08,2018,July,Sunday,8,189,20,2018-07-08,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-19,2020,March,Thursday,19,79,3,2020-03-23,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-14,2018,August,Tuesday,14,226,9,2018-08-14,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-13,2017,March,Monday,13,72,13,2017-03-13,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25077,17453,GO-20142529839,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,5,2014-07-19,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25078,20908,GO-20142703889,B&E,2014-08-12,2014,August,Tuesday,12,224,15,2014-08-14,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25079,20909,GO-20142703889,B&E,2014-08-12,2014,August,Tuesday,12,224,15,2014-08-14,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25080,23644,GO-20151437552,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,6,2015-08-21,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25081,23974,GO-2015435252,POSSESSION PROPERTY OBC UNDER,2015-03-14,2015,March,Saturday,14,73,17,2015-03-14,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25082,152,GO-2017434461,THEFT UNDER - BICYCLE,2017-03-08,2017,March,Wednesday,8,67,15,2017-03-10,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25083,153,GO-2017434461,THEFT UNDER - BICYCLE,2017-03-08,2017,March,Wednesday,8,67,15,2017-03-10,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25084,744,GO-20171143670,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,17,2017-06-26,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25085,746,GO-20171144276,THEFT UNDER - BICYCLE,2017-06-26,2017,June,Monday,26,177,17,2017-06-26,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25086,1131,GO-20179012260,INVALID GO - RMS ONLY,2017-04-05,2017,April,Wednesday,5,95,11,2017-04-07,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25087,1339,GO-20171601428,THEFT UNDER - BICYCLE,2017-09-02,2017,September,Saturday,2,245,12,2017-09-04,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25088,1788,GO-20171995422,THEFT UNDER - BICYCLE,2017-11-04,2017,November,Saturday,4,308,1,2017-11-04,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25089,2141,GO-2018635005,THEFT UNDER - BICYCLE,2018-04-08,2018,April,Sunday,8,98,16,2018-04-09,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25090,3054,GO-20181418338,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,21,2018-08-02,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25091,3055,GO-20181418338,THEFT UNDER - BICYCLE,2018-08-02,2018,August,Thursday,2,214,21,2018-08-02,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25092,3179,GO-20181492045,THEFT UNDER - BICYCLE,2018-08-12,2018,August,Sunday,12,224,19,2018-08-13,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25093,3400,GO-20189029256,THEFT UNDER - BICYCLE,2018-09-05,2018,September,Wednesday,5,248,8,2018-09-05,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25094,4643,GO-20191216723,THEFT UNDER,2019-06-30,2019,June,Sunday,30,181,16,2019-06-30,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25095,4822,GO-20199023049,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,18,2019-07-20,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25096,4823,GO-20199023049,THEFT UNDER,2019-07-19,2019,July,Friday,19,200,18,2019-07-20,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25097,5665,GO-20199036912,THEFT UNDER,2019-11-08,2019,November,Friday,8,312,17,2019-11-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25098,6782,GO-20201410631,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,1,2020-07-29,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25099,6783,GO-20201410631,THEFT UNDER,2020-07-29,2020,July,Wednesday,29,211,1,2020-07-29,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25100,7039,GO-20201560777,THEFT UNDER - BICYCLE,2020-08-11,2020,August,Tuesday,11,224,17,2020-08-19,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25101,7291,GO-20209023791,THEFT UNDER,2020-09-08,2020,September,Tuesday,8,252,11,2020-09-18,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25102,7969,GO-20142124470,B&E,2014-05-21,2014,May,Wednesday,21,141,18,2014-05-21,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25103,8009,GO-20142193018,THEFT UNDER,2014-05-20,2014,May,Tuesday,20,140,8,2014-05-31,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25104,8088,GO-20142269194,ROBBERY - MUGGING,2014-06-07,2014,June,Saturday,7,158,22,2014-06-11,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25105,8285,GO-20142222502,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,20,2014-06-04,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25106,8286,GO-20142222502,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,20,2014-06-04,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25107,8413,GO-20142520518,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,11,2014-07-17,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25108,8659,GO-20142727302,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,15,2014-08-18,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25109,8841,GO-20142878207,THEFT UNDER,2014-09-09,2014,September,Tuesday,9,252,17,2014-09-10,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25110,8903,GO-20142913813,THEFT UNDER,2014-09-10,2014,September,Wednesday,10,253,10,2014-09-15,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25111,9445,GO-2015642486,THEFT UNDER,2015-04-18,2015,April,Saturday,18,108,15,2015-04-18,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25112,9467,GO-2015679360,THEFT UNDER,2015-04-16,2015,April,Thursday,16,106,15,2015-04-24,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25113,9741,GO-2015957529,THEFT UNDER,2015-06-08,2015,June,Monday,8,159,4,2015-06-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25114,9816,GO-20151021882,THEFT UNDER,2015-06-17,2015,June,Wednesday,17,168,23,2015-06-18,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25115,9998,GO-20159004468,THEFT FROM MOTOR VEHICLE UNDER,2015-07-07,2015,July,Tuesday,7,188,20,2015-07-12,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25116,10032,GO-20151203393,THEFT UNDER,2015-07-15,2015,July,Wednesday,15,196,21,2015-07-15,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25117,10149,GO-20159005184,THEFT UNDER,2015-07-30,2015,July,Thursday,30,211,8,2015-07-30,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25118,10642,GO-20151790561,PROPERTY - FOUND,2015-10-17,2015,October,Saturday,17,290,18,2015-10-17,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25119,10735,GO-20151921735,THEFT UNDER,2015-11-08,2015,November,Sunday,8,312,18,2015-11-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25120,11036,GO-2016418627,THEFT UNDER,2016-02-24,2016,February,Wednesday,24,55,12,2016-03-10,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25121,11140,GO-2016650680,PROPERTY - FOUND,2016-04-16,2016,April,Saturday,16,107,20,2016-04-16,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25122,11289,GO-2016809180,THEFT UNDER - BICYCLE,2016-05-11,2016,May,Wednesday,11,132,12,2016-05-11,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25123,11369,GO-20168999253,THEFT UNDER,2016-05-24,2016,May,Tuesday,24,145,9,2016-05-24,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25124,11459,GO-2016981032,THEFT UNDER - BICYCLE,2016-06-03,2016,June,Friday,3,155,21,2016-06-06,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25125,11584,GO-20161078531,THEFT UNDER - BICYCLE,2016-06-16,2016,June,Thursday,16,168,15,2016-06-20,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25126,12021,GO-20161398518,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,19,2016-08-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25127,12022,GO-20161398518,THEFT UNDER - BICYCLE,2016-08-08,2016,August,Monday,8,221,19,2016-08-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25128,12146,GO-20161480768,THEFT UNDER - BICYCLE,2016-08-20,2016,August,Saturday,20,233,12,2016-08-21,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25129,12161,GO-20169009157,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,1,2016-08-21,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25130,12294,GO-20161595926,PROPERTY - FOUND,2016-09-08,2016,September,Thursday,8,252,17,2016-09-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25131,12308,GO-20161610834,THEFT UNDER - BICYCLE,2016-09-10,2016,September,Saturday,10,254,19,2016-09-10,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25132,13498,GO-20199018977,THEFT UNDER,2019-06-17,2019,June,Monday,17,168,16,2019-06-17,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25133,13499,GO-20199019300,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,18,2019-06-19,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25134,13533,GO-20192298342,PROPERTY - FOUND,2019-11-28,2019,November,Thursday,28,332,16,2019-11-28,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25135,13539,GO-2020768906,B&E,2020-04-18,2020,April,Saturday,18,109,18,2020-04-22,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25136,13724,GO-20179017657,THEFT UNDER,2017-10-19,2017,October,Thursday,19,292,8,2017-10-19,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25137,13888,GO-20159004782,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,17,2015-07-20,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25138,13999,GO-20161491977,PROPERTY - FOUND,2016-08-23,2016,August,Tuesday,23,236,10,2016-08-23,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25139,14013,GO-20169010285,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,7,2016-09-11,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25140,14050,GO-2017666213,DRUG - POSS COCAINE (SCHD I),2017-04-12,2017,April,Wednesday,12,102,16,2017-04-15,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25141,14396,GO-20149005379,THEFT UNDER,2014-07-27,2014,July,Sunday,27,208,12,2014-07-27,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25142,14427,GO-20143270109,THEFT UNDER,2014-11-09,2014,November,Sunday,9,313,16,2014-11-09,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25143,14435,GO-2015234735,THEFT UNDER,2015-01-23,2015,January,Friday,23,23,0,2015-02-09,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25144,16806,GO-20209006778,THEFT UNDER,2020-02-24,2020,February,Monday,24,55,22,2020-02-25,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25145,16807,GO-20209006778,THEFT UNDER,2020-02-24,2020,February,Monday,24,55,22,2020-02-25,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25146,16850,GO-20202040830,THEFT OF EBIKE UNDER $5000,2020-09-27,2020,September,Sunday,27,271,9,2020-10-27,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25147,16917,GO-2017936257,THEFT UNDER - BICYCLE,2017-05-27,2017,May,Saturday,27,147,14,2017-05-27,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25148,16999,GO-20171966479,B&E,2017-10-29,2017,October,Sunday,29,302,7,2017-10-30,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25149,17160,GO-20151441753,THEFT UNDER,2015-08-21,2015,August,Friday,21,233,20,2015-08-21,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25150,17239,GO-20169006545,INFORMATION ONLY,2016-06-29,2016,June,Wednesday,29,181,21,2016-06-29,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25151,17256,GO-20169008899,THEFT UNDER,2016-08-11,2016,August,Thursday,11,224,15,2016-08-16,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25152,17259,GO-20161500950,THEFT UNDER - BICYCLE,2016-08-24,2016,August,Wednesday,24,237,15,2016-08-24,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25153,17509,GO-2015610170,MISCHIEF UNDER,2015-04-13,2015,April,Monday,13,103,13,2015-04-13,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25154,20024,GO-20199013277,THEFT UNDER,2019-01-01,2019,January,Tuesday,1,1,14,2019-04-27,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25155,20103,GO-20201260360,B&E,2020-07-07,2020,July,Tuesday,7,189,20,2020-07-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25156,20120,GO-20201693165,THEFT UNDER - BICYCLE,2020-07-11,2020,July,Saturday,11,193,16,2020-09-07,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25157,20413,GO-20151244975,THEFT UNDER,2015-07-18,2015,July,Saturday,18,199,8,2015-07-21,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25158,20422,GO-20159005143,THEFT UNDER,2015-07-27,2015,July,Monday,27,208,18,2015-07-30,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25159,20443,GO-20151725775,THEFT UNDER,2015-10-06,2015,October,Tuesday,6,279,14,2015-10-07,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25160,20500,GO-20161064669,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,13,2016-06-18,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25161,20501,GO-20161064669,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,13,2016-06-18,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25162,20502,GO-20161064669,THEFT UNDER - BICYCLE,2016-06-18,2016,June,Saturday,18,170,13,2016-06-18,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25163,20514,GO-20161334469,THEFT UNDER - BICYCLE,2016-07-29,2016,July,Friday,29,211,19,2016-07-29,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25164,20540,GO-20161741158,PROPERTY - LOST,2016-09-30,2016,September,Friday,30,274,19,2016-09-30,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25165,20858,GO-20142020883,THEFT UNDER,2014-05-05,2014,May,Monday,5,125,16,2014-05-05,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25166,23270,GO-20191151711,THEFT OF EBIKE UNDER $5000,2016-06-19,2016,June,Sunday,19,171,18,2019-06-21,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25167,23293,GO-20199025443,THEFT UNDER,2019-08-08,2019,August,Thursday,8,220,7,2019-08-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25168,23301,GO-20191660019,THEFT UNDER,2019-08-30,2019,August,Friday,30,242,17,2019-08-30,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25169,23324,GO-20209014572,THEFT UNDER - BICYCLE,2020-06-04,2020,June,Thursday,4,156,12,2020-06-04,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25170,23470,GO-20179014916,THEFT UNDER - BICYCLE,2017-09-16,2017,September,Saturday,16,259,2,2017-09-16,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25171,23587,GO-20189027998,THEFT UNDER,2018-08-23,2018,August,Thursday,23,235,0,2018-08-26,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25172,23588,GO-20189027998,THEFT UNDER,2018-08-23,2018,August,Thursday,23,235,0,2018-08-26,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25173,23682,GO-2016575259,THEFT UNDER,2016-04-04,2016,April,Monday,4,95,18,2016-04-05,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25174,23757,GO-20161783490,PROPERTY - FOUND,2016-10-07,2016,October,Friday,7,281,8,2016-10-07,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25175,23889,GO-20142222095,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,15,2014-06-04,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25176,12143,GO-20169009073,THEFT UNDER,2016-08-19,2016,August,Friday,19,232,15,2016-08-19,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25177,13599,GO-20202319326,THEFT UNDER - BICYCLE,2020-12-08,2020,December,Tuesday,8,343,15,2020-12-08,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25178,13744,GO-20189010391,THEFT UNDER - BICYCLE,2018-04-03,2018,April,Tuesday,3,93,14,2018-04-03,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25179,13869,GO-20159003009,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,18,2015-05-21,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25180,13964,GO-20169004242,THEFT UNDER,2016-05-06,2016,May,Friday,6,127,22,2016-05-07,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25181,14419,GO-20143007770,THEFT UNDER,2014-09-29,2014,September,Monday,29,272,11,2014-09-29,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25182,16725,GO-20189038543,THEFT UNDER - BICYCLE,2018-11-15,2018,November,Thursday,15,319,10,2018-11-16,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25183,16742,GO-2019632228,THEFT UNDER,2019-04-07,2019,April,Sunday,7,97,22,2019-04-08,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25184,16989,GO-20179016736,THEFT UNDER,2017-10-08,2017,October,Sunday,8,281,11,2017-10-08,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25185,17133,GO-20159003106,THEFT UNDER,2015-05-21,2015,May,Thursday,21,141,14,2015-05-26,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25186,17285,GO-20161904040,THEFT UNDER - BICYCLE,2016-10-21,2016,October,Friday,21,295,12,2016-10-26,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25187,20414,GO-20151248539,THEFT UNDER,2015-07-14,2015,July,Tuesday,14,195,11,2015-07-22,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25188,20481,GO-2016642527,THEFT FROM MOTOR VEHICLE OVER,2016-04-15,2016,April,Friday,15,106,15,2016-04-16,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25189,20482,GO-2016642527,THEFT FROM MOTOR VEHICLE OVER,2016-04-15,2016,April,Friday,15,106,15,2016-04-16,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25190,20542,GO-20169011812,THEFT UNDER - BICYCLE,2016-10-10,2016,October,Monday,10,284,12,2016-10-10,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25191,20550,GO-20161970115,THEFT UNDER,2016-11-05,2016,November,Saturday,5,310,17,2016-11-05,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25192,20570,GO-2017706538,THEFT UNDER,2017-04-16,2017,April,Sunday,16,106,11,2017-04-22,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25193,23298,GO-20199026309,THEFT UNDER,2019-08-12,2019,August,Monday,12,224,18,2019-08-15,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25194,23309,GO-20199031526,THEFT FROM MOTOR VEHICLE UNDER,2019-08-08,2019,August,Thursday,8,220,22,2019-09-25,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25195,23391,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25196,23392,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25197,23393,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25198,23394,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25199,23398,GO-20179004699,THEFT UNDER - BICYCLE,2017-04-11,2017,April,Tuesday,11,101,21,2017-04-14,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25200,23399,GO-20179004699,THEFT UNDER - BICYCLE,2017-04-11,2017,April,Tuesday,11,101,21,2017-04-14,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25201,23685,GO-2016719400,THEFT UNDER - BICYCLE,2016-04-26,2016,April,Tuesday,26,117,8,2016-04-27,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25202,23748,GO-20169010113,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,15,2016-09-07,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25203,23786,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25204,23787,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25205,23788,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25206,23789,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25207,23790,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25208,23791,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25209,23792,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25210,23793,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25211,23794,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25212,23795,GO-2017637379,PROPERTY - FOUND,2017-01-01,2017,January,Sunday,1,1,1,2017-04-11,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25213,23884,GO-20149003765,THEFT UNDER,2014-06-01,2014,June,Sunday,1,152,10,2014-06-02,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25214,23939,GO-20149005907,B&E,2014-08-13,2014,August,Wednesday,13,225,15,2014-08-13,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25215,23941,GO-20149006160,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,21,2014-08-21,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25216,23942,GO-20149006160,THEFT UNDER,2014-08-20,2014,August,Wednesday,20,232,21,2014-08-21,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25217,23965,GO-20143204610,THEFT UNDER,2014-10-30,2014,October,Thursday,30,303,10,2014-10-30,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)}",Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -25218,1648,GO-20171846815,SUSPICIOUS INCIDENT,2017-10-12,2017,October,Thursday,12,285,5,2017-10-12,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25219,1670,GO-20179017380,THEFT UNDER,2017-10-16,2017,October,Monday,16,289,14,2017-10-16,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25220,2272,GO-2018815876,THEFT UNDER - BICYCLE,2018-05-05,2018,May,Saturday,5,125,21,2018-05-06,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25221,2524,GO-20189018112,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,8,2018-06-10,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25222,2820,GO-20189018112,THEFT UNDER - BICYCLE,2018-06-06,2018,June,Wednesday,6,157,8,2018-06-10,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25223,3390,GO-20189029085,THEFT UNDER - BICYCLE,2018-08-21,2018,August,Tuesday,21,233,1,2018-09-04,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25224,5570,GO-20192046014,THEFT OF MOTOR VEHICLE,2019-10-23,2019,October,Wednesday,23,296,10,2019-10-23,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25225,5637,GO-20192118770,THEFT UNDER - BICYCLE,2019-11-02,2019,November,Saturday,2,306,11,2019-11-03,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25226,7219,GO-20209022788,THEFT UNDER,2020-09-01,2020,September,Tuesday,1,245,8,2020-09-09,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25227,7301,GO-20209023863,THEFT UNDER,2020-09-19,2020,September,Saturday,19,263,16,2020-09-19,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25228,11938,GO-20161330841,MISCHIEF UNDER,2016-07-29,2016,July,Friday,29,211,0,2016-07-29,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25229,8505,GO-20149005304,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,17,2014-07-24,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25230,12064,GO-20169008579,THEFT UNDER,2016-07-28,2016,July,Thursday,28,210,1,2016-08-11,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25231,13590,GO-20209025110,THEFT FROM MOTOR VEHICLE UNDER,2020-09-19,2020,September,Saturday,19,263,13,2020-10-01,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25232,13747,GO-2018732040,THEFT OVER - BICYCLE,2017-03-31,2017,March,Friday,31,90,9,2018-04-24,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25233,13785,GO-20181353973,FTC PROBATION ORDER,2018-07-18,2018,July,Wednesday,18,199,9,2018-07-24,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25234,13862,GO-20159002784,THEFT UNDER,2015-05-14,2015,May,Thursday,14,134,18,2015-05-15,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25235,13907,GO-20159006966,THEFT UNDER,2015-09-09,2015,September,Wednesday,9,252,13,2015-09-09,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25236,14403,GO-20149005800,THEFT UNDER,2014-08-10,2014,August,Sunday,10,222,20,2014-08-11,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25237,16785,GO-20191398586,THEFT UNDER - BICYCLE,2019-07-20,2019,July,Saturday,20,201,19,2019-07-25,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25238,17000,GO-20171995166,PROPERTY - FOUND,2017-11-04,2017,November,Saturday,4,308,0,2017-11-04,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25239,17001,GO-20171995166,PROPERTY - FOUND,2017-11-04,2017,November,Saturday,4,308,0,2017-11-04,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25240,17165,GO-20159006732,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,10,2015-09-03,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25241,17167,GO-20151546034,THEFT UNDER,2015-09-03,2015,September,Thursday,3,246,10,2015-09-07,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25242,17316,GO-20179005860,THEFT UNDER - BICYCLE,2017-04-24,2017,April,Monday,24,114,9,2017-05-07,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25243,20421,GO-20151276399,THEFT UNDER,2015-07-26,2015,July,Sunday,26,207,12,2015-07-26,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25244,20579,GO-2017909771,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,16,2017-05-23,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25245,20580,GO-2017909771,THEFT UNDER - BICYCLE,2017-05-23,2017,May,Tuesday,23,143,16,2017-05-23,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25246,23355,GO-20209022969,THEFT UNDER,2020-08-20,2020,August,Thursday,20,233,12,2020-09-11,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25247,23356,GO-20201756378,THEFT UNDER,2020-09-04,2020,September,Friday,4,248,12,2020-09-04,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25248,23735,GO-20169009141,THEFT UNDER - BICYCLE,2016-07-28,2016,July,Thursday,28,210,1,2016-08-20,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)}",Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -25249,6511,GO-20201213200,B&E,2020-07-01,2020,July,Wednesday,1,183,1,2020-07-01,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25250,7953,GO-20142143830,THEFT UNDER,2014-05-24,2014,May,Saturday,24,144,16,2014-05-24,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25251,8328,GO-20142470971,THEFT UNDER,2014-07-10,2014,July,Thursday,10,191,15,2014-07-10,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25252,9188,GO-20143299216,THEFT UNDER,2014-11-08,2014,November,Saturday,8,312,2,2014-11-14,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25253,9248,GO-201525352,THEFT UNDER,2014-12-19,2014,December,Friday,19,353,15,2015-01-05,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25254,9313,GO-2015396847,POSSESSION PROPERTY OBC UNDER,2015-03-08,2015,March,Sunday,8,67,14,2015-03-08,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25255,9380,GO-2015587240,B&E,2015-04-09,2015,April,Thursday,9,99,8,2015-04-09,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25256,9855,GO-20151023500,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,8,2015-06-19,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25257,9856,GO-20151023500,THEFT UNDER,2015-06-09,2015,June,Tuesday,9,160,8,2015-06-19,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25258,17028,GO-2018881531,THEFT UNDER,2018-05-16,2018,May,Wednesday,16,136,1,2018-05-16,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25259,20410,GO-20151220801,THEFT UNDER,2015-07-16,2015,July,Thursday,16,197,17,2015-07-18,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25260,23622,GO-20159004296,THEFT UNDER,2015-07-07,2015,July,Tuesday,7,188,13,2015-07-07,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25261,23680,GO-2016434829,THEFT UNDER - BICYCLE,2016-03-12,2016,March,Saturday,12,72,23,2016-03-12,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25262,23707,GO-20169005698,THEFT UNDER,2016-06-12,2016,June,Sunday,12,164,11,2016-06-13,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)}",Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -25263,981,GO-20171347105,THEFT UNDER - BICYCLE,2017-07-26,2017,July,Wednesday,26,207,22,2017-07-27,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25264,2142,GO-20189011037,THEFT UNDER - BICYCLE,2018-04-09,2018,April,Monday,9,99,12,2018-04-09,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25265,2236,GO-2018787282,B&E,2017-11-01,2017,November,Wednesday,1,305,0,2018-05-02,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25266,2237,GO-2018787282,B&E,2017-11-01,2017,November,Wednesday,1,305,0,2018-05-02,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25267,4786,GO-20191340429,THEFT UNDER - BICYCLE,2019-07-12,2019,July,Friday,12,193,15,2019-07-17,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25268,5118,GO-20199027044,THEFT UNDER,2017-12-09,2017,December,Saturday,9,343,16,2019-08-14,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25269,5282,GO-20199029357,THEFT UNDER,2019-09-09,2019,September,Monday,9,252,5,2019-09-09,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25270,5428,GO-20199031903,THEFT UNDER,2019-09-26,2019,September,Thursday,26,269,16,2019-09-28,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25271,8697,GO-20142760716,THEFT UNDER,2014-08-23,2014,August,Saturday,23,235,13,2014-08-23,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25272,13887,GO-20159004776,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,8,2015-07-20,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25273,17018,GO-20189006937,THEFT UNDER,2018-03-05,2018,March,Monday,5,64,13,2018-03-05,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25274,20134,GO-20209029580,THEFT UNDER,2020-11-14,2020,November,Saturday,14,319,16,2020-11-15,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25275,20578,GO-20179006700,THEFT UNDER - BICYCLE,2017-05-19,2017,May,Friday,19,139,20,2017-05-20,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25276,23898,GO-20142295553,THEFT UNDER,2014-06-15,2014,June,Sunday,15,166,12,2014-06-15,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25277,23945,GO-20149006286,THEFT UNDER,2014-08-25,2014,August,Monday,25,237,12,2014-08-25,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25278,23947,GO-20142867990,THEFT UNDER,2014-09-08,2014,September,Monday,8,251,11,2014-09-08,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)}",West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -25279,37,GO-20179000160,THEFT UNDER - BICYCLE,2017-01-04,2017,January,Wednesday,4,4,19,2017-01-04,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25280,39,GO-20179000230,THEFT UNDER - BICYCLE,2017-01-04,2017,January,Wednesday,4,4,19,2017-01-05,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25281,271,GO-20179005156,THEFT UNDER - BICYCLE,2016-09-01,2016,September,Thursday,1,245,1,2017-04-24,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25282,647,GO-20171095659,THEFT UNDER - BICYCLE,2017-06-12,2017,June,Monday,12,163,2,2017-06-19,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25283,772,GO-20179009391,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,11,2017-07-04,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25284,1107,GO-20179012130,THEFT FROM MOTOR VEHICLE UNDER,2017-08-09,2017,August,Wednesday,9,221,19,2017-08-10,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25285,1108,GO-20179012130,THEFT FROM MOTOR VEHICLE UNDER,2017-08-09,2017,August,Wednesday,9,221,19,2017-08-10,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25286,1190,GO-20179012822,THEFT UNDER,2017-08-19,2017,August,Saturday,19,231,15,2017-08-19,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25287,1243,GO-20171540485,THEFT UNDER - BICYCLE,2017-08-25,2017,August,Friday,25,237,18,2017-08-25,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25288,1635,GO-20171841102,B&E,2017-10-11,2017,October,Wednesday,11,284,3,2017-10-11,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25289,1636,GO-20171841102,B&E,2017-10-11,2017,October,Wednesday,11,284,3,2017-10-11,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25290,1759,GO-20171939917,THEFT UNDER,2017-10-26,2017,October,Thursday,26,299,12,2017-10-26,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25291,2427,GO-20189016824,THEFT UNDER - BICYCLE,2018-05-29,2018,May,Tuesday,29,149,16,2018-05-30,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25292,2466,GO-20181017935,PROPERTY - FOUND,2018-06-05,2018,June,Tuesday,5,156,11,2018-06-05,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25293,2960,GO-20189023890,THEFT UNDER - BICYCLE,2018-07-14,2018,July,Saturday,14,195,20,2018-07-25,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25294,3245,GO-20189026956,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,11,2018-08-18,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25295,3854,GO-20189038175,THEFT UNDER - BICYCLE,2018-11-12,2018,November,Monday,12,316,20,2018-11-14,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25296,4443,GO-20199018040,THEFT UNDER,2019-06-06,2019,June,Thursday,6,157,13,2019-06-10,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25297,4461,GO-20199018254,THEFT UNDER,2019-06-07,2019,June,Friday,7,158,21,2019-06-11,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25298,4935,GO-20191419985,THEFT UNDER - BICYCLE,2019-07-26,2019,July,Friday,26,207,14,2019-07-28,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25299,4993,GO-20199025301,THEFT UNDER,2019-08-07,2019,August,Wednesday,7,219,16,2019-08-07,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25300,6354,GO-20209015081,THEFT UNDER,2020-06-05,2020,June,Friday,5,157,16,2020-06-10,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25301,8205,GO-20142353102,ROBBERY - OTHER,2014-06-22,2014,June,Sunday,22,173,19,2014-06-23,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25302,8484,GO-20142539129,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,11,2014-07-21,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25303,8557,GO-20142633038,THEFT UNDER,2014-08-02,2014,August,Saturday,2,214,9,2014-08-04,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25304,8970,GO-20142979819,THEFT UNDER,2014-09-24,2014,September,Wednesday,24,267,10,2014-09-25,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25305,8971,GO-20142979823,THEFT UNDER,2014-09-23,2014,September,Tuesday,23,266,8,2014-09-25,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25306,8988,GO-20142994894,THEFT UNDER,2014-09-22,2014,September,Monday,22,265,12,2014-09-27,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25307,9971,GO-20151014647,ROBBERY - MUGGING,2015-06-16,2015,June,Tuesday,16,167,20,2015-06-17,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25308,10069,GO-20151236678,THEFT UNDER,2015-07-20,2015,July,Monday,20,201,7,2015-07-20,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25309,10602,GO-20151677437,THEFT UNDER - BICYCLE,2015-10-07,2015,October,Wednesday,7,280,21,2015-10-07,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25310,10883,GO-20152155733,THEFT UNDER,2015-12-14,2015,December,Monday,14,348,20,2015-12-16,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25311,10988,GO-2016256208,THEFT UNDER,2015-12-18,2015,December,Friday,18,352,4,2016-02-12,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25312,11062,GO-2016475651,THEFT FROM MOTOR VEHICLE UNDER,2016-03-18,2016,March,Friday,18,78,22,2016-03-19,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25313,11361,GO-2016883920,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,20,2016-05-22,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25314,11362,GO-2016883920,THEFT UNDER - BICYCLE,2016-05-21,2016,May,Saturday,21,142,20,2016-05-22,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25315,11564,GO-20161050232,THEFT UNDER - BICYCLE,2016-06-10,2016,June,Friday,10,162,12,2016-06-16,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25316,11743,GO-20169006882,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,17,2016-07-07,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25317,11747,GO-20169006925,THEFT UNDER,2016-06-18,2016,June,Saturday,18,170,10,2016-07-09,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25318,11801,GO-20169007163,THEFT UNDER - BICYCLE,2016-07-13,2016,July,Wednesday,13,195,14,2016-07-13,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25319,11888,GO-20169007686,THEFT UNDER - BICYCLE,2016-07-20,2016,July,Wednesday,20,202,11,2016-07-24,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25320,12199,GO-20169009474,THEFT UNDER - BICYCLE,2016-08-23,2016,August,Tuesday,23,236,17,2016-08-25,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25321,12724,GO-20161964489,THEFT OF EBIKE UNDER $5000,2016-11-03,2016,November,Thursday,3,308,21,2016-11-04,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25322,13472,GO-2019505754,B&E,2019-03-17,2019,March,Sunday,17,76,18,2019-03-20,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25323,13489,GO-2019986366,THEFT UNDER,2019-05-29,2019,May,Wednesday,29,149,15,2019-05-29,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25324,13579,GO-20201567580,THEFT UNDER - BICYCLE,2020-08-16,2020,August,Sunday,16,229,15,2020-08-20,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25325,13709,GO-20171520617,THEFT UNDER - BICYCLE,2017-08-22,2017,August,Tuesday,22,234,18,2017-08-22,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25326,13765,GO-20189018506,THEFT UNDER - BICYCLE,2018-06-11,2018,June,Monday,11,162,13,2018-06-13,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25327,13793,GO-20189024735,THEFT UNDER - BICYCLE,2018-06-27,2018,June,Wednesday,27,178,6,2018-08-01,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25328,13800,GO-20189026956,THEFT UNDER - BICYCLE,2018-08-18,2018,August,Saturday,18,230,11,2018-08-18,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25329,13983,GO-20169006882,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,17,2016-07-07,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25330,14047,GO-2017369372,THEFT UNDER - BICYCLE,2017-02-21,2017,February,Tuesday,21,52,15,2017-02-28,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25331,16960,GO-20171367630,THEFT UNDER,2017-07-29,2017,July,Saturday,29,210,21,2017-07-30,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25332,16961,GO-20171432768,THEFT UNDER - BICYCLE,2017-08-08,2017,August,Tuesday,8,220,19,2017-08-09,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25333,17131,GO-20159002991,THEFT UNDER,2015-05-16,2015,May,Saturday,16,136,22,2015-05-21,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25334,17217,GO-20169004362,THEFT UNDER - BICYCLE,2016-05-10,2016,May,Tuesday,10,131,13,2016-05-10,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25335,17265,GO-20161609888,THEFT UNDER - BICYCLE,2016-09-09,2016,September,Friday,9,253,19,2016-09-10,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25336,17272,GO-20169010754,THEFT UNDER - BICYCLE,2016-09-19,2016,September,Monday,19,263,12,2016-09-19,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25337,17452,GO-20142542318,THEFT UNDER,2014-07-17,2014,July,Thursday,17,198,7,2014-07-21,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25338,17458,GO-20149005272,THEFT UNDER,2014-07-22,2014,July,Tuesday,22,203,13,2014-07-23,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25339,17483,GO-20142979443,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,11,2014-09-25,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25340,20222,GO-20179012494,THEFT UNDER - BICYCLE,2017-08-06,2017,August,Sunday,6,218,17,2017-08-15,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25341,20235,GO-20171581864,PROPERTY - FOUND,2017-08-29,2017,August,Tuesday,29,241,9,2017-09-01,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25342,20388,GO-2015925695,THEFT UNDER,2015-06-01,2015,June,Monday,1,152,10,2015-06-02,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25343,20943,GO-20143237096,THEFT UNDER,2014-10-26,2014,October,Sunday,26,299,12,2014-11-04,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25344,23349,GO-20209020057,THEFT UNDER,2020-08-12,2020,August,Wednesday,12,225,16,2020-08-13,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25345,23623,GO-20159004302,THEFT UNDER,2015-07-06,2015,July,Monday,6,187,15,2015-07-08,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25346,23720,GO-20169007433,THEFT UNDER - BICYCLE,2016-07-19,2016,July,Tuesday,19,201,16,2016-07-19,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25347,23745,GO-20161512993,THEFT UNDER - BICYCLE,2016-08-26,2016,August,Friday,26,239,12,2016-08-29,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25348,23925,GO-20142546317,THEFT UNDER,2014-07-16,2014,July,Wednesday,16,197,13,2014-07-22,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)}",Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -25349,375,GO-2017836389,THEFT OF EBIKE UNDER $5000,2017-05-07,2017,May,Sunday,7,127,19,2017-05-12,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25350,638,GO-20171068267,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,10,2017-06-18,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25351,749,GO-20179009183,THEFT UNDER - BICYCLE,2017-06-23,2017,June,Friday,23,174,12,2017-06-29,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25352,3386,GO-20181624129,THEFT UNDER - BICYCLE,2018-08-30,2018,August,Thursday,30,242,12,2018-09-02,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25353,5626,GO-20191410817,THEFT OF MOTOR VEHICLE,2019-07-27,2019,July,Saturday,27,208,3,2019-07-27,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25354,5675,GO-20192178108,B&E,2019-11-11,2019,November,Monday,11,315,4,2019-11-11,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25355,6585,GO-20201285003,B&E,2020-07-10,2020,July,Friday,10,192,22,2020-07-11,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25356,6916,GO-20209019784,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,20,2020-08-10,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25357,6917,GO-20209019784,THEFT UNDER - BICYCLE,2020-07-19,2020,July,Sunday,19,201,20,2020-08-10,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25358,7133,GO-20201641467,B&E,2020-08-30,2020,August,Sunday,30,243,23,2020-08-31,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25359,7210,GO-20201698894,THEFT UNDER - BICYCLE,2020-09-05,2020,September,Saturday,5,249,20,2020-09-09,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25360,7252,GO-20209023309,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,16,2020-09-15,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25361,7253,GO-20209023309,THEFT UNDER - BICYCLE,2020-09-15,2020,September,Tuesday,15,259,16,2020-09-15,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25362,10831,GO-20152076177,THEFT UNDER,2015-12-03,2015,December,Thursday,3,337,4,2015-12-04,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25363,10890,GO-20152219770,THEFT UNDER,2015-12-21,2015,December,Monday,21,355,18,2015-12-28,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25364,12056,GO-20161390663,THEFT UNDER - BICYCLE,2016-08-07,2016,August,Sunday,7,220,2,2016-08-07,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25365,13477,GO-20199011935,THEFT UNDER,2019-01-21,2019,January,Monday,21,21,12,2019-04-15,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25366,13550,GO-20209017069,THEFT UNDER,2019-07-07,2019,July,Sunday,7,188,22,2020-07-07,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25367,17220,GO-2016851439,THEFT UNDER - BICYCLE,2016-05-17,2016,May,Tuesday,17,138,19,2016-05-17,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25368,17305,GO-20179004064,THEFT UNDER - BICYCLE,2017-03-21,2017,March,Tuesday,21,80,8,2017-04-01,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25369,17481,GO-20149006999,THEFT UNDER,2014-08-19,2014,August,Tuesday,19,231,23,2014-08-20,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25370,20027,GO-2019846525,THEFT UNDER,2019-05-09,2019,May,Thursday,9,129,23,2019-05-10,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25371,23300,GO-20191604684,ASSAULT BODILY HARM,2019-08-23,2019,August,Friday,23,235,3,2019-08-23,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25372,23344,GO-20209019051,THEFT UNDER - BICYCLE,2020-07-30,2020,July,Thursday,30,212,19,2020-07-30,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25373,23346,GO-20201445898,THEFT FROM MOTOR VEHICLE OVER,2020-07-30,2020,July,Thursday,30,212,1,2020-08-03,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)}",Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -25374,13544,GO-20209015229,THEFT UNDER,2020-06-12,2020,June,Friday,12,164,20,2020-06-13,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25375,13866,GO-20159002927,THEFT UNDER,2015-05-11,2015,May,Monday,11,131,17,2015-05-20,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25376,14448,GO-2015800106,THEFT UNDER,2015-05-12,2015,May,Tuesday,12,132,18,2015-05-13,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25377,16794,GO-20199030900,THEFT UNDER,2019-09-18,2019,September,Wednesday,18,261,21,2019-09-20,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25378,16816,GO-20201066088,THEFT UNDER - BICYCLE,2020-06-09,2020,June,Tuesday,9,161,19,2020-06-10,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25379,17163,GO-20151495825,THEFT UNDER,2015-08-23,2015,August,Sunday,23,235,20,2015-08-30,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25380,17208,GO-2016432591,PROPERTY - FOUND,2016-03-12,2016,March,Saturday,12,72,8,2016-03-12,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25381,17435,GO-20142270000,THEFT UNDER,2014-06-09,2014,June,Monday,9,160,8,2014-06-11,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25382,20028,GO-20199014691,THEFT UNDER,2019-05-08,2019,May,Wednesday,8,128,12,2019-05-11,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25383,20269,GO-20179018715,THEFT UNDER - BICYCLE,2017-10-27,2017,October,Friday,27,300,11,2017-11-02,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25384,20317,GO-20189019392,THEFT UNDER,2018-06-18,2018,June,Monday,18,169,11,2018-06-19,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25385,20507,GO-20169006837,THEFT UNDER - BICYCLE,2016-07-07,2016,July,Thursday,7,189,3,2016-07-07,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25386,20945,GO-20143239833,THEFT UNDER,2014-11-04,2014,November,Tuesday,4,308,19,2014-11-04,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25387,23296,GO-20199026029,THEFT UNDER,2019-06-25,2019,June,Tuesday,25,176,18,2019-08-13,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25388,23360,GO-20201881344,ROBBERY - MUGGING,2020-10-03,2020,October,Saturday,3,277,21,2020-10-03,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25389,23397,GO-2017658419,THEFT UNDER - BICYCLE,2017-04-13,2017,April,Thursday,13,103,19,2017-04-14,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25390,23535,GO-20189018144,THEFT UNDER - BICYCLE,2018-06-09,2018,June,Saturday,9,160,23,2018-06-10,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25391,23605,GO-2015918353,THEFT UNDER,2015-05-25,2015,May,Monday,25,145,15,2015-06-01,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25392,23670,GO-20151997238,THEFT UNDER - SHOPLIFTING,2015-11-21,2015,November,Saturday,21,325,9,2015-11-21,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25393,23743,GO-20169009615,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,14,2016-08-28,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25394,23744,GO-20169009615,THEFT UNDER - BICYCLE,2016-08-28,2016,August,Sunday,28,241,14,2016-08-28,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25395,23888,GO-20142221647,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,18,2014-06-04,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25396,23926,GO-20149005316,THEFT UNDER,2014-07-24,2014,July,Thursday,24,205,21,2014-07-24,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25397,5158,GO-20191625197,B&E,2019-08-25,2019,August,Sunday,25,237,23,2019-08-26,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25398,5986,GO-2020594615,B&E,2020-03-24,2020,March,Tuesday,24,84,13,2020-03-24,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25399,5987,GO-2020594615,B&E,2020-03-24,2020,March,Tuesday,24,84,13,2020-03-24,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25400,6473,GO-20201177441,THEFT UNDER - BICYCLE,2020-06-26,2020,June,Friday,26,178,14,2020-06-26,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25401,7935,GO-20149003382,THEFT UNDER,2014-05-15,2014,May,Thursday,15,135,8,2014-05-15,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25402,9682,GO-20159003189,THEFT UNDER,2015-05-29,2015,May,Friday,29,149,12,2015-05-29,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25403,11635,GO-20161109439,THEFT UNDER,2016-05-28,2016,May,Saturday,28,149,20,2016-06-25,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25404,11636,GO-20161109439,THEFT UNDER,2016-05-28,2016,May,Saturday,28,149,20,2016-06-25,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25405,12290,GO-20161590670,THEFT UNDER - BICYCLE,2016-09-07,2016,September,Wednesday,7,251,17,2016-09-07,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25406,12545,GO-20161766948,THEFT UNDER - BICYCLE,2016-10-04,2016,October,Tuesday,4,278,17,2016-10-04,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25407,12816,GO-20162085937,PROPERTY - FOUND,2016-10-24,2016,October,Monday,24,298,17,2016-11-24,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25408,13830,GO-20181814685,B&E,2018-09-17,2018,September,Monday,17,260,1,2018-10-01,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25409,13831,GO-20181814685,B&E,2018-09-17,2018,September,Monday,17,260,1,2018-10-01,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25410,16939,GO-20179009393,THEFT UNDER - BICYCLE,2017-07-04,2017,July,Tuesday,4,185,11,2017-07-04,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25411,17255,GO-20161439546,B&E W'INTENT,2016-08-15,2016,August,Monday,15,228,0,2016-08-15,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25412,19981,GO-20181852728,B&E,2018-10-06,2018,October,Saturday,6,279,19,2018-10-07,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25413,19982,GO-20181852728,B&E,2018-10-06,2018,October,Saturday,6,279,19,2018-10-07,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25414,20211,GO-20171330105,B&E,2017-07-24,2017,July,Monday,24,205,1,2017-07-24,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25415,20286,GO-201863494,PROPERTY - FOUND,2018-01-11,2018,January,Thursday,11,11,7,2018-01-11,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25416,20338,GO-20181354462,THEFT UNDER - BICYCLE,2018-07-24,2018,July,Tuesday,24,205,10,2018-07-24,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25417,23289,GO-20191345744,THEFT UNDER,2019-07-16,2019,July,Tuesday,16,197,9,2019-07-18,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25418,23303,GO-20199028766,THEFT UNDER - BICYCLE,2019-09-03,2019,September,Tuesday,3,246,8,2019-09-05,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25419,23451,GO-20171374186,B&E,2017-07-30,2017,July,Sunday,30,211,20,2017-07-31,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25420,23452,GO-20171374186,B&E,2017-07-30,2017,July,Sunday,30,211,20,2017-07-31,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25421,23614,GO-20151005248,THEFT UNDER,2015-06-15,2015,June,Monday,15,166,10,2015-06-15,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)}",Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -25422,7994,GO-20142183650,THEFT UNDER,2014-05-28,2014,May,Wednesday,28,148,14,2014-05-30,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25423,8097,GO-20142281036,THEFT UNDER,2014-06-12,2014,June,Thursday,12,163,13,2014-06-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25424,8098,GO-20142281059,THEFT UNDER,2014-06-04,2014,June,Wednesday,4,155,8,2014-06-10,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25425,8492,GO-20142568910,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,11,2014-06-26,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25426,8493,GO-20142568910,THEFT UNDER,2014-06-25,2014,June,Wednesday,25,176,11,2014-06-26,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25427,8528,GO-20142601315,THEFT UNDER,2014-07-25,2014,July,Friday,25,206,9,2014-07-25,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25428,8727,GO-20142786000,THEFT UNDER,2014-07-29,2014,July,Tuesday,29,210,15,2014-08-06,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25429,8789,GO-20142833181,THEFT UNDER,2014-08-29,2014,August,Friday,29,241,11,2014-09-03,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25430,8920,GO-20142940657,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,12,2014-09-19,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25431,9402,GO-20159001920,THEFT UNDER,2015-04-14,2015,April,Tuesday,14,104,11,2015-04-14,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25432,10233,GO-20151385100,B&E W'INTENT,2015-08-12,2015,August,Wednesday,12,224,17,2015-08-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25433,10234,GO-20151385100,B&E W'INTENT,2015-08-12,2015,August,Wednesday,12,224,17,2015-08-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25434,10235,GO-20151385100,B&E W'INTENT,2015-08-12,2015,August,Wednesday,12,224,17,2015-08-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25435,10241,GO-20159005646,THEFT UNDER,2015-08-11,2015,August,Tuesday,11,223,14,2015-08-11,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25436,10428,GO-20151554312,B&E,2015-09-08,2015,September,Tuesday,8,251,17,2015-09-10,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25437,10740,GO-20151929922,THEFT UNDER,2015-11-07,2015,November,Saturday,7,311,12,2015-11-10,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25438,10837,GO-20152096135,THEFT UNDER,2015-12-07,2015,December,Monday,7,341,13,2015-12-07,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25439,11324,GO-2016853593,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,12,2016-05-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25440,11325,GO-2016853446,THEFT UNDER - BICYCLE,2016-05-13,2016,May,Friday,13,134,13,2016-05-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25441,12155,GO-20161485375,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,13,2016-08-22,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25442,12278,GO-20161587166,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,13,2016-09-07,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25443,12302,GO-20161600412,THEFT UNDER - BICYCLE,2016-09-08,2016,September,Thursday,8,252,10,2016-09-09,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25444,12336,GO-20161633044,THEFT UNDER - BICYCLE,2016-09-13,2016,September,Tuesday,13,257,12,2016-09-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25445,12399,GO-20161672270,THEFT UNDER - BICYCLE,2016-09-06,2016,September,Tuesday,6,250,8,2016-09-15,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25446,12469,GO-20161719140,THEFT UNDER - BICYCLE,2016-09-27,2016,September,Tuesday,27,271,11,2016-09-27,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25447,12764,GO-20162029211,THEFT UNDER - BICYCLE,2016-11-13,2016,November,Sunday,13,318,19,2016-11-15,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25448,12849,GO-20162155394,THEFT UNDER - BICYCLE,2016-12-02,2016,December,Friday,2,337,5,2016-12-02,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25449,13474,GO-2019613453,THEFT UNDER,2019-04-02,2019,April,Tuesday,2,92,4,2019-04-02,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25450,13681,GO-20171153556,B&E,2017-06-27,2017,June,Tuesday,27,178,5,2017-06-28,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25451,13931,GO-20151949136,THEFT UNDER,2015-11-13,2015,November,Friday,13,317,10,2015-11-13,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25452,14021,GO-20161730570,THEFT UNDER - BICYCLE,2016-09-27,2016,September,Tuesday,27,271,9,2016-09-29,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25453,14043,GO-2017138048,THEFT UNDER - BICYCLE,2017-01-10,2017,January,Tuesday,10,10,12,2017-01-20,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25454,14372,GO-20142343521,B&E,2014-06-22,2014,June,Sunday,22,173,1,2014-06-22,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25455,17183,GO-20159009007,THEFT UNDER,2015-10-23,2015,October,Friday,23,296,15,2015-10-25,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25456,17271,GO-20161672052,THEFT UNDER - BICYCLE,2016-09-13,2016,September,Tuesday,13,257,12,2016-09-19,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25457,17274,GO-20161737081,THEFT UNDER - BICYCLE,2016-09-29,2016,September,Thursday,29,273,17,2016-09-30,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25458,17476,GO-20149006603,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,12,2014-09-05,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25459,20021,GO-20199010984,THEFT UNDER,2019-04-02,2019,April,Tuesday,2,92,16,2019-04-07,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25460,20040,GO-20191139372,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,20,2019-06-19,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25461,20469,GO-201681735,THEFT UNDER,2016-01-14,2016,January,Thursday,14,14,15,2016-01-14,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25462,20552,GO-20162004633,THEFT UNDER - BICYCLE,2016-11-10,2016,November,Thursday,10,315,10,2016-11-11,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25463,23655,GO-20151640886,THEFT UNDER,2015-09-22,2015,September,Tuesday,22,265,15,2015-09-22,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25464,23885,GO-20142219500,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,12,2014-06-04,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25465,23886,GO-20142219500,THEFT UNDER,2014-04-17,2014,April,Thursday,17,107,12,2014-06-04,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25466,23946,GO-20149006433,THEFT UNDER,2014-09-01,2014,September,Monday,1,244,0,2014-09-01,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)}",Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -25467,2314,GO-2018855244,THEFT UNDER - BICYCLE,2018-05-12,2018,May,Saturday,12,132,7,2018-05-12,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25468,8275,GO-20142424556,THEFT UNDER,2014-07-03,2014,July,Thursday,3,184,3,2014-07-03,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25469,8931,GO-20142937720,THEFT UNDER,2014-09-18,2014,September,Thursday,18,261,7,2014-09-18,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25470,11210,GO-20151806663,PROPERTY - FOUND,2015-10-20,2015,October,Tuesday,20,293,17,2015-10-20,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25471,11913,GO-20161314979,PROPERTY - FOUND,2016-07-26,2016,July,Tuesday,26,208,19,2016-07-26,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25472,13943,GO-2016119360,THEFT UNDER,2016-01-20,2016,January,Wednesday,20,20,15,2016-01-21,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25473,14002,GO-20169009562,THEFT UNDER - BICYCLE,2016-08-27,2016,August,Saturday,27,240,10,2016-08-27,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)}",Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -25474,20913,GO-20149005993,THEFT UNDER,2014-08-18,2014,August,Monday,18,230,18,2014-08-18,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25475,23420,GO-20171059025,THEFT UNDER - BICYCLE,2017-06-13,2017,June,Tuesday,13,164,21,2017-06-14,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)}",Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -25476,2749,GO-20189021133,THEFT UNDER - BICYCLE,2018-07-04,2018,July,Wednesday,4,185,11,2018-07-04,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25477,2882,GO-20189023007,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,18,2018-07-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25478,2883,GO-20189023007,THEFT UNDER - BICYCLE,2018-07-18,2018,July,Wednesday,18,199,18,2018-07-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25479,3270,GO-20189027208,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,17,2018-08-20,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25480,3529,GO-20181741810,B&E W'INTENT,2018-09-19,2018,September,Wednesday,19,262,0,2018-09-20,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25481,3530,GO-20181741810,B&E W'INTENT,2018-09-19,2018,September,Wednesday,19,262,0,2018-09-20,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25482,3531,GO-20181741810,B&E W'INTENT,2018-09-19,2018,September,Wednesday,19,262,0,2018-09-20,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25483,3532,GO-20181741810,B&E W'INTENT,2018-09-19,2018,September,Wednesday,19,262,0,2018-09-20,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25484,3533,GO-20181741810,B&E W'INTENT,2018-09-19,2018,September,Wednesday,19,262,0,2018-09-20,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25485,3655,GO-20189033518,THEFT UNDER - BICYCLE,2018-10-05,2018,October,Friday,5,278,8,2018-10-10,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25486,3657,GO-20189033532,THEFT UNDER - BICYCLE,2018-10-10,2018,October,Wednesday,10,283,7,2018-10-10,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25487,4667,GO-20199020934,THEFT UNDER,2019-07-03,2019,July,Wednesday,3,184,6,2019-07-04,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25488,5204,GO-20199028409,THEFT UNDER - BICYCLE,2019-08-31,2019,August,Saturday,31,243,19,2019-09-01,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25489,5851,GO-20209003086,THEFT UNDER,2020-01-24,2020,January,Friday,24,24,7,2020-01-26,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25490,6054,GO-2020708844,B&E,2020-04-11,2020,April,Saturday,11,102,14,2020-04-12,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25491,6728,GO-20209018469,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,22,2020-07-25,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25492,6729,GO-20209018469,THEFT UNDER,2020-07-24,2020,July,Friday,24,206,22,2020-07-25,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25493,7131,GO-20209021818,THEFT UNDER,2020-08-30,2020,August,Sunday,30,243,10,2020-08-30,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25494,7830,GO-20149002761,THEFT UNDER,2014-04-10,2014,April,Thursday,10,100,8,2014-04-11,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25495,8334,GO-20149004670,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,16,2014-07-05,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25496,8335,GO-20149004670,THEFT UNDER,2014-06-29,2014,June,Sunday,29,180,16,2014-07-05,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25497,8677,GO-20149006004,THEFT UNDER,2014-08-15,2014,August,Friday,15,227,18,2014-08-15,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25498,8821,GO-20149006606,THEFT UNDER,2014-09-05,2014,September,Friday,5,248,7,2014-09-05,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25499,8954,GO-20142968548,THEFT UNDER,2014-09-19,2014,September,Friday,19,262,14,2014-09-23,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25500,9897,GO-20151082245,THEFT UNDER,2015-06-26,2015,June,Friday,26,177,18,2015-06-27,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25501,11815,GO-20161256200,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,15,2016-07-17,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25502,11816,GO-20161256200,THEFT UNDER - BICYCLE,2016-07-17,2016,July,Sunday,17,199,15,2016-07-17,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25503,12049,GO-20169008518,THEFT UNDER,2016-07-07,2016,July,Thursday,7,189,6,2016-08-10,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25504,12136,GO-20161469315,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,16,2016-08-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25505,12250,GO-20161550860,THEFT UNDER - BICYCLE,2016-08-01,2016,August,Monday,1,214,16,2016-09-01,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25506,12318,GO-20161616581,THEFT UNDER - BICYCLE,2016-09-11,2016,September,Sunday,11,255,17,2016-09-11,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25507,13773,GO-20189019540,THEFT UNDER,2018-06-19,2018,June,Tuesday,19,170,11,2018-06-20,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25508,13833,GO-20181859452,B&E W'INTENT,2018-10-02,2018,October,Tuesday,2,275,16,2018-10-08,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25509,13834,GO-20181859452,B&E W'INTENT,2018-10-02,2018,October,Tuesday,2,275,16,2018-10-08,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25510,13884,GO-20151185103,THEFT UNDER,2015-07-12,2015,July,Sunday,12,193,13,2015-07-13,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25511,13997,GO-20161468227,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,14,2016-08-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25512,13998,GO-20161468227,THEFT UNDER - BICYCLE,2016-08-19,2016,August,Friday,19,232,14,2016-08-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25513,14373,GO-20142350319,PROPERTY - FOUND,2014-06-23,2014,June,Monday,23,174,10,2014-06-23,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25514,14439,GO-20159001793,THEFT UNDER,2015-04-01,2015,April,Wednesday,1,91,8,2015-04-09,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25515,16788,GO-20199026585,THEFT UNDER,2019-08-16,2019,August,Friday,16,228,16,2019-08-17,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25516,16811,GO-2020708844,B&E,2020-04-11,2020,April,Saturday,11,102,14,2020-04-12,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25517,16818,GO-20209015456,THEFT UNDER,2020-06-11,2020,June,Thursday,11,163,23,2020-06-16,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25518,16965,GO-20179012421,THEFT UNDER,2017-08-14,2017,August,Monday,14,226,16,2017-08-14,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25519,17049,GO-20189019239,THEFT UNDER,2018-06-16,2018,June,Saturday,16,167,8,2018-06-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25520,17050,GO-20189019239,THEFT UNDER,2018-06-16,2018,June,Saturday,16,167,8,2018-06-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25521,17051,GO-20189019239,THEFT UNDER,2018-06-16,2018,June,Saturday,16,167,8,2018-06-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25522,17086,GO-20189026007,THEFT UNDER,2018-08-10,2018,August,Friday,10,222,12,2018-08-11,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25523,17094,GO-20189027350,THEFT UNDER - BICYCLE,2018-08-20,2018,August,Monday,20,232,9,2018-08-21,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25524,17141,GO-20151066449,THEFT UNDER,2015-06-23,2015,June,Tuesday,23,174,20,2015-06-24,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25525,17257,GO-20161457508,THEFT UNDER - BICYCLE,2016-08-17,2016,August,Wednesday,17,230,7,2016-08-17,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25526,17310,GO-2017688424,THEFT UNDER - BICYCLE,2017-04-19,2017,April,Wednesday,19,109,13,2017-04-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25527,19852,GO-20151138685,THEFT UNDER,2015-07-05,2015,July,Sunday,5,186,15,2015-07-06,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25528,20053,GO-20199021670,THEFT UNDER,2019-07-09,2019,July,Tuesday,9,190,8,2019-07-09,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25529,20060,GO-20191406062,THEFT UNDER - BICYCLE,2019-07-25,2019,July,Thursday,25,206,12,2019-07-26,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25530,20061,GO-20199023812,THEFT UNDER - BICYCLE,2019-07-25,2019,July,Thursday,25,206,6,2019-07-25,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25531,20066,GO-20199027141,THEFT UNDER - BICYCLE,2019-08-21,2019,August,Wednesday,21,233,6,2019-08-21,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25532,20205,GO-20179010365,THEFT UNDER - BICYCLE,2017-07-14,2017,July,Friday,14,195,7,2017-07-17,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25533,20288,GO-2018266890,THEFT UNDER - BICYCLE,2018-02-11,2018,February,Sunday,11,42,2,2018-02-11,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25534,20331,GO-20189022388,THEFT UNDER,2018-07-04,2018,July,Wednesday,4,185,8,2018-07-14,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25535,20423,GO-20151328476,MISCHIEF UNDER,2015-08-03,2015,August,Monday,3,215,16,2015-08-03,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25536,20489,GO-2016798245,THEFT UNDER,2016-04-27,2016,April,Wednesday,27,118,0,2016-05-10,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25537,20503,GO-20169006499,THEFT UNDER,2016-06-22,2016,June,Wednesday,22,174,13,2016-06-28,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25538,20535,GO-20161665788,PROPERTY - FOUND,2016-09-19,2016,September,Monday,19,263,9,2016-09-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25539,20567,GO-20179004362,THEFT UNDER - BICYCLE,2017-04-05,2017,April,Wednesday,5,95,10,2017-04-07,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25540,20573,GO-20179005685,THEFT UNDER,2017-05-03,2017,May,Wednesday,3,123,9,2017-05-03,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25541,20860,GO-20142047404,THEFT UNDER,2014-05-09,2014,May,Friday,9,129,8,2014-05-09,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25542,23228,GO-20189038666,THEFT UNDER - BICYCLE,2018-11-14,2018,November,Wednesday,14,318,6,2018-11-17,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25543,23281,GO-20199021051,THEFT UNDER,2019-07-04,2019,July,Thursday,4,185,8,2019-07-04,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25544,23487,GO-20179017540,THEFT UNDER - BICYCLE,2017-10-17,2017,October,Tuesday,17,290,9,2017-10-17,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25545,23629,GO-20159004837,THEFT UNDER,2015-07-21,2015,July,Tuesday,21,202,12,2015-07-21,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25546,23695,GO-20169004721,THEFT UNDER - BICYCLE,2016-05-19,2016,May,Thursday,19,140,8,2016-05-19,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25547,23877,GO-20142071427,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,15,2014-05-14,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25548,23878,GO-20142071427,THEFT UNDER,2014-05-12,2014,May,Monday,12,132,15,2014-05-14,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)}",Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -25549,539,GO-20179007519,THEFT UNDER - BICYCLE,2017-06-01,2017,June,Thursday,1,152,11,2017-06-05,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25550,1206,GO-20179012990,THEFT UNDER,2017-08-21,2017,August,Monday,21,233,13,2017-08-22,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25551,1469,GO-20171708587,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,16,2017-09-20,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25552,1473,GO-20171708587,THEFT UNDER - BICYCLE,2017-09-13,2017,September,Wednesday,13,256,16,2017-09-20,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25553,1851,GO-20179019718,THEFT UNDER - BICYCLE,2017-11-14,2017,November,Tuesday,14,318,17,2017-11-15,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25554,3152,GO-20189025883,THEFT UNDER - BICYCLE,2018-08-08,2018,August,Wednesday,8,220,11,2018-08-10,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25555,3441,GO-20189029648,FRAUD UNDER,2018-07-08,2018,July,Sunday,8,189,19,2018-09-08,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25556,4547,GO-20199019286,THEFT UNDER,2019-06-19,2019,June,Wednesday,19,170,14,2019-06-19,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25557,4653,GO-20199020759,THEFT UNDER,2019-07-02,2019,July,Tuesday,2,183,6,2019-07-02,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25558,5767,GO-20199040994,THEFT UNDER,2019-12-13,2019,December,Friday,13,347,21,2019-12-14,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25559,5787,GO-20199042024,THEFT UNDER,2019-12-24,2019,December,Tuesday,24,358,13,2019-12-26,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25560,6471,GO-20209016189,THEFT UNDER,2020-06-03,2020,June,Wednesday,3,155,15,2020-06-25,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25561,7405,GO-20201881344,ROBBERY - MUGGING,2020-10-03,2020,October,Saturday,3,277,21,2020-10-03,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25562,9046,GO-20149007555,THEFT UNDER,2014-10-03,2014,October,Friday,3,276,21,2014-10-12,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25563,9083,GO-20143134832,THEFT UNDER,2014-10-17,2014,October,Friday,17,290,17,2014-10-19,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25564,9155,GO-20143239833,THEFT UNDER,2014-11-04,2014,November,Tuesday,4,308,19,2014-11-04,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25565,9361,GO-2015543181,MISCHIEF UNDER,2015-04-01,2015,April,Wednesday,1,91,17,2015-04-01,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25566,11318,GO-20169004589,THEFT UNDER,2016-05-16,2016,May,Monday,16,137,21,2016-05-16,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25567,11462,GO-20169005434,THEFT UNDER,2016-06-04,2016,June,Saturday,4,156,22,2016-06-07,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25568,11695,GO-20161170896,THEFT UNDER,2016-07-04,2016,July,Monday,4,186,20,2016-07-04,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -25569,11883,GO-20169007653,THEFT UNDER - BICYCLE,2016-07-22,2016,July,Friday,22,204,9,2016-07-23,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)}",Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 diff --git a/05_src/data/slides_data/california_housing_test.csv b/05_src/data/slides_data/california_housing_test.csv deleted file mode 100644 index 5210d8c53..000000000 --- a/05_src/data/slides_data/california_housing_test.csv +++ /dev/null @@ -1,3001 +0,0 @@ -"longitude","latitude","housing_median_age","total_rooms","total_bedrooms","population","households","median_income","median_house_value" --122.050000,37.370000,27.000000,3885.000000,661.000000,1537.000000,606.000000,6.608500,344700.000000 --118.300000,34.260000,43.000000,1510.000000,310.000000,809.000000,277.000000,3.599000,176500.000000 --117.810000,33.780000,27.000000,3589.000000,507.000000,1484.000000,495.000000,5.793400,270500.000000 --118.360000,33.820000,28.000000,67.000000,15.000000,49.000000,11.000000,6.135900,330000.000000 --119.670000,36.330000,19.000000,1241.000000,244.000000,850.000000,237.000000,2.937500,81700.000000 --119.560000,36.510000,37.000000,1018.000000,213.000000,663.000000,204.000000,1.663500,67000.000000 --121.430000,38.630000,43.000000,1009.000000,225.000000,604.000000,218.000000,1.664100,67000.000000 --120.650000,35.480000,19.000000,2310.000000,471.000000,1341.000000,441.000000,3.225000,166900.000000 --122.840000,38.400000,15.000000,3080.000000,617.000000,1446.000000,599.000000,3.669600,194400.000000 --118.020000,34.080000,31.000000,2402.000000,632.000000,2830.000000,603.000000,2.333300,164200.000000 --118.240000,33.980000,45.000000,972.000000,249.000000,1288.000000,261.000000,2.205400,125000.000000 --119.120000,35.850000,37.000000,736.000000,166.000000,564.000000,138.000000,2.416700,58300.000000 --121.930000,37.250000,36.000000,1089.000000,182.000000,535.000000,170.000000,4.690000,252600.000000 --117.030000,32.970000,16.000000,3936.000000,694.000000,1935.000000,659.000000,4.562500,231200.000000 --117.970000,33.730000,27.000000,2097.000000,325.000000,1217.000000,331.000000,5.712100,222500.000000 --117.990000,33.810000,42.000000,161.000000,40.000000,157.000000,50.000000,2.200000,153100.000000 --120.810000,37.530000,15.000000,570.000000,123.000000,189.000000,107.000000,1.875000,181300.000000 --121.200000,38.690000,26.000000,3077.000000,607.000000,1603.000000,595.000000,2.717400,137500.000000 --118.880000,34.210000,26.000000,1590.000000,196.000000,654.000000,199.000000,6.585100,300000.000000 --122.590000,38.010000,35.000000,8814.000000,1307.000000,3450.000000,1258.000000,6.172400,414300.000000 --122.150000,37.750000,40.000000,1445.000000,256.000000,849.000000,255.000000,3.891300,126300.000000 --121.370000,38.680000,36.000000,1775.000000,296.000000,937.000000,305.000000,3.178600,83400.000000 --118.160000,34.070000,47.000000,2994.000000,543.000000,1651.000000,561.000000,3.864400,241500.000000 --122.200000,37.790000,45.000000,2021.000000,528.000000,1410.000000,480.000000,2.778800,115400.000000 --117.280000,33.280000,13.000000,6131.000000,1040.000000,4049.000000,940.000000,3.815600,150700.000000 --118.030000,34.160000,36.000000,1401.000000,218.000000,667.000000,225.000000,7.161500,484700.000000 --122.420000,37.760000,52.000000,3587.000000,1030.000000,2259.000000,979.000000,2.540300,250000.000000 --118.390000,33.990000,32.000000,2612.000000,418.000000,1030.000000,402.000000,6.603000,369200.000000 --118.450000,34.070000,19.000000,4845.000000,1609.000000,3751.000000,1539.000000,1.583000,350000.000000 --118.480000,34.010000,30.000000,3078.000000,954.000000,1561.000000,901.000000,3.485200,425000.000000 --119.350000,36.330000,14.000000,1195.000000,220.000000,568.000000,229.000000,3.148600,105600.000000 --118.300000,33.910000,34.000000,1617.000000,493.000000,1530.000000,500.000000,2.618200,172600.000000 --121.130000,39.310000,17.000000,3442.000000,705.000000,1693.000000,619.000000,2.810200,128900.000000 --118.080000,34.550000,5.000000,16181.000000,2971.000000,8152.000000,2651.000000,4.523700,141800.000000 --118.320000,33.940000,38.000000,1067.000000,170.000000,499.000000,169.000000,4.638900,183800.000000 --118.110000,34.000000,33.000000,2886.000000,726.000000,2650.000000,728.000000,2.625000,178700.000000 --122.530000,37.970000,52.000000,1560.000000,451.000000,700.000000,419.000000,2.512500,270800.000000 --118.020000,33.920000,34.000000,1478.000000,251.000000,956.000000,277.000000,5.523800,185300.000000 --118.050000,33.930000,31.000000,894.000000,203.000000,883.000000,190.000000,3.677100,141500.000000 --119.010000,34.230000,11.000000,5785.000000,1035.000000,2760.000000,985.000000,4.693000,232200.000000 --119.320000,36.200000,15.000000,1562.000000,275.000000,961.000000,287.000000,3.423100,83300.000000 --116.920000,32.770000,16.000000,2770.000000,406.000000,1269.000000,429.000000,6.678300,275000.000000 --118.060000,34.150000,37.000000,1980.000000,226.000000,697.000000,226.000000,15.000100,500001.000000 --117.270000,34.090000,36.000000,848.000000,186.000000,737.000000,169.000000,0.983800,79300.000000 --118.230000,34.130000,48.000000,1308.000000,286.000000,835.000000,294.000000,4.289100,214800.000000 --117.240000,33.170000,4.000000,9998.000000,1874.000000,3925.000000,1672.000000,4.282600,237500.000000 --121.910000,37.440000,24.000000,1212.000000,251.000000,799.000000,242.000000,5.080800,212500.000000 --118.290000,33.940000,47.000000,1782.000000,338.000000,1003.000000,329.000000,2.539800,105700.000000 --121.350000,38.000000,6.000000,1649.000000,369.000000,732.000000,350.000000,3.423100,123800.000000 --117.990000,33.780000,19.000000,7399.000000,1698.000000,3554.000000,1593.000000,3.104900,173900.000000 --120.990000,37.700000,14.000000,9849.000000,1887.000000,4356.000000,1780.000000,3.587700,160900.000000 --119.420000,35.970000,21.000000,554.000000,121.000000,426.000000,122.000000,2.351600,47500.000000 --122.210000,37.800000,39.000000,2003.000000,500.000000,1109.000000,464.000000,3.068200,156500.000000 --118.170000,33.800000,26.000000,1589.000000,380.000000,883.000000,366.000000,3.531300,187500.000000 --117.900000,34.090000,39.000000,1726.000000,333.000000,892.000000,335.000000,4.340900,191800.000000 --117.990000,33.930000,36.000000,1287.000000,233.000000,779.000000,229.000000,4.852300,175800.000000 --121.420000,38.720000,10.000000,3054.000000,528.000000,1932.000000,510.000000,3.090300,91900.000000 --118.770000,34.260000,26.000000,3038.000000,468.000000,1825.000000,468.000000,5.638500,196900.000000 --121.930000,37.330000,44.000000,1449.000000,291.000000,676.000000,282.000000,3.575000,292200.000000 --121.820000,37.250000,16.000000,2650.000000,600.000000,1969.000000,586.000000,3.946100,194300.000000 --122.290000,37.560000,36.000000,805.000000,140.000000,445.000000,139.000000,5.822100,289400.000000 --121.780000,37.230000,18.000000,1747.000000,317.000000,1055.000000,285.000000,5.898000,229100.000000 --118.410000,34.000000,35.000000,1062.000000,305.000000,1026.000000,307.000000,2.715300,265500.000000 --121.670000,40.870000,31.000000,1581.000000,299.000000,776.000000,287.000000,2.906300,77800.000000 --118.000000,33.920000,26.000000,2830.000000,399.000000,1204.000000,404.000000,6.127300,289600.000000 --117.220000,32.730000,38.000000,3966.000000,768.000000,1640.000000,729.000000,3.840900,291400.000000 --121.080000,37.690000,19.000000,6473.000000,1212.000000,3559.000000,1123.000000,3.224600,129300.000000 --117.530000,33.920000,12.000000,2290.000000,319.000000,728.000000,228.000000,6.156100,233500.000000 --117.460000,34.080000,18.000000,3830.000000,750.000000,2767.000000,702.000000,3.660200,120700.000000 --117.970000,33.860000,35.000000,1691.000000,367.000000,1265.000000,378.000000,3.585500,174300.000000 --121.920000,37.330000,52.000000,2125.000000,382.000000,930.000000,387.000000,5.283100,299500.000000 --118.200000,34.040000,44.000000,1582.000000,544.000000,1998.000000,515.000000,1.688800,125000.000000 --118.060000,33.800000,22.000000,1892.000000,442.000000,1015.000000,404.000000,4.137900,212500.000000 --122.050000,37.360000,34.000000,2400.000000,419.000000,1017.000000,384.000000,4.136900,316900.000000 --123.790000,39.500000,24.000000,1421.000000,291.000000,588.000000,274.000000,2.325000,157300.000000 --120.790000,37.490000,44.000000,1186.000000,225.000000,687.000000,234.000000,3.416700,160700.000000 --121.890000,37.350000,47.000000,2879.000000,631.000000,2229.000000,606.000000,3.259900,183100.000000 --118.430000,34.200000,29.000000,3051.000000,694.000000,1942.000000,679.000000,3.111800,238100.000000 --118.750000,34.170000,18.000000,6217.000000,858.000000,2703.000000,834.000000,6.807500,325900.000000 --122.470000,37.990000,22.000000,7274.000000,1002.000000,2468.000000,957.000000,7.494000,439200.000000 --120.690000,37.400000,46.000000,860.000000,130.000000,496.000000,147.000000,3.516700,137500.000000 --118.280000,34.050000,44.000000,968.000000,384.000000,1805.000000,375.000000,1.480100,212500.000000 --118.440000,34.250000,35.000000,1583.000000,324.000000,1481.000000,351.000000,3.700000,176000.000000 --122.050000,38.260000,21.000000,7195.000000,1416.000000,3927.000000,1377.000000,3.091200,126300.000000 --121.990000,37.350000,18.000000,1712.000000,509.000000,972.000000,467.000000,4.397100,238900.000000 --121.020000,37.680000,28.000000,2875.000000,560.000000,1608.000000,558.000000,3.548900,106400.000000 --119.850000,36.740000,35.000000,1191.000000,190.000000,537.000000,182.000000,3.537500,96700.000000 --118.020000,34.080000,28.000000,2769.000000,631.000000,2452.000000,581.000000,2.607100,175900.000000 --123.520000,41.010000,17.000000,1564.000000,345.000000,517.000000,222.000000,2.154200,83800.000000 --122.400000,37.620000,44.000000,1619.000000,362.000000,1064.000000,335.000000,4.023800,224200.000000 --118.130000,34.150000,24.000000,1125.000000,341.000000,579.000000,321.000000,2.812500,141700.000000 --122.000000,37.980000,32.000000,1013.000000,169.000000,436.000000,173.000000,5.111800,226900.000000 --118.450000,34.250000,36.000000,1453.000000,270.000000,808.000000,275.000000,4.383900,204600.000000 --117.500000,33.870000,4.000000,6755.000000,1017.000000,2866.000000,850.000000,5.049300,239800.000000 --122.220000,37.840000,50.000000,2935.000000,473.000000,1031.000000,479.000000,7.500000,295200.000000 --119.820000,36.640000,30.000000,1694.000000,312.000000,1008.000000,321.000000,2.246600,96000.000000 --120.210000,36.770000,20.000000,1745.000000,348.000000,1093.000000,302.000000,2.319400,90600.000000 --120.970000,38.420000,16.000000,1748.000000,322.000000,4930.000000,287.000000,4.302900,121900.000000 --121.190000,38.870000,20.000000,3118.000000,500.000000,1405.000000,519.000000,6.000000,209400.000000 --118.200000,33.770000,52.000000,1375.000000,457.000000,1089.000000,317.000000,2.234400,200000.000000 --118.300000,34.020000,49.000000,2120.000000,483.000000,1522.000000,416.000000,1.850000,116800.000000 --122.230000,37.790000,43.000000,5963.000000,1344.000000,4367.000000,1231.000000,2.191700,112800.000000 --121.310000,38.620000,31.000000,3114.000000,430.000000,1121.000000,456.000000,6.244000,240000.000000 --117.250000,32.800000,35.000000,2281.000000,506.000000,1005.000000,496.000000,4.229600,275000.000000 --118.260000,33.990000,36.000000,2016.000000,505.000000,1807.000000,464.000000,1.690100,103500.000000 --119.390000,36.540000,34.000000,1590.000000,422.000000,1272.000000,407.000000,1.806800,59000.000000 --121.510000,38.520000,30.000000,3236.000000,588.000000,1167.000000,569.000000,4.097200,181400.000000 --119.180000,34.270000,6.000000,2307.000000,386.000000,910.000000,364.000000,5.215000,279500.000000 --118.180000,33.770000,30.000000,1418.000000,439.000000,720.000000,417.000000,2.637100,159400.000000 --122.430000,37.740000,52.000000,1514.000000,314.000000,724.000000,301.000000,5.329200,300900.000000 --117.930000,33.910000,24.000000,1698.000000,297.000000,676.000000,273.000000,5.201700,364600.000000 --124.160000,40.770000,35.000000,2141.000000,438.000000,1053.000000,434.000000,2.852900,85600.000000 --117.950000,33.630000,27.000000,2489.000000,481.000000,1082.000000,443.000000,5.877700,358800.000000 --118.050000,34.100000,36.000000,1606.000000,318.000000,889.000000,294.000000,4.793100,272600.000000 --116.970000,32.810000,19.000000,1573.000000,471.000000,844.000000,414.000000,2.142200,125000.000000 --118.850000,34.170000,42.000000,564.000000,96.000000,220.000000,81.000000,4.562500,318800.000000 --117.730000,33.630000,15.000000,2874.000000,592.000000,1382.000000,586.000000,5.513700,161800.000000 --122.070000,37.340000,30.000000,1851.000000,238.000000,631.000000,236.000000,10.100700,500001.000000 --117.180000,33.020000,15.000000,3540.000000,453.000000,1364.000000,425.000000,13.662300,500001.000000 --118.410000,34.000000,38.000000,324.000000,70.000000,268.000000,73.000000,2.550000,271400.000000 --121.960000,37.300000,20.000000,4228.000000,1006.000000,2334.000000,1007.000000,4.308100,227300.000000 --121.740000,38.550000,34.000000,2299.000000,579.000000,1300.000000,536.000000,1.643500,148500.000000 --118.210000,33.920000,28.000000,2949.000000,1003.000000,4551.000000,930.000000,1.902600,131900.000000 --121.900000,36.610000,29.000000,3412.000000,827.000000,1574.000000,759.000000,2.930900,217100.000000 --117.810000,33.840000,17.000000,4343.000000,515.000000,1605.000000,484.000000,10.598100,460100.000000 --118.190000,33.930000,42.000000,1829.000000,391.000000,1614.000000,377.000000,3.191200,146400.000000 --120.930000,37.730000,14.000000,2799.000000,618.000000,2294.000000,596.000000,2.634300,81500.000000 --122.020000,37.960000,25.000000,2615.000000,368.000000,935.000000,366.000000,6.672700,305100.000000 --122.470000,37.790000,52.000000,2844.000000,623.000000,1380.000000,596.000000,4.750000,500001.000000 --117.190000,34.030000,25.000000,2513.000000,340.000000,900.000000,320.000000,6.496200,182400.000000 --117.240000,32.800000,28.000000,1072.000000,331.000000,692.000000,321.000000,2.135700,187500.000000 --118.130000,34.100000,19.000000,2742.000000,756.000000,1396.000000,703.000000,2.566300,197500.000000 --122.420000,37.730000,50.000000,3426.000000,769.000000,2261.000000,671.000000,2.888000,246400.000000 --118.140000,34.710000,32.000000,1164.000000,248.000000,588.000000,270.000000,1.191700,86900.000000 --119.760000,36.750000,39.000000,2233.000000,563.000000,2031.000000,491.000000,1.864100,50800.000000 --122.340000,37.560000,39.000000,3562.000000,391.000000,1139.000000,391.000000,12.641700,500001.000000 --122.450000,40.460000,16.000000,2734.000000,501.000000,1413.000000,484.000000,2.808500,105700.000000 --118.290000,33.910000,31.000000,2025.000000,618.000000,2231.000000,593.000000,2.474100,151200.000000 --118.320000,33.910000,34.000000,3041.000000,677.000000,1920.000000,640.000000,4.530400,181300.000000 --122.040000,37.360000,26.000000,3298.000000,460.000000,1241.000000,472.000000,6.875300,403000.000000 --117.390000,34.100000,12.000000,7184.000000,1516.000000,4862.000000,1235.000000,2.449200,103800.000000 --122.250000,37.800000,36.000000,1678.000000,606.000000,1645.000000,543.000000,2.230300,116700.000000 --117.980000,34.100000,22.000000,5661.000000,1209.000000,5389.000000,1178.000000,3.772700,159700.000000 --120.060000,36.950000,24.000000,646.000000,134.000000,454.000000,149.000000,2.125000,61900.000000 --121.470000,39.490000,17.000000,1554.000000,242.000000,553.000000,230.000000,3.217400,91800.000000 --122.200000,37.790000,35.000000,1802.000000,459.000000,1009.000000,390.000000,2.303600,126000.000000 --117.230000,32.750000,23.000000,2415.000000,653.000000,1275.000000,596.000000,3.138900,101800.000000 --119.750000,36.740000,39.000000,1740.000000,351.000000,1098.000000,347.000000,1.895800,51300.000000 --117.920000,34.030000,35.000000,1341.000000,233.000000,898.000000,216.000000,4.111800,157300.000000 --121.640000,39.280000,25.000000,2857.000000,662.000000,2076.000000,685.000000,1.809500,64100.000000 --117.140000,32.720000,45.000000,1140.000000,310.000000,840.000000,339.000000,1.615600,156300.000000 --122.290000,37.540000,41.000000,1743.000000,349.000000,811.000000,349.000000,4.946400,282400.000000 --117.910000,33.940000,15.000000,5799.000000,842.000000,2314.000000,787.000000,6.343300,350500.000000 --118.380000,34.270000,8.000000,3248.000000,847.000000,2608.000000,731.000000,2.821400,158300.000000 --122.030000,37.600000,24.000000,2077.000000,383.000000,1488.000000,389.000000,4.572100,214700.000000 --117.130000,33.150000,16.000000,3907.000000,671.000000,1759.000000,663.000000,3.177600,172600.000000 --118.280000,34.000000,42.000000,855.000000,284.000000,890.000000,247.000000,1.277800,112500.000000 --122.450000,37.720000,52.000000,1729.000000,319.000000,890.000000,300.000000,4.303600,261800.000000 --119.770000,36.770000,38.000000,3065.000000,658.000000,1441.000000,625.000000,2.056400,64700.000000 --117.700000,33.640000,15.000000,5743.000000,773.000000,2380.000000,773.000000,8.192600,326600.000000 --117.070000,32.790000,36.000000,3583.000000,642.000000,1711.000000,602.000000,3.974500,170800.000000 --117.850000,33.620000,13.000000,5192.000000,658.000000,1865.000000,662.000000,15.000100,500001.000000 --117.760000,33.710000,15.000000,1010.000000,350.000000,470.000000,342.000000,3.222900,108300.000000 --117.190000,34.940000,31.000000,2034.000000,444.000000,1097.000000,367.000000,2.152200,60800.000000 --120.970000,37.690000,15.000000,4065.000000,841.000000,1986.000000,680.000000,3.072000,114300.000000 --117.190000,33.640000,12.000000,1481.000000,265.000000,757.000000,243.000000,3.235000,210700.000000 --118.380000,33.910000,36.000000,2904.000000,515.000000,1463.000000,534.000000,5.837400,289600.000000 --121.560000,38.260000,43.000000,1906.000000,327.000000,996.000000,314.000000,2.974400,136800.000000 --118.960000,35.870000,17.000000,1668.000000,307.000000,888.000000,277.000000,3.779400,96200.000000 --116.960000,32.800000,24.000000,2493.000000,693.000000,1420.000000,643.000000,1.835700,104200.000000 --118.270000,33.940000,30.000000,1764.000000,397.000000,1406.000000,362.000000,1.449000,93100.000000 --119.180000,34.190000,36.000000,4519.000000,1081.000000,4818.000000,1061.000000,2.856100,179100.000000 --118.230000,33.900000,28.000000,1108.000000,284.000000,1498.000000,289.000000,2.470600,88800.000000 --120.490000,37.260000,28.000000,2159.000000,416.000000,1283.000000,378.000000,1.893900,83000.000000 --121.430000,38.640000,34.000000,2010.000000,411.000000,1501.000000,422.000000,2.041700,65900.000000 --118.140000,34.170000,42.000000,2757.000000,713.000000,2112.000000,653.000000,2.714800,166800.000000 --119.090000,35.410000,12.000000,3449.000000,522.000000,1754.000000,551.000000,5.623500,130600.000000 --118.020000,33.710000,24.000000,2598.000000,443.000000,1184.000000,435.000000,5.862300,287800.000000 --121.530000,39.060000,20.000000,561.000000,109.000000,308.000000,114.000000,3.302100,70800.000000 --119.290000,34.280000,38.000000,2387.000000,748.000000,1537.000000,741.000000,2.314700,192500.000000 --121.840000,37.340000,33.000000,1019.000000,191.000000,938.000000,215.000000,4.092900,165000.000000 --117.990000,33.880000,42.000000,1461.000000,302.000000,986.000000,314.000000,3.955900,161100.000000 --122.240000,37.550000,3.000000,6164.000000,1175.000000,2198.000000,975.000000,6.741300,435900.000000 --121.800000,37.310000,21.000000,2630.000000,446.000000,1789.000000,389.000000,5.054300,232000.000000 --117.430000,34.080000,13.000000,4563.000000,1187.000000,2475.000000,1019.000000,2.118900,121700.000000 --118.280000,34.020000,29.000000,515.000000,229.000000,2690.000000,217.000000,0.499900,500001.000000 --117.300000,33.060000,31.000000,2128.000000,520.000000,1049.000000,485.000000,4.027000,290000.000000 --118.200000,34.040000,18.000000,796.000000,227.000000,547.000000,218.000000,1.033300,135400.000000 --117.630000,34.110000,30.000000,2674.000000,428.000000,1404.000000,456.000000,4.296900,165600.000000 --121.940000,37.330000,37.000000,818.000000,269.000000,576.000000,261.000000,2.190200,250000.000000 --118.070000,33.930000,5.000000,906.000000,187.000000,1453.000000,158.000000,4.125000,171900.000000 --117.190000,32.830000,30.000000,3225.000000,555.000000,1601.000000,532.000000,4.331700,173300.000000 --118.210000,33.890000,42.000000,1739.000000,370.000000,1104.000000,297.000000,2.212500,120700.000000 --118.410000,34.190000,39.000000,1169.000000,242.000000,612.000000,247.000000,4.142900,200000.000000 --117.000000,32.800000,29.000000,2045.000000,398.000000,912.000000,368.000000,3.018900,144100.000000 --116.920000,32.860000,11.000000,2204.000000,518.000000,1472.000000,497.000000,2.369300,127000.000000 --121.040000,38.950000,22.000000,1931.000000,445.000000,1009.000000,407.000000,2.750000,153200.000000 --122.120000,37.450000,38.000000,1276.000000,314.000000,955.000000,287.000000,2.009600,155700.000000 --119.480000,36.540000,28.000000,2112.000000,363.000000,1011.000000,335.000000,4.222200,108900.000000 --121.020000,37.680000,25.000000,3262.000000,588.000000,1834.000000,578.000000,3.996000,114500.000000 --123.280000,40.770000,25.000000,767.000000,206.000000,301.000000,121.000000,1.625000,79200.000000 --122.890000,39.110000,10.000000,1588.000000,333.000000,585.000000,254.000000,2.255100,71100.000000 --122.040000,37.970000,21.000000,6445.000000,1839.000000,3621.000000,1735.000000,2.584100,112500.000000 --118.080000,33.810000,21.000000,1189.000000,281.000000,577.000000,264.000000,3.315500,237500.000000 --118.310000,34.090000,36.000000,787.000000,420.000000,1506.000000,360.000000,1.241200,216700.000000 --122.160000,37.750000,35.000000,667.000000,140.000000,406.000000,133.000000,3.804700,94300.000000 --121.610000,38.380000,37.000000,1365.000000,276.000000,952.000000,268.000000,4.037000,156900.000000 --122.100000,37.680000,31.000000,1892.000000,428.000000,1162.000000,389.000000,3.125000,167100.000000 --122.280000,37.870000,49.000000,2026.000000,548.000000,963.000000,521.000000,1.980500,173700.000000 --116.910000,34.240000,23.000000,6379.000000,1636.000000,1350.000000,568.000000,1.633600,124500.000000 --121.830000,37.280000,33.000000,1115.000000,250.000000,1168.000000,261.000000,3.900900,178600.000000 --118.300000,33.810000,17.000000,5544.000000,1068.000000,3008.000000,1038.000000,5.322000,282700.000000 --117.960000,33.700000,23.000000,4417.000000,740.000000,1865.000000,693.000000,5.342800,279300.000000 --122.140000,40.070000,31.000000,2053.000000,465.000000,1193.000000,447.000000,1.492300,44400.000000 --121.440000,38.730000,25.000000,1287.000000,224.000000,727.000000,236.000000,4.739600,135500.000000 --122.260000,37.550000,17.000000,4576.000000,814.000000,1941.000000,807.000000,5.957200,443800.000000 --121.640000,37.140000,14.000000,5487.000000,1024.000000,2823.000000,979.000000,4.175000,229800.000000 --117.180000,34.480000,8.000000,3561.000000,691.000000,2156.000000,659.000000,2.777800,86900.000000 --122.280000,38.340000,44.000000,1066.000000,190.000000,416.000000,174.000000,3.638900,304000.000000 --117.900000,33.600000,25.000000,2465.000000,585.000000,906.000000,472.000000,3.653800,500001.000000 --122.180000,37.780000,33.000000,142.000000,31.000000,575.000000,47.000000,3.875000,225000.000000 --121.490000,38.510000,30.000000,3166.000000,607.000000,1857.000000,579.000000,3.176800,79500.000000 --118.190000,33.910000,43.000000,1531.000000,357.000000,1509.000000,376.000000,2.635400,128100.000000 --118.270000,34.100000,50.000000,2113.000000,398.000000,793.000000,418.000000,4.713200,304600.000000 --121.440000,38.610000,34.000000,172.000000,38.000000,149.000000,55.000000,2.644200,55000.000000 --121.910000,37.430000,33.000000,2791.000000,496.000000,1714.000000,485.000000,4.830400,224900.000000 --117.860000,33.720000,31.000000,1194.000000,297.000000,1602.000000,306.000000,2.333300,157700.000000 --118.350000,33.920000,29.000000,736.000000,232.000000,584.000000,231.000000,3.616700,200000.000000 --117.260000,33.840000,12.000000,1159.000000,209.000000,523.000000,159.000000,2.723200,123200.000000 --122.430000,37.730000,52.000000,3602.000000,738.000000,2270.000000,647.000000,3.893400,251800.000000 --121.800000,37.990000,16.000000,3077.000000,465.000000,1575.000000,446.000000,5.500000,179500.000000 --122.580000,38.460000,15.000000,2936.000000,517.000000,1182.000000,501.000000,3.398100,246900.000000 --122.470000,37.780000,52.000000,2042.000000,378.000000,1153.000000,408.000000,4.185600,404700.000000 --118.080000,34.000000,32.000000,1165.000000,358.000000,997.000000,361.000000,0.981700,166300.000000 --122.000000,37.350000,20.000000,4304.000000,851.000000,2059.000000,835.000000,5.167400,333000.000000 --119.020000,35.410000,21.000000,2534.000000,554.000000,1297.000000,517.000000,2.057500,67000.000000 --118.130000,34.180000,52.000000,1464.000000,211.000000,603.000000,226.000000,5.830900,309100.000000 --121.940000,37.270000,23.000000,1932.000000,552.000000,997.000000,482.000000,3.662000,211900.000000 --120.510000,35.910000,39.000000,768.000000,162.000000,264.000000,118.000000,5.324500,250000.000000 --121.650000,38.030000,28.000000,3144.000000,694.000000,1095.000000,482.000000,3.440200,192400.000000 --121.620000,39.790000,11.000000,3835.000000,727.000000,1456.000000,658.000000,2.537400,97200.000000 --117.080000,32.820000,16.000000,1787.000000,236.000000,770.000000,228.000000,7.129800,278600.000000 --123.210000,39.140000,15.000000,2235.000000,545.000000,1376.000000,516.000000,1.903200,100000.000000 --119.610000,36.330000,32.000000,1492.000000,284.000000,926.000000,264.000000,3.013900,61500.000000 --114.980000,33.070000,18.000000,1183.000000,363.000000,374.000000,127.000000,3.160700,57500.000000 --118.380000,34.040000,36.000000,3005.000000,771.000000,2054.000000,758.000000,2.043700,309100.000000 --117.990000,33.700000,13.000000,4013.000000,903.000000,1999.000000,859.000000,4.625000,248800.000000 --116.260000,33.720000,10.000000,9404.000000,1827.000000,3208.000000,1283.000000,3.108600,105800.000000 --118.400000,34.000000,10.000000,1526.000000,339.000000,705.000000,268.000000,5.808300,321800.000000 --120.640000,35.460000,6.000000,5876.000000,1406.000000,2877.000000,1304.000000,2.543700,146400.000000 --122.030000,37.390000,22.000000,3280.000000,933.000000,1842.000000,795.000000,4.410700,232700.000000 --118.290000,33.880000,36.000000,1751.000000,438.000000,1175.000000,419.000000,3.073900,218600.000000 --117.020000,32.690000,7.000000,6055.000000,1004.000000,3031.000000,952.000000,4.436000,135000.000000 --119.320000,36.300000,15.000000,2864.000000,571.000000,1480.000000,475.000000,2.969800,93400.000000 --122.310000,38.010000,18.000000,4123.000000,874.000000,1895.000000,772.000000,3.275900,195000.000000 --118.860000,34.190000,27.000000,1931.000000,261.000000,736.000000,244.000000,6.780500,392900.000000 --117.140000,33.810000,13.000000,4496.000000,756.000000,2044.000000,695.000000,3.277800,148800.000000 --118.640000,34.220000,25.000000,2762.000000,410.000000,1166.000000,439.000000,6.864300,333700.000000 --116.630000,33.890000,22.000000,1540.000000,364.000000,610.000000,268.000000,1.522700,71000.000000 --118.280000,34.110000,45.000000,1607.000000,331.000000,633.000000,332.000000,3.144500,438300.000000 --119.030000,35.380000,52.000000,1695.000000,290.000000,540.000000,260.000000,2.731200,147100.000000 --118.260000,33.880000,36.000000,1212.000000,222.000000,775.000000,224.000000,5.559100,136500.000000 --117.890000,33.850000,18.000000,2036.000000,414.000000,1292.000000,380.000000,3.875000,273000.000000 --122.090000,37.380000,36.000000,2587.000000,416.000000,1055.000000,410.000000,6.199500,407200.000000 --122.940000,39.100000,18.000000,681.000000,120.000000,272.000000,105.000000,2.890600,140600.000000 --117.100000,32.680000,42.000000,2013.000000,568.000000,1920.000000,557.000000,2.072400,107600.000000 --118.980000,35.410000,36.000000,1482.000000,266.000000,640.000000,274.000000,3.875000,94500.000000 --120.230000,37.960000,52.000000,1230.000000,262.000000,609.000000,243.000000,2.005700,68200.000000 --118.200000,33.940000,43.000000,1934.000000,511.000000,1895.000000,493.000000,2.502900,159700.000000 --121.300000,37.950000,9.000000,674.000000,242.000000,575.000000,193.000000,2.202400,45000.000000 --121.740000,38.550000,33.000000,6861.000000,1820.000000,3717.000000,1767.000000,1.731100,182600.000000 --121.960000,37.330000,35.000000,2294.000000,411.000000,1054.000000,449.000000,4.066700,276900.000000 --120.600000,37.360000,27.000000,2521.000000,484.000000,1307.000000,456.000000,3.091100,86900.000000 --122.470000,37.700000,44.000000,2034.000000,423.000000,1491.000000,373.000000,4.534100,236500.000000 --117.050000,32.580000,23.000000,1918.000000,339.000000,1392.000000,340.000000,4.087000,134800.000000 --117.900000,33.870000,34.000000,1411.000000,292.000000,1040.000000,299.000000,3.433800,195200.000000 --117.230000,32.870000,15.000000,2290.000000,662.000000,1034.000000,594.000000,3.010400,204200.000000 --122.080000,37.880000,24.000000,2059.000000,462.000000,410.000000,294.000000,2.397100,99400.000000 --118.210000,33.800000,45.000000,1160.000000,274.000000,1095.000000,269.000000,2.730800,139000.000000 --122.080000,37.640000,30.000000,5267.000000,1253.000000,4065.000000,1113.000000,3.347900,182100.000000 --118.380000,34.140000,40.000000,1965.000000,354.000000,666.000000,357.000000,6.087600,483800.000000 --118.200000,33.800000,45.000000,2456.000000,495.000000,1300.000000,450.000000,3.979200,210200.000000 --117.620000,33.430000,27.000000,3858.000000,1062.000000,2321.000000,873.000000,3.315500,231000.000000 --122.110000,37.400000,31.000000,2836.000000,490.000000,1138.000000,481.000000,4.951900,500001.000000 --122.840000,38.980000,21.000000,939.000000,176.000000,556.000000,178.000000,1.719600,75000.000000 --121.260000,38.270000,20.000000,1314.000000,229.000000,712.000000,219.000000,4.412500,144600.000000 --116.890000,33.730000,15.000000,2094.000000,316.000000,937.000000,277.000000,5.362300,201300.000000 --122.670000,38.440000,32.000000,3771.000000,741.000000,1786.000000,721.000000,3.241500,172200.000000 --117.940000,33.870000,46.000000,2066.000000,450.000000,1275.000000,448.000000,3.937500,187000.000000 --118.140000,34.690000,34.000000,1439.000000,327.000000,708.000000,298.000000,3.269900,100000.000000 --122.400000,37.590000,22.000000,2754.000000,477.000000,1163.000000,479.000000,6.230600,500001.000000 --118.080000,33.840000,28.000000,4216.000000,948.000000,2997.000000,896.000000,3.796100,162700.000000 --116.360000,33.780000,6.000000,24121.000000,4522.000000,4176.000000,2221.000000,3.379900,239300.000000 --117.940000,33.850000,26.000000,1888.000000,429.000000,1550.000000,458.000000,3.339300,168600.000000 --117.470000,33.940000,34.000000,559.000000,139.000000,532.000000,137.000000,3.068700,88500.000000 --117.640000,33.650000,4.000000,6842.000000,1512.000000,3256.000000,1439.000000,5.413200,216600.000000 --118.500000,34.240000,34.000000,2634.000000,412.000000,1114.000000,423.000000,5.940100,315300.000000 --118.190000,33.780000,24.000000,225.000000,72.000000,439.000000,71.000000,2.853300,137500.000000 --117.660000,34.120000,16.000000,3853.000000,541.000000,1726.000000,497.000000,6.119500,251100.000000 --122.300000,37.970000,34.000000,2854.000000,528.000000,1211.000000,452.000000,3.535300,164700.000000 --122.140000,37.680000,31.000000,3184.000000,716.000000,1561.000000,628.000000,2.795500,183100.000000 --118.260000,33.940000,41.000000,1510.000000,410.000000,1408.000000,389.000000,1.650000,94200.000000 --118.230000,33.930000,39.000000,2065.000000,532.000000,2015.000000,535.000000,0.847800,104900.000000 --120.960000,38.660000,11.000000,2339.000000,436.000000,1062.000000,380.000000,3.903600,180800.000000 --117.840000,35.350000,28.000000,1913.000000,486.000000,858.000000,371.000000,1.996200,50800.000000 --119.160000,34.200000,35.000000,2183.000000,636.000000,3504.000000,623.000000,1.970400,160300.000000 --122.650000,38.230000,52.000000,1735.000000,347.000000,712.000000,343.000000,3.171100,200800.000000 --121.880000,37.370000,14.000000,6016.000000,1404.000000,3258.000000,1316.000000,3.574500,333700.000000 --118.400000,34.040000,43.000000,3863.000000,537.000000,1398.000000,511.000000,8.593800,500001.000000 --118.270000,34.110000,36.000000,1832.000000,539.000000,934.000000,486.000000,3.052100,276600.000000 --118.440000,34.300000,38.000000,1595.000000,314.000000,1181.000000,327.000000,3.400000,155500.000000 --121.770000,37.680000,41.000000,1501.000000,299.000000,629.000000,288.000000,4.680600,209400.000000 --119.990000,38.880000,17.000000,2807.000000,529.000000,675.000000,251.000000,2.745700,107800.000000 --118.360000,33.960000,26.000000,3543.000000,1055.000000,2742.000000,951.000000,2.550400,151300.000000 --118.320000,33.970000,52.000000,1778.000000,320.000000,795.000000,279.000000,3.511400,138800.000000 --118.270000,34.270000,27.000000,5205.000000,859.000000,2363.000000,888.000000,6.194600,276100.000000 --116.810000,33.900000,17.000000,2009.000000,469.000000,820.000000,381.000000,1.328600,81800.000000 --118.390000,33.960000,45.000000,1436.000000,374.000000,662.000000,292.000000,3.625000,329400.000000 --118.070000,33.910000,29.000000,2387.000000,570.000000,1978.000000,548.000000,3.195700,159200.000000 --118.350000,34.220000,30.000000,1260.000000,222.000000,638.000000,229.000000,4.130200,258300.000000 --118.430000,34.020000,41.000000,2403.000000,516.000000,1001.000000,514.000000,4.390600,500001.000000 --121.730000,37.680000,17.000000,20354.000000,3493.000000,8768.000000,3293.000000,5.449600,238900.000000 --117.310000,32.980000,17.000000,2789.000000,648.000000,849.000000,345.000000,4.101200,244700.000000 --122.290000,37.560000,12.000000,6474.000000,1467.000000,2516.000000,1390.000000,5.035300,305800.000000 --119.690000,34.380000,39.000000,1383.000000,459.000000,677.000000,362.000000,2.250000,281300.000000 --122.070000,38.000000,37.000000,978.000000,202.000000,462.000000,184.000000,3.625000,156300.000000 --118.050000,34.160000,41.000000,3320.000000,713.000000,1236.000000,659.000000,3.569400,278600.000000 --122.070000,37.660000,28.000000,2280.000000,610.000000,1255.000000,587.000000,2.671900,161200.000000 --121.800000,37.270000,10.000000,3301.000000,593.000000,2190.000000,575.000000,6.223000,260700.000000 --122.690000,38.340000,23.000000,2846.000000,516.000000,1526.000000,492.000000,3.733000,163500.000000 --117.080000,32.700000,35.000000,1477.000000,264.000000,852.000000,279.000000,3.178600,100600.000000 --119.760000,36.730000,46.000000,1347.000000,282.000000,854.000000,267.000000,1.872300,52600.000000 --118.370000,34.050000,52.000000,1563.000000,306.000000,776.000000,308.000000,3.625000,440900.000000 --122.700000,38.350000,14.000000,1555.000000,369.000000,493.000000,335.000000,1.603300,67500.000000 --118.130000,34.010000,45.000000,1179.000000,268.000000,736.000000,252.000000,2.708300,161800.000000 --119.350000,36.210000,26.000000,2481.000000,586.000000,1445.000000,498.000000,1.637800,60300.000000 --117.670000,34.030000,20.000000,8561.000000,1411.000000,4861.000000,1450.000000,4.705600,165500.000000 --117.970000,34.150000,33.000000,2474.000000,472.000000,1268.000000,437.000000,6.457600,500001.000000 --118.080000,34.080000,38.000000,1889.000000,407.000000,1330.000000,396.000000,3.921900,205200.000000 --121.230000,38.780000,13.000000,3813.000000,871.000000,1513.000000,783.000000,2.080700,142600.000000 --118.200000,34.020000,49.000000,1098.000000,317.000000,1411.000000,301.000000,2.750000,146000.000000 --118.170000,34.020000,41.000000,676.000000,216.000000,851.000000,199.000000,2.307700,140600.000000 --117.800000,34.060000,34.000000,1081.000000,205.000000,1325.000000,252.000000,3.629800,108500.000000 --118.300000,33.970000,46.000000,1425.000000,317.000000,1140.000000,304.000000,3.375000,98500.000000 --122.470000,37.690000,30.000000,837.000000,213.000000,606.000000,199.000000,4.875000,258800.000000 --118.200000,33.960000,44.000000,2144.000000,477.000000,1760.000000,452.000000,2.322100,161600.000000 --117.130000,32.910000,16.000000,2715.000000,581.000000,1619.000000,584.000000,4.000000,154700.000000 --119.770000,36.810000,25.000000,1565.000000,271.000000,661.000000,275.000000,3.427900,84700.000000 --118.470000,34.250000,21.000000,2692.000000,477.000000,1330.000000,456.000000,4.541700,238900.000000 --122.250000,37.800000,42.000000,4120.000000,1065.000000,1715.000000,1015.000000,2.934500,225000.000000 --118.500000,34.170000,37.000000,880.000000,154.000000,369.000000,155.000000,4.142900,303600.000000 --122.240000,37.490000,38.000000,4105.000000,950.000000,2561.000000,909.000000,3.868400,265600.000000 --117.150000,32.930000,16.000000,2718.000000,438.000000,1515.000000,431.000000,5.143300,185300.000000 --120.850000,37.770000,35.000000,404.000000,96.000000,261.000000,100.000000,2.458300,75000.000000 --122.250000,37.830000,35.000000,1613.000000,428.000000,675.000000,422.000000,3.472200,243100.000000 --118.330000,33.770000,33.000000,4244.000000,595.000000,1534.000000,557.000000,9.821400,500001.000000 --124.150000,40.780000,41.000000,2127.000000,358.000000,911.000000,349.000000,3.171100,104200.000000 --117.940000,33.790000,24.000000,4179.000000,784.000000,1902.000000,733.000000,4.798600,236500.000000 --121.590000,39.150000,5.000000,1922.000000,489.000000,938.000000,439.000000,2.047400,61300.000000 --122.690000,38.440000,31.000000,1808.000000,315.000000,691.000000,280.000000,3.858300,193200.000000 --122.510000,38.760000,9.000000,2589.000000,482.000000,1050.000000,374.000000,4.043500,132600.000000 --117.890000,33.610000,45.000000,1883.000000,419.000000,653.000000,328.000000,4.222200,500001.000000 --117.190000,32.770000,9.000000,634.000000,152.000000,248.000000,133.000000,3.857100,143800.000000 --117.150000,32.750000,40.000000,2261.000000,579.000000,903.000000,525.000000,2.465000,198700.000000 --122.210000,37.480000,20.000000,505.000000,216.000000,326.000000,216.000000,2.928600,237500.000000 --118.250000,33.790000,38.000000,1730.000000,460.000000,1724.000000,424.000000,2.730800,150400.000000 --120.490000,40.310000,16.000000,1821.000000,360.000000,969.000000,359.000000,3.464300,85100.000000 --118.300000,33.740000,20.000000,2625.000000,673.000000,1184.000000,606.000000,3.916700,285200.000000 --117.140000,32.700000,47.000000,552.000000,161.000000,593.000000,174.000000,0.958900,90000.000000 --121.300000,37.970000,52.000000,2259.000000,417.000000,766.000000,385.000000,2.298100,105400.000000 --119.780000,36.750000,31.000000,1404.000000,379.000000,1515.000000,387.000000,1.281300,56400.000000 --118.380000,34.180000,32.000000,3553.000000,1060.000000,3129.000000,1010.000000,2.560300,174200.000000 --118.130000,34.100000,24.000000,4670.000000,1185.000000,2478.000000,1107.000000,3.197500,252400.000000 --118.300000,33.730000,42.000000,1731.000000,435.000000,866.000000,403.000000,2.745100,255400.000000 --118.440000,33.990000,44.000000,305.000000,72.000000,156.000000,70.000000,5.964100,275000.000000 --117.480000,34.080000,17.000000,1834.000000,390.000000,1253.000000,357.000000,3.102800,106400.000000 --122.350000,37.970000,31.000000,2892.000000,685.000000,2104.000000,641.000000,3.218800,113800.000000 --119.710000,34.410000,31.000000,1034.000000,319.000000,997.000000,308.000000,2.653800,231800.000000 --116.920000,32.810000,23.000000,2668.000000,528.000000,1510.000000,524.000000,3.366900,158900.000000 --122.110000,37.660000,35.000000,2843.000000,652.000000,1726.000000,643.000000,3.090000,174100.000000 --117.410000,33.940000,29.000000,3181.000000,714.000000,1603.000000,706.000000,3.250000,112500.000000 --122.450000,37.740000,38.000000,5688.000000,930.000000,2263.000000,908.000000,6.203000,346800.000000 --118.360000,33.800000,38.000000,2553.000000,400.000000,1042.000000,393.000000,6.974200,500001.000000 --121.660000,36.680000,10.000000,913.000000,265.000000,508.000000,251.000000,0.991400,147500.000000 --122.420000,37.760000,52.000000,2038.000000,629.000000,2007.000000,596.000000,2.570100,266700.000000 --118.290000,34.050000,30.000000,1417.000000,589.000000,1615.000000,540.000000,1.386700,193800.000000 --119.820000,34.430000,15.000000,1482.000000,345.000000,669.000000,379.000000,3.077300,112500.000000 --119.340000,36.220000,38.000000,2708.000000,460.000000,1260.000000,455.000000,3.090500,78200.000000 --121.500000,38.610000,5.000000,1395.000000,373.000000,638.000000,322.000000,2.674500,225000.000000 --121.880000,37.460000,5.000000,1819.000000,245.000000,802.000000,228.000000,10.972200,500001.000000 --118.270000,33.940000,34.000000,721.000000,165.000000,661.000000,171.000000,2.078900,92400.000000 --122.170000,37.730000,46.000000,2163.000000,470.000000,925.000000,435.000000,3.250000,177500.000000 --122.220000,37.850000,28.000000,5287.000000,1048.000000,2031.000000,956.000000,5.457000,337300.000000 --117.200000,32.830000,36.000000,1089.000000,240.000000,623.000000,226.000000,2.590900,176000.000000 --120.690000,35.490000,16.000000,2666.000000,450.000000,1203.000000,429.000000,4.137500,222400.000000 --122.700000,38.970000,17.000000,2554.000000,540.000000,723.000000,319.000000,3.237500,114200.000000 --118.370000,34.150000,29.000000,2630.000000,617.000000,1071.000000,573.000000,3.366900,376100.000000 --118.350000,34.000000,40.000000,2894.000000,395.000000,1063.000000,409.000000,6.939000,372000.000000 --118.390000,37.360000,38.000000,1813.000000,410.000000,902.000000,396.000000,2.326100,98400.000000 --118.110000,34.200000,36.000000,4915.000000,725.000000,1897.000000,700.000000,6.827000,359400.000000 --121.720000,36.810000,18.000000,1984.000000,379.000000,1078.000000,359.000000,3.296900,229900.000000 --118.520000,34.160000,39.000000,2693.000000,478.000000,1219.000000,435.000000,5.170000,335400.000000 --118.120000,33.900000,35.000000,3478.000000,730.000000,1885.000000,673.000000,2.937500,206500.000000 --119.690000,36.790000,5.000000,2613.000000,476.000000,1490.000000,481.000000,4.099300,83000.000000 --118.030000,33.780000,26.000000,2001.000000,302.000000,836.000000,298.000000,5.106100,257500.000000 --120.670000,35.620000,6.000000,12779.000000,2441.000000,6085.000000,2157.000000,3.866100,168100.000000 --118.430000,34.030000,36.000000,1552.000000,388.000000,867.000000,352.000000,3.646700,346700.000000 --121.620000,39.130000,41.000000,1147.000000,243.000000,583.000000,239.000000,2.243100,63400.000000 --118.970000,37.640000,13.000000,1907.000000,544.000000,575.000000,234.000000,3.068500,162500.000000 --117.250000,32.740000,36.000000,3548.000000,956.000000,1648.000000,866.000000,2.696200,288200.000000 --122.280000,37.800000,52.000000,215.000000,87.000000,904.000000,88.000000,0.866800,137500.000000 --118.190000,34.140000,38.000000,1826.000000,300.000000,793.000000,297.000000,5.296200,291500.000000 --117.900000,33.850000,32.000000,1605.000000,314.000000,986.000000,306.000000,3.337500,186200.000000 --119.020000,37.640000,14.000000,5919.000000,1278.000000,265.000000,112.000000,3.243100,221400.000000 --118.370000,34.200000,34.000000,2199.000000,609.000000,2488.000000,597.000000,2.986100,171800.000000 --122.410000,37.750000,52.000000,1057.000000,276.000000,837.000000,292.000000,2.453100,229000.000000 --117.940000,33.920000,28.000000,639.000000,179.000000,1062.000000,169.000000,3.058800,145200.000000 --118.220000,34.120000,28.000000,3306.000000,1025.000000,2670.000000,942.000000,3.091900,185400.000000 --117.240000,34.040000,4.000000,4289.000000,682.000000,1981.000000,705.000000,5.336600,165100.000000 --122.080000,37.660000,33.000000,1547.000000,372.000000,1063.000000,356.000000,2.562500,154300.000000 --122.280000,37.850000,48.000000,2063.000000,484.000000,1054.000000,466.000000,2.262500,132900.000000 --118.210000,33.900000,35.000000,2420.000000,579.000000,2010.000000,540.000000,2.081700,104600.000000 --118.010000,33.920000,35.000000,1606.000000,289.000000,829.000000,273.000000,5.273000,187600.000000 --118.290000,34.180000,10.000000,4292.000000,1075.000000,2719.000000,987.000000,3.697400,286600.000000 --118.210000,33.960000,48.000000,284.000000,104.000000,422.000000,119.000000,1.282600,145500.000000 --117.230000,32.810000,28.000000,1508.000000,263.000000,996.000000,267.000000,3.802600,270000.000000 --117.030000,33.130000,15.000000,7000.000000,1185.000000,3555.000000,1118.000000,4.702200,172800.000000 --121.850000,37.220000,21.000000,6203.000000,798.000000,2494.000000,800.000000,7.720100,362700.000000 --122.400000,37.720000,47.000000,1465.000000,306.000000,1119.000000,315.000000,4.267200,219400.000000 --120.470000,34.980000,6.000000,5762.000000,1115.000000,2551.000000,919.000000,3.072300,137300.000000 --121.140000,37.480000,6.000000,1772.000000,332.000000,1011.000000,331.000000,3.704500,128100.000000 --119.340000,36.620000,26.000000,1922.000000,339.000000,1148.000000,332.000000,2.605800,92200.000000 --117.660000,34.080000,36.000000,1485.000000,236.000000,623.000000,261.000000,3.303600,141000.000000 --116.840000,33.080000,15.000000,2755.000000,519.000000,1474.000000,460.000000,4.040800,225900.000000 --118.290000,34.050000,11.000000,677.000000,370.000000,1143.000000,341.000000,2.386400,350000.000000 --119.980000,38.940000,23.000000,1564.000000,298.000000,339.000000,147.000000,4.041700,99300.000000 --118.100000,33.910000,35.000000,1653.000000,325.000000,1072.000000,301.000000,3.270800,159700.000000 --120.070000,36.960000,42.000000,963.000000,216.000000,471.000000,211.000000,2.289800,66100.000000 --119.110000,35.390000,22.000000,984.000000,176.000000,451.000000,170.000000,3.250000,88900.000000 --117.720000,34.100000,46.000000,2477.000000,458.000000,1034.000000,455.000000,5.500000,289700.000000 --117.900000,33.650000,30.000000,2196.000000,486.000000,1131.000000,460.000000,4.413500,272300.000000 --121.980000,37.290000,31.000000,2750.000000,664.000000,1459.000000,660.000000,3.228700,264900.000000 --122.030000,36.960000,32.000000,2182.000000,406.000000,1122.000000,370.000000,3.520000,284200.000000 --117.420000,34.080000,21.000000,4460.000000,930.000000,2657.000000,839.000000,2.756900,127500.000000 --117.660000,34.110000,19.000000,3445.000000,661.000000,1635.000000,580.000000,5.068100,230500.000000 --119.290000,34.240000,27.000000,4742.000000,775.000000,1682.000000,696.000000,6.194000,500001.000000 --117.020000,32.710000,20.000000,4050.000000,745.000000,2870.000000,761.000000,3.736600,121800.000000 --122.850000,38.620000,16.000000,4418.000000,704.000000,1908.000000,697.000000,4.591300,244600.000000 --118.330000,33.910000,35.000000,1092.000000,302.000000,962.000000,297.000000,3.590300,183300.000000 --118.400000,34.020000,40.000000,593.000000,137.000000,371.000000,132.000000,4.693200,332800.000000 --118.380000,33.840000,26.000000,2869.000000,567.000000,1157.000000,538.000000,6.038200,355300.000000 --118.050000,34.110000,42.000000,3677.000000,627.000000,1779.000000,622.000000,5.150900,426500.000000 --117.430000,33.930000,36.000000,2386.000000,396.000000,1176.000000,374.000000,4.512200,113300.000000 --118.100000,34.160000,44.000000,2795.000000,496.000000,1235.000000,469.000000,4.238600,283700.000000 --122.530000,37.860000,38.000000,1183.000000,196.000000,628.000000,205.000000,3.750000,478600.000000 --118.300000,33.970000,42.000000,944.000000,200.000000,567.000000,190.000000,2.631100,124100.000000 --118.200000,33.890000,37.000000,2394.000000,568.000000,2499.000000,551.000000,2.532100,105100.000000 --118.020000,34.150000,44.000000,2419.000000,437.000000,1045.000000,432.000000,3.875000,280800.000000 --121.530000,39.520000,30.000000,1030.000000,161.000000,448.000000,159.000000,2.482100,73800.000000 --117.920000,33.900000,13.000000,1814.000000,320.000000,1010.000000,313.000000,6.348900,337900.000000 --118.370000,34.210000,33.000000,2034.000000,470.000000,1990.000000,423.000000,3.745500,159600.000000 --118.040000,33.850000,18.000000,3628.000000,546.000000,1922.000000,544.000000,7.505700,328500.000000 --118.460000,33.980000,19.000000,2520.000000,726.000000,964.000000,663.000000,3.806800,500001.000000 --118.050000,33.900000,36.000000,1047.000000,227.000000,975.000000,239.000000,3.189700,155000.000000 --122.950000,40.710000,26.000000,2231.000000,421.000000,987.000000,364.000000,2.479200,88800.000000 --122.000000,37.300000,28.000000,5096.000000,1011.000000,2588.000000,954.000000,5.357000,355200.000000 --121.860000,37.400000,21.000000,1386.000000,260.000000,946.000000,257.000000,6.522600,258500.000000 --119.250000,36.560000,35.000000,1675.000000,373.000000,1131.000000,316.000000,1.672200,59100.000000 --118.210000,34.560000,12.000000,2472.000000,408.000000,1048.000000,380.000000,4.709700,262100.000000 --118.260000,34.020000,39.000000,698.000000,232.000000,1046.000000,228.000000,2.235600,119500.000000 --117.280000,34.150000,32.000000,2170.000000,430.000000,815.000000,401.000000,3.176500,135000.000000 --122.440000,37.660000,21.000000,5108.000000,1510.000000,3288.000000,1405.000000,3.192700,252600.000000 --118.990000,35.390000,36.000000,1438.000000,348.000000,1054.000000,341.000000,1.831900,55400.000000 --117.140000,34.060000,15.000000,3057.000000,510.000000,1154.000000,460.000000,3.974100,141100.000000 --122.150000,37.410000,15.000000,2577.000000,360.000000,979.000000,364.000000,10.476000,500001.000000 --121.200000,38.670000,26.000000,1546.000000,287.000000,773.000000,299.000000,2.980300,115400.000000 --122.150000,37.470000,37.000000,1844.000000,382.000000,1634.000000,417.000000,2.799300,145500.000000 --118.340000,33.950000,25.000000,3762.000000,1281.000000,4015.000000,1178.000000,2.158700,143800.000000 --118.250000,34.080000,44.000000,1425.000000,438.000000,1121.000000,374.000000,2.110800,200000.000000 --119.580000,36.100000,21.000000,1382.000000,327.000000,1469.000000,355.000000,1.396700,46500.000000 --121.310000,38.710000,18.000000,3998.000000,744.000000,2071.000000,660.000000,4.383600,102000.000000 --118.420000,34.120000,27.000000,2089.000000,303.000000,654.000000,270.000000,12.376700,500001.000000 --117.180000,34.060000,52.000000,954.000000,233.000000,533.000000,239.000000,1.302100,100000.000000 --115.900000,32.690000,18.000000,414.000000,86.000000,98.000000,54.000000,1.541700,57500.000000 --118.360000,33.980000,46.000000,1425.000000,283.000000,782.000000,273.000000,5.057000,246300.000000 --122.500000,37.600000,35.000000,2197.000000,369.000000,971.000000,326.000000,4.250000,241700.000000 --121.500000,36.810000,20.000000,1345.000000,230.000000,731.000000,217.000000,4.233300,363300.000000 --118.190000,33.820000,11.000000,872.000000,203.000000,422.000000,221.000000,4.636400,156300.000000 --117.300000,34.150000,40.000000,961.000000,199.000000,509.000000,182.000000,2.060000,85500.000000 --118.420000,34.230000,34.000000,1531.000000,278.000000,1064.000000,274.000000,5.668700,207300.000000 --118.120000,33.900000,38.000000,1222.000000,282.000000,756.000000,256.000000,4.125000,173900.000000 --119.800000,36.790000,45.000000,1337.000000,187.000000,471.000000,187.000000,5.187000,153800.000000 --119.740000,34.350000,34.000000,1664.000000,292.000000,705.000000,257.000000,5.000000,329400.000000 --121.970000,37.970000,26.000000,1977.000000,264.000000,817.000000,273.000000,5.751200,240200.000000 --117.070000,34.050000,14.000000,5764.000000,1006.000000,1876.000000,841.000000,1.969400,173200.000000 --122.290000,37.820000,2.000000,158.000000,43.000000,94.000000,57.000000,2.562500,60000.000000 --116.310000,33.650000,8.000000,3079.000000,558.000000,1572.000000,474.000000,4.593800,102600.000000 --118.270000,34.010000,43.000000,1235.000000,385.000000,1745.000000,372.000000,2.081700,113300.000000 --122.440000,37.760000,52.000000,1968.000000,472.000000,784.000000,430.000000,3.370200,370000.000000 --118.270000,34.150000,14.000000,1744.000000,536.000000,1494.000000,531.000000,3.217100,230800.000000 --118.410000,34.030000,36.000000,3053.000000,635.000000,1234.000000,577.000000,5.163700,500001.000000 --121.450000,38.610000,32.000000,2436.000000,612.000000,1509.000000,618.000000,1.042400,81400.000000 --117.250000,32.830000,17.000000,2075.000000,262.000000,704.000000,241.000000,10.952900,500001.000000 --119.800000,36.820000,24.000000,5377.000000,1005.000000,2010.000000,982.000000,3.454200,121200.000000 --121.310000,38.010000,22.000000,2101.000000,514.000000,1304.000000,511.000000,2.834800,101600.000000 --118.180000,34.050000,41.000000,762.000000,147.000000,817.000000,176.000000,3.750000,123100.000000 --122.130000,37.370000,30.000000,2139.000000,260.000000,742.000000,242.000000,11.806000,500001.000000 --119.750000,36.780000,28.000000,3257.000000,752.000000,1981.000000,712.000000,2.293000,71700.000000 --117.090000,32.740000,42.000000,1986.000000,472.000000,1472.000000,475.000000,2.175700,110100.000000 --122.020000,37.330000,25.000000,3823.000000,584.000000,1689.000000,571.000000,7.369300,373600.000000 --117.200000,32.840000,34.000000,3353.000000,544.000000,1583.000000,571.000000,4.550000,187700.000000 --118.140000,34.010000,46.000000,1746.000000,447.000000,1296.000000,392.000000,2.392900,156800.000000 --122.430000,37.780000,29.000000,1310.000000,364.000000,1009.000000,379.000000,1.384400,177500.000000 --118.100000,34.010000,29.000000,2077.000000,564.000000,2087.000000,543.000000,2.660000,189200.000000 --118.350000,34.100000,20.000000,2745.000000,782.000000,1161.000000,739.000000,3.904400,436400.000000 --118.000000,33.810000,33.000000,2970.000000,547.000000,1869.000000,539.000000,4.363600,201800.000000 --121.460000,38.560000,52.000000,1750.000000,372.000000,764.000000,369.000000,2.919100,111800.000000 --118.270000,33.870000,21.000000,6108.000000,1130.000000,3244.000000,1113.000000,4.276800,181400.000000 --118.260000,33.950000,44.000000,1771.000000,378.000000,1296.000000,399.000000,1.638900,96700.000000 --119.010000,35.380000,52.000000,114.000000,26.000000,158.000000,26.000000,1.075000,67500.000000 --117.080000,32.800000,32.000000,1587.000000,268.000000,635.000000,249.000000,3.375000,178100.000000 --122.200000,40.260000,15.000000,2102.000000,358.000000,957.000000,371.000000,3.190800,137900.000000 --119.980000,38.940000,25.000000,1339.000000,328.000000,503.000000,219.000000,1.901800,109700.000000 --122.530000,37.950000,22.000000,7446.000000,1979.000000,2980.000000,1888.000000,3.583800,271300.000000 --118.300000,34.050000,51.000000,1005.000000,314.000000,1227.000000,306.000000,2.429700,162500.000000 --121.860000,39.750000,18.000000,1651.000000,309.000000,856.000000,293.000000,3.504600,118300.000000 --122.060000,37.330000,23.000000,4507.000000,751.000000,2167.000000,722.000000,7.010200,500001.000000 --122.450000,38.010000,36.000000,4501.000000,832.000000,2196.000000,800.000000,4.318200,252700.000000 --117.010000,32.770000,24.000000,2311.000000,536.000000,1005.000000,525.000000,2.900000,185200.000000 --120.870000,37.760000,16.000000,1174.000000,249.000000,601.000000,242.000000,1.714300,113300.000000 --121.790000,38.540000,7.000000,1777.000000,513.000000,4479.000000,504.000000,1.465300,310000.000000 --117.810000,33.820000,22.000000,2898.000000,335.000000,1057.000000,324.000000,10.811100,500001.000000 --117.590000,33.660000,3.000000,1206.000000,256.000000,563.000000,287.000000,5.158900,167800.000000 --117.360000,34.090000,32.000000,3616.000000,631.000000,2131.000000,593.000000,3.287900,95500.000000 --121.520000,39.500000,33.000000,1462.000000,241.000000,569.000000,231.000000,3.283300,82600.000000 --122.270000,37.840000,52.000000,1503.000000,298.000000,690.000000,275.000000,2.603300,162900.000000 --122.210000,40.200000,19.000000,3404.000000,731.000000,1421.000000,683.000000,2.614900,84400.000000 --117.240000,33.180000,19.000000,3337.000000,565.000000,1646.000000,554.000000,5.019500,200200.000000 --122.550000,37.980000,31.000000,3807.000000,828.000000,1581.000000,795.000000,3.293000,337500.000000 --118.450000,34.000000,46.000000,1777.000000,362.000000,896.000000,334.000000,4.450000,348300.000000 --117.880000,33.850000,34.000000,1127.000000,185.000000,588.000000,181.000000,4.375000,224700.000000 --117.180000,32.760000,52.000000,2023.000000,301.000000,649.000000,285.000000,4.739600,441700.000000 --118.300000,33.880000,29.000000,850.000000,229.000000,563.000000,204.000000,3.737500,247700.000000 --122.040000,38.280000,12.000000,3861.000000,795.000000,2129.000000,806.000000,3.676000,135000.000000 --122.430000,40.470000,16.000000,3552.000000,704.000000,1801.000000,658.000000,2.149600,97700.000000 --118.380000,33.860000,24.000000,3124.000000,560.000000,1312.000000,542.000000,6.302100,333800.000000 --119.570000,36.090000,6.000000,2015.000000,413.000000,992.000000,319.000000,2.388900,53200.000000 --117.870000,34.120000,34.000000,1004.000000,220.000000,772.000000,217.000000,3.857100,174500.000000 --116.880000,32.810000,35.000000,2926.000000,562.000000,1590.000000,506.000000,4.201400,143200.000000 --118.580000,34.210000,13.000000,6227.000000,1317.000000,3739.000000,1226.000000,4.031300,299300.000000 --122.040000,37.880000,32.000000,3250.000000,550.000000,1230.000000,557.000000,4.642400,312700.000000 --122.440000,37.720000,52.000000,1775.000000,347.000000,1102.000000,367.000000,4.312500,267200.000000 --121.810000,37.370000,26.000000,2987.000000,539.000000,1931.000000,518.000000,5.109900,213100.000000 --122.500000,37.770000,52.000000,2433.000000,454.000000,1070.000000,420.000000,4.125000,359500.000000 --121.940000,37.940000,26.000000,1299.000000,174.000000,533.000000,180.000000,6.229600,291700.000000 --118.450000,34.120000,20.000000,10722.000000,1617.000000,3731.000000,1511.000000,9.744900,500001.000000 --121.700000,39.070000,26.000000,2668.000000,510.000000,1437.000000,505.000000,3.312500,100000.000000 --118.100000,34.650000,33.000000,873.000000,177.000000,425.000000,142.000000,2.670000,187500.000000 --119.020000,36.060000,41.000000,2279.000000,538.000000,1908.000000,511.000000,1.395200,43100.000000 --118.060000,34.080000,42.000000,1988.000000,402.000000,1239.000000,402.000000,3.256900,201500.000000 --117.660000,33.610000,17.000000,3464.000000,519.000000,1713.000000,530.000000,6.047100,248400.000000 --117.400000,33.940000,30.000000,1198.000000,251.000000,1019.000000,214.000000,3.050900,82700.000000 --118.190000,33.830000,30.000000,2246.000000,552.000000,1032.000000,548.000000,3.587100,347100.000000 --121.550000,39.510000,50.000000,1050.000000,288.000000,485.000000,260.000000,1.160700,51700.000000 --121.980000,37.140000,37.000000,74.000000,19.000000,63.000000,17.000000,9.590800,350000.000000 --117.060000,32.610000,24.000000,4369.000000,1353.000000,3123.000000,1247.000000,2.057100,152300.000000 --118.320000,34.040000,39.000000,2965.000000,812.000000,2638.000000,794.000000,2.532000,172700.000000 --117.130000,32.760000,41.000000,1545.000000,420.000000,747.000000,415.000000,2.375000,154400.000000 --122.500000,37.760000,46.000000,2226.000000,480.000000,1272.000000,468.000000,4.264400,284100.000000 --120.870000,37.620000,30.000000,455.000000,70.000000,220.000000,69.000000,4.895800,142500.000000 --118.240000,34.220000,41.000000,2476.000000,506.000000,1271.000000,485.000000,3.453100,263900.000000 --117.690000,33.480000,25.000000,3240.000000,481.000000,1462.000000,497.000000,6.181500,288500.000000 --122.200000,39.750000,18.000000,2603.000000,576.000000,1616.000000,588.000000,2.019200,63700.000000 --117.080000,32.640000,43.000000,1005.000000,230.000000,548.000000,252.000000,1.867200,145800.000000 --117.910000,33.820000,32.000000,1408.000000,307.000000,1331.000000,284.000000,3.701400,179600.000000 --122.000000,38.730000,31.000000,371.000000,74.000000,208.000000,84.000000,3.875000,137500.000000 --118.290000,33.840000,33.000000,896.000000,208.000000,843.000000,200.000000,3.500000,183000.000000 --118.130000,33.860000,45.000000,1320.000000,256.000000,645.000000,256.000000,4.400000,209500.000000 --118.350000,33.890000,29.000000,2940.000000,708.000000,2175.000000,684.000000,3.648600,229000.000000 --122.130000,40.010000,21.000000,916.000000,194.000000,451.000000,178.000000,2.125000,63300.000000 --122.070000,37.960000,37.000000,1217.000000,199.000000,552.000000,194.000000,5.044500,196200.000000 --117.260000,32.850000,30.000000,3652.000000,499.000000,978.000000,462.000000,8.237400,500001.000000 --117.870000,33.740000,16.000000,1243.000000,365.000000,1925.000000,376.000000,2.763200,158900.000000 --121.880000,37.440000,23.000000,1310.000000,267.000000,910.000000,261.000000,5.399400,237900.000000 --121.670000,36.580000,11.000000,5892.000000,837.000000,2327.000000,812.000000,6.155100,291800.000000 --116.890000,33.790000,12.000000,701.000000,130.000000,434.000000,110.000000,2.057700,56700.000000 --122.660000,38.470000,20.000000,2806.000000,477.000000,1369.000000,460.000000,4.750000,190500.000000 --121.450000,38.540000,38.000000,1865.000000,384.000000,1052.000000,354.000000,1.789100,60500.000000 --121.000000,37.660000,43.000000,2369.000000,413.000000,944.000000,422.000000,3.263200,138100.000000 --117.270000,32.840000,34.000000,1655.000000,450.000000,870.000000,411.000000,3.210900,376000.000000 --117.870000,34.110000,23.000000,4066.000000,819.000000,2105.000000,737.000000,4.655600,199600.000000 --121.440000,37.750000,16.000000,2229.000000,458.000000,1199.000000,445.000000,3.482100,170600.000000 --118.130000,33.760000,44.000000,2532.000000,621.000000,961.000000,550.000000,3.935200,406900.000000 --118.310000,34.260000,41.000000,1297.000000,327.000000,733.000000,315.000000,3.058300,160300.000000 --122.000000,38.370000,18.000000,1048.000000,185.000000,469.000000,162.000000,3.625000,125000.000000 --122.270000,41.230000,40.000000,1958.000000,386.000000,725.000000,331.000000,2.189800,65500.000000 --120.890000,37.520000,42.000000,1200.000000,221.000000,647.000000,192.000000,2.540200,157500.000000 --118.750000,34.290000,17.000000,5512.000000,765.000000,2734.000000,814.000000,6.607300,258100.000000 --118.180000,34.020000,36.000000,1138.000000,296.000000,1484.000000,320.000000,2.281300,150700.000000 --121.370000,38.410000,14.000000,3727.000000,685.000000,1741.000000,646.000000,3.562500,125700.000000 --120.310000,37.290000,36.000000,969.000000,206.000000,732.000000,175.000000,1.593800,57600.000000 --117.880000,33.730000,32.000000,1947.000000,355.000000,1786.000000,332.000000,4.572600,177500.000000 --117.330000,33.980000,52.000000,1417.000000,353.000000,881.000000,300.000000,1.953100,162500.000000 --118.490000,34.030000,30.000000,4061.000000,927.000000,1487.000000,865.000000,4.182700,435100.000000 --121.930000,38.010000,9.000000,2294.000000,389.000000,1142.000000,365.000000,5.336300,160800.000000 --122.450000,37.700000,46.000000,2193.000000,499.000000,1814.000000,489.000000,4.012500,230100.000000 --117.080000,32.750000,20.000000,1886.000000,586.000000,1134.000000,525.000000,1.502900,100000.000000 --116.190000,33.690000,11.000000,5692.000000,1346.000000,5682.000000,1273.000000,2.538300,74000.000000 --119.730000,36.620000,35.000000,2080.000000,365.000000,1026.000000,333.000000,3.578100,92800.000000 --117.120000,32.590000,28.000000,2793.000000,706.000000,1825.000000,676.000000,2.672400,144500.000000 --117.630000,34.090000,8.000000,3557.000000,890.000000,2251.000000,765.000000,2.681800,114100.000000 --118.260000,34.070000,40.000000,680.000000,273.000000,995.000000,249.000000,2.260700,165600.000000 --118.260000,33.970000,46.000000,1521.000000,352.000000,1100.000000,334.000000,1.550000,100600.000000 --119.840000,36.750000,34.000000,1186.000000,300.000000,774.000000,271.000000,1.575000,57100.000000 --121.280000,38.670000,29.000000,1087.000000,174.000000,430.000000,174.000000,4.362500,158800.000000 --117.350000,34.110000,34.000000,2104.000000,388.000000,1578.000000,365.000000,3.083300,88400.000000 --121.320000,36.420000,20.000000,1054.000000,269.000000,1219.000000,273.000000,3.043700,76600.000000 --118.350000,34.020000,34.000000,3978.000000,1073.000000,2725.000000,1035.000000,1.762200,167900.000000 --119.810000,37.670000,24.000000,172.000000,42.000000,79.000000,30.000000,3.833300,93800.000000 --118.150000,34.050000,33.000000,3287.000000,649.000000,1783.000000,653.000000,3.847200,293300.000000 --121.220000,37.810000,17.000000,2879.000000,542.000000,1802.000000,530.000000,3.637800,126100.000000 --119.720000,34.430000,30.000000,2491.000000,656.000000,1091.000000,576.000000,2.513900,279500.000000 --117.850000,33.840000,17.000000,2830.000000,502.000000,1370.000000,459.000000,5.178500,247300.000000 --117.200000,32.790000,31.000000,3417.000000,533.000000,1245.000000,532.000000,4.778800,276000.000000 --118.630000,34.180000,33.000000,5252.000000,760.000000,2041.000000,730.000000,6.797700,389700.000000 --117.490000,33.640000,3.000000,8874.000000,1302.000000,3191.000000,1027.000000,6.858800,302000.000000 --118.370000,33.840000,35.000000,1792.000000,322.000000,978.000000,326.000000,4.958300,342800.000000 --122.020000,38.260000,20.000000,3899.000000,763.000000,2198.000000,779.000000,3.206100,120400.000000 --121.330000,38.660000,17.000000,2767.000000,584.000000,1275.000000,568.000000,2.590900,125400.000000 --118.740000,36.230000,22.000000,1033.000000,232.000000,442.000000,136.000000,2.644700,137500.000000 --117.890000,34.490000,12.000000,3449.000000,598.000000,1502.000000,540.000000,3.704300,150800.000000 --117.410000,33.960000,24.000000,4481.000000,901.000000,2398.000000,823.000000,3.864000,123400.000000 --118.750000,34.420000,28.000000,1000.000000,206.000000,545.000000,154.000000,2.416700,191700.000000 --122.480000,37.740000,52.000000,2285.000000,435.000000,1211.000000,442.000000,4.020800,323100.000000 --118.140000,34.040000,43.000000,1949.000000,464.000000,1216.000000,457.000000,3.321400,209300.000000 --122.560000,37.900000,36.000000,1760.000000,283.000000,562.000000,246.000000,6.754600,402400.000000 --122.090000,37.390000,43.000000,2065.000000,535.000000,1029.000000,500.000000,3.731800,327700.000000 --121.800000,36.940000,29.000000,2377.000000,476.000000,1669.000000,499.000000,2.821400,190100.000000 --117.830000,33.830000,13.000000,3759.000000,489.000000,1496.000000,499.000000,8.381800,377600.000000 --121.680000,36.900000,13.000000,833.000000,130.000000,405.000000,127.000000,5.272900,322900.000000 --122.300000,37.880000,52.000000,409.000000,97.000000,208.000000,98.000000,1.697100,138800.000000 --121.040000,37.670000,16.000000,19.000000,19.000000,166.000000,9.000000,0.536000,162500.000000 --118.320000,34.090000,28.000000,2173.000000,819.000000,2548.000000,763.000000,1.879000,218800.000000 --118.120000,33.810000,36.000000,1774.000000,299.000000,784.000000,298.000000,5.044700,249200.000000 --121.810000,39.700000,21.000000,5051.000000,1054.000000,2948.000000,980.000000,1.586300,81300.000000 --121.840000,36.520000,18.000000,3165.000000,533.000000,1312.000000,434.000000,6.523400,357400.000000 --121.790000,37.330000,18.000000,3611.000000,614.000000,2381.000000,642.000000,5.634500,231000.000000 --118.160000,34.180000,48.000000,568.000000,145.000000,559.000000,135.000000,2.413500,135700.000000 --119.400000,36.590000,37.000000,1486.000000,296.000000,977.000000,290.000000,3.507400,93800.000000 --122.270000,37.800000,39.000000,1715.000000,623.000000,1327.000000,467.000000,1.847700,179200.000000 --117.730000,33.570000,5.000000,11976.000000,2495.000000,4327.000000,2009.000000,4.848800,194400.000000 --121.280000,37.920000,30.000000,1061.000000,230.000000,851.000000,195.000000,2.441200,61600.000000 --119.810000,36.770000,43.000000,2341.000000,395.000000,890.000000,375.000000,3.426500,85000.000000 --122.260000,37.850000,50.000000,1120.000000,283.000000,697.000000,264.000000,2.125000,140000.000000 --117.950000,33.930000,37.000000,2633.000000,630.000000,1904.000000,630.000000,2.612300,161300.000000 --120.120000,38.120000,37.000000,3355.000000,666.000000,338.000000,136.000000,2.062500,88900.000000 --121.880000,37.350000,52.000000,1704.000000,418.000000,1336.000000,411.000000,2.816700,183500.000000 --118.110000,33.870000,15.000000,3254.000000,598.000000,1772.000000,618.000000,5.041700,240800.000000 --122.080000,37.690000,42.000000,1414.000000,274.000000,629.000000,244.000000,3.347800,184900.000000 --121.680000,39.150000,14.000000,2774.000000,451.000000,1292.000000,428.000000,4.383300,115200.000000 --122.160000,37.710000,36.000000,666.000000,132.000000,366.000000,134.000000,3.464300,175000.000000 --118.070000,34.090000,35.000000,1224.000000,267.000000,887.000000,276.000000,4.098700,202400.000000 --117.690000,33.650000,16.000000,5805.000000,852.000000,2356.000000,795.000000,6.106200,274600.000000 --118.350000,34.030000,49.000000,2334.000000,530.000000,1334.000000,447.000000,1.890000,124000.000000 --122.790000,39.020000,23.000000,642.000000,203.000000,265.000000,84.000000,1.883300,96900.000000 --118.140000,33.890000,33.000000,2867.000000,786.000000,1774.000000,705.000000,2.929200,183400.000000 --121.890000,37.420000,26.000000,40.000000,8.000000,52.000000,7.000000,7.719700,225000.000000 --122.410000,37.760000,52.000000,492.000000,139.000000,316.000000,168.000000,3.086500,225000.000000 --118.600000,34.160000,37.000000,3441.000000,584.000000,1283.000000,544.000000,4.165600,313100.000000 --118.410000,34.020000,24.000000,2610.000000,756.000000,1322.000000,692.000000,3.502200,281300.000000 --117.530000,33.970000,29.000000,1430.000000,273.000000,872.000000,283.000000,4.083300,141000.000000 --117.130000,32.700000,35.000000,365.000000,98.000000,463.000000,112.000000,2.558800,78800.000000 --117.140000,32.900000,16.000000,3217.000000,716.000000,2054.000000,687.000000,4.223400,162100.000000 --118.160000,34.110000,31.000000,5715.000000,1154.000000,2639.000000,1079.000000,4.166100,364400.000000 --117.180000,32.700000,42.000000,1691.000000,286.000000,761.000000,281.000000,5.138600,404500.000000 --117.970000,33.720000,24.000000,2991.000000,500.000000,1437.000000,453.000000,5.428600,273400.000000 --118.250000,34.090000,52.000000,104.000000,20.000000,32.000000,17.000000,3.750000,241700.000000 --118.140000,34.110000,52.000000,3367.000000,545.000000,1427.000000,535.000000,5.229200,444500.000000 --120.010000,34.540000,30.000000,2992.000000,609.000000,1288.000000,465.000000,3.937500,292900.000000 --117.410000,34.100000,5.000000,4937.000000,1139.000000,2204.000000,812.000000,2.527200,92000.000000 --118.220000,34.520000,7.000000,4524.000000,735.000000,2298.000000,717.000000,6.553800,311600.000000 --117.910000,33.870000,29.000000,1121.000000,291.000000,762.000000,276.000000,2.500000,143800.000000 --117.090000,32.760000,29.000000,1650.000000,496.000000,882.000000,445.000000,2.228700,140000.000000 --122.270000,37.820000,52.000000,1630.000000,456.000000,1162.000000,400.000000,1.247500,104200.000000 --118.200000,34.060000,46.000000,321.000000,101.000000,401.000000,86.000000,2.102900,109400.000000 --118.360000,33.900000,40.000000,1271.000000,276.000000,725.000000,234.000000,5.045200,231900.000000 --122.000000,37.860000,18.000000,8953.000000,1074.000000,3011.000000,993.000000,10.737200,500001.000000 --121.360000,39.520000,15.000000,2490.000000,527.000000,1229.000000,497.000000,2.391700,85700.000000 --122.000000,38.280000,3.000000,7030.000000,1191.000000,3238.000000,1055.000000,4.962000,161700.000000 --117.700000,33.680000,29.000000,5650.000000,1084.000000,3985.000000,1056.000000,2.819200,162500.000000 --118.280000,34.030000,26.000000,2107.000000,809.000000,2821.000000,572.000000,0.844000,350000.000000 --118.250000,34.150000,13.000000,1107.000000,479.000000,616.000000,443.000000,0.818500,187500.000000 --122.540000,37.930000,43.000000,2998.000000,470.000000,970.000000,430.000000,5.538500,431800.000000 --118.250000,34.020000,50.000000,180.000000,89.000000,356.000000,76.000000,2.194400,158300.000000 --122.060000,36.980000,15.000000,3385.000000,669.000000,1571.000000,615.000000,4.225400,320900.000000 --122.450000,37.770000,52.000000,2339.000000,548.000000,1090.000000,507.000000,3.367900,350000.000000 --118.040000,33.850000,23.000000,3132.000000,469.000000,1646.000000,478.000000,5.777000,315900.000000 --118.120000,34.150000,19.000000,557.000000,216.000000,673.000000,212.000000,2.176300,168800.000000 --118.310000,33.940000,43.000000,2104.000000,393.000000,1132.000000,394.000000,3.068200,142000.000000 --118.440000,34.160000,33.000000,1616.000000,322.000000,580.000000,311.000000,4.039100,337500.000000 --118.460000,34.170000,24.000000,2814.000000,675.000000,1463.000000,620.000000,4.187500,309300.000000 --117.930000,34.060000,35.000000,1022.000000,183.000000,628.000000,187.000000,3.937500,187500.000000 --121.810000,36.570000,13.000000,3030.000000,413.000000,1027.000000,363.000000,6.961500,500001.000000 --118.420000,34.000000,33.000000,1139.000000,299.000000,734.000000,257.000000,3.270800,325000.000000 --118.330000,34.010000,44.000000,1762.000000,463.000000,786.000000,445.000000,1.923100,188500.000000 --118.240000,33.930000,19.000000,325.000000,74.000000,354.000000,87.000000,2.750000,90600.000000 --116.940000,32.810000,22.000000,4266.000000,1010.000000,2766.000000,985.000000,2.817500,135200.000000 --122.600000,38.240000,16.000000,2621.000000,416.000000,1247.000000,386.000000,4.860300,198400.000000 --118.210000,33.970000,52.000000,4220.000000,908.000000,3731.000000,892.000000,3.190100,167600.000000 --118.730000,34.270000,25.000000,3409.000000,493.000000,1699.000000,484.000000,5.653000,225800.000000 --122.120000,37.370000,37.000000,1446.000000,181.000000,549.000000,190.000000,10.735500,500001.000000 --122.420000,40.440000,16.000000,994.000000,185.000000,495.000000,181.000000,2.187500,76400.000000 --122.130000,37.720000,26.000000,2862.000000,394.000000,1030.000000,397.000000,7.912000,367300.000000 --121.170000,37.880000,22.000000,1283.000000,256.000000,3082.000000,239.000000,3.536500,111800.000000 --122.430000,37.720000,48.000000,1289.000000,280.000000,782.000000,235.000000,3.671900,259800.000000 --118.220000,33.910000,27.000000,500.000000,159.000000,732.000000,162.000000,2.742600,103100.000000 --121.170000,37.970000,28.000000,1374.000000,248.000000,769.000000,229.000000,3.638900,130400.000000 --122.270000,37.860000,52.000000,2307.000000,583.000000,1127.000000,548.000000,1.844700,198200.000000 --119.190000,36.140000,41.000000,759.000000,140.000000,408.000000,129.000000,3.900000,85900.000000 --122.410000,37.600000,31.000000,4424.000000,834.000000,1915.000000,817.000000,4.136400,412000.000000 --116.830000,32.810000,18.000000,2367.000000,402.000000,1021.000000,395.000000,4.812500,210500.000000 --119.340000,36.330000,17.000000,2250.000000,430.000000,1218.000000,468.000000,4.181200,93700.000000 --123.220000,39.160000,29.000000,6121.000000,1222.000000,3595.000000,1189.000000,2.631000,109600.000000 --121.920000,37.720000,22.000000,4638.000000,716.000000,2302.000000,687.000000,5.347000,219500.000000 --116.570000,33.760000,25.000000,2616.000000,547.000000,581.000000,343.000000,3.136400,301600.000000 --118.170000,34.180000,44.000000,1401.000000,246.000000,607.000000,271.000000,2.847200,218800.000000 --117.200000,32.800000,36.000000,4018.000000,1067.000000,1620.000000,842.000000,2.359900,168400.000000 --117.580000,34.090000,27.000000,754.000000,200.000000,746.000000,185.000000,1.953100,100800.000000 --118.240000,33.960000,34.000000,1724.000000,432.000000,1876.000000,416.000000,2.107800,100600.000000 --122.240000,40.180000,39.000000,2191.000000,493.000000,1307.000000,499.000000,1.648300,60800.000000 --119.690000,36.820000,15.000000,3303.000000,512.000000,1687.000000,505.000000,4.810000,93600.000000 --121.690000,36.620000,19.000000,1907.000000,323.000000,681.000000,270.000000,6.033200,244900.000000 --119.280000,36.350000,7.000000,3598.000000,701.000000,2080.000000,678.000000,3.111100,72400.000000 --117.990000,33.810000,46.000000,38.000000,8.000000,66.000000,14.000000,4.166700,162500.000000 --117.650000,35.000000,36.000000,1184.000000,316.000000,672.000000,241.000000,1.910700,39800.000000 --118.150000,34.020000,43.000000,2172.000000,605.000000,2386.000000,597.000000,2.823900,150600.000000 --122.430000,37.730000,52.000000,1583.000000,347.000000,935.000000,341.000000,4.678600,263200.000000 --117.040000,32.730000,36.000000,2084.000000,400.000000,1097.000000,398.000000,3.271700,130700.000000 --118.080000,34.140000,45.000000,2923.000000,604.000000,1903.000000,560.000000,3.172900,218700.000000 --121.070000,39.200000,45.000000,204.000000,62.000000,133.000000,51.000000,1.000000,90600.000000 --117.120000,32.660000,52.000000,16.000000,4.000000,8.000000,3.000000,1.125000,60000.000000 --118.130000,34.130000,39.000000,2099.000000,397.000000,1500.000000,380.000000,4.830400,493200.000000 --122.220000,37.880000,20.000000,95.000000,13.000000,31.000000,15.000000,2.444400,475000.000000 --122.520000,37.930000,34.000000,2782.000000,502.000000,1219.000000,507.000000,5.077900,333900.000000 --122.090000,37.630000,36.000000,1570.000000,274.000000,992.000000,249.000000,5.364400,168800.000000 --117.970000,33.820000,26.000000,4013.000000,985.000000,2442.000000,922.000000,3.765500,197700.000000 --118.280000,34.050000,41.000000,1075.000000,597.000000,2260.000000,614.000000,1.300000,162500.000000 --118.390000,33.790000,30.000000,4402.000000,563.000000,1582.000000,551.000000,10.898000,500001.000000 --122.400000,37.580000,26.000000,3281.000000,531.000000,1145.000000,480.000000,6.358000,500001.000000 --118.260000,34.060000,42.000000,2541.000000,1282.000000,3974.000000,1189.000000,1.585400,87500.000000 --122.160000,37.480000,36.000000,2238.000000,479.000000,1949.000000,457.000000,2.376900,157300.000000 --117.430000,34.110000,17.000000,4109.000000,884.000000,2544.000000,780.000000,2.775700,109800.000000 --118.280000,33.930000,42.000000,1898.000000,460.000000,1503.000000,429.000000,2.517900,97400.000000 --118.370000,33.950000,5.000000,6955.000000,2062.000000,3591.000000,1566.000000,3.111000,247600.000000 --121.490000,38.560000,52.000000,1777.000000,368.000000,624.000000,350.000000,3.672900,137800.000000 --121.800000,38.550000,11.000000,5121.000000,899.000000,2258.000000,901.000000,4.716800,223200.000000 --122.190000,39.920000,20.000000,2563.000000,658.000000,1363.000000,611.000000,1.023000,54200.000000 --118.010000,33.840000,29.000000,3740.000000,691.000000,1724.000000,638.000000,3.962800,215600.000000 --118.310000,33.960000,48.000000,2015.000000,356.000000,1020.000000,338.000000,4.062500,138700.000000 --121.060000,39.220000,52.000000,1749.000000,422.000000,837.000000,391.000000,2.325000,109700.000000 --121.350000,38.610000,27.000000,3900.000000,776.000000,1549.000000,761.000000,2.778800,115700.000000 --118.310000,33.990000,48.000000,2235.000000,433.000000,1363.000000,433.000000,1.655900,101400.000000 --121.930000,37.270000,28.000000,3428.000000,753.000000,1753.000000,729.000000,4.103300,281000.000000 --117.310000,33.170000,7.000000,2349.000000,312.000000,809.000000,282.000000,5.552000,283900.000000 --120.890000,37.480000,27.000000,1118.000000,195.000000,647.000000,209.000000,2.913500,159400.000000 --119.470000,35.140000,19.000000,4190.000000,690.000000,1973.000000,702.000000,3.992900,88300.000000 --118.410000,34.180000,35.000000,1975.000000,384.000000,882.000000,406.000000,4.375000,291700.000000 --119.810000,36.700000,52.000000,314.000000,57.000000,178.000000,66.000000,1.240400,52500.000000 --117.080000,33.160000,11.000000,6341.000000,1030.000000,2697.000000,977.000000,4.855400,206700.000000 --119.270000,35.870000,12.000000,972.000000,269.000000,1134.000000,286.000000,1.630000,49500.000000 --122.310000,40.750000,18.000000,1411.000000,330.000000,494.000000,227.000000,1.491100,75800.000000 --117.200000,33.290000,12.000000,6358.000000,1182.000000,2778.000000,1020.000000,4.035700,295900.000000 --118.430000,34.260000,43.000000,729.000000,172.000000,935.000000,174.000000,2.951900,140900.000000 --121.520000,39.510000,30.000000,3085.000000,610.000000,1688.000000,575.000000,2.334000,72200.000000 --118.770000,34.270000,7.000000,3074.000000,794.000000,1816.000000,654.000000,2.713700,196400.000000 --124.100000,40.950000,17.000000,1485.000000,345.000000,823.000000,316.000000,1.899300,78400.000000 --117.150000,32.800000,27.000000,1937.000000,537.000000,1211.000000,482.000000,2.750000,87500.000000 --118.370000,34.160000,11.000000,2901.000000,871.000000,1659.000000,789.000000,3.110600,209400.000000 --122.500000,37.740000,44.000000,2792.000000,615.000000,1640.000000,579.000000,4.062500,272800.000000 --120.920000,39.560000,48.000000,1276.000000,292.000000,358.000000,145.000000,1.875000,66600.000000 --122.470000,38.510000,25.000000,928.000000,195.000000,413.000000,184.000000,3.490400,196900.000000 --117.890000,33.610000,41.000000,1790.000000,361.000000,540.000000,284.000000,6.024700,500001.000000 --121.350000,38.400000,11.000000,2322.000000,459.000000,1373.000000,424.000000,3.175000,94400.000000 --117.920000,34.120000,32.000000,2552.000000,576.000000,2161.000000,548.000000,2.945900,144400.000000 --118.310000,33.800000,30.000000,3096.000000,757.000000,2048.000000,704.000000,3.125000,233300.000000 --120.350000,37.040000,37.000000,1495.000000,292.000000,858.000000,275.000000,2.930600,46300.000000 --122.000000,37.310000,28.000000,3811.000000,585.000000,1795.000000,581.000000,7.838300,372700.000000 --118.010000,33.950000,37.000000,1165.000000,210.000000,627.000000,221.000000,4.692300,181000.000000 --118.070000,34.090000,40.000000,1745.000000,370.000000,1293.000000,357.000000,2.547400,198100.000000 --117.500000,33.920000,28.000000,2101.000000,337.000000,1061.000000,348.000000,4.550000,146800.000000 --123.740000,40.660000,25.000000,2395.000000,431.000000,983.000000,375.000000,3.046900,136000.000000 --122.030000,37.910000,29.000000,5438.000000,871.000000,2310.000000,890.000000,5.036200,275300.000000 --118.910000,34.220000,15.000000,5644.000000,757.000000,2659.000000,783.000000,6.755900,312000.000000 --117.960000,34.140000,9.000000,907.000000,207.000000,619.000000,194.000000,3.946400,179600.000000 --121.800000,38.010000,46.000000,2273.000000,495.000000,1088.000000,447.000000,2.253200,109400.000000 --122.290000,37.530000,35.000000,2043.000000,511.000000,1089.000000,504.000000,3.027800,310600.000000 --122.140000,37.670000,34.000000,3036.000000,533.000000,1366.000000,500.000000,4.238600,192300.000000 --117.850000,33.790000,52.000000,2102.000000,403.000000,898.000000,365.000000,3.682700,236800.000000 --122.100000,37.650000,31.000000,1797.000000,327.000000,796.000000,319.000000,4.442700,204500.000000 --122.120000,37.910000,34.000000,5683.000000,755.000000,1962.000000,723.000000,8.367800,455300.000000 --119.290000,36.320000,27.000000,1513.000000,374.000000,839.000000,350.000000,1.201200,64600.000000 --117.400000,34.010000,25.000000,1858.000000,366.000000,1311.000000,331.000000,2.708300,87800.000000 --117.060000,32.770000,32.000000,3888.000000,827.000000,3868.000000,841.000000,3.075500,166800.000000 --118.300000,34.250000,44.000000,1442.000000,285.000000,859.000000,292.000000,4.583300,197300.000000 --122.230000,40.150000,14.000000,2297.000000,573.000000,1637.000000,551.000000,1.787000,51600.000000 --117.910000,33.820000,32.000000,2696.000000,640.000000,2330.000000,626.000000,2.947900,184600.000000 --122.530000,37.970000,44.000000,3595.000000,953.000000,1831.000000,910.000000,2.603600,287500.000000 --121.790000,37.000000,28.000000,2715.000000,451.000000,1154.000000,386.000000,4.802100,290400.000000 --118.460000,33.990000,44.000000,1122.000000,287.000000,531.000000,256.000000,4.059800,335900.000000 --118.030000,33.970000,32.000000,2468.000000,552.000000,1190.000000,479.000000,3.827500,238500.000000 --122.320000,38.000000,32.000000,2275.000000,397.000000,1233.000000,418.000000,4.043700,162800.000000 --118.280000,34.170000,22.000000,2664.000000,651.000000,1553.000000,629.000000,3.635400,256300.000000 --119.140000,36.060000,32.000000,1838.000000,441.000000,1628.000000,425.000000,1.645200,41500.000000 --117.130000,34.070000,34.000000,2405.000000,541.000000,1342.000000,514.000000,2.803100,86900.000000 --120.670000,35.300000,32.000000,4202.000000,986.000000,2309.000000,956.000000,2.216500,231700.000000 --118.060000,34.120000,34.000000,2941.000000,558.000000,1660.000000,576.000000,4.566700,271500.000000 --122.390000,40.570000,38.000000,855.000000,172.000000,468.000000,150.000000,1.409100,84400.000000 --118.390000,33.880000,33.000000,2543.000000,439.000000,1098.000000,416.000000,5.968300,495500.000000 --118.160000,34.020000,47.000000,1055.000000,298.000000,1303.000000,302.000000,2.696400,138800.000000 --122.580000,37.980000,52.000000,1180.000000,216.000000,467.000000,197.000000,4.961500,292200.000000 --118.020000,33.920000,35.000000,2075.000000,424.000000,1312.000000,396.000000,3.796900,164800.000000 --119.700000,34.400000,25.000000,1858.000000,493.000000,865.000000,460.000000,3.093800,312500.000000 --122.680000,38.430000,29.000000,488.000000,63.000000,161.000000,62.000000,6.077400,334400.000000 --121.350000,38.590000,29.000000,1285.000000,193.000000,460.000000,206.000000,5.324300,265700.000000 --121.980000,37.270000,25.000000,3075.000000,564.000000,1633.000000,543.000000,5.252800,269400.000000 --118.080000,34.580000,5.000000,1113.000000,186.000000,631.000000,168.000000,4.171900,146600.000000 --118.250000,34.060000,20.000000,41.000000,17.000000,87.000000,25.000000,1.549100,225000.000000 --122.250000,37.820000,26.000000,3959.000000,1196.000000,1749.000000,1217.000000,3.023300,255000.000000 --119.050000,34.350000,39.000000,950.000000,300.000000,1366.000000,312.000000,2.244300,146600.000000 --117.540000,33.760000,5.000000,5846.000000,1035.000000,3258.000000,1001.000000,4.796500,160800.000000 --118.210000,33.880000,31.000000,1332.000000,417.000000,1405.000000,363.000000,2.012500,143000.000000 --117.200000,32.790000,29.000000,1213.000000,228.000000,654.000000,246.000000,4.598700,255600.000000 --120.960000,37.590000,11.000000,4236.000000,879.000000,2410.000000,850.000000,2.384900,122000.000000 --118.240000,34.010000,48.000000,396.000000,99.000000,485.000000,110.000000,2.375000,107500.000000 --118.270000,34.000000,43.000000,1638.000000,434.000000,1213.000000,390.000000,1.340300,110800.000000 --122.250000,37.890000,41.000000,1125.000000,195.000000,356.000000,181.000000,6.159300,344000.000000 --117.300000,34.090000,40.000000,1051.000000,244.000000,745.000000,243.000000,2.184200,75200.000000 --120.910000,37.740000,19.000000,1690.000000,327.000000,855.000000,296.000000,3.250000,176700.000000 --122.160000,38.900000,33.000000,1221.000000,236.000000,488.000000,199.000000,3.757400,92700.000000 --118.310000,33.890000,35.000000,2144.000000,423.000000,1192.000000,417.000000,4.145800,231500.000000 --118.180000,34.020000,43.000000,887.000000,219.000000,965.000000,217.000000,2.625000,133900.000000 --117.970000,33.750000,32.000000,1564.000000,270.000000,973.000000,290.000000,3.750000,190400.000000 --117.950000,35.080000,1.000000,83.000000,15.000000,32.000000,15.000000,4.875000,141700.000000 --118.030000,33.910000,35.000000,2323.000000,406.000000,1741.000000,398.000000,4.243700,164100.000000 --118.380000,33.970000,43.000000,2715.000000,458.000000,1151.000000,434.000000,7.489700,362600.000000 --119.820000,36.720000,25.000000,2581.000000,528.000000,1642.000000,509.000000,1.643500,52600.000000 --122.060000,37.680000,30.000000,5367.000000,1207.000000,2667.000000,1047.000000,3.179600,170300.000000 --122.410000,40.550000,19.000000,3753.000000,761.000000,1952.000000,738.000000,3.095400,86500.000000 --117.880000,33.720000,36.000000,1910.000000,352.000000,1593.000000,329.000000,3.890000,170000.000000 --120.800000,38.310000,37.000000,1341.000000,256.000000,533.000000,242.000000,3.213500,123600.000000 --118.100000,34.170000,48.000000,1111.000000,229.000000,421.000000,202.000000,3.281300,268100.000000 --118.090000,34.120000,38.000000,1713.000000,285.000000,779.000000,286.000000,5.615200,359900.000000 --118.310000,34.060000,47.000000,3038.000000,1533.000000,4225.000000,1472.000000,1.672500,187500.000000 --118.020000,33.800000,16.000000,2956.000000,393.000000,1379.000000,429.000000,8.495200,359600.000000 --121.940000,37.280000,18.000000,4356.000000,1334.000000,1968.000000,1245.000000,3.629400,240000.000000 --117.950000,34.080000,37.000000,1137.000000,203.000000,672.000000,226.000000,3.296900,189000.000000 --118.150000,33.940000,36.000000,1948.000000,341.000000,992.000000,363.000000,4.259400,242400.000000 --121.810000,37.990000,22.000000,2331.000000,359.000000,1086.000000,340.000000,5.143500,150800.000000 --121.810000,38.580000,17.000000,1964.000000,314.000000,808.000000,286.000000,5.962900,286000.000000 --121.280000,38.770000,6.000000,3819.000000,550.000000,1738.000000,587.000000,5.871800,201400.000000 --118.430000,34.010000,43.000000,1487.000000,242.000000,675.000000,247.000000,5.340300,489800.000000 --121.380000,38.590000,36.000000,1239.000000,237.000000,764.000000,222.000000,3.015600,103000.000000 --117.680000,35.650000,15.000000,2701.000000,576.000000,1245.000000,513.000000,3.326900,81900.000000 --117.690000,33.580000,8.000000,2887.000000,351.000000,1176.000000,351.000000,10.395300,500001.000000 --118.240000,34.000000,23.000000,588.000000,157.000000,716.000000,173.000000,1.205600,87500.000000 --117.700000,33.600000,25.000000,1321.000000,295.000000,396.000000,278.000000,3.113100,77100.000000 --118.380000,33.860000,12.000000,4235.000000,735.000000,1798.000000,683.000000,6.424200,365500.000000 --117.050000,32.610000,31.000000,4033.000000,715.000000,2585.000000,715.000000,3.509600,139900.000000 --121.380000,38.640000,19.000000,4563.000000,1069.000000,2256.000000,926.000000,2.147200,143400.000000 --117.100000,32.740000,20.000000,3854.000000,1046.000000,3555.000000,966.000000,1.674700,100000.000000 --122.470000,37.760000,48.000000,2064.000000,484.000000,1055.000000,467.000000,2.871100,329600.000000 --117.840000,33.760000,16.000000,238.000000,51.000000,93.000000,50.000000,5.375000,215700.000000 --122.260000,37.880000,52.000000,2604.000000,837.000000,1798.000000,769.000000,1.725000,287500.000000 --118.400000,33.870000,45.000000,2181.000000,505.000000,965.000000,471.000000,5.381600,500001.000000 --122.370000,38.330000,29.000000,1868.000000,291.000000,764.000000,284.000000,4.825000,195100.000000 --117.980000,34.010000,27.000000,2643.000000,418.000000,1344.000000,381.000000,5.705700,262100.000000 --122.700000,38.450000,26.000000,2011.000000,557.000000,855.000000,530.000000,1.125000,233300.000000 --118.410000,33.970000,44.000000,2789.000000,503.000000,3732.000000,474.000000,4.617600,352300.000000 --121.920000,37.300000,36.000000,2088.000000,358.000000,772.000000,347.000000,4.276200,310100.000000 --122.110000,37.370000,49.000000,1068.000000,190.000000,410.000000,171.000000,7.204500,500001.000000 --121.870000,37.390000,9.000000,2522.000000,547.000000,1591.000000,481.000000,4.909100,259700.000000 --120.180000,39.140000,25.000000,2171.000000,386.000000,248.000000,116.000000,3.037500,171900.000000 --117.060000,32.760000,36.000000,2785.000000,577.000000,1275.000000,527.000000,2.301500,156800.000000 --117.240000,33.930000,12.000000,7105.000000,1447.000000,4520.000000,1333.000000,3.270500,113200.000000 --118.250000,33.980000,47.000000,617.000000,162.000000,754.000000,144.000000,2.296900,116700.000000 --117.800000,33.680000,14.000000,2635.000000,516.000000,1150.000000,499.000000,4.439100,306700.000000 --119.780000,36.370000,41.000000,831.000000,149.000000,443.000000,146.000000,3.140600,100000.000000 --117.040000,32.700000,7.000000,9311.000000,1703.000000,7302.000000,1694.000000,4.419000,156900.000000 --118.290000,34.000000,6.000000,1487.000000,468.000000,1509.000000,403.000000,1.463900,112500.000000 --118.360000,34.060000,52.000000,2130.000000,455.000000,921.000000,395.000000,2.960500,500001.000000 --122.420000,37.620000,39.000000,1355.000000,214.000000,682.000000,246.000000,6.344300,324700.000000 --118.420000,34.250000,37.000000,1545.000000,341.000000,1909.000000,352.000000,3.679100,148100.000000 --121.100000,38.950000,17.000000,1475.000000,403.000000,943.000000,363.000000,2.128700,55300.000000 --117.740000,34.050000,27.000000,852.000000,237.000000,1024.000000,221.000000,2.114100,110900.000000 --122.390000,37.740000,52.000000,126.000000,24.000000,37.000000,27.000000,10.226400,225000.000000 --118.370000,34.080000,52.000000,2946.000000,695.000000,1258.000000,650.000000,3.978300,374100.000000 --122.080000,37.870000,24.000000,6130.000000,1359.000000,1750.000000,1286.000000,2.916700,102700.000000 --118.440000,34.200000,28.000000,1732.000000,435.000000,1198.000000,417.000000,2.921900,241300.000000 --121.370000,38.560000,19.000000,6308.000000,1167.000000,3012.000000,1112.000000,2.946400,113500.000000 --122.100000,37.930000,20.000000,10212.000000,1424.000000,4083.000000,1374.000000,8.039000,382200.000000 --117.220000,32.950000,4.000000,18123.000000,3173.000000,7301.000000,2964.000000,6.357000,322500.000000 --122.130000,37.460000,31.000000,2247.000000,573.000000,1711.000000,511.000000,3.264200,185600.000000 --122.300000,38.290000,20.000000,1789.000000,434.000000,1113.000000,398.000000,2.472800,139700.000000 --123.410000,40.610000,17.000000,769.000000,205.000000,301.000000,126.000000,1.787500,55000.000000 --120.770000,37.010000,28.000000,1689.000000,378.000000,1057.000000,267.000000,3.125000,156300.000000 --118.800000,34.410000,45.000000,1610.000000,406.000000,1148.000000,347.000000,2.700000,120400.000000 --119.270000,34.270000,52.000000,1577.000000,343.000000,836.000000,335.000000,3.589300,206600.000000 --122.470000,37.740000,52.000000,3797.000000,668.000000,1633.000000,658.000000,5.678700,363600.000000 --118.260000,34.130000,25.000000,3208.000000,1111.000000,2843.000000,1005.000000,2.667300,218100.000000 --119.770000,36.760000,40.000000,2009.000000,519.000000,2219.000000,505.000000,1.210100,49100.000000 --124.160000,41.920000,19.000000,1668.000000,324.000000,841.000000,283.000000,2.133600,75000.000000 --119.030000,36.130000,24.000000,2259.000000,408.000000,1169.000000,395.000000,1.710600,95500.000000 --122.180000,37.790000,41.000000,1411.000000,233.000000,626.000000,214.000000,7.087500,240700.000000 --123.850000,39.390000,23.000000,4671.000000,912.000000,2095.000000,857.000000,3.184000,140500.000000 --122.700000,38.330000,16.000000,1244.000000,242.000000,696.000000,236.000000,3.636900,158700.000000 --118.100000,33.850000,36.000000,956.000000,159.000000,416.000000,157.000000,4.642900,223700.000000 --117.990000,34.080000,35.000000,1032.000000,207.000000,954.000000,191.000000,2.890600,134800.000000 --121.930000,37.730000,8.000000,831.000000,231.000000,404.000000,224.000000,3.375000,350000.000000 --118.440000,34.230000,43.000000,2257.000000,429.000000,1418.000000,442.000000,4.527800,181800.000000 --118.320000,34.260000,24.000000,5106.000000,1010.000000,2310.000000,957.000000,4.437500,191500.000000 --118.150000,34.110000,39.000000,2618.000000,582.000000,1314.000000,532.000000,3.587500,309300.000000 --117.740000,34.040000,27.000000,2215.000000,440.000000,1987.000000,449.000000,3.042900,129600.000000 --121.350000,38.280000,17.000000,2756.000000,557.000000,1986.000000,530.000000,3.223400,82000.000000 --122.750000,39.010000,17.000000,4162.000000,967.000000,889.000000,414.000000,3.418700,200500.000000 --120.660000,35.460000,17.000000,3748.000000,609.000000,1860.000000,612.000000,4.517900,225600.000000 --122.620000,38.920000,13.000000,520.000000,115.000000,249.000000,109.000000,1.841700,84700.000000 --117.220000,34.260000,16.000000,8020.000000,1432.000000,1749.000000,540.000000,4.971600,162500.000000 --117.920000,33.750000,8.000000,2325.000000,598.000000,1511.000000,565.000000,3.362900,137500.000000 --122.280000,37.810000,36.000000,2914.000000,562.000000,1236.000000,509.000000,2.446400,102100.000000 --118.120000,33.810000,37.000000,1798.000000,331.000000,860.000000,340.000000,4.214300,228500.000000 --119.190000,36.060000,29.000000,1815.000000,376.000000,1421.000000,339.000000,1.909100,71300.000000 --117.970000,34.070000,22.000000,1438.000000,364.000000,1325.000000,335.000000,2.780200,162500.000000 --118.090000,34.030000,27.000000,3797.000000,597.000000,2043.000000,614.000000,5.500000,276800.000000 --121.930000,37.280000,10.000000,3163.000000,832.000000,1537.000000,797.000000,4.167400,214000.000000 --122.650000,38.960000,27.000000,2143.000000,580.000000,898.000000,367.000000,1.676900,63200.000000 --122.490000,37.750000,48.000000,2387.000000,424.000000,1041.000000,408.000000,3.756200,321200.000000 --122.310000,37.560000,45.000000,1792.000000,301.000000,829.000000,318.000000,4.901300,330100.000000 --121.270000,38.140000,33.000000,3557.000000,894.000000,2659.000000,894.000000,2.288300,86900.000000 --118.390000,34.230000,18.000000,3405.000000,831.000000,3001.000000,795.000000,3.008300,181900.000000 --118.390000,34.070000,33.000000,5301.000000,1281.000000,2243.000000,1159.000000,4.238600,500001.000000 --117.150000,32.920000,16.000000,2366.000000,392.000000,1482.000000,407.000000,4.902400,182900.000000 --122.090000,37.380000,34.000000,1959.000000,342.000000,849.000000,357.000000,6.288400,414700.000000 --117.060000,32.610000,23.000000,1630.000000,362.000000,1267.000000,418.000000,2.562500,131100.000000 --122.330000,37.910000,36.000000,1954.000000,513.000000,1437.000000,440.000000,1.125000,93800.000000 --116.920000,32.760000,7.000000,1659.000000,237.000000,862.000000,242.000000,5.274100,249400.000000 --116.000000,34.120000,32.000000,3163.000000,712.000000,1358.000000,544.000000,2.125000,57700.000000 --117.690000,33.600000,19.000000,3562.000000,439.000000,1584.000000,470.000000,6.421100,288100.000000 --117.230000,33.910000,9.000000,11654.000000,2100.000000,7596.000000,2127.000000,4.047300,127200.000000 --117.180000,34.040000,41.000000,1766.000000,288.000000,753.000000,278.000000,4.912500,140700.000000 --121.330000,38.280000,14.000000,980.000000,171.000000,659.000000,183.000000,4.430600,170100.000000 --121.880000,37.320000,38.000000,1787.000000,508.000000,2113.000000,530.000000,2.638600,177600.000000 --122.520000,37.970000,33.000000,563.000000,194.000000,265.000000,169.000000,2.750000,231300.000000 --117.770000,34.060000,27.000000,2178.000000,629.000000,2379.000000,591.000000,1.976600,108000.000000 --121.010000,37.720000,23.000000,1373.000000,264.000000,677.000000,245.000000,2.548600,161100.000000 --117.330000,33.870000,14.000000,2300.000000,335.000000,1001.000000,311.000000,5.104500,161300.000000 --118.240000,33.970000,37.000000,1212.000000,314.000000,1403.000000,279.000000,2.553600,117200.000000 --117.800000,33.890000,25.000000,3121.000000,381.000000,1278.000000,389.000000,7.021700,357900.000000 --119.620000,36.560000,30.000000,1722.000000,372.000000,1467.000000,403.000000,1.887800,51600.000000 --122.160000,37.690000,36.000000,1118.000000,219.000000,625.000000,228.000000,3.781300,192200.000000 --117.970000,33.800000,35.000000,2985.000000,474.000000,1614.000000,453.000000,5.463100,225600.000000 --120.870000,37.760000,16.000000,2022.000000,413.000000,1126.000000,408.000000,2.565500,116400.000000 --120.460000,37.310000,26.000000,3170.000000,572.000000,1524.000000,565.000000,3.480000,95300.000000 --118.230000,34.140000,39.000000,277.000000,89.000000,182.000000,91.000000,2.395800,175000.000000 --121.070000,38.660000,22.000000,1831.000000,274.000000,813.000000,269.000000,4.639400,173400.000000 --120.090000,36.950000,16.000000,3222.000000,511.000000,1425.000000,503.000000,4.154400,119400.000000 --118.210000,33.960000,38.000000,2090.000000,519.000000,1871.000000,504.000000,2.468800,169000.000000 --122.630000,38.230000,37.000000,1966.000000,348.000000,875.000000,381.000000,4.070300,223800.000000 --119.400000,36.250000,25.000000,1696.000000,279.000000,909.000000,291.000000,2.300000,132800.000000 --117.380000,33.210000,31.000000,1502.000000,367.000000,1514.000000,342.000000,2.644200,103300.000000 --117.250000,32.800000,37.000000,1096.000000,260.000000,490.000000,267.000000,3.266300,270600.000000 --122.230000,40.570000,18.000000,1633.000000,243.000000,750.000000,252.000000,5.158500,150800.000000 --121.230000,38.790000,45.000000,907.000000,176.000000,463.000000,190.000000,2.229200,92000.000000 --121.550000,40.480000,14.000000,2413.000000,524.000000,805.000000,329.000000,2.785700,77400.000000 --117.890000,33.920000,34.000000,1473.000000,312.000000,1025.000000,315.000000,3.833300,170400.000000 --117.230000,32.720000,43.000000,952.000000,209.000000,392.000000,210.000000,2.163500,244200.000000 --117.920000,33.790000,35.000000,1785.000000,288.000000,1033.000000,297.000000,4.573900,190500.000000 --117.580000,34.110000,14.000000,11635.000000,2055.000000,6443.000000,2009.000000,4.754700,157600.000000 --120.850000,38.690000,18.000000,5928.000000,1097.000000,2697.000000,1096.000000,3.487200,141400.000000 --121.530000,38.480000,5.000000,27870.000000,5027.000000,11935.000000,4855.000000,4.881100,212200.000000 --117.210000,32.820000,31.000000,2035.000000,383.000000,866.000000,360.000000,3.852900,212000.000000 --117.350000,34.130000,26.000000,3920.000000,570.000000,1862.000000,552.000000,3.728600,132000.000000 --118.170000,33.790000,30.000000,1349.000000,519.000000,2646.000000,552.000000,1.931800,115900.000000 --118.300000,34.260000,37.000000,2824.000000,633.000000,1619.000000,573.000000,3.556800,184500.000000 --118.020000,33.830000,16.000000,1139.000000,328.000000,665.000000,290.000000,3.293300,260000.000000 --116.990000,33.010000,11.000000,1412.000000,185.000000,529.000000,166.000000,7.751700,500001.000000 --122.560000,38.010000,21.000000,2144.000000,400.000000,840.000000,398.000000,4.600000,239500.000000 --118.150000,34.100000,39.000000,3856.000000,867.000000,1847.000000,830.000000,3.455900,364900.000000 --117.930000,33.730000,27.000000,3662.000000,834.000000,3009.000000,743.000000,3.981600,179500.000000 --121.090000,38.030000,21.000000,2064.000000,342.000000,1021.000000,359.000000,4.517000,152200.000000 --116.660000,33.090000,24.000000,1378.000000,272.000000,532.000000,188.000000,1.590900,221900.000000 --118.260000,33.830000,24.000000,3059.000000,729.000000,2064.000000,629.000000,3.551800,184600.000000 --117.940000,33.930000,14.000000,999.000000,232.000000,1037.000000,244.000000,2.712500,166100.000000 --116.930000,32.830000,19.000000,3038.000000,529.000000,1463.000000,509.000000,3.944000,172500.000000 --122.290000,37.850000,52.000000,477.000000,119.000000,218.000000,106.000000,2.568200,120000.000000 --122.480000,37.670000,14.000000,3395.000000,1059.000000,2258.000000,945.000000,2.964000,319700.000000 --119.330000,36.310000,15.000000,1472.000000,228.000000,892.000000,257.000000,5.390900,113000.000000 --118.410000,34.210000,35.000000,1789.000000,292.000000,897.000000,267.000000,5.592000,239900.000000 --119.500000,34.350000,39.000000,308.000000,38.000000,59.000000,21.000000,11.779400,500001.000000 --118.330000,34.110000,48.000000,1601.000000,464.000000,784.000000,461.000000,3.064200,342900.000000 --118.300000,34.100000,29.000000,3403.000000,1367.000000,3432.000000,1174.000000,1.708300,166700.000000 --119.750000,34.400000,31.000000,1997.000000,299.000000,826.000000,301.000000,6.892700,500001.000000 --120.940000,39.320000,14.000000,3120.000000,595.000000,1569.000000,556.000000,3.538500,157400.000000 --117.680000,35.610000,9.000000,4241.000000,832.000000,1929.000000,742.000000,3.598800,84500.000000 --122.270000,38.120000,45.000000,4423.000000,1001.000000,2109.000000,874.000000,2.693700,111800.000000 --118.210000,34.110000,32.000000,2759.000000,499.000000,1661.000000,533.000000,4.381200,228200.000000 --117.230000,33.100000,4.000000,1862.000000,291.000000,685.000000,248.000000,7.745000,237400.000000 --119.460000,35.140000,30.000000,2943.000000,697.000000,1565.000000,584.000000,2.531300,45800.000000 --119.780000,36.760000,50.000000,1343.000000,322.000000,1063.000000,342.000000,1.750000,49800.000000 --117.810000,33.660000,20.000000,2851.000000,490.000000,1192.000000,463.000000,5.875200,274200.000000 --119.290000,34.310000,25.000000,1092.000000,190.000000,702.000000,215.000000,3.906300,192700.000000 --122.410000,37.610000,46.000000,2975.000000,643.000000,1479.000000,577.000000,3.821400,273600.000000 --120.320000,37.290000,38.000000,576.000000,130.000000,478.000000,112.000000,2.338200,59600.000000 --118.370000,34.160000,40.000000,1973.000000,382.000000,774.000000,352.000000,4.412200,282300.000000 --122.050000,37.050000,41.000000,2422.000000,502.000000,915.000000,366.000000,4.167900,201300.000000 --118.460000,34.030000,52.000000,523.000000,124.000000,317.000000,130.000000,2.279400,337500.000000 --117.120000,32.760000,43.000000,2336.000000,644.000000,1203.000000,614.000000,2.359400,127800.000000 --122.040000,37.570000,12.000000,5719.000000,1064.000000,3436.000000,1057.000000,5.287900,231200.000000 --121.970000,37.360000,34.000000,884.000000,153.000000,534.000000,154.000000,6.011600,271200.000000 --121.280000,38.530000,18.000000,224.000000,38.000000,95.000000,41.000000,3.104200,165000.000000 --119.090000,35.300000,3.000000,2821.000000,519.000000,1353.000000,495.000000,3.685200,109800.000000 --121.750000,36.910000,42.000000,1368.000000,468.000000,2312.000000,484.000000,2.559900,151400.000000 --121.860000,38.000000,4.000000,4075.000000,927.000000,2239.000000,849.000000,3.585700,165200.000000 --118.530000,34.450000,26.000000,828.000000,149.000000,508.000000,158.000000,5.237400,185500.000000 --117.940000,33.810000,24.000000,4602.000000,1131.000000,3003.000000,1014.000000,3.677100,172200.000000 --119.840000,34.450000,26.000000,4424.000000,616.000000,1839.000000,601.000000,6.365400,331200.000000 --118.240000,33.910000,37.000000,1607.000000,377.000000,1526.000000,375.000000,1.715800,94300.000000 --117.060000,33.140000,27.000000,3819.000000,674.000000,2447.000000,717.000000,3.818500,137200.000000 --120.980000,37.670000,33.000000,1433.000000,298.000000,824.000000,302.000000,2.762100,109100.000000 --117.740000,34.090000,30.000000,3199.000000,591.000000,2192.000000,563.000000,3.487100,136400.000000 --118.180000,34.010000,39.000000,322.000000,82.000000,319.000000,90.000000,2.636400,148800.000000 --118.240000,33.890000,32.000000,1132.000000,266.000000,1211.000000,279.000000,2.183800,98300.000000 --123.080000,40.400000,10.000000,365.000000,102.000000,140.000000,49.000000,1.796900,37500.000000 --117.320000,34.070000,52.000000,1226.000000,269.000000,693.000000,272.000000,1.996300,76900.000000 --118.240000,33.850000,25.000000,9594.000000,1489.000000,5237.000000,1496.000000,5.968400,193300.000000 --122.230000,37.780000,52.000000,472.000000,146.000000,415.000000,126.000000,2.642900,71300.000000 --121.180000,38.780000,13.000000,3480.000000,528.000000,1432.000000,532.000000,6.164200,277800.000000 --118.100000,33.910000,29.000000,505.000000,113.000000,411.000000,113.000000,2.639700,164400.000000 --121.970000,38.040000,38.000000,2505.000000,554.000000,1595.000000,498.000000,2.583300,83500.000000 --118.470000,34.000000,41.000000,2331.000000,636.000000,1839.000000,537.000000,2.288000,263500.000000 --119.310000,36.390000,32.000000,2293.000000,466.000000,1538.000000,468.000000,1.934200,68600.000000 --122.170000,37.710000,38.000000,890.000000,200.000000,481.000000,198.000000,3.244000,179800.000000 --122.490000,37.680000,35.000000,2405.000000,461.000000,1583.000000,471.000000,5.065900,238000.000000 --121.300000,37.980000,39.000000,3375.000000,659.000000,1388.000000,631.000000,2.636400,93800.000000 --121.370000,38.570000,22.000000,4899.000000,847.000000,1701.000000,826.000000,5.244900,387000.000000 --122.080000,37.610000,6.000000,2605.000000,474.000000,1568.000000,433.000000,5.040600,261400.000000 --117.110000,32.570000,32.000000,2723.000000,586.000000,1702.000000,562.000000,3.337100,140500.000000 --122.090000,37.400000,22.000000,1489.000000,436.000000,662.000000,470.000000,3.517900,197200.000000 --122.010000,36.980000,27.000000,2820.000000,730.000000,1511.000000,745.000000,2.589000,242400.000000 --118.250000,34.000000,36.000000,1033.000000,267.000000,1112.000000,229.000000,1.723700,105800.000000 --117.830000,33.660000,16.000000,1574.000000,385.000000,515.000000,363.000000,5.342300,291700.000000 --121.960000,37.740000,2.000000,200.000000,20.000000,25.000000,9.000000,15.000100,350000.000000 --119.810000,36.730000,51.000000,956.000000,196.000000,662.000000,180.000000,2.101000,56700.000000 --118.620000,34.060000,25.000000,3546.000000,584.000000,1530.000000,601.000000,7.400100,500001.000000 --122.350000,37.960000,35.000000,1326.000000,346.000000,1023.000000,295.000000,2.072400,97700.000000 --119.060000,36.100000,21.000000,1344.000000,249.000000,868.000000,221.000000,2.589300,63600.000000 --122.470000,37.750000,52.000000,1598.000000,285.000000,689.000000,265.000000,4.607100,337400.000000 --122.540000,37.900000,41.000000,3170.000000,622.000000,1091.000000,528.000000,3.781300,389200.000000 --119.730000,36.760000,30.000000,1548.000000,282.000000,886.000000,311.000000,3.100000,71300.000000 --122.030000,36.960000,40.000000,584.000000,126.000000,316.000000,139.000000,3.593800,243500.000000 --119.750000,36.780000,33.000000,1145.000000,197.000000,508.000000,198.000000,2.333300,81300.000000 --117.300000,33.060000,24.000000,2171.000000,511.000000,870.000000,442.000000,3.194000,276300.000000 --121.990000,36.960000,16.000000,875.000000,201.000000,300.000000,157.000000,2.625000,377300.000000 --120.730000,39.630000,17.000000,1791.000000,356.000000,432.000000,190.000000,3.882600,92400.000000 --118.480000,34.030000,19.000000,902.000000,284.000000,414.000000,272.000000,1.333300,310000.000000 --118.220000,33.950000,36.000000,1679.000000,483.000000,2249.000000,487.000000,2.816700,160400.000000 --118.240000,33.970000,43.000000,1357.000000,349.000000,1657.000000,331.000000,2.081900,111800.000000 --117.820000,35.030000,30.000000,2555.000000,510.000000,1347.000000,467.000000,3.369300,71800.000000 --117.020000,32.700000,18.000000,1643.000000,283.000000,1134.000000,269.000000,5.176900,133000.000000 --122.350000,37.940000,47.000000,1275.000000,275.000000,844.000000,273.000000,2.896700,95600.000000 --119.800000,36.780000,50.000000,1818.000000,374.000000,737.000000,338.000000,2.261400,73000.000000 --122.190000,37.480000,38.000000,1300.000000,269.000000,608.000000,292.000000,4.556800,286900.000000 --122.380000,37.590000,31.000000,3052.000000,844.000000,1581.000000,788.000000,3.074400,457700.000000 --122.150000,37.750000,44.000000,1938.000000,399.000000,946.000000,331.000000,3.225000,135800.000000 --119.350000,36.190000,6.000000,958.000000,226.000000,734.000000,230.000000,1.034900,67800.000000 --120.450000,34.950000,7.000000,1479.000000,532.000000,1057.000000,459.000000,2.253800,162500.000000 --122.280000,38.290000,19.000000,531.000000,112.000000,139.000000,80.000000,1.987500,325000.000000 --122.260000,37.840000,49.000000,713.000000,202.000000,462.000000,189.000000,1.025000,118800.000000 --122.300000,37.810000,52.000000,572.000000,109.000000,274.000000,82.000000,1.851600,85000.000000 --118.220000,33.900000,22.000000,312.000000,107.000000,583.000000,119.000000,1.942300,98400.000000 --117.670000,33.640000,11.000000,2722.000000,554.000000,1565.000000,508.000000,5.164500,164100.000000 --122.020000,37.010000,20.000000,1005.000000,138.000000,345.000000,129.000000,10.096800,500001.000000 --117.380000,33.190000,17.000000,353.000000,112.000000,359.000000,118.000000,1.562500,162500.000000 --118.010000,34.080000,30.000000,2281.000000,522.000000,1969.000000,500.000000,3.653100,166300.000000 --118.600000,34.130000,20.000000,14291.000000,1934.000000,5452.000000,1875.000000,9.123200,472000.000000 --118.520000,34.200000,19.000000,4315.000000,1304.000000,2490.000000,1222.000000,2.643700,195000.000000 --118.420000,34.270000,35.000000,2700.000000,702.000000,3444.000000,679.000000,1.486700,124000.000000 --122.080000,37.710000,35.000000,2211.000000,350.000000,1004.000000,365.000000,5.463900,238600.000000 --117.650000,33.570000,5.000000,1998.000000,500.000000,1185.000000,446.000000,4.354200,195600.000000 --120.540000,37.680000,18.000000,335.000000,76.000000,189.000000,67.000000,1.227300,87500.000000 --118.310000,34.050000,40.000000,1667.000000,365.000000,1161.000000,384.000000,3.140600,417600.000000 --122.420000,37.600000,34.000000,3562.000000,565.000000,1542.000000,563.000000,5.878300,405100.000000 --118.180000,33.980000,38.000000,1477.000000,374.000000,1514.000000,408.000000,2.570300,178600.000000 --121.250000,36.320000,12.000000,4776.000000,1082.000000,4601.000000,1066.000000,2.918400,100500.000000 --118.170000,34.690000,12.000000,4881.000000,803.000000,2188.000000,724.000000,4.166700,171900.000000 --120.330000,39.300000,16.000000,868.000000,178.000000,44.000000,21.000000,3.000000,175000.000000 --118.380000,34.060000,29.000000,3946.000000,1008.000000,1676.000000,876.000000,2.782400,450000.000000 --119.780000,36.730000,52.000000,1377.000000,319.000000,1280.000000,259.000000,1.234400,43300.000000 --118.330000,33.970000,44.000000,2526.000000,579.000000,1423.000000,573.000000,2.536300,158800.000000 --118.370000,34.060000,36.000000,1661.000000,395.000000,690.000000,365.000000,3.343800,500001.000000 --119.000000,35.390000,51.000000,1373.000000,284.000000,648.000000,300.000000,2.829500,72100.000000 --117.950000,33.870000,35.000000,1854.000000,383.000000,1115.000000,381.000000,4.478400,185200.000000 --118.380000,34.580000,18.000000,1859.000000,375.000000,913.000000,372.000000,4.345600,148900.000000 --118.290000,34.080000,25.000000,2459.000000,823.000000,2635.000000,763.000000,2.400000,173900.000000 --120.970000,37.680000,16.000000,2493.000000,535.000000,1370.000000,504.000000,3.336800,121200.000000 --122.280000,37.870000,52.000000,589.000000,132.000000,288.000000,131.000000,3.515600,200000.000000 --118.140000,33.880000,41.000000,1531.000000,343.000000,1119.000000,341.000000,4.364600,161400.000000 --122.060000,37.380000,20.000000,4293.000000,1272.000000,2389.000000,1210.000000,4.271900,270800.000000 --118.540000,34.270000,28.000000,2309.000000,300.000000,931.000000,302.000000,6.741500,348200.000000 --117.880000,33.840000,25.000000,1781.000000,349.000000,918.000000,378.000000,3.928600,262700.000000 --118.300000,34.190000,52.000000,1704.000000,277.000000,746.000000,262.000000,4.798600,326100.000000 --117.840000,33.800000,35.000000,1490.000000,251.000000,629.000000,257.000000,4.366100,222100.000000 --121.270000,38.650000,25.000000,2787.000000,601.000000,1247.000000,522.000000,2.901600,159800.000000 --117.880000,33.870000,21.000000,1519.000000,388.000000,1203.000000,366.000000,3.208300,145300.000000 --119.880000,34.420000,22.000000,2367.000000,492.000000,1333.000000,488.000000,3.630400,312200.000000 --118.480000,34.010000,31.000000,1829.000000,458.000000,719.000000,392.000000,4.400000,353800.000000 --116.950000,33.860000,1.000000,6.000000,2.000000,8.000000,2.000000,1.625000,55000.000000 --117.670000,33.510000,17.000000,2112.000000,480.000000,1893.000000,433.000000,4.038800,120400.000000 --118.350000,34.040000,38.000000,1626.000000,375.000000,1019.000000,372.000000,2.368700,146800.000000 --124.160000,40.800000,52.000000,2167.000000,480.000000,908.000000,451.000000,1.611100,74700.000000 --118.350000,34.050000,33.000000,2880.000000,836.000000,1416.000000,736.000000,2.678100,328800.000000 --119.080000,34.350000,24.000000,3663.000000,828.000000,2718.000000,778.000000,3.275700,186000.000000 --122.510000,37.780000,45.000000,2564.000000,499.000000,1056.000000,460.000000,4.732800,351100.000000 --118.360000,34.140000,30.000000,1376.000000,317.000000,629.000000,320.000000,3.682300,295200.000000 --121.960000,37.550000,4.000000,3746.000000,993.000000,1606.000000,838.000000,4.138700,162500.000000 --117.190000,32.770000,30.000000,2747.000000,640.000000,3185.000000,657.000000,3.765000,238000.000000 --118.090000,33.890000,42.000000,1150.000000,215.000000,708.000000,204.000000,3.687500,171500.000000 --121.760000,36.900000,44.000000,919.000000,309.000000,1321.000000,301.000000,2.077500,121400.000000 --118.140000,33.920000,35.000000,2378.000000,559.000000,1799.000000,546.000000,3.932700,190500.000000 --119.060000,34.360000,52.000000,1239.000000,320.000000,934.000000,298.000000,1.861800,183300.000000 --118.120000,34.160000,52.000000,2218.000000,437.000000,1211.000000,422.000000,5.023700,241900.000000 --117.800000,34.150000,14.000000,7876.000000,1253.000000,3699.000000,1162.000000,5.542300,248700.000000 --120.040000,39.240000,30.000000,2369.000000,469.000000,510.000000,213.000000,2.650000,123800.000000 --121.470000,38.480000,25.000000,2969.000000,551.000000,1745.000000,487.000000,2.638200,76200.000000 --122.270000,37.540000,15.000000,2126.000000,310.000000,905.000000,306.000000,8.908300,500001.000000 --122.020000,37.540000,31.000000,1240.000000,264.000000,719.000000,236.000000,3.535000,210300.000000 --121.380000,38.400000,15.000000,4155.000000,637.000000,1722.000000,616.000000,4.883100,154400.000000 --122.040000,37.350000,20.000000,2016.000000,313.000000,767.000000,310.000000,6.837000,383000.000000 --117.120000,32.760000,41.000000,1469.000000,421.000000,803.000000,395.000000,2.185600,120500.000000 --117.340000,34.180000,7.000000,2914.000000,481.000000,1584.000000,499.000000,4.631200,124900.000000 --121.020000,37.670000,32.000000,3951.000000,797.000000,1916.000000,740.000000,2.672200,111500.000000 --119.060000,34.380000,33.000000,1465.000000,262.000000,731.000000,266.000000,3.946400,230300.000000 --118.160000,33.910000,35.000000,1403.000000,338.000000,1415.000000,367.000000,3.096700,144000.000000 --121.920000,37.340000,52.000000,2584.000000,491.000000,1087.000000,433.000000,4.400000,391300.000000 --119.030000,34.210000,11.000000,4528.000000,729.000000,2398.000000,684.000000,5.304400,319000.000000 --121.960000,37.340000,37.000000,663.000000,127.000000,293.000000,132.000000,3.781300,247800.000000 --114.610000,33.620000,16.000000,1187.000000,261.000000,1115.000000,242.000000,2.175900,61500.000000 --117.270000,33.150000,4.000000,23915.000000,4135.000000,10877.000000,3958.000000,4.635700,244900.000000 --121.370000,38.620000,27.000000,1743.000000,380.000000,697.000000,368.000000,1.667800,166100.000000 --118.180000,33.820000,43.000000,2210.000000,469.000000,1042.000000,418.000000,3.500000,216700.000000 --118.020000,33.770000,33.000000,2683.000000,436.000000,1520.000000,456.000000,5.009100,211500.000000 --120.050000,34.470000,21.000000,1241.000000,248.000000,746.000000,211.000000,3.805600,425000.000000 --118.250000,34.010000,45.000000,782.000000,270.000000,1030.000000,235.000000,1.089800,93400.000000 --119.540000,38.510000,14.000000,1250.000000,272.000000,721.000000,234.000000,2.350000,95700.000000 --117.270000,34.500000,7.000000,2045.000000,342.000000,878.000000,292.000000,6.029600,194100.000000 --121.960000,36.990000,23.000000,3209.000000,748.000000,1423.000000,666.000000,2.737500,238000.000000 --118.190000,34.040000,45.000000,963.000000,234.000000,1194.000000,239.000000,2.180600,134900.000000 --121.280000,37.950000,49.000000,1200.000000,364.000000,1448.000000,318.000000,1.109400,52500.000000 --117.960000,33.790000,29.000000,1813.000000,501.000000,1170.000000,482.000000,2.067700,214500.000000 --118.440000,34.170000,25.000000,4966.000000,1134.000000,1941.000000,958.000000,3.808100,286700.000000 --122.310000,37.520000,35.000000,1817.000000,262.000000,659.000000,262.000000,6.833600,457200.000000 --117.970000,33.920000,24.000000,2017.000000,416.000000,900.000000,436.000000,3.000000,251400.000000 --117.710000,34.050000,20.000000,2281.000000,444.000000,1545.000000,481.000000,2.573500,130500.000000 --118.420000,34.020000,26.000000,2664.000000,842.000000,1745.000000,789.000000,3.426900,301900.000000 --120.250000,37.110000,20.000000,2062.000000,466.000000,1285.000000,456.000000,1.531900,50500.000000 --121.350000,38.510000,29.000000,2337.000000,391.000000,1054.000000,352.000000,4.220600,157700.000000 --120.250000,38.550000,15.000000,4403.000000,891.000000,1103.000000,433.000000,3.012500,111700.000000 --118.020000,34.020000,21.000000,5992.000000,986.000000,2647.000000,969.000000,5.240500,302400.000000 --120.660000,35.260000,15.000000,5540.000000,1319.000000,2383.000000,1165.000000,2.265600,226200.000000 --120.660000,40.420000,35.000000,1450.000000,325.000000,717.000000,297.000000,2.507400,66400.000000 --118.150000,35.060000,15.000000,1069.000000,296.000000,569.000000,263.000000,2.044100,73300.000000 --122.510000,37.780000,47.000000,2496.000000,494.000000,1201.000000,454.000000,4.035300,342200.000000 --120.460000,34.650000,22.000000,1298.000000,358.000000,1272.000000,363.000000,1.648800,117500.000000 --117.930000,33.930000,25.000000,2431.000000,534.000000,1702.000000,523.000000,3.793300,184400.000000 --118.210000,33.970000,49.000000,1409.000000,313.000000,1268.000000,317.000000,3.940800,170600.000000 --120.180000,34.620000,25.000000,1337.000000,219.000000,671.000000,225.000000,3.191200,226400.000000 --122.140000,37.430000,18.000000,2060.000000,563.000000,1144.000000,600.000000,4.068600,378600.000000 --123.110000,40.600000,23.000000,708.000000,202.000000,316.000000,136.000000,1.160200,65000.000000 --117.940000,33.840000,25.000000,4016.000000,831.000000,2166.000000,774.000000,3.188400,135400.000000 --122.750000,38.480000,4.000000,6487.000000,1112.000000,2958.000000,1131.000000,4.541700,197400.000000 --121.610000,37.150000,16.000000,5498.000000,729.000000,2051.000000,694.000000,7.860100,416300.000000 --122.420000,40.600000,5.000000,2614.000000,433.000000,1275.000000,411.000000,3.446400,122900.000000 --119.160000,34.950000,14.000000,4054.000000,787.000000,1581.000000,579.000000,3.088200,148200.000000 --118.630000,34.240000,9.000000,4759.000000,924.000000,1884.000000,915.000000,4.833300,277200.000000 --121.950000,36.980000,34.000000,3745.000000,958.000000,1622.000000,802.000000,3.154600,261200.000000 --117.250000,32.790000,43.000000,906.000000,240.000000,458.000000,205.000000,1.836500,328600.000000 --119.180000,34.220000,15.000000,4615.000000,1008.000000,2549.000000,973.000000,3.906300,198700.000000 --117.260000,32.820000,34.000000,5846.000000,785.000000,1817.000000,747.000000,8.496000,500001.000000 --117.070000,32.790000,25.000000,2489.000000,314.000000,911.000000,309.000000,7.833600,277600.000000 --116.760000,34.230000,10.000000,4374.000000,989.000000,1020.000000,376.000000,2.607100,89000.000000 --118.250000,34.130000,52.000000,322.000000,88.000000,229.000000,89.000000,2.125000,243800.000000 --117.280000,34.260000,18.000000,3895.000000,689.000000,1086.000000,375.000000,3.367200,133600.000000 --122.570000,38.110000,32.000000,3521.000000,748.000000,1706.000000,723.000000,3.470500,228600.000000 --122.450000,37.790000,52.000000,1457.000000,215.000000,495.000000,208.000000,10.709700,500001.000000 --117.770000,33.710000,15.000000,2102.000000,295.000000,1060.000000,303.000000,7.314100,337100.000000 --119.440000,36.610000,17.000000,1531.000000,280.000000,775.000000,246.000000,3.907300,91600.000000 --118.320000,33.930000,37.000000,2379.000000,462.000000,1327.000000,445.000000,4.250000,172100.000000 --118.220000,33.790000,28.000000,3008.000000,629.000000,2537.000000,596.000000,2.300000,137500.000000 --122.650000,38.480000,17.000000,1090.000000,164.000000,473.000000,163.000000,5.506100,231800.000000 --121.230000,37.960000,44.000000,2204.000000,473.000000,1277.000000,435.000000,1.553900,59200.000000 --117.860000,34.090000,26.000000,3408.000000,542.000000,1664.000000,543.000000,6.149800,239100.000000 --122.060000,37.860000,16.000000,5187.000000,1014.000000,1512.000000,986.000000,4.455100,252400.000000 --117.360000,34.100000,29.000000,2819.000000,637.000000,1683.000000,608.000000,2.320500,87600.000000 --117.300000,34.100000,49.000000,60.000000,11.000000,76.000000,13.000000,2.562500,75000.000000 --122.140000,38.030000,42.000000,118.000000,34.000000,54.000000,30.000000,2.579500,225000.000000 --121.640000,36.800000,18.000000,5915.000000,1000.000000,2975.000000,975.000000,4.581200,255200.000000 --122.240000,38.010000,11.000000,3751.000000,565.000000,1949.000000,555.000000,5.786200,269400.000000 --116.860000,34.310000,19.000000,1649.000000,328.000000,382.000000,151.000000,4.055600,133000.000000 --122.710000,37.880000,21.000000,2845.000000,552.000000,599.000000,250.000000,4.312500,495800.000000 --117.090000,32.560000,8.000000,864.000000,156.000000,626.000000,172.000000,4.898400,151500.000000 --122.250000,37.470000,35.000000,3183.000000,515.000000,1313.000000,487.000000,5.906200,383200.000000 --118.120000,33.770000,20.000000,4534.000000,954.000000,1941.000000,892.000000,6.036200,463500.000000 --120.960000,37.670000,17.000000,2434.000000,511.000000,1558.000000,546.000000,2.921900,114300.000000 --119.300000,36.320000,23.000000,3521.000000,615.000000,1712.000000,636.000000,3.387500,92500.000000 --117.390000,33.960000,52.000000,1992.000000,345.000000,948.000000,358.000000,3.291700,129300.000000 --121.000000,37.600000,22.000000,4412.000000,925.000000,3116.000000,817.000000,2.689900,82100.000000 --117.090000,32.640000,19.000000,2571.000000,791.000000,1205.000000,783.000000,1.620000,131300.000000 --122.050000,37.930000,15.000000,7803.000000,1603.000000,2957.000000,1546.000000,4.450000,184900.000000 --120.430000,34.870000,26.000000,1699.000000,272.000000,799.000000,266.000000,3.987100,157700.000000 --122.090000,37.690000,43.000000,500.000000,110.000000,273.000000,120.000000,3.312500,150000.000000 --118.460000,34.010000,39.000000,711.000000,148.000000,347.000000,153.000000,4.281300,297200.000000 --121.980000,37.370000,35.000000,995.000000,202.000000,615.000000,199.000000,5.094200,217500.000000 --121.970000,37.760000,8.000000,3743.000000,581.000000,1633.000000,567.000000,6.702700,381900.000000 --117.810000,33.830000,8.000000,7326.000000,884.000000,2569.000000,798.000000,10.157000,477100.000000 --118.160000,33.890000,38.000000,483.000000,113.000000,389.000000,108.000000,2.185900,143800.000000 --115.570000,32.780000,25.000000,2007.000000,301.000000,1135.000000,332.000000,5.128000,99600.000000 --117.620000,33.420000,27.000000,1005.000000,266.000000,460.000000,243.000000,3.102900,190600.000000 --121.510000,38.560000,43.000000,1048.000000,312.000000,1320.000000,294.000000,1.064900,137500.000000 --117.110000,32.750000,18.000000,1943.000000,587.000000,1329.000000,522.000000,1.769600,103100.000000 --122.460000,37.720000,37.000000,1833.000000,388.000000,1093.000000,363.000000,3.070300,211800.000000 --122.010000,37.580000,17.000000,4313.000000,717.000000,2629.000000,721.000000,5.757900,231800.000000 --116.850000,34.260000,18.000000,6988.000000,1635.000000,2044.000000,726.000000,2.430800,90600.000000 --122.180000,37.150000,17.000000,1457.000000,289.000000,591.000000,235.000000,5.578500,284100.000000 --116.950000,32.820000,19.000000,5308.000000,1058.000000,2852.000000,1092.000000,2.916100,135700.000000 --117.230000,32.740000,16.000000,1953.000000,404.000000,798.000000,385.000000,4.816700,169800.000000 --117.840000,34.110000,17.000000,3499.000000,621.000000,1911.000000,621.000000,4.889400,191700.000000 --122.490000,37.760000,48.000000,1351.000000,270.000000,650.000000,265.000000,3.527800,339800.000000 --117.930000,33.710000,10.000000,2775.000000,717.000000,1581.000000,633.000000,4.136600,158800.000000 --118.180000,33.740000,30.000000,5915.000000,1750.000000,2136.000000,1503.000000,4.096800,310000.000000 --118.080000,33.920000,38.000000,1335.000000,282.000000,1011.000000,269.000000,3.690800,157500.000000 --118.300000,34.010000,52.000000,1444.000000,343.000000,1154.000000,334.000000,2.062500,134400.000000 --122.170000,39.310000,35.000000,2791.000000,552.000000,1395.000000,476.000000,2.562500,62700.000000 --117.140000,32.750000,19.000000,1358.000000,613.000000,766.000000,630.000000,1.035300,150000.000000 --117.940000,34.040000,36.000000,1431.000000,354.000000,1367.000000,334.000000,3.559200,160200.000000 --121.740000,37.190000,11.000000,1290.000000,197.000000,881.000000,191.000000,4.203900,500001.000000 --118.360000,33.810000,26.000000,1575.000000,300.000000,881.000000,309.000000,5.177800,359900.000000 --122.440000,37.780000,37.000000,1235.000000,314.000000,481.000000,297.000000,3.687500,492300.000000 --118.190000,33.810000,23.000000,954.000000,390.000000,804.000000,373.000000,2.583300,181300.000000 --117.290000,33.190000,18.000000,6235.000000,1233.000000,4127.000000,1162.000000,3.070400,151600.000000 --117.240000,32.850000,18.000000,3117.000000,475.000000,904.000000,368.000000,6.758700,388500.000000 --117.240000,32.800000,29.000000,3376.000000,882.000000,1513.000000,843.000000,3.101000,238200.000000 --120.980000,38.660000,9.000000,2073.000000,404.000000,916.000000,373.000000,3.225000,163300.000000 --119.630000,36.760000,22.000000,4126.000000,614.000000,1795.000000,613.000000,4.925000,154700.000000 --121.650000,37.120000,14.000000,4721.000000,999.000000,2648.000000,888.000000,3.689500,239300.000000 --121.900000,37.440000,12.000000,4228.000000,734.000000,2594.000000,732.000000,6.608600,299400.000000 --122.110000,37.700000,23.000000,1689.000000,461.000000,828.000000,443.000000,2.155200,161400.000000 --118.290000,33.950000,35.000000,1401.000000,362.000000,1357.000000,327.000000,2.091700,99300.000000 --117.760000,34.060000,30.000000,1700.000000,504.000000,1719.000000,459.000000,2.227000,91900.000000 --118.320000,34.080000,52.000000,2370.000000,473.000000,1053.000000,434.000000,4.142900,380300.000000 --117.080000,32.720000,32.000000,2286.000000,468.000000,1741.000000,467.000000,3.044600,101900.000000 --117.130000,32.790000,35.000000,1362.000000,243.000000,698.000000,255.000000,3.645800,173800.000000 --121.940000,36.980000,24.000000,3010.000000,562.000000,1360.000000,504.000000,4.200600,290700.000000 --118.230000,33.960000,36.000000,1062.000000,270.000000,1136.000000,273.000000,1.659700,109100.000000 --121.980000,37.360000,34.000000,1735.000000,318.000000,1019.000000,301.000000,4.562500,242700.000000 --118.280000,34.120000,50.000000,2384.000000,312.000000,836.000000,337.000000,12.876300,500001.000000 --122.130000,37.150000,39.000000,2854.000000,613.000000,1338.000000,518.000000,3.942300,180300.000000 --118.200000,33.780000,48.000000,1766.000000,497.000000,1908.000000,466.000000,1.987200,168800.000000 --117.730000,34.120000,26.000000,1279.000000,163.000000,412.000000,157.000000,6.173100,293800.000000 --117.990000,33.690000,12.000000,2480.000000,858.000000,1441.000000,788.000000,1.670500,350000.000000 --117.940000,34.060000,32.000000,3418.000000,662.000000,2003.000000,622.000000,4.033300,210200.000000 --117.390000,34.110000,5.000000,2987.000000,457.000000,1821.000000,485.000000,4.888900,138900.000000 --122.000000,38.350000,38.000000,1918.000000,364.000000,745.000000,348.000000,2.570700,126000.000000 --120.980000,37.590000,2.000000,5042.000000,834.000000,2784.000000,787.000000,4.648400,145900.000000 --118.260000,34.120000,45.000000,2839.000000,698.000000,1768.000000,653.000000,3.130600,214000.000000 --122.160000,37.680000,16.000000,1687.000000,348.000000,568.000000,352.000000,2.386900,83300.000000 --118.120000,33.830000,45.000000,1579.000000,278.000000,687.000000,285.000000,5.042400,225900.000000 --117.880000,33.790000,32.000000,1484.000000,295.000000,928.000000,295.000000,5.141800,190300.000000 --122.410000,37.710000,40.000000,2054.000000,433.000000,1738.000000,429.000000,4.992600,213900.000000 --122.390000,37.730000,43.000000,4864.000000,972.000000,3134.000000,959.000000,4.339300,217300.000000 --121.930000,36.630000,33.000000,1740.000000,342.000000,638.000000,329.000000,3.191200,319800.000000 --120.310000,38.020000,11.000000,2366.000000,398.000000,1046.000000,387.000000,3.820300,139700.000000 --122.470000,37.610000,34.000000,4551.000000,837.000000,2208.000000,834.000000,5.436400,279300.000000 --117.680000,34.000000,5.000000,3761.000000,580.000000,2335.000000,648.000000,5.733800,225400.000000 --122.280000,37.850000,41.000000,535.000000,123.000000,317.000000,119.000000,2.403800,107500.000000 --117.180000,32.920000,4.000000,15025.000000,2616.000000,7560.000000,2392.000000,5.196000,210700.000000 --117.700000,33.600000,26.000000,2283.000000,506.000000,634.000000,469.000000,2.377400,74300.000000 --122.480000,37.750000,52.000000,2074.000000,401.000000,1136.000000,409.000000,4.770300,331000.000000 --117.150000,32.740000,26.000000,3149.000000,832.000000,1320.000000,808.000000,3.025900,211700.000000 --119.900000,36.790000,22.000000,1970.000000,332.000000,1066.000000,319.000000,3.312500,106100.000000 --117.190000,32.780000,34.000000,4108.000000,664.000000,1659.000000,644.000000,4.409700,252000.000000 --118.390000,34.030000,25.000000,3442.000000,1050.000000,1890.000000,914.000000,3.057400,319400.000000 --117.780000,33.680000,15.000000,1834.000000,330.000000,841.000000,309.000000,6.063400,234300.000000 --119.670000,36.650000,20.000000,2512.000000,449.000000,1464.000000,450.000000,3.921100,92300.000000 --118.260000,34.020000,41.000000,848.000000,323.000000,1428.000000,313.000000,1.560300,109600.000000 --122.240000,38.010000,16.000000,2084.000000,315.000000,1154.000000,307.000000,6.010200,235600.000000 --122.250000,38.160000,17.000000,4459.000000,944.000000,1812.000000,888.000000,2.937500,106700.000000 --117.320000,33.800000,11.000000,3196.000000,576.000000,1757.000000,552.000000,4.098200,173300.000000 --118.210000,34.060000,52.000000,470.000000,115.000000,434.000000,123.000000,2.095000,109100.000000 --119.770000,36.800000,24.000000,3748.000000,770.000000,1827.000000,719.000000,2.722200,83100.000000 --121.860000,37.410000,16.000000,1603.000000,287.000000,1080.000000,296.000000,6.125600,266900.000000 --117.970000,33.880000,9.000000,1344.000000,279.000000,530.000000,265.000000,5.073100,185100.000000 --121.840000,39.720000,52.000000,1457.000000,389.000000,802.000000,342.000000,0.956600,69000.000000 --118.510000,34.200000,37.000000,2066.000000,434.000000,1031.000000,414.000000,4.092400,188400.000000 --117.930000,33.780000,28.000000,4380.000000,820.000000,2187.000000,835.000000,3.901800,182300.000000 --117.750000,33.610000,16.000000,2270.000000,488.000000,709.000000,489.000000,3.284500,227600.000000 --121.460000,38.700000,32.000000,965.000000,183.000000,568.000000,188.000000,3.861100,93900.000000 --119.280000,36.320000,29.000000,2274.000000,514.000000,1234.000000,521.000000,1.913800,66900.000000 --118.740000,34.280000,21.000000,4056.000000,637.000000,1974.000000,634.000000,5.902400,221000.000000 --119.330000,36.190000,27.000000,418.000000,163.000000,332.000000,141.000000,1.071400,63800.000000 --118.750000,34.270000,24.000000,3241.000000,461.000000,1567.000000,446.000000,5.598300,233300.000000 --118.210000,33.930000,33.000000,2739.000000,801.000000,3423.000000,741.000000,2.284700,132700.000000 --122.370000,37.960000,37.000000,1572.000000,402.000000,1046.000000,350.000000,0.740300,68600.000000 --121.980000,37.280000,27.000000,3526.000000,589.000000,1725.000000,553.000000,5.781200,275000.000000 --117.030000,32.610000,23.000000,1553.000000,216.000000,778.000000,229.000000,5.153800,171300.000000 --117.280000,34.410000,14.000000,2105.000000,396.000000,960.000000,396.000000,2.993400,118200.000000 --118.020000,34.130000,33.000000,2874.000000,458.000000,1239.000000,431.000000,5.232900,430900.000000 --117.900000,34.060000,33.000000,1330.000000,209.000000,578.000000,192.000000,5.640600,266200.000000 --118.470000,34.240000,19.000000,2405.000000,661.000000,1855.000000,621.000000,2.311100,255400.000000 --122.490000,37.860000,35.000000,2729.000000,538.000000,969.000000,528.000000,6.766900,500001.000000 --121.440000,38.680000,19.000000,2476.000000,534.000000,1355.000000,463.000000,2.062500,94400.000000 --118.360000,34.200000,14.000000,1878.000000,614.000000,1874.000000,559.000000,2.526700,231800.000000 --117.280000,33.060000,8.000000,4172.000000,1022.000000,2585.000000,941.000000,4.011800,245800.000000 --122.430000,37.730000,52.000000,1142.000000,224.000000,494.000000,206.000000,5.060200,298900.000000 --118.130000,34.130000,52.000000,2826.000000,381.000000,924.000000,365.000000,7.997600,500001.000000 --118.050000,33.950000,33.000000,1954.000000,390.000000,1600.000000,376.000000,3.612500,170800.000000 --121.990000,38.260000,18.000000,921.000000,126.000000,368.000000,120.000000,6.084200,261100.000000 --122.470000,37.780000,52.000000,1941.000000,436.000000,955.000000,425.000000,4.133900,396400.000000 --121.270000,38.660000,15.000000,2642.000000,520.000000,1032.000000,475.000000,4.138200,189800.000000 --122.240000,37.810000,52.000000,2026.000000,482.000000,709.000000,456.000000,3.272700,268500.000000 --121.440000,38.470000,5.000000,5666.000000,1178.000000,3139.000000,1131.000000,3.360800,108900.000000 --118.120000,33.770000,10.000000,7264.000000,1137.000000,2528.000000,1057.000000,10.223300,500001.000000 --117.980000,33.940000,32.000000,2562.000000,491.000000,1222.000000,446.000000,4.098500,226200.000000 --118.070000,34.160000,35.000000,2459.000000,438.000000,970.000000,437.000000,4.214300,369400.000000 --118.190000,34.140000,46.000000,2387.000000,488.000000,1181.000000,456.000000,3.605800,257900.000000 --118.210000,34.120000,52.000000,1301.000000,389.000000,1189.000000,361.000000,2.513900,190000.000000 --121.920000,36.630000,36.000000,877.000000,175.000000,349.000000,168.000000,3.416700,339100.000000 --117.970000,33.840000,18.000000,1063.000000,209.000000,462.000000,223.000000,2.834800,219000.000000 --118.410000,33.990000,39.000000,3014.000000,822.000000,3212.000000,777.000000,1.198500,215000.000000 --119.440000,36.600000,34.000000,864.000000,184.000000,579.000000,171.000000,2.041700,72500.000000 --122.700000,39.140000,13.000000,532.000000,111.000000,214.000000,62.000000,3.392900,108300.000000 --122.300000,37.560000,37.000000,1962.000000,367.000000,1267.000000,382.000000,4.734400,271800.000000 --121.990000,37.540000,26.000000,2332.000000,371.000000,1285.000000,404.000000,5.388000,225000.000000 --118.380000,33.980000,25.000000,7105.000000,1012.000000,2519.000000,1004.000000,6.811200,500001.000000 --117.980000,33.830000,17.000000,3506.000000,992.000000,2104.000000,893.000000,3.300600,185800.000000 --117.960000,33.680000,25.000000,2004.000000,349.000000,1085.000000,343.000000,4.765600,230700.000000 --117.640000,33.660000,6.000000,5221.000000,1217.000000,2597.000000,1119.000000,4.607600,204000.000000 --121.290000,37.330000,36.000000,48.000000,12.000000,27.000000,8.000000,4.000000,75000.000000 --122.440000,37.770000,52.000000,5604.000000,1268.000000,2023.000000,1196.000000,4.408500,400000.000000 --118.330000,33.980000,28.000000,3889.000000,1199.000000,3121.000000,1046.000000,1.880600,113900.000000 --121.290000,37.990000,30.000000,1271.000000,528.000000,2019.000000,524.000000,1.515200,81300.000000 --121.800000,37.350000,17.000000,2529.000000,423.000000,1756.000000,429.000000,5.101700,240700.000000 --119.290000,36.530000,33.000000,1509.000000,352.000000,1734.000000,336.000000,1.625000,50300.000000 --118.110000,34.030000,36.000000,1493.000000,316.000000,989.000000,293.000000,3.527200,213700.000000 --121.870000,37.420000,19.000000,12128.000000,2112.000000,6810.000000,2040.000000,6.441900,264500.000000 --122.090000,37.700000,33.000000,4413.000000,1107.000000,2239.000000,1051.000000,2.986100,208200.000000 --122.290000,37.870000,52.000000,2225.000000,460.000000,1145.000000,430.000000,2.616500,150000.000000 --117.110000,32.660000,52.000000,25.000000,5.000000,14.000000,9.000000,1.625000,118800.000000 --121.900000,37.390000,42.000000,42.000000,14.000000,26.000000,14.000000,1.736100,500001.000000 --117.520000,33.880000,21.000000,722.000000,178.000000,770.000000,165.000000,2.565600,102500.000000 --121.470000,38.700000,31.000000,1007.000000,181.000000,563.000000,185.000000,3.625000,91300.000000 --122.280000,37.520000,27.000000,2958.000000,655.000000,1285.000000,577.000000,4.080100,397800.000000 --118.410000,34.250000,33.000000,827.000000,192.000000,981.000000,184.000000,2.642900,143100.000000 --122.250000,37.800000,52.000000,2087.000000,510.000000,1197.000000,488.000000,3.014900,218400.000000 --119.050000,34.240000,24.000000,4341.000000,646.000000,1929.000000,703.000000,5.429800,279600.000000 --118.260000,34.060000,33.000000,1950.000000,1047.000000,3707.000000,1012.000000,1.723800,110000.000000 --117.090000,32.700000,15.000000,869.000000,217.000000,887.000000,216.000000,1.458300,84200.000000 --117.390000,34.070000,15.000000,1966.000000,331.000000,1118.000000,323.000000,3.855800,122700.000000 --122.220000,37.790000,37.000000,2343.000000,574.000000,1608.000000,523.000000,2.149400,132500.000000 --118.430000,34.040000,52.000000,2425.000000,435.000000,962.000000,412.000000,5.858700,494700.000000 --117.560000,33.880000,36.000000,838.000000,210.000000,722.000000,180.000000,2.486100,96200.000000 --118.130000,34.160000,52.000000,1787.000000,427.000000,1107.000000,410.000000,2.566400,215000.000000 --122.210000,37.470000,33.000000,1266.000000,415.000000,1991.000000,334.000000,2.920000,202800.000000 --118.080000,33.780000,34.000000,2287.000000,347.000000,1051.000000,346.000000,5.576700,372000.000000 --118.230000,34.210000,29.000000,2584.000000,608.000000,1217.000000,568.000000,3.328700,273400.000000 --117.230000,32.730000,44.000000,1168.000000,263.000000,509.000000,256.000000,2.727300,269700.000000 --118.190000,33.770000,21.000000,2103.000000,727.000000,1064.000000,603.000000,1.617800,137500.000000 --117.170000,32.810000,26.000000,788.000000,127.000000,346.000000,125.000000,5.060300,185700.000000 --122.000000,36.970000,39.000000,2702.000000,646.000000,1136.000000,491.000000,2.894100,256700.000000 --120.610000,35.120000,12.000000,3430.000000,793.000000,1840.000000,720.000000,2.982100,162000.000000 --118.170000,33.830000,46.000000,1362.000000,214.000000,531.000000,222.000000,4.312500,290500.000000 --117.860000,33.890000,24.000000,2002.000000,253.000000,820.000000,241.000000,6.961200,274500.000000 --118.510000,34.220000,36.000000,1493.000000,285.000000,766.000000,272.000000,4.864600,213200.000000 --118.260000,33.900000,38.000000,1566.000000,318.000000,981.000000,318.000000,4.023400,111900.000000 --118.020000,34.040000,27.000000,5640.000000,1001.000000,3538.000000,978.000000,5.065000,215400.000000 --118.370000,34.100000,37.000000,407.000000,67.000000,100.000000,47.000000,15.000100,500001.000000 --117.990000,33.790000,35.000000,2301.000000,467.000000,2272.000000,454.000000,3.956600,167800.000000 --122.420000,37.710000,44.000000,2080.000000,489.000000,1781.000000,478.000000,3.682700,215300.000000 --117.250000,33.930000,8.000000,10110.000000,1761.000000,5804.000000,1703.000000,4.265400,137600.000000 --122.040000,37.850000,27.000000,6039.000000,780.000000,2181.000000,761.000000,9.586200,469400.000000 --117.230000,32.870000,11.000000,3123.000000,740.000000,1223.000000,634.000000,5.417000,196800.000000 --117.160000,32.810000,35.000000,1213.000000,200.000000,532.000000,181.000000,3.680600,172400.000000 --118.090000,33.900000,37.000000,1147.000000,258.000000,742.000000,242.000000,4.046100,153500.000000 --118.080000,34.070000,32.000000,4089.000000,975.000000,3775.000000,955.000000,3.290000,205500.000000 --117.090000,32.790000,31.000000,2019.000000,417.000000,872.000000,386.000000,3.196400,177700.000000 --121.660000,37.130000,20.000000,4477.000000,924.000000,2656.000000,871.000000,3.878800,226900.000000 --118.240000,33.960000,34.000000,946.000000,254.000000,1101.000000,239.000000,1.739600,105900.000000 --122.020000,37.530000,21.000000,4280.000000,673.000000,2216.000000,681.000000,5.707200,242200.000000 --117.820000,33.900000,25.000000,1137.000000,170.000000,524.000000,164.000000,7.574400,259300.000000 --118.210000,33.940000,34.000000,710.000000,205.000000,1134.000000,233.000000,2.773400,141100.000000 --117.880000,34.000000,32.000000,265.000000,51.000000,170.000000,50.000000,3.937500,187500.000000 --118.110000,33.860000,36.000000,2750.000000,487.000000,1386.000000,458.000000,4.990400,221700.000000 --118.860000,34.070000,16.000000,1409.000000,244.000000,970.000000,172.000000,8.014400,500001.000000 --122.490000,38.320000,30.000000,1631.000000,284.000000,788.000000,284.000000,3.309800,195500.000000 --121.660000,39.660000,17.000000,3502.000000,655.000000,1763.000000,613.000000,2.962500,101200.000000 --122.330000,37.930000,34.000000,2326.000000,471.000000,1356.000000,441.000000,2.347500,90300.000000 --117.280000,33.200000,20.000000,4835.000000,854.000000,2983.000000,834.000000,4.342800,152100.000000 --122.160000,37.720000,38.000000,1007.000000,245.000000,618.000000,239.000000,2.875000,144800.000000 --117.850000,34.120000,30.000000,4367.000000,1033.000000,2524.000000,954.000000,3.044800,192100.000000 --119.260000,35.500000,38.000000,2536.000000,409.000000,1133.000000,430.000000,4.237500,78600.000000 --123.350000,40.990000,23.000000,141.000000,59.000000,47.000000,23.000000,1.125000,66000.000000 --118.140000,34.160000,39.000000,2776.000000,840.000000,2546.000000,773.000000,2.575000,153500.000000 --118.390000,34.230000,43.000000,1193.000000,299.000000,1184.000000,320.000000,2.151800,161600.000000 --117.030000,32.790000,17.000000,7352.000000,1699.000000,3331.000000,1634.000000,2.700600,166300.000000 --117.840000,33.800000,34.000000,2004.000000,331.000000,843.000000,328.000000,3.590000,230600.000000 --116.690000,33.500000,13.000000,1187.000000,255.000000,442.000000,179.000000,1.910700,155700.000000 --121.090000,37.610000,42.000000,1787.000000,296.000000,921.000000,287.000000,3.886400,171400.000000 --117.140000,32.760000,35.000000,2539.000000,661.000000,1308.000000,629.000000,2.677700,146400.000000 --122.690000,38.460000,32.000000,2970.000000,504.000000,1117.000000,512.000000,5.000000,275900.000000 --121.130000,38.550000,8.000000,530.000000,109.000000,398.000000,96.000000,4.203100,212500.000000 --121.870000,37.270000,25.000000,1730.000000,226.000000,721.000000,243.000000,7.584500,279300.000000 --117.910000,33.660000,26.000000,5761.000000,1326.000000,2681.000000,1116.000000,4.034100,243300.000000 --121.940000,37.340000,42.000000,2174.000000,420.000000,1304.000000,464.000000,3.142900,286500.000000 --121.830000,37.950000,17.000000,1133.000000,244.000000,716.000000,235.000000,2.875000,162500.000000 --124.170000,41.800000,16.000000,2739.000000,480.000000,1259.000000,436.000000,3.755700,109400.000000 --118.330000,34.060000,52.000000,1368.000000,231.000000,737.000000,248.000000,8.361700,433800.000000 --118.240000,33.800000,28.000000,636.000000,169.000000,788.000000,143.000000,3.616100,131300.000000 --122.590000,38.120000,25.000000,7784.000000,1145.000000,3445.000000,1166.000000,6.013200,287900.000000 --122.480000,37.710000,29.000000,1048.000000,150.000000,455.000000,152.000000,6.127800,417600.000000 --120.730000,37.380000,37.000000,653.000000,176.000000,827.000000,176.000000,1.923600,64400.000000 --117.040000,32.620000,26.000000,3620.000000,607.000000,2000.000000,593.000000,4.996200,156000.000000 --118.440000,34.270000,36.000000,1111.000000,275.000000,1333.000000,266.000000,3.534700,158100.000000 --121.000000,37.610000,36.000000,2647.000000,604.000000,2045.000000,550.000000,2.273000,62900.000000 --117.840000,33.890000,24.000000,3935.000000,625.000000,1912.000000,593.000000,5.795100,226900.000000 --122.250000,37.770000,52.000000,1527.000000,320.000000,825.000000,264.000000,3.453100,208800.000000 --118.360000,34.100000,37.000000,7097.000000,2010.000000,2913.000000,1939.000000,2.875000,300000.000000 --116.920000,32.790000,24.000000,4055.000000,742.000000,2123.000000,744.000000,4.522400,142000.000000 --121.940000,38.350000,8.000000,3157.000000,559.000000,1758.000000,569.000000,4.412000,140100.000000 --120.870000,35.410000,16.000000,2168.000000,444.000000,782.000000,374.000000,3.018700,278100.000000 --118.100000,33.830000,36.000000,2000.000000,343.000000,956.000000,352.000000,5.373500,234400.000000 --117.990000,34.070000,31.000000,1507.000000,369.000000,1548.000000,347.000000,3.432700,147200.000000 --121.490000,37.940000,31.000000,1860.000000,394.000000,1848.000000,293.000000,2.289100,162500.000000 --119.630000,36.320000,36.000000,1518.000000,287.000000,749.000000,255.000000,2.233300,61000.000000 --121.890000,39.760000,15.000000,10265.000000,1860.000000,4591.000000,1906.000000,3.070000,142600.000000 --117.110000,32.760000,31.000000,2293.000000,549.000000,1108.000000,557.000000,3.385400,204400.000000 --118.140000,34.070000,42.000000,1036.000000,199.000000,656.000000,215.000000,4.190200,235000.000000 --118.260000,33.950000,38.000000,1387.000000,346.000000,1240.000000,355.000000,1.689800,95100.000000 --122.350000,40.560000,16.000000,2801.000000,614.000000,1695.000000,563.000000,1.900000,81600.000000 --118.260000,34.060000,40.000000,637.000000,273.000000,1150.000000,263.000000,1.862500,131300.000000 --117.820000,33.710000,9.000000,5206.000000,992.000000,4660.000000,978.000000,2.885000,162500.000000 --119.980000,38.960000,25.000000,2443.000000,444.000000,868.000000,342.000000,3.541700,114800.000000 --118.430000,34.090000,27.000000,1613.000000,200.000000,497.000000,197.000000,7.983500,500001.000000 --117.140000,32.750000,20.000000,1182.000000,379.000000,678.000000,326.000000,2.193700,162500.000000 --118.470000,34.300000,16.000000,2495.000000,551.000000,2314.000000,567.000000,3.673600,192200.000000 --121.780000,38.680000,39.000000,2806.000000,662.000000,1659.000000,638.000000,1.978700,97800.000000 --122.280000,37.800000,52.000000,96.000000,31.000000,191.000000,34.000000,0.750000,162500.000000 --117.210000,32.800000,19.000000,786.000000,282.000000,525.000000,229.000000,1.727300,137500.000000 --121.460000,38.540000,48.000000,1001.000000,205.000000,605.000000,175.000000,1.833300,58200.000000 --121.130000,36.210000,30.000000,1484.000000,414.000000,1200.000000,351.000000,1.754800,95800.000000 --122.530000,37.970000,52.000000,205.000000,119.000000,228.000000,132.000000,1.906300,200000.000000 --122.350000,37.920000,36.000000,921.000000,200.000000,585.000000,236.000000,1.922400,94000.000000 --122.120000,37.280000,21.000000,349.000000,64.000000,149.000000,56.000000,5.869100,360000.000000 --121.320000,38.260000,4.000000,6125.000000,1063.000000,3077.000000,953.000000,4.117900,134600.000000 --121.910000,36.620000,40.000000,1292.000000,271.000000,504.000000,230.000000,2.475000,258300.000000 --117.810000,33.710000,16.000000,2666.000000,387.000000,1227.000000,347.000000,7.376900,302400.000000 --119.710000,36.810000,19.000000,2282.000000,550.000000,1034.000000,500.000000,1.661800,69700.000000 --119.190000,34.170000,27.000000,2183.000000,364.000000,1458.000000,388.000000,4.456700,191100.000000 --117.820000,33.790000,26.000000,2641.000000,633.000000,3657.000000,617.000000,4.133900,222300.000000 --118.270000,34.160000,48.000000,1301.000000,253.000000,637.000000,260.000000,4.343800,252700.000000 --118.330000,34.100000,45.000000,1913.000000,696.000000,1552.000000,611.000000,2.088800,237500.000000 --122.290000,37.910000,46.000000,2085.000000,346.000000,748.000000,354.000000,4.053600,262000.000000 --118.020000,33.820000,21.000000,2052.000000,456.000000,1173.000000,432.000000,3.788500,204500.000000 --118.220000,33.960000,35.000000,1437.000000,474.000000,2113.000000,484.000000,2.617900,158800.000000 --116.890000,32.820000,18.000000,2515.000000,443.000000,1442.000000,449.000000,5.020100,154400.000000 --117.950000,33.860000,35.000000,2478.000000,431.000000,1333.000000,427.000000,5.209900,191400.000000 --122.270000,37.480000,26.000000,3542.000000,507.000000,1392.000000,524.000000,8.518400,500001.000000 --120.510000,39.520000,26.000000,2286.000000,444.000000,498.000000,216.000000,2.065000,96100.000000 --118.420000,34.090000,40.000000,3552.000000,392.000000,1024.000000,370.000000,15.000100,500001.000000 --119.500000,35.270000,23.000000,3827.000000,696.000000,1993.000000,617.000000,3.074200,57900.000000 --122.910000,39.070000,21.000000,2202.000000,484.000000,1000.000000,381.000000,2.442300,102300.000000 --122.460000,37.770000,52.000000,1824.000000,388.000000,799.000000,363.000000,3.750000,435700.000000 --121.540000,36.990000,27.000000,2361.000000,449.000000,1782.000000,397.000000,3.261400,305000.000000 --118.450000,34.190000,37.000000,1073.000000,254.000000,739.000000,253.000000,2.466700,192200.000000 --117.950000,34.050000,35.000000,1309.000000,276.000000,1113.000000,253.000000,4.375000,156500.000000 --120.560000,35.480000,12.000000,4161.000000,731.000000,1609.000000,615.000000,5.094700,267500.000000 --122.460000,37.650000,21.000000,2751.000000,502.000000,2027.000000,491.000000,5.257300,322900.000000 --117.850000,33.760000,33.000000,1866.000000,327.000000,1053.000000,371.000000,4.546100,213800.000000 --118.210000,33.920000,37.000000,1705.000000,403.000000,1839.000000,410.000000,2.583300,132700.000000 --118.170000,33.980000,31.000000,1236.000000,329.000000,1486.000000,337.000000,3.093800,155400.000000 --121.790000,37.340000,20.000000,2018.000000,328.000000,1196.000000,323.000000,4.931800,262400.000000 --117.980000,33.830000,32.000000,1133.000000,166.000000,523.000000,187.000000,6.213000,230800.000000 --118.430000,34.300000,37.000000,1394.000000,313.000000,1111.000000,327.000000,3.602300,161800.000000 --121.690000,39.360000,34.000000,842.000000,186.000000,635.000000,165.000000,1.835500,63000.000000 --117.270000,33.770000,16.000000,2876.000000,576.000000,1859.000000,545.000000,2.087800,101300.000000 --122.410000,37.590000,40.000000,2401.000000,383.000000,894.000000,356.000000,5.649300,422400.000000 --117.480000,34.100000,30.000000,2287.000000,531.000000,1796.000000,503.000000,2.583300,90600.000000 --117.060000,32.700000,12.000000,3943.000000,737.000000,3280.000000,751.000000,4.112000,141400.000000 --121.920000,36.630000,40.000000,1076.000000,193.000000,406.000000,180.000000,3.494300,311100.000000 --120.440000,37.310000,16.000000,3369.000000,532.000000,1770.000000,574.000000,5.266200,126200.000000 --117.180000,32.700000,44.000000,2655.000000,514.000000,1102.000000,489.000000,3.675900,368800.000000 --121.570000,39.120000,30.000000,2601.000000,534.000000,1702.000000,506.000000,2.080000,56600.000000 --122.210000,37.790000,52.000000,762.000000,190.000000,600.000000,195.000000,3.089300,125000.000000 --118.910000,35.300000,28.000000,1793.000000,358.000000,1233.000000,351.000000,2.784500,82200.000000 --121.950000,37.320000,20.000000,1145.000000,198.000000,431.000000,173.000000,3.110300,281900.000000 --121.350000,38.680000,20.000000,7085.000000,1222.000000,3455.000000,1229.000000,4.311800,120000.000000 --121.280000,38.760000,47.000000,2901.000000,631.000000,1276.000000,578.000000,2.136600,101900.000000 --118.350000,33.890000,30.000000,1143.000000,299.000000,776.000000,273.000000,4.282900,240000.000000 --121.980000,37.970000,26.000000,2714.000000,390.000000,1232.000000,409.000000,5.961700,231100.000000 --120.020000,38.920000,24.000000,1194.000000,246.000000,414.000000,151.000000,3.239600,101900.000000 --122.280000,37.770000,52.000000,1468.000000,363.000000,870.000000,347.000000,2.968800,220800.000000 --118.060000,34.580000,36.000000,1493.000000,258.000000,899.000000,260.000000,3.860000,109300.000000 --119.020000,35.380000,52.000000,90.000000,35.000000,36.000000,31.000000,0.805400,60000.000000 --122.430000,37.790000,52.000000,6186.000000,1566.000000,2065.000000,1374.000000,5.854300,500001.000000 --118.070000,33.860000,17.000000,3666.000000,562.000000,2104.000000,579.000000,5.681800,338900.000000 --122.300000,38.000000,34.000000,1712.000000,317.000000,956.000000,341.000000,4.439400,162000.000000 --117.170000,33.280000,16.000000,1921.000000,312.000000,862.000000,280.000000,5.178600,376800.000000 --117.300000,34.140000,37.000000,1454.000000,261.000000,761.000000,248.000000,2.343800,88100.000000 --117.710000,33.600000,25.000000,1949.000000,459.000000,602.000000,428.000000,2.760100,72500.000000 --122.500000,37.780000,46.000000,2646.000000,607.000000,1418.000000,563.000000,3.716700,332800.000000 --122.720000,38.450000,41.000000,1743.000000,373.000000,780.000000,357.000000,3.146700,175500.000000 --118.430000,34.180000,31.000000,2417.000000,510.000000,1102.000000,507.000000,3.890600,282200.000000 --118.030000,33.970000,22.000000,2185.000000,623.000000,1644.000000,606.000000,2.593000,192000.000000 --118.420000,33.990000,23.000000,5548.000000,1245.000000,2847.000000,1229.000000,4.422800,366900.000000 --118.290000,33.960000,31.000000,4022.000000,1208.000000,3707.000000,1007.000000,1.309600,116300.000000 --117.980000,33.730000,22.000000,4232.000000,624.000000,2408.000000,660.000000,6.653900,284900.000000 --121.910000,39.140000,45.000000,845.000000,155.000000,343.000000,136.000000,2.125000,62000.000000 --119.590000,36.640000,27.000000,823.000000,171.000000,798.000000,200.000000,3.052100,113800.000000 --118.330000,34.110000,37.000000,2330.000000,434.000000,846.000000,457.000000,8.233500,430200.000000 --120.630000,38.750000,17.000000,3145.000000,621.000000,1432.000000,559.000000,2.720100,117500.000000 --122.120000,37.750000,28.000000,794.000000,111.000000,329.000000,109.000000,7.692300,329800.000000 --118.350000,33.950000,45.000000,1076.000000,213.000000,781.000000,238.000000,3.950000,164000.000000 --120.440000,34.960000,29.000000,2374.000000,562.000000,1617.000000,463.000000,2.653100,108300.000000 --117.080000,33.120000,43.000000,107.000000,44.000000,107.000000,48.000000,0.705400,137500.000000 --121.270000,38.610000,17.000000,6663.000000,1369.000000,2840.000000,1299.000000,2.945200,115600.000000 --120.070000,36.960000,32.000000,1268.000000,283.000000,549.000000,273.000000,1.451100,65200.000000 --117.660000,34.060000,39.000000,1405.000000,339.000000,1489.000000,336.000000,1.608000,91800.000000 --117.060000,33.010000,24.000000,2618.000000,485.000000,726.000000,443.000000,3.519200,159100.000000 --117.920000,33.730000,17.000000,1692.000000,293.000000,934.000000,280.000000,4.472800,205800.000000 --117.930000,33.920000,34.000000,2271.000000,437.000000,1393.000000,433.000000,4.244300,174400.000000 --122.590000,38.920000,15.000000,1410.000000,329.000000,599.000000,273.000000,2.195300,75000.000000 --118.140000,33.840000,36.000000,3002.000000,484.000000,1322.000000,471.000000,4.933000,228900.000000 --120.790000,37.080000,9.000000,97.000000,20.000000,91.000000,22.000000,2.906300,55000.000000 --117.600000,34.110000,18.000000,6025.000000,1062.000000,3360.000000,1028.000000,4.888900,155700.000000 --122.020000,37.550000,33.000000,1325.000000,274.000000,909.000000,267.000000,4.568700,177200.000000 --118.140000,33.970000,31.000000,1161.000000,267.000000,1175.000000,282.000000,3.011400,177000.000000 --122.310000,37.540000,38.000000,1946.000000,407.000000,975.000000,417.000000,4.072600,385400.000000 --122.260000,37.830000,52.000000,2432.000000,715.000000,1377.000000,696.000000,2.589800,176000.000000 --121.880000,37.680000,23.000000,2234.000000,270.000000,854.000000,286.000000,7.333000,337200.000000 --122.530000,37.940000,18.000000,878.000000,255.000000,384.000000,247.000000,4.734400,200000.000000 --117.710000,33.630000,16.000000,1565.000000,274.000000,950.000000,280.000000,5.839900,220600.000000 --120.100000,39.190000,17.000000,1480.000000,241.000000,202.000000,80.000000,3.937500,213200.000000 --117.770000,33.720000,9.000000,2153.000000,316.000000,954.000000,324.000000,7.813900,304700.000000 --118.010000,33.840000,35.000000,4166.000000,713.000000,2354.000000,709.000000,5.177500,213400.000000 --122.190000,37.710000,36.000000,361.000000,69.000000,158.000000,58.000000,5.546100,262500.000000 --120.360000,38.210000,10.000000,4300.000000,845.000000,1480.000000,609.000000,2.820800,139900.000000 --117.320000,34.030000,13.000000,3853.000000,761.000000,1685.000000,669.000000,3.902400,122400.000000 --117.710000,34.020000,17.000000,12689.000000,2426.000000,7343.000000,2230.000000,3.636100,157700.000000 --118.260000,33.910000,33.000000,954.000000,241.000000,655.000000,218.000000,2.588200,92800.000000 --121.940000,36.580000,23.000000,4911.000000,693.000000,1480.000000,606.000000,6.777000,500000.000000 --121.760000,37.690000,29.000000,3433.000000,711.000000,1919.000000,709.000000,3.384100,184400.000000 --121.940000,36.550000,30.000000,2722.000000,584.000000,628.000000,384.000000,3.404800,487100.000000 --122.640000,38.010000,36.000000,1199.000000,232.000000,551.000000,229.000000,3.732100,266700.000000 --119.340000,36.340000,5.000000,4505.000000,834.000000,1917.000000,775.000000,4.014400,126600.000000 --122.060000,37.270000,16.000000,1612.000000,221.000000,567.000000,208.000000,10.579300,500001.000000 --117.940000,33.730000,24.000000,4197.000000,718.000000,2468.000000,714.000000,5.256300,211400.000000 --118.440000,33.980000,21.000000,18132.000000,5419.000000,7431.000000,4930.000000,5.335900,500001.000000 --117.690000,34.010000,30.000000,2598.000000,573.000000,2170.000000,518.000000,2.300000,95600.000000 --117.870000,34.150000,24.000000,5745.000000,735.000000,2061.000000,679.000000,8.282700,451400.000000 --119.690000,36.380000,25.000000,1688.000000,302.000000,879.000000,277.000000,3.321400,103100.000000 --122.280000,38.000000,26.000000,2335.000000,413.000000,980.000000,417.000000,3.447100,178900.000000 --118.330000,34.040000,31.000000,1090.000000,251.000000,955.000000,239.000000,2.913000,192500.000000 --118.170000,34.070000,37.000000,1155.000000,225.000000,814.000000,241.000000,3.875000,148500.000000 --117.950000,34.140000,13.000000,3859.000000,710.000000,2283.000000,759.000000,4.559400,184500.000000 --118.280000,33.790000,28.000000,1895.000000,420.000000,1422.000000,389.000000,4.381600,191300.000000 --120.860000,37.690000,5.000000,6660.000000,1217.000000,3012.000000,1087.000000,3.080900,143600.000000 --120.150000,39.170000,32.000000,1684.000000,359.000000,454.000000,209.000000,2.912500,145800.000000 --117.050000,32.710000,25.000000,3292.000000,608.000000,2266.000000,592.000000,3.298600,119200.000000 --121.440000,38.520000,36.000000,3446.000000,950.000000,2460.000000,847.000000,1.652100,69700.000000 --118.500000,34.190000,26.000000,2156.000000,509.000000,1142.000000,470.000000,4.000000,224700.000000 --121.440000,37.760000,5.000000,7264.000000,1285.000000,3670.000000,1146.000000,5.044300,194800.000000 --121.950000,37.370000,39.000000,446.000000,129.000000,317.000000,127.000000,3.035700,208300.000000 --122.430000,37.770000,52.000000,2685.000000,629.000000,1170.000000,614.000000,3.689400,418800.000000 --118.280000,34.010000,48.000000,483.000000,190.000000,775.000000,188.000000,2.330900,126600.000000 --118.280000,33.840000,27.000000,2326.000000,533.000000,1697.000000,546.000000,3.863300,187900.000000 --118.330000,34.040000,48.000000,2437.000000,443.000000,1400.000000,426.000000,2.628000,251100.000000 --118.270000,33.950000,35.000000,2073.000000,494.000000,1753.000000,490.000000,1.500000,93600.000000 --120.420000,34.910000,4.000000,6986.000000,1217.000000,2801.000000,1212.000000,3.213500,212700.000000 --117.100000,32.830000,16.000000,1049.000000,154.000000,467.000000,160.000000,6.204700,248100.000000 --121.890000,36.890000,18.000000,2774.000000,492.000000,1283.000000,353.000000,5.368000,352000.000000 --118.220000,33.960000,42.000000,1380.000000,331.000000,1290.000000,288.000000,2.800000,161800.000000 --117.270000,33.020000,13.000000,5723.000000,1242.000000,2450.000000,1140.000000,4.717900,376700.000000 --121.290000,38.680000,20.000000,1881.000000,378.000000,921.000000,360.000000,1.858900,144000.000000 --121.950000,37.310000,27.000000,2462.000000,570.000000,1278.000000,565.000000,3.565200,329500.000000 --118.960000,35.370000,41.000000,1463.000000,339.000000,1066.000000,318.000000,1.746700,52400.000000 --121.880000,36.580000,29.000000,4910.000000,871.000000,3438.000000,904.000000,4.043200,450000.000000 --117.250000,34.410000,13.000000,3682.000000,668.000000,1606.000000,668.000000,2.187500,119700.000000 --118.380000,33.770000,17.000000,10950.000000,2207.000000,4713.000000,2043.000000,6.306400,418300.000000 --114.550000,32.800000,19.000000,2570.000000,820.000000,1431.000000,608.000000,1.275000,56100.000000 --119.810000,34.440000,23.000000,3172.000000,588.000000,1467.000000,559.000000,4.680600,288900.000000 --117.120000,33.490000,4.000000,21988.000000,4055.000000,8824.000000,3252.000000,3.996300,191100.000000 --118.320000,33.800000,39.000000,1415.000000,298.000000,729.000000,278.000000,3.164800,244800.000000 --122.180000,37.730000,43.000000,1391.000000,293.000000,855.000000,285.000000,2.519200,76400.000000 --118.100000,34.130000,47.000000,2234.000000,276.000000,749.000000,260.000000,15.000100,500001.000000 --122.270000,40.390000,26.000000,1833.000000,422.000000,939.000000,408.000000,1.357100,59000.000000 --121.940000,37.730000,22.000000,6719.000000,1068.000000,2843.000000,994.000000,6.126500,260300.000000 --121.290000,38.630000,24.000000,2868.000000,527.000000,1284.000000,487.000000,3.318200,213000.000000 --117.590000,33.440000,3.000000,5813.000000,1264.000000,2363.000000,1041.000000,4.389700,341300.000000 --118.440000,34.190000,29.000000,1599.000000,459.000000,1143.000000,438.000000,2.458300,199100.000000 --118.150000,34.030000,42.000000,1481.000000,411.000000,1206.000000,394.000000,2.680600,189300.000000 --116.480000,33.800000,15.000000,3004.000000,615.000000,437.000000,210.000000,3.666700,90000.000000 --118.410000,33.980000,33.000000,3331.000000,777.000000,1695.000000,735.000000,3.972700,307200.000000 --121.050000,37.650000,5.000000,3096.000000,545.000000,1760.000000,519.000000,4.570100,146400.000000 --122.420000,37.800000,50.000000,2494.000000,731.000000,958.000000,712.000000,3.235600,500001.000000 --117.310000,34.110000,38.000000,1208.000000,321.000000,1225.000000,317.000000,1.466300,64000.000000 --116.990000,32.760000,21.000000,3833.000000,595.000000,1645.000000,589.000000,4.625000,273500.000000 --122.110000,37.890000,32.000000,2372.000000,516.000000,1067.000000,492.000000,4.323500,279500.000000 --122.270000,37.800000,10.000000,105.000000,42.000000,125.000000,39.000000,0.972200,137500.000000 --121.870000,37.380000,16.000000,3275.000000,529.000000,1863.000000,527.000000,5.542900,269100.000000 --118.200000,33.770000,22.000000,1118.000000,437.000000,1190.000000,399.000000,1.979700,143800.000000 --117.120000,32.570000,35.000000,1450.000000,256.000000,930.000000,286.000000,2.671500,133300.000000 --118.330000,34.000000,52.000000,1114.000000,169.000000,486.000000,176.000000,4.291700,247600.000000 --117.170000,32.820000,21.000000,2869.000000,596.000000,1471.000000,577.000000,3.037500,197600.000000 --120.360000,40.450000,19.000000,689.000000,143.000000,355.000000,127.000000,1.733300,70000.000000 --116.520000,33.810000,12.000000,12396.000000,2552.000000,2548.000000,1265.000000,3.439400,162200.000000 --119.820000,36.770000,41.000000,1441.000000,274.000000,646.000000,296.000000,3.056800,71300.000000 --118.350000,33.870000,28.000000,2319.000000,579.000000,1369.000000,564.000000,3.616900,257000.000000 --117.340000,34.490000,9.000000,3293.000000,585.000000,1678.000000,530.000000,3.294100,98300.000000 --118.550000,34.170000,36.000000,2127.000000,297.000000,761.000000,274.000000,7.839200,500001.000000 --122.110000,38.090000,11.000000,673.000000,145.000000,318.000000,137.000000,2.392900,122500.000000 --122.260000,37.560000,23.000000,7283.000000,1342.000000,3399.000000,1298.000000,5.668300,391000.000000 --121.350000,38.660000,24.000000,3313.000000,769.000000,1631.000000,681.000000,2.555600,105700.000000 --118.210000,34.040000,37.000000,845.000000,249.000000,881.000000,252.000000,2.245400,165000.000000 --118.340000,34.070000,52.000000,3421.000000,598.000000,1203.000000,564.000000,4.161800,500001.000000 --117.880000,34.130000,25.000000,2559.000000,654.000000,1674.000000,623.000000,2.854700,155600.000000 --117.870000,33.840000,23.000000,1678.000000,369.000000,912.000000,347.000000,4.500000,237300.000000 --117.340000,34.080000,33.000000,4924.000000,1007.000000,3502.000000,953.000000,3.233000,99400.000000 --118.330000,34.020000,11.000000,1249.000000,313.000000,625.000000,336.000000,0.870200,170500.000000 --118.330000,33.790000,29.000000,4389.000000,873.000000,2069.000000,901.000000,4.107100,365600.000000 --119.290000,35.760000,15.000000,3938.000000,789.000000,3500.000000,768.000000,2.129500,59800.000000 --117.090000,32.620000,37.000000,1538.000000,298.000000,867.000000,285.000000,3.072900,128700.000000 --121.810000,37.250000,5.000000,1975.000000,520.000000,861.000000,440.000000,4.456500,159000.000000 --120.290000,37.940000,17.000000,1459.000000,297.000000,753.000000,271.000000,3.050000,144800.000000 --120.700000,35.140000,17.000000,5805.000000,1097.000000,1919.000000,932.000000,3.535200,357800.000000 --118.170000,34.060000,36.000000,871.000000,201.000000,2862.000000,181.000000,2.184500,123800.000000 --117.990000,33.930000,27.000000,3708.000000,718.000000,1921.000000,721.000000,4.375000,210400.000000 --118.250000,34.220000,30.000000,2062.000000,396.000000,1089.000000,375.000000,5.536200,301200.000000 --118.110000,33.830000,36.000000,1820.000000,313.000000,899.000000,295.000000,4.918000,225200.000000 --122.040000,37.330000,22.000000,4011.000000,963.000000,2206.000000,879.000000,4.572100,351200.000000 --119.670000,36.570000,32.000000,1604.000000,292.000000,868.000000,276.000000,2.190800,110000.000000 --119.560000,36.710000,37.000000,1609.000000,374.000000,1173.000000,344.000000,2.181000,59900.000000 --122.350000,37.960000,36.000000,2191.000000,531.000000,1563.000000,524.000000,2.516400,114200.000000 --117.080000,32.580000,15.000000,1462.000000,274.000000,1002.000000,271.000000,3.969800,142700.000000 --118.610000,34.200000,29.000000,1673.000000,284.000000,794.000000,270.000000,5.519100,245800.000000 --118.240000,34.140000,27.000000,2909.000000,1021.000000,2614.000000,935.000000,2.144400,229000.000000 --118.400000,34.030000,43.000000,1006.000000,201.000000,520.000000,199.000000,6.566900,372800.000000 --116.980000,33.260000,12.000000,5898.000000,1002.000000,3129.000000,945.000000,4.764700,254100.000000 --117.930000,33.680000,33.000000,2664.000000,432.000000,1197.000000,429.000000,5.069000,264200.000000 --122.250000,37.470000,38.000000,645.000000,124.000000,265.000000,103.000000,5.468800,305000.000000 --118.190000,33.840000,44.000000,2731.000000,577.000000,1396.000000,555.000000,4.177100,219100.000000 --118.450000,34.320000,23.000000,3481.000000,641.000000,1952.000000,682.000000,4.260000,189400.000000 --122.140000,39.970000,27.000000,1079.000000,222.000000,625.000000,197.000000,3.131900,62700.000000 --118.300000,34.020000,27.000000,2190.000000,626.000000,1768.000000,528.000000,1.244600,103800.000000 --117.900000,33.730000,31.000000,1171.000000,306.000000,1690.000000,301.000000,3.263900,155200.000000 --121.580000,39.150000,38.000000,1756.000000,396.000000,837.000000,401.000000,1.912200,55500.000000 --121.950000,38.350000,16.000000,2084.000000,292.000000,1099.000000,292.000000,5.826900,150200.000000 --117.690000,34.070000,35.000000,3222.000000,559.000000,1970.000000,550.000000,3.708300,131000.000000 --117.080000,32.740000,35.000000,1434.000000,253.000000,753.000000,228.000000,2.381200,135100.000000 --118.290000,34.000000,41.000000,1807.000000,493.000000,1731.000000,471.000000,1.234700,111700.000000 --123.800000,39.460000,35.000000,1718.000000,345.000000,698.000000,299.000000,2.924300,131600.000000 --119.120000,35.330000,4.000000,8574.000000,1489.000000,4250.000000,1444.000000,5.103600,103400.000000 --121.800000,37.340000,20.000000,2686.000000,414.000000,1507.000000,405.000000,5.806800,263900.000000 --117.090000,32.750000,19.000000,2739.000000,707.000000,2004.000000,622.000000,1.631800,117700.000000 --122.130000,37.430000,40.000000,3454.000000,648.000000,1498.000000,647.000000,5.211400,438400.000000 --117.980000,33.760000,24.000000,1880.000000,405.000000,967.000000,418.000000,4.454500,192500.000000 --122.330000,37.940000,43.000000,1876.000000,389.000000,807.000000,377.000000,3.157100,141600.000000 --121.440000,38.540000,39.000000,2855.000000,574.000000,1217.000000,562.000000,3.240400,93600.000000 --118.020000,33.700000,23.000000,5069.000000,770.000000,2473.000000,769.000000,6.304700,285700.000000 --117.880000,33.840000,26.000000,1499.000000,290.000000,755.000000,277.000000,3.589300,238500.000000 --120.460000,37.310000,35.000000,2042.000000,378.000000,953.000000,356.000000,2.734400,87800.000000 --118.310000,33.720000,26.000000,2711.000000,508.000000,1372.000000,459.000000,4.145100,326700.000000 --117.820000,33.670000,17.000000,2895.000000,439.000000,1588.000000,450.000000,6.276000,290700.000000 --117.990000,33.870000,17.000000,2334.000000,537.000000,1662.000000,535.000000,3.014700,217000.000000 --119.800000,36.860000,7.000000,6434.000000,1201.000000,2733.000000,1045.000000,3.765600,145000.000000 --121.470000,38.580000,43.000000,3807.000000,952.000000,1484.000000,850.000000,2.326600,137500.000000 --117.600000,33.870000,15.000000,7626.000000,1570.000000,3823.000000,1415.000000,3.441900,138100.000000 --117.100000,32.750000,11.000000,2393.000000,726.000000,1905.000000,711.000000,1.344800,91300.000000 --117.880000,33.760000,17.000000,1768.000000,474.000000,1079.000000,436.000000,1.782300,205300.000000 --118.350000,33.990000,48.000000,2741.000000,439.000000,1115.000000,459.000000,5.051400,269100.000000 --121.810000,37.310000,14.000000,2731.000000,578.000000,1109.000000,551.000000,3.138200,139700.000000 --120.430000,34.900000,30.000000,2388.000000,393.000000,1117.000000,375.000000,4.105800,164000.000000 --118.190000,34.050000,29.000000,855.000000,199.000000,785.000000,169.000000,2.696400,122200.000000 --117.890000,33.910000,33.000000,1264.000000,224.000000,527.000000,227.000000,3.732100,216500.000000 --118.270000,34.020000,21.000000,1314.000000,375.000000,1505.000000,366.000000,2.319000,97200.000000 --116.730000,34.520000,16.000000,1247.000000,315.000000,433.000000,159.000000,1.056800,75000.000000 --121.500000,38.520000,37.000000,2008.000000,466.000000,1261.000000,427.000000,2.257400,59100.000000 --120.610000,35.120000,16.000000,1671.000000,354.000000,935.000000,340.000000,2.579200,163800.000000 --120.630000,36.980000,20.000000,2380.000000,489.000000,1581.000000,505.000000,2.059500,61300.000000 --117.060000,32.590000,13.000000,3920.000000,775.000000,2814.000000,760.000000,4.061600,148800.000000 --119.020000,35.420000,40.000000,1912.000000,439.000000,1015.000000,413.000000,1.459800,52600.000000 --118.140000,34.030000,38.000000,1447.000000,293.000000,1042.000000,284.000000,4.137500,211500.000000 --118.310000,33.730000,52.000000,2025.000000,361.000000,957.000000,363.000000,4.205900,350000.000000 --121.940000,38.370000,14.000000,1156.000000,216.000000,574.000000,227.000000,3.239600,143800.000000 --122.510000,37.920000,32.000000,2622.000000,541.000000,1022.000000,464.000000,3.764700,375000.000000 --119.450000,36.160000,27.000000,2119.000000,373.000000,1268.000000,345.000000,2.815200,106900.000000 --118.190000,33.970000,27.000000,2911.000000,972.000000,3559.000000,945.000000,1.948500,146300.000000 --116.710000,33.750000,25.000000,10665.000000,2161.000000,1874.000000,852.000000,3.062500,150500.000000 --118.280000,33.990000,35.000000,1138.000000,304.000000,1128.000000,311.000000,1.881800,100000.000000 --118.120000,33.850000,37.000000,2584.000000,453.000000,1333.000000,481.000000,4.366100,219900.000000 --122.530000,37.630000,27.000000,2589.000000,658.000000,1386.000000,608.000000,2.908700,228200.000000 --121.060000,37.730000,5.000000,2256.000000,420.000000,1246.000000,397.000000,4.923600,155900.000000 --120.880000,38.450000,25.000000,1374.000000,297.000000,657.000000,288.000000,2.547600,97900.000000 --117.110000,32.580000,12.000000,1086.000000,294.000000,870.000000,290.000000,2.421300,132500.000000 --117.900000,33.650000,27.000000,3310.000000,598.000000,1402.000000,563.000000,6.632000,441100.000000 --121.870000,37.660000,52.000000,775.000000,134.000000,315.000000,123.000000,5.067700,233300.000000 --121.300000,37.960000,52.000000,1354.000000,314.000000,679.000000,311.000000,1.778800,97400.000000 --117.800000,33.850000,16.000000,4151.000000,637.000000,1558.000000,604.000000,5.806000,304900.000000 --118.550000,34.200000,31.000000,1963.000000,420.000000,1494.000000,415.000000,3.531300,211800.000000 --118.440000,34.240000,36.000000,1660.000000,301.000000,1225.000000,307.000000,4.095000,184000.000000 --117.910000,33.880000,34.000000,1851.000000,291.000000,784.000000,290.000000,5.233600,235600.000000 --118.510000,34.230000,27.000000,4580.000000,918.000000,2252.000000,850.000000,4.792600,454400.000000 --119.150000,34.170000,23.000000,2239.000000,537.000000,784.000000,497.000000,1.603800,194300.000000 --122.080000,37.900000,32.000000,1075.000000,170.000000,486.000000,173.000000,5.049900,306800.000000 --122.410000,37.710000,28.000000,5015.000000,1240.000000,3900.000000,1029.000000,1.226900,181900.000000 --122.220000,37.470000,35.000000,367.000000,113.000000,398.000000,109.000000,2.500000,166700.000000 --117.870000,33.920000,17.000000,4575.000000,764.000000,2054.000000,737.000000,6.057100,272400.000000 --122.000000,36.970000,30.000000,1029.000000,242.000000,753.000000,249.000000,3.120500,240500.000000 --117.070000,32.600000,13.000000,1607.000000,435.000000,983.000000,400.000000,2.290300,106300.000000 --118.160000,34.060000,27.000000,1675.000000,274.000000,785.000000,275.000000,5.828000,301100.000000 --117.050000,33.030000,16.000000,87.000000,20.000000,32.000000,21.000000,4.357100,144600.000000 --117.240000,33.200000,26.000000,1701.000000,404.000000,989.000000,367.000000,2.511900,171700.000000 --119.730000,34.450000,44.000000,2261.000000,328.000000,763.000000,294.000000,6.744900,415600.000000 --117.320000,33.170000,18.000000,2143.000000,299.000000,828.000000,283.000000,4.238300,239000.000000 --121.830000,37.270000,14.000000,2855.000000,380.000000,1420.000000,383.000000,6.671200,311500.000000 --122.320000,40.420000,17.000000,3019.000000,578.000000,1538.000000,545.000000,2.793000,76500.000000 --121.770000,36.940000,18.000000,1063.000000,341.000000,1033.000000,313.000000,2.019200,171300.000000 --118.270000,33.790000,39.000000,1513.000000,365.000000,1227.000000,354.000000,3.392900,184600.000000 --117.930000,33.830000,30.000000,1561.000000,381.000000,1104.000000,391.000000,3.375000,201900.000000 --117.110000,32.820000,17.000000,1787.000000,330.000000,1341.000000,314.000000,2.875000,112500.000000 --119.230000,35.740000,16.000000,2275.000000,659.000000,1914.000000,614.000000,2.033000,68400.000000 --122.470000,37.710000,42.000000,1961.000000,427.000000,1211.000000,409.000000,3.515600,239400.000000 --121.930000,36.630000,41.000000,1049.000000,198.000000,428.000000,183.000000,4.357100,287500.000000 --117.280000,33.020000,21.000000,2736.000000,585.000000,1251.000000,576.000000,4.235600,347700.000000 --118.990000,35.240000,40.000000,282.000000,59.000000,213.000000,71.000000,2.350000,91700.000000 --119.140000,36.230000,22.000000,2935.000000,523.000000,1927.000000,530.000000,2.587500,70400.000000 --122.420000,40.590000,24.000000,5045.000000,972.000000,2220.000000,979.000000,2.679200,138900.000000 --117.090000,32.660000,37.000000,1232.000000,330.000000,1086.000000,330.000000,1.638900,114300.000000 --118.140000,34.700000,36.000000,1205.000000,317.000000,678.000000,290.000000,2.018200,98400.000000 --122.040000,36.980000,35.000000,2155.000000,355.000000,866.000000,335.000000,5.618800,404700.000000 --117.020000,32.800000,31.000000,2692.000000,445.000000,1129.000000,450.000000,4.458300,170000.000000 --117.290000,34.490000,3.000000,7689.000000,1545.000000,3804.000000,1399.000000,3.387100,111800.000000 --122.090000,37.210000,15.000000,1969.000000,332.000000,822.000000,324.000000,7.877400,394900.000000 --121.010000,37.650000,47.000000,1713.000000,334.000000,570.000000,297.000000,2.196900,149400.000000 --116.770000,33.080000,13.000000,1406.000000,260.000000,737.000000,279.000000,5.584200,239100.000000 --121.960000,37.340000,36.000000,844.000000,153.000000,373.000000,160.000000,5.791000,254100.000000 --119.700000,34.420000,41.000000,725.000000,239.000000,582.000000,214.000000,3.166700,362500.000000 --119.460000,35.170000,40.000000,4164.000000,812.000000,1998.000000,773.000000,2.832300,50800.000000 --122.010000,37.300000,25.000000,4044.000000,551.000000,1699.000000,533.000000,8.083700,380600.000000 --118.060000,33.830000,22.000000,5290.000000,1054.000000,2812.000000,1021.000000,4.530000,226400.000000 --118.400000,34.190000,30.000000,521.000000,126.000000,306.000000,129.000000,4.112500,216700.000000 --119.630000,34.440000,37.000000,3188.000000,442.000000,984.000000,376.000000,9.452200,500001.000000 --117.890000,33.770000,29.000000,2577.000000,445.000000,1849.000000,470.000000,4.473200,194800.000000 --119.540000,36.520000,16.000000,2703.000000,415.000000,1106.000000,372.000000,4.204500,120900.000000 --118.430000,34.170000,33.000000,1679.000000,404.000000,933.000000,412.000000,2.697900,266000.000000 --117.100000,32.580000,33.000000,393.000000,76.000000,330.000000,80.000000,4.102900,122700.000000 --122.280000,37.790000,30.000000,4145.000000,869.000000,3668.000000,855.000000,2.544400,275000.000000 --118.320000,34.110000,48.000000,4472.000000,1579.000000,2796.000000,1397.000000,2.397400,410700.000000 --118.420000,34.020000,28.000000,3167.000000,737.000000,1248.000000,665.000000,3.194100,394700.000000 --119.560000,36.510000,9.000000,3860.000000,809.000000,2157.000000,770.000000,2.503300,70100.000000 --122.420000,37.780000,19.000000,4065.000000,1645.000000,2079.000000,1470.000000,3.146200,187500.000000 --120.910000,37.730000,31.000000,840.000000,154.000000,429.000000,150.000000,2.406300,170200.000000 --122.080000,37.590000,16.000000,1816.000000,365.000000,1367.000000,355.000000,4.235000,156300.000000 --121.770000,37.310000,16.000000,1649.000000,228.000000,769.000000,230.000000,6.645500,302600.000000 --117.050000,33.030000,14.000000,5180.000000,1051.000000,1639.000000,991.000000,4.500000,222200.000000 --121.950000,37.260000,34.000000,1482.000000,255.000000,584.000000,246.000000,5.512100,264700.000000 --119.030000,35.420000,45.000000,1628.000000,352.000000,754.000000,334.000000,2.570300,62400.000000 --121.530000,38.600000,25.000000,5154.000000,1105.000000,3196.000000,1073.000000,2.756600,80200.000000 --118.160000,33.960000,24.000000,1635.000000,507.000000,2480.000000,481.000000,2.443200,187500.000000 --121.890000,36.600000,40.000000,626.000000,164.000000,337.000000,150.000000,2.791700,225000.000000 --117.070000,33.670000,11.000000,939.000000,187.000000,557.000000,190.000000,2.375000,145800.000000 --122.390000,37.590000,32.000000,4497.000000,730.000000,1846.000000,715.000000,6.132300,500001.000000 --118.440000,34.050000,32.000000,1880.000000,435.000000,798.000000,417.000000,4.710900,500000.000000 --121.350000,38.040000,5.000000,4303.000000,613.000000,2206.000000,621.000000,5.584200,159100.000000 --122.420000,37.760000,52.000000,4407.000000,1192.000000,2280.000000,1076.000000,3.393700,270000.000000 --118.020000,33.940000,33.000000,2382.000000,404.000000,1339.000000,389.000000,5.301600,192200.000000 --121.320000,38.030000,16.000000,4045.000000,623.000000,1862.000000,625.000000,4.875000,143100.000000 --118.380000,34.050000,49.000000,702.000000,143.000000,458.000000,187.000000,4.895800,333600.000000 --119.290000,36.540000,18.000000,2581.000000,628.000000,2732.000000,592.000000,1.842900,58300.000000 --117.760000,33.540000,28.000000,2250.000000,329.000000,826.000000,323.000000,6.925700,466400.000000 --122.290000,38.290000,52.000000,3217.000000,742.000000,1670.000000,671.000000,2.439800,163100.000000 --117.800000,33.810000,14.000000,1206.000000,142.000000,572.000000,149.000000,8.847000,388700.000000 --121.950000,37.350000,52.000000,2382.000000,523.000000,1096.000000,492.000000,4.265600,236100.000000 --117.870000,33.990000,21.000000,2837.000000,515.000000,2031.000000,555.000000,4.927100,209700.000000 --121.460000,38.560000,52.000000,907.000000,180.000000,479.000000,177.000000,2.212500,104000.000000 --117.990000,34.080000,11.000000,2399.000000,527.000000,2307.000000,531.000000,3.562500,141000.000000 --121.530000,38.500000,17.000000,3087.000000,477.000000,1365.000000,495.000000,6.466700,216800.000000 --121.140000,37.520000,37.000000,1358.000000,231.000000,586.000000,214.000000,3.164500,170800.000000 --118.290000,33.890000,35.000000,2810.000000,614.000000,1578.000000,601.000000,3.590000,200600.000000 --117.100000,33.090000,5.000000,12045.000000,2162.000000,5640.000000,1997.000000,4.437500,353000.000000 --123.200000,39.230000,26.000000,786.000000,168.000000,494.000000,161.000000,2.358300,105400.000000 --117.120000,32.760000,26.000000,1221.000000,331.000000,620.000000,296.000000,2.482100,123600.000000 --120.440000,34.960000,30.000000,1685.000000,315.000000,1290.000000,368.000000,3.472200,112500.000000 --115.560000,32.780000,34.000000,2856.000000,555.000000,1627.000000,522.000000,3.208300,76200.000000 --121.470000,38.560000,51.000000,2083.000000,559.000000,874.000000,524.000000,2.022100,95800.000000 --121.680000,37.930000,44.000000,1014.000000,225.000000,704.000000,238.000000,1.655400,119400.000000 --118.100000,34.140000,26.000000,6262.000000,1645.000000,3001.000000,1505.000000,3.657200,213200.000000 --118.430000,34.220000,34.000000,1588.000000,360.000000,1080.000000,340.000000,3.660000,184600.000000 --120.970000,37.660000,19.000000,1974.000000,393.000000,799.000000,377.000000,3.128600,137500.000000 --119.340000,34.390000,27.000000,669.000000,131.000000,314.000000,106.000000,2.465900,231300.000000 --118.500000,34.200000,34.000000,1617.000000,344.000000,938.000000,305.000000,3.915000,217700.000000 --120.980000,38.670000,13.000000,3432.000000,516.000000,1286.000000,470.000000,5.584000,186600.000000 --118.350000,34.000000,28.000000,3085.000000,621.000000,1162.000000,558.000000,3.250000,301000.000000 --122.490000,38.220000,33.000000,1486.000000,290.000000,781.000000,274.000000,3.564700,251800.000000 --118.320000,33.970000,46.000000,1504.000000,270.000000,814.000000,306.000000,4.391900,157100.000000 --117.130000,32.690000,36.000000,1469.000000,400.000000,1271.000000,340.000000,1.043000,90100.000000 --117.030000,33.000000,6.000000,6139.000000,793.000000,2693.000000,770.000000,7.756900,387400.000000 --122.260000,38.020000,5.000000,3846.000000,786.000000,2053.000000,716.000000,5.047300,184800.000000 --117.270000,32.850000,26.000000,1373.000000,336.000000,608.000000,268.000000,4.425000,475000.000000 --117.940000,33.860000,36.000000,2824.000000,493.000000,1394.000000,507.000000,4.647700,194700.000000 --119.310000,34.700000,19.000000,961.000000,218.000000,479.000000,138.000000,3.343800,156300.000000 --122.100000,37.610000,35.000000,2361.000000,458.000000,1727.000000,467.000000,4.528100,173600.000000 --118.000000,33.900000,35.000000,1942.000000,332.000000,1127.000000,325.000000,4.514400,206300.000000 --117.370000,33.980000,43.000000,2862.000000,772.000000,1878.000000,675.000000,2.115100,96700.000000 --121.520000,38.650000,17.000000,1269.000000,233.000000,494.000000,231.000000,3.961500,331300.000000 --118.460000,34.070000,42.000000,2564.000000,460.000000,913.000000,414.000000,9.222500,500001.000000 --118.040000,34.070000,39.000000,1382.000000,315.000000,1090.000000,308.000000,3.812500,174000.000000 --118.080000,33.880000,27.000000,923.000000,186.000000,1014.000000,204.000000,3.825000,159500.000000 --122.430000,37.800000,52.000000,2788.000000,813.000000,1302.000000,764.000000,4.199000,400000.000000 --119.290000,34.370000,41.000000,1408.000000,311.000000,793.000000,264.000000,2.544100,161200.000000 --122.040000,37.000000,52.000000,3365.000000,644.000000,796.000000,333.000000,2.971200,116600.000000 --115.570000,32.790000,50.000000,1291.000000,277.000000,864.000000,274.000000,1.666700,68100.000000 --117.560000,34.420000,6.000000,4264.000000,749.000000,2005.000000,666.000000,3.469500,138800.000000 --120.630000,38.680000,14.000000,1821.000000,316.000000,769.000000,266.000000,3.078900,131700.000000 --118.320000,34.090000,44.000000,2666.000000,830.000000,2297.000000,726.000000,1.676000,208800.000000 --118.350000,34.080000,52.000000,1710.000000,350.000000,727.000000,355.000000,4.583300,333900.000000 --122.270000,37.510000,36.000000,1406.000000,224.000000,598.000000,237.000000,5.896400,414800.000000 --119.060000,35.330000,14.000000,5264.000000,1064.000000,3278.000000,1049.000000,3.811700,82800.000000 --117.150000,32.900000,12.000000,1681.000000,381.000000,1050.000000,362.000000,4.200800,176100.000000 --122.470000,37.760000,39.000000,3200.000000,689.000000,1391.000000,618.000000,3.634600,338000.000000 --122.030000,37.310000,19.000000,2885.000000,859.000000,1520.000000,784.000000,3.375000,275700.000000 --119.310000,36.320000,23.000000,2945.000000,592.000000,1419.000000,532.000000,2.573300,88800.000000 --120.580000,38.770000,15.000000,2155.000000,394.000000,857.000000,356.000000,4.030000,141200.000000 --117.210000,34.490000,14.000000,2125.000000,348.000000,1067.000000,360.000000,3.633300,116200.000000 --122.080000,37.650000,35.000000,1813.000000,393.000000,1093.000000,374.000000,3.681800,165400.000000 --122.250000,40.150000,15.000000,1677.000000,346.000000,858.000000,327.000000,2.437500,59200.000000 --118.210000,34.140000,44.000000,1681.000000,407.000000,1105.000000,387.000000,3.222200,186500.000000 --122.140000,37.730000,51.000000,2619.000000,403.000000,922.000000,393.000000,4.604200,251900.000000 --121.590000,39.770000,24.000000,1535.000000,276.000000,664.000000,273.000000,2.306800,97300.000000 --122.190000,37.470000,44.000000,1371.000000,263.000000,589.000000,301.000000,4.806800,312300.000000 --120.440000,34.950000,38.000000,3004.000000,794.000000,2601.000000,747.000000,2.274300,106400.000000 --121.780000,37.310000,7.000000,1973.000000,328.000000,1047.000000,303.000000,6.234000,292200.000000 --118.240000,34.200000,41.000000,2067.000000,452.000000,1282.000000,455.000000,5.575600,309900.000000 --121.570000,39.160000,33.000000,2033.000000,375.000000,914.000000,330.000000,2.696400,68500.000000 --119.840000,36.830000,17.000000,2273.000000,298.000000,700.000000,263.000000,6.864500,195900.000000 --119.290000,34.440000,34.000000,4314.000000,878.000000,2361.000000,831.000000,3.227900,243100.000000 --118.140000,34.180000,52.000000,1700.000000,317.000000,996.000000,329.000000,3.968800,175000.000000 --119.570000,36.100000,37.000000,1676.000000,316.000000,707.000000,274.000000,2.059500,60700.000000 --121.800000,37.320000,23.000000,1829.000000,346.000000,1277.000000,324.000000,4.809200,217400.000000 --118.130000,34.160000,52.000000,1596.000000,314.000000,1024.000000,292.000000,3.671900,227900.000000 --121.900000,37.460000,29.000000,2385.000000,513.000000,1788.000000,510.000000,3.842100,220700.000000 --121.920000,37.330000,52.000000,2962.000000,557.000000,1215.000000,506.000000,4.776800,301100.000000 --123.100000,39.360000,19.000000,1056.000000,248.000000,611.000000,226.000000,1.746000,105000.000000 --122.860000,40.560000,12.000000,1350.000000,300.000000,423.000000,172.000000,1.739300,81300.000000 --122.440000,37.750000,52.000000,3114.000000,637.000000,1144.000000,591.000000,4.000000,375000.000000 --120.620000,35.120000,22.000000,1240.000000,294.000000,768.000000,288.000000,2.655000,160000.000000 --118.360000,33.880000,22.000000,1388.000000,336.000000,930.000000,287.000000,2.798100,275000.000000 --118.360000,33.820000,26.000000,5166.000000,1313.000000,2738.000000,1239.000000,3.356500,360800.000000 --118.270000,33.770000,39.000000,1731.000000,485.000000,2115.000000,478.000000,1.536900,141300.000000 --122.280000,37.900000,52.000000,2003.000000,250.000000,658.000000,244.000000,10.082500,397000.000000 --117.980000,33.660000,26.000000,3527.000000,547.000000,1615.000000,542.000000,6.162400,279400.000000 --118.210000,33.930000,39.000000,354.000000,73.000000,184.000000,58.000000,2.767900,108900.000000 --120.430000,37.350000,15.000000,1613.000000,203.000000,673.000000,213.000000,5.937800,212200.000000 --120.960000,37.480000,32.000000,1256.000000,212.000000,682.000000,236.000000,2.984400,135900.000000 --117.330000,34.120000,33.000000,933.000000,219.000000,838.000000,211.000000,1.341700,69000.000000 --119.810000,36.780000,36.000000,1650.000000,313.000000,660.000000,298.000000,3.000000,79700.000000 --118.380000,34.050000,35.000000,3517.000000,879.000000,1632.000000,784.000000,3.095600,500001.000000 --117.960000,33.800000,33.000000,1984.000000,420.000000,1119.000000,387.000000,3.482100,231300.000000 --118.430000,34.240000,37.000000,1279.000000,241.000000,987.000000,233.000000,4.005700,172700.000000 --117.870000,33.790000,25.000000,2546.000000,545.000000,1543.000000,521.000000,4.192000,219900.000000 --124.180000,40.790000,40.000000,1398.000000,311.000000,788.000000,279.000000,1.466800,64600.000000 --117.240000,32.830000,18.000000,3109.000000,501.000000,949.000000,368.000000,7.435100,445700.000000 --121.570000,37.000000,18.000000,7241.000000,1225.000000,4168.000000,1138.000000,4.571400,260300.000000 --117.370000,33.190000,38.000000,861.000000,213.000000,486.000000,204.000000,4.187500,185000.000000 --121.890000,37.460000,5.000000,1519.000000,186.000000,705.000000,186.000000,10.379800,500001.000000 --122.680000,38.010000,41.000000,1865.000000,392.000000,825.000000,369.000000,4.201100,255400.000000 --118.310000,34.020000,46.000000,2217.000000,489.000000,1227.000000,448.000000,1.685100,108800.000000 --118.290000,33.890000,33.000000,2138.000000,567.000000,1072.000000,528.000000,2.742800,208900.000000 --117.300000,34.120000,43.000000,1018.000000,261.000000,736.000000,215.000000,2.600000,66900.000000 --117.300000,33.850000,15.000000,3991.000000,751.000000,2317.000000,657.000000,2.954200,127900.000000 --117.350000,33.160000,22.000000,1331.000000,305.000000,580.000000,193.000000,3.975000,500001.000000 --122.430000,37.760000,52.000000,2242.000000,459.000000,751.000000,464.000000,4.750000,500001.000000 --119.010000,35.390000,29.000000,1820.000000,459.000000,1134.000000,419.000000,1.828900,59400.000000 --121.570000,37.010000,44.000000,1448.000000,393.000000,1066.000000,357.000000,2.062500,170300.000000 --122.420000,37.650000,39.000000,4402.000000,894.000000,2941.000000,887.000000,3.856500,239800.000000 --122.430000,37.780000,49.000000,2246.000000,587.000000,1277.000000,546.000000,2.979200,350000.000000 --118.130000,33.900000,36.000000,1477.000000,305.000000,788.000000,291.000000,3.625000,195800.000000 --118.060000,33.820000,25.000000,2637.000000,462.000000,965.000000,415.000000,4.583300,190900.000000 --119.220000,34.340000,29.000000,3128.000000,672.000000,1815.000000,648.000000,2.982100,175700.000000 --121.510000,38.550000,46.000000,1485.000000,278.000000,531.000000,291.000000,2.788500,137200.000000 --121.420000,38.500000,24.000000,7740.000000,1539.000000,4333.000000,1397.000000,3.025000,87900.000000 --122.260000,37.850000,52.000000,2202.000000,434.000000,910.000000,402.000000,3.203100,281500.000000 --118.400000,33.870000,26.000000,6712.000000,1441.000000,2803.000000,1394.000000,5.227600,434500.000000 --118.380000,33.890000,35.000000,1778.000000,330.000000,732.000000,312.000000,6.574500,379300.000000 --119.950000,36.960000,18.000000,1996.000000,379.000000,1327.000000,356.000000,2.608700,96000.000000 --118.120000,34.020000,32.000000,1789.000000,528.000000,1429.000000,517.000000,1.890600,224500.000000 --117.900000,36.950000,19.000000,99.000000,26.000000,51.000000,22.000000,1.729200,137500.000000 --116.280000,32.840000,18.000000,382.000000,128.000000,194.000000,69.000000,2.517900,58800.000000 --122.450000,37.770000,52.000000,1722.000000,465.000000,885.000000,437.000000,3.090600,500001.000000 --121.620000,39.760000,14.000000,2063.000000,559.000000,934.000000,529.000000,1.778800,85800.000000 --122.000000,38.350000,24.000000,745.000000,116.000000,300.000000,115.000000,3.617600,158500.000000 --121.710000,39.250000,37.000000,1871.000000,321.000000,806.000000,294.000000,4.000000,101400.000000 --119.190000,34.220000,26.000000,3175.000000,736.000000,2460.000000,775.000000,3.125000,219900.000000 --118.060000,33.910000,21.000000,2863.000000,701.000000,1489.000000,621.000000,3.203100,180700.000000 --118.000000,33.930000,35.000000,1288.000000,240.000000,758.000000,250.000000,4.920500,173900.000000 --118.260000,34.110000,47.000000,2183.000000,510.000000,1445.000000,503.000000,3.666700,210900.000000 --118.510000,34.260000,29.000000,2472.000000,354.000000,1109.000000,397.000000,5.543300,332500.000000 --117.960000,33.980000,25.000000,1259.000000,184.000000,599.000000,170.000000,5.740700,302200.000000 --123.390000,38.990000,28.000000,1416.000000,294.000000,812.000000,258.000000,3.406300,109400.000000 --121.690000,38.160000,33.000000,1808.000000,363.000000,824.000000,340.000000,3.293700,96400.000000 --121.930000,37.320000,51.000000,2711.000000,728.000000,1607.000000,724.000000,3.000000,184700.000000 --117.260000,33.260000,9.000000,4609.000000,798.000000,2582.000000,746.000000,4.342900,173900.000000 --121.410000,38.530000,37.000000,1058.000000,224.000000,588.000000,231.000000,2.973700,72100.000000 --117.900000,33.900000,18.000000,3821.000000,576.000000,1430.000000,568.000000,6.939900,349600.000000 --118.540000,36.120000,11.000000,4103.000000,882.000000,356.000000,171.000000,2.102900,99100.000000 --117.240000,32.820000,20.000000,2467.000000,332.000000,731.000000,335.000000,7.255900,392300.000000 --121.900000,37.240000,24.000000,7521.000000,1364.000000,3970.000000,1318.000000,4.400400,255800.000000 --118.170000,33.870000,49.000000,1937.000000,445.000000,1339.000000,440.000000,3.031900,162800.000000 --117.310000,33.160000,4.000000,5846.000000,894.000000,2282.000000,801.000000,5.595600,247800.000000 --118.410000,34.170000,35.000000,2027.000000,428.000000,879.000000,402.000000,4.692000,330900.000000 --118.380000,34.220000,32.000000,362.000000,100.000000,348.000000,102.000000,2.267900,150000.000000 --117.160000,33.730000,10.000000,2381.000000,454.000000,1323.000000,477.000000,2.632200,140700.000000 --119.710000,34.400000,27.000000,3782.000000,771.000000,1742.000000,751.000000,4.045100,395100.000000 --117.360000,33.200000,26.000000,2447.000000,482.000000,1405.000000,486.000000,3.291700,150800.000000 --118.210000,33.800000,41.000000,1251.000000,279.000000,1053.000000,278.000000,3.277800,150800.000000 --120.930000,39.900000,20.000000,1511.000000,328.000000,791.000000,320.000000,2.022100,70900.000000 --118.130000,33.840000,48.000000,1895.000000,294.000000,881.000000,293.000000,6.336400,307400.000000 --118.270000,33.930000,41.000000,570.000000,135.000000,466.000000,121.000000,2.645800,91300.000000 --118.050000,33.780000,25.000000,2356.000000,330.000000,937.000000,326.000000,6.626400,359100.000000 --118.430000,34.270000,36.000000,1002.000000,250.000000,1312.000000,249.000000,3.024000,148000.000000 --118.370000,33.910000,35.000000,1742.000000,283.000000,812.000000,282.000000,5.670400,303700.000000 --122.500000,37.750000,46.000000,2298.000000,457.000000,1429.000000,477.000000,4.021700,272400.000000 --118.300000,34.010000,52.000000,1908.000000,428.000000,1271.000000,394.000000,2.588500,136200.000000 --119.160000,34.150000,23.000000,3204.000000,644.000000,2295.000000,614.000000,3.948500,196600.000000 --117.040000,32.680000,14.000000,1320.000000,270.000000,943.000000,260.000000,5.094700,152700.000000 --121.400000,38.610000,37.000000,1994.000000,347.000000,782.000000,355.000000,4.148800,136400.000000 --118.030000,33.930000,35.000000,2470.000000,416.000000,1386.000000,411.000000,5.273600,179500.000000 --119.890000,34.440000,25.000000,2786.000000,470.000000,1669.000000,462.000000,5.518400,268300.000000 --120.880000,38.580000,8.000000,3417.000000,604.000000,1703.000000,623.000000,4.082700,170700.000000 --118.210000,33.790000,32.000000,2020.000000,613.000000,2557.000000,562.000000,2.139700,145300.000000 --121.460000,38.570000,52.000000,1625.000000,419.000000,614.000000,383.000000,2.054900,156700.000000 --122.020000,37.310000,34.000000,2629.000000,433.000000,1301.000000,431.000000,6.083000,341400.000000 --118.500000,34.160000,34.000000,3547.000000,523.000000,1187.000000,500.000000,7.139000,424000.000000 --121.320000,38.660000,26.000000,1149.000000,193.000000,500.000000,194.000000,5.078000,163400.000000 --118.090000,33.890000,42.000000,991.000000,215.000000,717.000000,219.000000,4.092600,164400.000000 --118.390000,33.820000,30.000000,3433.000000,918.000000,1526.000000,828.000000,4.581700,500001.000000 --118.000000,33.960000,37.000000,2414.000000,323.000000,878.000000,305.000000,9.154100,453800.000000 --117.260000,33.190000,4.000000,2342.000000,595.000000,1518.000000,545.000000,2.946900,216100.000000 --122.470000,37.870000,36.000000,4471.000000,618.000000,1315.000000,582.000000,11.570600,500001.000000 --117.060000,32.710000,25.000000,2681.000000,596.000000,1947.000000,553.000000,2.896400,104300.000000 --117.440000,33.930000,33.000000,1371.000000,236.000000,715.000000,227.000000,4.375000,129900.000000 --118.120000,33.990000,26.000000,2296.000000,534.000000,1777.000000,507.000000,2.539500,191000.000000 --118.150000,34.180000,46.000000,2230.000000,488.000000,1985.000000,456.000000,2.232800,142100.000000 --120.430000,34.690000,33.000000,2054.000000,373.000000,1067.000000,358.000000,3.602300,128300.000000 --120.840000,37.530000,14.000000,3643.000000,706.000000,2070.000000,697.000000,3.152300,141800.000000 --122.070000,37.130000,26.000000,1127.000000,199.000000,543.000000,199.000000,4.979200,240000.000000 --118.410000,33.960000,32.000000,1044.000000,219.000000,567.000000,222.000000,4.147100,284400.000000 --121.510000,38.790000,29.000000,1716.000000,323.000000,850.000000,282.000000,2.932400,137500.000000 --117.330000,33.190000,15.000000,3672.000000,845.000000,1827.000000,796.000000,2.971600,173600.000000 --116.540000,33.870000,16.000000,3648.000000,1035.000000,1687.000000,581.000000,1.916700,70400.000000 --118.500000,34.200000,18.000000,4249.000000,933.000000,2047.000000,909.000000,4.130400,229100.000000 --118.300000,33.750000,23.000000,1957.000000,517.000000,1454.000000,526.000000,3.505600,203100.000000 --117.990000,33.730000,24.000000,2104.000000,421.000000,1181.000000,414.000000,3.836500,250900.000000 --118.110000,33.890000,34.000000,2508.000000,594.000000,1549.000000,545.000000,3.206900,236500.000000 --122.730000,38.430000,29.000000,2677.000000,691.000000,1880.000000,664.000000,2.186400,143200.000000 --119.640000,36.340000,32.000000,2958.000000,670.000000,1504.000000,627.000000,1.860600,56700.000000 --116.870000,34.240000,15.000000,4419.000000,822.000000,622.000000,267.000000,3.968800,182800.000000 --118.220000,33.980000,34.000000,2283.000000,809.000000,3032.000000,832.000000,2.438700,175000.000000 --122.340000,37.970000,19.000000,392.000000,109.000000,287.000000,81.000000,6.042600,110000.000000 --118.080000,33.820000,26.000000,4259.000000,588.000000,1644.000000,581.000000,6.251900,345700.000000 --117.700000,33.480000,6.000000,16590.000000,2696.000000,6223.000000,2357.000000,6.308800,340300.000000 --118.220000,33.880000,37.000000,1149.000000,280.000000,1016.000000,250.000000,2.125000,101900.000000 --120.970000,38.910000,7.000000,4341.000000,716.000000,1978.000000,682.000000,4.831100,172200.000000 --122.250000,37.800000,29.000000,2468.000000,864.000000,1335.000000,773.000000,1.392900,193800.000000 --118.410000,33.880000,40.000000,925.000000,254.000000,371.000000,227.000000,5.253300,500001.000000 --117.040000,32.690000,27.000000,1790.000000,356.000000,1286.000000,347.000000,3.543700,115800.000000 --122.410000,38.160000,37.000000,1549.000000,301.000000,863.000000,275.000000,2.745700,254700.000000 --120.250000,37.930000,13.000000,493.000000,76.000000,196.000000,68.000000,3.375000,134100.000000 --121.980000,38.390000,3.000000,9488.000000,1417.000000,4095.000000,1335.000000,5.178100,191900.000000 --122.470000,37.720000,47.000000,1176.000000,286.000000,564.000000,258.000000,3.205900,350000.000000 --118.180000,34.130000,39.000000,2902.000000,460.000000,1007.000000,420.000000,6.195300,363000.000000 --118.090000,33.990000,35.000000,2787.000000,639.000000,1923.000000,614.000000,3.575700,177900.000000 --121.940000,37.750000,16.000000,5121.000000,735.000000,2464.000000,761.000000,6.620400,296100.000000 --117.070000,32.740000,38.000000,1901.000000,392.000000,1099.000000,406.000000,2.766100,113900.000000 --118.140000,34.040000,40.000000,1966.000000,391.000000,1120.000000,362.000000,3.710900,198800.000000 --122.410000,37.810000,25.000000,1178.000000,545.000000,592.000000,441.000000,3.672800,500001.000000 --117.710000,33.630000,16.000000,1641.000000,354.000000,945.000000,318.000000,3.426100,219700.000000 --119.640000,34.430000,34.000000,3045.000000,570.000000,1002.000000,488.000000,5.623000,500001.000000 --118.100000,33.980000,33.000000,1927.000000,482.000000,1623.000000,479.000000,3.526800,152000.000000 --122.040000,37.390000,5.000000,8745.000000,2211.000000,3959.000000,2019.000000,4.768500,280100.000000 --122.030000,37.180000,10.000000,212.000000,38.000000,78.000000,21.000000,6.062200,390000.000000 --122.300000,37.560000,36.000000,1379.000000,228.000000,750.000000,227.000000,5.538100,282000.000000 --117.360000,33.920000,7.000000,9376.000000,1181.000000,3570.000000,1107.000000,8.532600,315200.000000 --121.380000,37.880000,44.000000,1158.000000,226.000000,1094.000000,224.000000,2.684200,156300.000000 --119.980000,38.930000,28.000000,1194.000000,272.000000,494.000000,203.000000,2.328100,85800.000000 --117.160000,32.710000,52.000000,845.000000,451.000000,1230.000000,375.000000,1.091800,22500.000000 --122.360000,37.930000,17.000000,1258.000000,254.000000,885.000000,229.000000,3.050000,121600.000000 --118.230000,34.170000,37.000000,4524.000000,1005.000000,2099.000000,937.000000,3.578100,366700.000000 --118.470000,34.100000,32.000000,8041.000000,1141.000000,2768.000000,1106.000000,11.197800,500001.000000 --124.140000,40.800000,32.000000,1373.000000,312.000000,872.000000,306.000000,2.500000,72600.000000 --117.800000,33.550000,35.000000,2067.000000,428.000000,724.000000,377.000000,5.837100,500001.000000 --118.020000,34.120000,38.000000,1778.000000,288.000000,870.000000,281.000000,6.578400,408500.000000 --122.740000,38.480000,12.000000,4174.000000,670.000000,1882.000000,647.000000,4.551000,178300.000000 --118.340000,33.830000,34.000000,1761.000000,329.000000,965.000000,329.000000,5.399000,358500.000000 --120.680000,35.290000,37.000000,1354.000000,293.000000,753.000000,290.000000,3.250000,225000.000000 --122.450000,37.640000,19.000000,6326.000000,1025.000000,3444.000000,984.000000,6.249800,353300.000000 --122.040000,37.620000,35.000000,1032.000000,173.000000,453.000000,176.000000,6.396000,208500.000000 --122.790000,38.540000,5.000000,3986.000000,737.000000,1887.000000,687.000000,3.776800,213800.000000 --117.220000,32.860000,4.000000,16289.000000,4585.000000,7604.000000,4176.000000,3.628700,280800.000000 --120.080000,39.610000,32.000000,1404.000000,247.000000,544.000000,201.000000,2.777800,72900.000000 --118.360000,34.150000,41.000000,3545.000000,698.000000,1221.000000,651.000000,4.300000,500001.000000 --121.360000,38.560000,17.000000,6225.000000,938.000000,3064.000000,947.000000,5.288100,138000.000000 --122.320000,41.310000,45.000000,1393.000000,294.000000,521.000000,249.000000,1.191500,71900.000000 --121.590000,39.750000,20.000000,908.000000,206.000000,481.000000,211.000000,2.200000,80800.000000 --117.300000,34.150000,45.000000,942.000000,166.000000,401.000000,174.000000,3.859400,90800.000000 --117.710000,33.650000,16.000000,3774.000000,456.000000,1587.000000,430.000000,8.608800,307400.000000 --118.310000,34.260000,37.000000,1444.000000,246.000000,624.000000,239.000000,5.760000,239400.000000 --122.040000,36.980000,51.000000,1076.000000,206.000000,495.000000,201.000000,2.928600,258300.000000 --118.260000,34.240000,35.000000,1535.000000,283.000000,816.000000,287.000000,6.187300,312100.000000 --118.280000,33.960000,39.000000,882.000000,221.000000,697.000000,189.000000,1.847200,99100.000000 --123.500000,39.670000,22.000000,2124.000000,450.000000,1122.000000,446.000000,2.179300,71500.000000 --117.190000,33.140000,12.000000,3652.000000,923.000000,1677.000000,728.000000,2.326700,92000.000000 --121.120000,38.860000,17.000000,3949.000000,717.000000,1683.000000,686.000000,3.380200,216500.000000 --118.410000,34.210000,35.000000,2215.000000,459.000000,1594.000000,446.000000,4.016700,193200.000000 --116.540000,33.820000,12.000000,9482.000000,2501.000000,2725.000000,1300.000000,1.559500,115600.000000 --121.610000,39.760000,31.000000,2431.000000,512.000000,1026.000000,427.000000,2.542800,85000.000000 --121.990000,37.920000,14.000000,1780.000000,224.000000,764.000000,226.000000,9.024300,427700.000000 --122.060000,37.540000,20.000000,6483.000000,1068.000000,3526.000000,1060.000000,5.083800,248200.000000 --122.080000,37.720000,32.000000,2476.000000,368.000000,1048.000000,367.000000,5.619400,274700.000000 --118.930000,36.100000,19.000000,2988.000000,681.000000,1654.000000,576.000000,2.379200,90000.000000 --122.780000,38.970000,11.000000,5175.000000,971.000000,2144.000000,792.000000,3.046600,97300.000000 --121.220000,37.970000,37.000000,1514.000000,337.000000,1121.000000,337.000000,2.401000,58400.000000 --121.470000,38.610000,35.000000,1372.000000,360.000000,850.000000,328.000000,1.633100,67500.000000 --122.310000,37.540000,49.000000,1340.000000,281.000000,660.000000,284.000000,4.163000,393800.000000 --122.000000,37.300000,29.000000,3429.000000,524.000000,1518.000000,520.000000,7.218000,400700.000000 --122.410000,37.800000,52.000000,812.000000,252.000000,629.000000,247.000000,2.587500,500001.000000 --118.290000,34.050000,34.000000,1102.000000,448.000000,1325.000000,439.000000,1.597200,168800.000000 --118.610000,34.150000,32.000000,4491.000000,815.000000,1696.000000,749.000000,4.910200,319100.000000 --116.480000,33.840000,5.000000,5480.000000,1371.000000,1050.000000,485.000000,1.720400,137500.000000 --118.260000,33.780000,27.000000,1672.000000,491.000000,1723.000000,462.000000,2.045800,174500.000000 --117.340000,34.510000,6.000000,5667.000000,1385.000000,2447.000000,1199.000000,2.361700,103100.000000 --122.460000,37.670000,16.000000,3372.000000,1101.000000,2049.000000,1021.000000,4.130300,146500.000000 --118.350000,34.110000,33.000000,7478.000000,1678.000000,2701.000000,1500.000000,4.171700,500001.000000 --117.300000,34.100000,44.000000,589.000000,130.000000,504.000000,137.000000,1.775000,63400.000000 --118.440000,34.150000,44.000000,1778.000000,251.000000,641.000000,251.000000,10.054900,500001.000000 --118.630000,34.180000,32.000000,1646.000000,242.000000,697.000000,233.000000,6.668900,433000.000000 --117.950000,33.760000,24.000000,3956.000000,812.000000,3196.000000,795.000000,4.351200,191400.000000 --122.250000,37.450000,34.000000,2999.000000,365.000000,927.000000,369.000000,10.281100,500001.000000 --117.590000,33.650000,4.000000,1793.000000,390.000000,897.000000,386.000000,4.246300,182800.000000 --114.490000,33.970000,17.000000,2809.000000,635.000000,83.000000,45.000000,1.615400,87500.000000 --118.510000,34.200000,34.000000,2871.000000,581.000000,1350.000000,535.000000,3.704900,227500.000000 --122.030000,38.010000,27.000000,3228.000000,562.000000,1666.000000,588.000000,4.570700,175900.000000 --118.430000,33.990000,45.000000,2092.000000,451.000000,1190.000000,429.000000,3.802100,323000.000000 --122.510000,37.760000,43.000000,2345.000000,624.000000,1439.000000,614.000000,2.844800,268900.000000 --119.550000,36.690000,21.000000,1551.000000,423.000000,1519.000000,406.000000,1.713200,55900.000000 --122.240000,38.150000,10.000000,6817.000000,1188.000000,4163.000000,1135.000000,4.452900,144100.000000 --117.870000,34.020000,16.000000,3552.000000,575.000000,2120.000000,573.000000,6.433300,271500.000000 --122.130000,37.700000,21.000000,4124.000000,1054.000000,2162.000000,998.000000,2.632100,223100.000000 --121.330000,38.600000,25.000000,4260.000000,607.000000,1635.000000,640.000000,6.281700,288200.000000 --121.910000,37.470000,13.000000,5377.000000,744.000000,2759.000000,760.000000,6.868000,337300.000000 --118.530000,34.040000,45.000000,1711.000000,264.000000,735.000000,261.000000,9.107800,500001.000000 --121.330000,38.000000,32.000000,4474.000000,929.000000,2177.000000,884.000000,3.288900,98900.000000 --117.850000,34.060000,24.000000,3128.000000,497.000000,1406.000000,472.000000,7.528600,462700.000000 --118.430000,35.120000,8.000000,1968.000000,376.000000,930.000000,360.000000,3.263200,99800.000000 --118.070000,33.970000,36.000000,1265.000000,273.000000,1052.000000,253.000000,4.892900,156200.000000 --117.160000,32.780000,34.000000,2515.000000,488.000000,1594.000000,515.000000,3.738100,165000.000000 --116.290000,34.180000,15.000000,4203.000000,966.000000,1756.000000,695.000000,2.182000,60800.000000 --120.660000,35.290000,16.000000,2272.000000,629.000000,1689.000000,649.000000,1.703100,195000.000000 --119.790000,36.770000,30.000000,1610.000000,410.000000,1000.000000,397.000000,2.035700,60200.000000 --122.140000,37.750000,33.000000,1334.000000,200.000000,579.000000,202.000000,6.832300,255900.000000 --122.320000,37.970000,33.000000,1595.000000,292.000000,991.000000,300.000000,4.693700,134100.000000 --119.800000,36.830000,17.000000,1560.000000,261.000000,709.000000,258.000000,4.331500,95800.000000 --117.330000,33.160000,29.000000,3559.000000,552.000000,1533.000000,545.000000,4.058500,245500.000000 --121.860000,37.230000,24.000000,4337.000000,670.000000,1936.000000,652.000000,5.890400,271400.000000 --122.240000,37.810000,52.000000,2093.000000,550.000000,918.000000,483.000000,2.747700,243800.000000 --120.850000,37.770000,10.000000,423.000000,110.000000,295.000000,94.000000,1.358300,85200.000000 --116.950000,33.790000,20.000000,2399.000000,546.000000,1726.000000,542.000000,1.884500,77700.000000 --117.220000,33.220000,16.000000,2134.000000,643.000000,1555.000000,560.000000,1.721700,175000.000000 --122.230000,40.170000,21.000000,1401.000000,331.000000,651.000000,299.000000,2.225000,64700.000000 --118.450000,34.030000,41.000000,2083.000000,528.000000,993.000000,481.000000,4.023100,353900.000000 --118.990000,35.270000,32.000000,444.000000,102.000000,242.000000,87.000000,1.152800,150000.000000 --117.580000,33.870000,34.000000,1511.000000,272.000000,773.000000,265.000000,3.531300,142100.000000 --118.650000,36.570000,20.000000,1431.000000,416.000000,570.000000,225.000000,1.482100,143300.000000 --121.400000,38.660000,50.000000,880.000000,150.000000,1148.000000,148.000000,2.506200,112500.000000 --119.460000,35.860000,22.000000,1750.000000,374.000000,1113.000000,338.000000,1.505000,42700.000000 --118.220000,33.980000,32.000000,2643.000000,737.000000,2784.000000,711.000000,2.535200,184400.000000 --118.380000,33.820000,35.000000,3053.000000,623.000000,1311.000000,589.000000,5.158900,439200.000000 --117.770000,33.690000,16.000000,1666.000000,341.000000,479.000000,336.000000,2.140600,55000.000000 --118.460000,34.180000,35.000000,1819.000000,465.000000,1336.000000,419.000000,3.458300,253200.000000 --122.420000,37.790000,6.000000,670.000000,301.000000,655.000000,284.000000,3.442300,117500.000000 --118.310000,33.770000,20.000000,5776.000000,956.000000,2757.000000,936.000000,6.644700,416800.000000 --121.670000,37.130000,19.000000,3269.000000,483.000000,1383.000000,452.000000,5.620500,300800.000000 --121.330000,38.570000,17.000000,1621.000000,350.000000,706.000000,338.000000,2.368400,150000.000000 --120.830000,37.520000,6.000000,1488.000000,252.000000,773.000000,259.000000,4.185900,150000.000000 --118.120000,33.990000,27.000000,2316.000000,559.000000,2012.000000,544.000000,2.815500,176800.000000 --118.110000,34.070000,39.000000,1270.000000,299.000000,1073.000000,278.000000,3.308800,186600.000000 --122.670000,38.240000,29.000000,2644.000000,464.000000,1372.000000,450.000000,5.054400,261800.000000 --117.290000,34.090000,24.000000,1451.000000,387.000000,1178.000000,330.000000,1.180600,68300.000000 --121.800000,37.190000,45.000000,1797.000000,303.000000,870.000000,281.000000,4.541700,434500.000000 --120.300000,37.970000,17.000000,3243.000000,619.000000,1408.000000,566.000000,2.474000,120100.000000 --120.450000,34.650000,21.000000,1182.000000,243.000000,733.000000,251.000000,3.144200,131600.000000 --119.290000,34.230000,22.000000,2486.000000,608.000000,709.000000,523.000000,2.901800,275000.000000 --118.340000,34.020000,49.000000,1609.000000,371.000000,896.000000,389.000000,2.515600,136600.000000 --117.940000,33.800000,23.000000,2757.000000,734.000000,1811.000000,707.000000,2.800000,214300.000000 --116.850000,34.260000,19.000000,5395.000000,1220.000000,981.000000,366.000000,2.609400,92400.000000 --117.890000,33.760000,34.000000,1050.000000,210.000000,723.000000,201.000000,4.800000,192700.000000 --118.290000,34.030000,27.000000,1084.000000,287.000000,1085.000000,279.000000,2.135000,119600.000000 --118.120000,34.060000,35.000000,1729.000000,438.000000,1308.000000,412.000000,2.532100,197200.000000 --121.410000,38.600000,16.000000,5407.000000,1467.000000,2523.000000,1265.000000,2.047100,104200.000000 --120.620000,35.130000,26.000000,3971.000000,803.000000,1792.000000,723.000000,2.712800,209900.000000 --118.180000,33.800000,42.000000,2301.000000,621.000000,2114.000000,561.000000,2.057900,132700.000000 --117.510000,34.160000,2.000000,718.000000,98.000000,119.000000,50.000000,4.100000,315000.000000 --118.160000,34.030000,40.000000,2201.000000,636.000000,2682.000000,595.000000,2.359000,143400.000000 --118.170000,34.110000,39.000000,1758.000000,436.000000,892.000000,447.000000,3.640600,278900.000000 --117.690000,33.650000,15.000000,5394.000000,748.000000,2383.000000,706.000000,7.561900,302000.000000 --122.200000,37.770000,41.000000,1547.000000,415.000000,1024.000000,341.000000,2.056200,102000.000000 --121.330000,37.960000,42.000000,1619.000000,340.000000,906.000000,339.000000,2.548800,80300.000000 --121.840000,38.130000,33.000000,596.000000,105.000000,212.000000,94.000000,4.281300,81300.000000 --117.760000,34.050000,36.000000,2910.000000,819.000000,3055.000000,782.000000,1.902900,98000.000000 --122.430000,37.790000,52.000000,3219.000000,969.000000,1152.000000,830.000000,4.204200,500001.000000 --122.320000,37.570000,33.000000,3384.000000,819.000000,2626.000000,793.000000,3.228500,234800.000000 --118.160000,34.070000,42.000000,3836.000000,777.000000,2118.000000,754.000000,3.636400,254600.000000 --124.090000,40.950000,18.000000,2250.000000,484.000000,1248.000000,472.000000,2.589300,99600.000000 --121.990000,38.350000,45.000000,1778.000000,339.000000,839.000000,319.000000,2.465900,102900.000000 --122.720000,38.420000,26.000000,3604.000000,734.000000,2605.000000,704.000000,3.096900,143800.000000 --122.110000,37.660000,29.000000,2544.000000,643.000000,2332.000000,603.000000,3.209100,150000.000000 --121.840000,36.620000,26.000000,32.000000,8.000000,27.000000,10.000000,2.225000,150000.000000 --118.180000,34.120000,29.000000,2640.000000,737.000000,1795.000000,655.000000,2.369000,173400.000000 --122.450000,38.270000,25.000000,5024.000000,881.000000,1994.000000,838.000000,4.223700,262300.000000 --117.910000,33.650000,17.000000,1328.000000,377.000000,762.000000,344.000000,2.222200,276800.000000 --116.470000,33.770000,26.000000,4300.000000,767.000000,1557.000000,669.000000,4.410700,122500.000000 --122.410000,37.730000,42.000000,2604.000000,573.000000,1703.000000,507.000000,3.423100,230200.000000 --119.780000,36.800000,34.000000,2200.000000,493.000000,1243.000000,431.000000,1.851400,66500.000000 --119.710000,34.360000,34.000000,1706.000000,276.000000,628.000000,243.000000,4.184200,364000.000000 --118.360000,34.030000,40.000000,2323.000000,661.000000,1847.000000,614.000000,1.831600,113500.000000 --121.890000,37.990000,4.000000,2171.000000,597.000000,928.000000,461.000000,4.101600,170500.000000 --121.980000,37.330000,25.000000,3223.000000,612.000000,1529.000000,602.000000,5.121000,287600.000000 --118.470000,34.250000,34.000000,1732.000000,399.000000,1120.000000,401.000000,4.149200,195700.000000 --117.260000,32.990000,16.000000,2127.000000,512.000000,1532.000000,499.000000,2.734800,231300.000000 --118.090000,34.070000,45.000000,726.000000,146.000000,568.000000,160.000000,3.034700,183200.000000 --118.450000,37.250000,20.000000,1468.000000,283.000000,721.000000,270.000000,3.081700,118800.000000 --117.780000,33.540000,29.000000,1421.000000,462.000000,520.000000,339.000000,2.296900,450000.000000 --117.460000,33.900000,10.000000,9738.000000,2130.000000,4936.000000,1840.000000,3.318700,144800.000000 --121.850000,39.740000,39.000000,1139.000000,265.000000,623.000000,264.000000,2.283300,85800.000000 --117.290000,34.110000,48.000000,1498.000000,448.000000,1586.000000,455.000000,1.168700,70800.000000 --121.200000,37.790000,36.000000,866.000000,160.000000,502.000000,149.000000,2.479800,101500.000000 --118.430000,33.960000,20.000000,1901.000000,270.000000,704.000000,254.000000,8.781900,500001.000000 --122.110000,37.400000,15.000000,255.000000,63.000000,138.000000,74.000000,4.659100,175000.000000 --119.060000,36.080000,19.000000,2554.000000,443.000000,1301.000000,419.000000,4.185600,72100.000000 --118.370000,33.880000,20.000000,2439.000000,474.000000,1219.000000,497.000000,5.961900,335900.000000 --120.790000,38.430000,40.000000,1391.000000,246.000000,546.000000,214.000000,3.910700,129800.000000 --122.200000,39.930000,9.000000,1296.000000,287.000000,768.000000,260.000000,1.919100,54400.000000 --122.230000,37.760000,52.000000,1049.000000,185.000000,374.000000,176.000000,4.145800,248500.000000 --121.990000,38.530000,6.000000,4598.000000,834.000000,2561.000000,812.000000,3.418600,127300.000000 --118.460000,34.020000,39.000000,3599.000000,776.000000,1569.000000,763.000000,5.257100,405400.000000 --115.600000,33.040000,31.000000,314.000000,61.000000,152.000000,56.000000,3.347200,91700.000000 --117.220000,32.780000,22.000000,2020.000000,466.000000,1010.000000,429.000000,3.452700,175000.000000 --118.630000,34.220000,18.000000,1376.000000,225.000000,670.000000,205.000000,6.514600,277600.000000 --124.140000,40.720000,18.000000,2581.000000,499.000000,1375.000000,503.000000,2.844600,100500.000000 --116.430000,33.780000,17.000000,4293.000000,712.000000,1091.000000,464.000000,6.143700,232100.000000 --117.890000,33.730000,32.000000,728.000000,134.000000,837.000000,135.000000,4.076900,163900.000000 --117.700000,33.530000,5.000000,6698.000000,1254.000000,2834.000000,1139.000000,5.908800,288500.000000 --122.470000,37.850000,19.000000,1926.000000,593.000000,881.000000,546.000000,2.914500,140400.000000 --120.630000,38.730000,11.000000,4577.000000,836.000000,1944.000000,700.000000,4.067500,140200.000000 --118.590000,34.200000,18.000000,847.000000,185.000000,733.000000,178.000000,5.214900,201900.000000 --118.360000,33.930000,40.000000,1625.000000,500.000000,2036.000000,476.000000,2.629800,156500.000000 --118.410000,33.850000,16.000000,6123.000000,1989.000000,2853.000000,1789.000000,4.425000,336400.000000 --117.190000,32.770000,16.000000,3273.000000,670.000000,1305.000000,671.000000,4.136800,151000.000000 --117.780000,33.860000,16.000000,3471.000000,708.000000,1769.000000,691.000000,4.106400,246100.000000 --121.860000,39.740000,13.000000,3494.000000,843.000000,1571.000000,784.000000,1.101900,120200.000000 --119.040000,35.310000,11.000000,2161.000000,371.000000,1267.000000,388.000000,4.195700,92700.000000 --118.260000,34.020000,40.000000,1259.000000,362.000000,1499.000000,327.000000,1.838200,126400.000000 --117.250000,34.490000,4.000000,2372.000000,361.000000,1017.000000,322.000000,5.111200,170900.000000 --120.040000,39.270000,24.000000,2237.000000,491.000000,264.000000,95.000000,4.136400,154500.000000 --121.420000,38.540000,29.000000,2358.000000,493.000000,1071.000000,470.000000,2.925000,94300.000000 --118.150000,34.200000,46.000000,1505.000000,261.000000,857.000000,269.000000,4.500000,184200.000000 --118.080000,33.880000,26.000000,1507.000000,270.000000,931.000000,275.000000,5.164500,244900.000000 --122.430000,37.800000,52.000000,2696.000000,572.000000,925.000000,552.000000,5.036500,500000.000000 --115.490000,32.670000,24.000000,1266.000000,275.000000,1083.000000,298.000000,1.482800,73100.000000 --120.980000,38.340000,27.000000,3471.000000,653.000000,1793.000000,600.000000,3.550800,99100.000000 --116.140000,34.450000,12.000000,8796.000000,1721.000000,11139.000000,1680.000000,2.261200,137500.000000 --117.110000,32.730000,27.000000,3160.000000,627.000000,1628.000000,612.000000,3.886400,132600.000000 --118.470000,34.000000,38.000000,1235.000000,390.000000,891.000000,376.000000,2.714300,287500.000000 --121.420000,37.740000,19.000000,1393.000000,367.000000,915.000000,355.000000,1.195700,103100.000000 --122.250000,37.820000,52.000000,2474.000000,403.000000,1104.000000,398.000000,5.883000,340700.000000 --118.050000,33.720000,22.000000,5416.000000,1271.000000,2260.000000,1184.000000,3.803800,174500.000000 --122.020000,36.970000,44.000000,594.000000,169.000000,325.000000,139.000000,1.155200,250000.000000 --115.570000,32.800000,33.000000,1192.000000,213.000000,1066.000000,211.000000,4.571400,68600.000000 --121.290000,37.800000,6.000000,110.000000,26.000000,69.000000,24.000000,3.729200,475000.000000 --122.080000,37.880000,26.000000,2947.000000,647.000000,825.000000,626.000000,2.933000,85000.000000 --121.770000,37.650000,16.000000,4290.000000,554.000000,1952.000000,576.000000,7.358800,327500.000000 --119.810000,36.720000,46.000000,1414.000000,268.000000,902.000000,243.000000,1.583300,56700.000000 --118.350000,33.970000,26.000000,1725.000000,431.000000,1130.000000,404.000000,3.270800,128100.000000 --118.200000,34.190000,38.000000,2176.000000,266.000000,798.000000,243.000000,15.000100,500001.000000 --118.790000,34.140000,7.000000,3003.000000,504.000000,1143.000000,466.000000,5.854800,500001.000000 --118.120000,34.160000,30.000000,1762.000000,416.000000,940.000000,398.000000,2.863100,188600.000000 --118.220000,33.960000,36.000000,1542.000000,458.000000,1711.000000,468.000000,1.902800,164200.000000 --121.300000,37.990000,38.000000,2375.000000,494.000000,1167.000000,471.000000,2.667300,87500.000000 --121.840000,36.610000,21.000000,2876.000000,802.000000,2487.000000,795.000000,2.200700,112800.000000 --117.900000,34.070000,36.000000,1009.000000,164.000000,466.000000,149.000000,5.851900,249400.000000 --120.400000,34.860000,11.000000,1633.000000,348.000000,504.000000,327.000000,2.050800,275000.000000 --117.950000,33.800000,32.000000,1219.000000,192.000000,634.000000,197.000000,5.237000,215700.000000 --118.300000,33.940000,36.000000,2041.000000,531.000000,1390.000000,464.000000,2.011400,99300.000000 --121.600000,37.900000,5.000000,14684.000000,2252.000000,4276.000000,1722.000000,6.905100,340900.000000 --122.410000,37.590000,34.000000,3931.000000,622.000000,1717.000000,621.000000,6.294600,450000.000000 --118.450000,34.050000,28.000000,801.000000,399.000000,936.000000,406.000000,2.187500,181300.000000 --118.180000,33.860000,43.000000,2752.000000,645.000000,1674.000000,614.000000,3.671900,161300.000000 --121.780000,40.120000,14.000000,388.000000,108.000000,35.000000,17.000000,6.135900,106300.000000 --118.210000,34.040000,47.000000,1325.000000,393.000000,1557.000000,352.000000,2.800000,148400.000000 --118.380000,34.090000,28.000000,4001.000000,1352.000000,1799.000000,1220.000000,2.578400,272900.000000 --117.180000,32.840000,32.000000,1351.000000,237.000000,823.000000,269.000000,4.276800,167800.000000 --117.300000,32.850000,28.000000,2334.000000,694.000000,770.000000,552.000000,3.132400,500001.000000 --119.020000,35.420000,42.000000,2271.000000,458.000000,1124.000000,447.000000,2.758300,64900.000000 --124.010000,40.970000,21.000000,1513.000000,319.000000,943.000000,301.000000,3.538000,102700.000000 --118.100000,34.130000,44.000000,1745.000000,237.000000,693.000000,248.000000,9.791200,500001.000000 --119.810000,36.770000,49.000000,1749.000000,314.000000,705.000000,300.000000,3.150000,72200.000000 --122.550000,38.000000,18.000000,3119.000000,803.000000,1395.000000,722.000000,3.926500,301100.000000 --117.620000,34.080000,30.000000,1372.000000,235.000000,1047.000000,225.000000,3.159700,116300.000000 --121.290000,37.960000,52.000000,888.000000,324.000000,630.000000,258.000000,1.241100,112500.000000 --119.090000,34.240000,17.000000,10214.000000,1589.000000,3409.000000,1327.000000,5.380600,452100.000000 --117.200000,32.770000,30.000000,156.000000,45.000000,77.000000,40.000000,3.267900,137500.000000 --122.270000,37.450000,41.000000,830.000000,136.000000,353.000000,153.000000,6.382400,500001.000000 --117.310000,34.410000,14.000000,3019.000000,643.000000,1639.000000,582.000000,1.528800,103400.000000 --118.280000,33.830000,18.000000,5923.000000,1409.000000,3887.000000,1322.000000,3.471200,194400.000000 --118.270000,34.050000,26.000000,1164.000000,674.000000,1685.000000,541.000000,1.572700,225000.000000 --118.170000,34.090000,45.000000,1327.000000,271.000000,1069.000000,284.000000,3.397700,153800.000000 --122.540000,37.740000,42.000000,2006.000000,415.000000,1230.000000,435.000000,4.178600,271100.000000 --118.280000,33.770000,47.000000,307.000000,69.000000,374.000000,65.000000,2.906300,146900.000000 --118.040000,33.720000,24.000000,7141.000000,1330.000000,3418.000000,1268.000000,4.664900,237800.000000 --117.390000,33.920000,25.000000,2886.000000,583.000000,2327.000000,577.000000,2.385100,113700.000000 --119.010000,35.370000,35.000000,120.000000,35.000000,477.000000,41.000000,1.912500,47500.000000 --122.410000,37.740000,34.000000,1403.000000,262.000000,839.000000,255.000000,4.703100,255200.000000 --118.290000,33.910000,41.000000,2475.000000,532.000000,1416.000000,470.000000,3.837200,156400.000000 --117.250000,33.220000,19.000000,2167.000000,443.000000,1654.000000,435.000000,3.500000,135800.000000 --117.650000,33.460000,19.000000,7034.000000,1139.000000,2824.000000,1068.000000,6.087300,277300.000000 --121.980000,37.800000,17.000000,3354.000000,422.000000,1457.000000,425.000000,7.647300,345800.000000 --118.050000,33.840000,21.000000,4890.000000,653.000000,2295.000000,654.000000,6.983000,329700.000000 --122.030000,37.270000,25.000000,4460.000000,553.000000,1608.000000,561.000000,10.795800,500001.000000 --120.520000,35.240000,5.000000,4413.000000,804.000000,2003.000000,725.000000,5.026700,253300.000000 --117.950000,34.140000,33.000000,1943.000000,440.000000,1526.000000,353.000000,3.038000,137500.000000 --118.160000,34.690000,35.000000,3114.000000,583.000000,1974.000000,545.000000,3.902800,126800.000000 --121.480000,39.100000,19.000000,2043.000000,421.000000,1018.000000,390.000000,2.595200,92400.000000 --117.530000,33.940000,21.000000,5675.000000,935.000000,2834.000000,865.000000,4.226300,203200.000000 --122.290000,37.910000,40.000000,2085.000000,329.000000,796.000000,339.000000,5.535700,273700.000000 --121.780000,38.690000,31.000000,2547.000000,535.000000,1579.000000,509.000000,2.677400,95800.000000 --117.970000,33.840000,34.000000,874.000000,153.000000,549.000000,153.000000,4.866700,186800.000000 --122.260000,37.860000,52.000000,3774.000000,744.000000,1461.000000,679.000000,2.940500,289500.000000 --117.960000,33.690000,20.000000,3123.000000,441.000000,1319.000000,432.000000,6.091000,290400.000000 --118.390000,34.190000,36.000000,904.000000,191.000000,627.000000,191.000000,2.416700,192900.000000 --122.480000,37.510000,22.000000,1564.000000,278.000000,761.000000,270.000000,4.757800,318500.000000 --118.600000,34.210000,19.000000,2581.000000,857.000000,2004.000000,784.000000,2.615900,182300.000000 --122.350000,40.560000,12.000000,3900.000000,863.000000,2145.000000,864.000000,1.988100,85200.000000 --118.240000,34.030000,52.000000,142.000000,47.000000,137.000000,45.000000,1.833300,312500.000000 --117.610000,34.080000,20.000000,3550.000000,736.000000,2229.000000,681.000000,3.019900,128800.000000 --121.030000,37.670000,24.000000,2162.000000,459.000000,1468.000000,441.000000,3.185700,98300.000000 --119.690000,36.810000,15.000000,2892.000000,496.000000,1634.000000,501.000000,4.493400,88000.000000 --118.270000,34.060000,26.000000,513.000000,338.000000,1204.000000,321.000000,1.490400,275000.000000 --118.260000,34.070000,30.000000,929.000000,238.000000,763.000000,214.000000,2.522700,187500.000000 --120.910000,38.980000,13.000000,7689.000000,1415.000000,3264.000000,1198.000000,3.653000,146800.000000 --117.140000,32.710000,32.000000,719.000000,251.000000,894.000000,208.000000,1.845600,103100.000000 --117.200000,32.820000,35.000000,2772.000000,537.000000,1392.000000,521.000000,3.337000,172300.000000 --123.800000,39.440000,52.000000,1533.000000,336.000000,754.000000,340.000000,1.921300,95000.000000 --122.330000,37.980000,32.000000,1967.000000,348.000000,1144.000000,364.000000,4.413500,150100.000000 --117.370000,33.970000,38.000000,1156.000000,241.000000,877.000000,200.000000,1.451400,79900.000000 --122.040000,37.300000,26.000000,1714.000000,270.000000,778.000000,262.000000,6.075000,417000.000000 --118.210000,33.980000,35.000000,1705.000000,562.000000,2212.000000,539.000000,2.325000,161500.000000 --117.320000,34.110000,38.000000,1462.000000,337.000000,1208.000000,324.000000,2.260400,68100.000000 --118.120000,34.080000,49.000000,1782.000000,374.000000,1010.000000,367.000000,3.158300,268200.000000 --121.560000,39.690000,8.000000,2836.000000,522.000000,1163.000000,512.000000,3.130000,168300.000000 --117.940000,33.800000,28.000000,2914.000000,489.000000,1500.000000,499.000000,4.942900,254800.000000 --117.980000,33.850000,23.000000,2089.000000,377.000000,1085.000000,362.000000,4.765000,181500.000000 --122.850000,38.770000,18.000000,2856.000000,513.000000,1027.000000,405.000000,4.695300,241700.000000 --116.240000,33.760000,9.000000,1961.000000,595.000000,966.000000,275.000000,3.812500,96700.000000 --122.320000,37.960000,25.000000,1728.000000,403.000000,934.000000,412.000000,3.375000,133700.000000 --118.950000,35.410000,21.000000,3999.000000,727.000000,1889.000000,688.000000,3.875000,99500.000000 --122.420000,37.670000,42.000000,2274.000000,429.000000,1255.000000,397.000000,5.120500,226300.000000 --118.250000,33.980000,39.000000,1553.000000,461.000000,2271.000000,437.000000,1.737800,121900.000000 --118.400000,34.220000,36.000000,2557.000000,540.000000,1556.000000,491.000000,3.659100,183800.000000 --120.560000,38.390000,20.000000,1326.000000,307.000000,563.000000,237.000000,2.666700,86600.000000 --121.630000,39.100000,22.000000,3585.000000,548.000000,1757.000000,577.000000,4.174000,100100.000000 --122.200000,37.470000,44.000000,1927.000000,332.000000,846.000000,362.000000,4.208300,278200.000000 --122.110000,37.110000,46.000000,1993.000000,404.000000,850.000000,327.000000,5.208000,206800.000000 --118.250000,33.840000,19.000000,1731.000000,420.000000,1032.000000,364.000000,3.812500,208100.000000 --118.350000,34.180000,46.000000,2711.000000,491.000000,1277.000000,490.000000,4.282000,224700.000000 --118.140000,33.860000,44.000000,1436.000000,257.000000,745.000000,233.000000,4.625000,213400.000000 --122.260000,38.280000,24.000000,2831.000000,502.000000,1462.000000,503.000000,4.500000,158300.000000 --120.240000,37.960000,34.000000,1747.000000,395.000000,935.000000,362.000000,1.625000,79400.000000 --121.590000,39.740000,17.000000,1646.000000,330.000000,750.000000,344.000000,2.379800,83800.000000 --122.720000,40.170000,16.000000,396.000000,78.000000,188.000000,72.000000,1.388900,87500.000000 --118.480000,34.310000,31.000000,1091.000000,256.000000,892.000000,238.000000,3.000000,172400.000000 --121.100000,38.940000,42.000000,410.000000,117.000000,706.000000,112.000000,1.017900,125000.000000 --118.100000,33.970000,35.000000,2426.000000,529.000000,2010.000000,514.000000,2.992200,163500.000000 --120.970000,37.670000,16.000000,1499.000000,250.000000,1292.000000,271.000000,4.385100,117300.000000 --121.910000,36.970000,19.000000,4920.000000,1092.000000,1807.000000,922.000000,3.511200,231900.000000 --121.470000,37.580000,14.000000,1594.000000,292.000000,887.000000,287.000000,4.662500,294000.000000 --121.930000,37.720000,26.000000,3816.000000,637.000000,1935.000000,642.000000,4.469700,221300.000000 --117.830000,33.790000,29.000000,1454.000000,236.000000,724.000000,262.000000,4.854200,218100.000000 --117.890000,33.730000,33.000000,1308.000000,375.000000,2175.000000,347.000000,3.082400,177400.000000 --117.840000,34.000000,26.000000,797.000000,117.000000,383.000000,114.000000,6.875800,253800.000000 --116.860000,34.240000,19.000000,5411.000000,1042.000000,441.000000,185.000000,3.132400,132000.000000 --121.280000,38.740000,33.000000,4384.000000,778.000000,1775.000000,789.000000,4.050000,134700.000000 --119.630000,36.640000,33.000000,1036.000000,181.000000,620.000000,174.000000,3.410700,110400.000000 --121.060000,38.250000,13.000000,651.000000,102.000000,301.000000,104.000000,3.652800,200000.000000 --122.010000,37.400000,24.000000,1297.000000,297.000000,441.000000,282.000000,3.143900,47500.000000 --117.220000,33.310000,12.000000,2924.000000,433.000000,1193.000000,394.000000,6.247500,331300.000000 --116.310000,33.730000,19.000000,12467.000000,2508.000000,4086.000000,1761.000000,3.284600,131900.000000 --121.290000,38.020000,12.000000,2006.000000,426.000000,1849.000000,396.000000,2.543700,99000.000000 --121.000000,37.640000,52.000000,530.000000,177.000000,325.000000,158.000000,1.187500,90600.000000 --121.080000,39.210000,17.000000,3033.000000,590.000000,1319.000000,583.000000,2.481100,111800.000000 --121.880000,37.990000,16.000000,3787.000000,515.000000,1606.000000,507.000000,5.567600,174200.000000 --117.180000,32.740000,20.000000,1165.000000,269.000000,459.000000,244.000000,3.175000,191700.000000 --117.200000,32.850000,22.000000,3501.000000,631.000000,1297.000000,581.000000,4.789100,295300.000000 --117.160000,33.920000,12.000000,3236.000000,502.000000,1610.000000,502.000000,4.756800,143500.000000 --118.350000,34.050000,44.000000,1856.000000,493.000000,1374.000000,469.000000,2.098400,158000.000000 --119.050000,36.060000,23.000000,2344.000000,407.000000,1184.000000,406.000000,3.162500,70600.000000 --121.150000,38.690000,52.000000,240.000000,44.000000,6675.000000,29.000000,6.135900,225000.000000 --123.160000,39.130000,33.000000,1320.000000,303.000000,1048.000000,303.000000,1.781300,94700.000000 --121.360000,38.590000,32.000000,3303.000000,480.000000,1185.000000,436.000000,5.050800,225700.000000 --118.280000,33.730000,52.000000,2085.000000,588.000000,1767.000000,516.000000,2.193500,243200.000000 --118.360000,33.890000,27.000000,2837.000000,684.000000,2141.000000,648.000000,3.132500,215000.000000 --121.240000,38.630000,4.000000,11021.000000,1565.000000,3857.000000,1494.000000,7.258200,273200.000000 --117.690000,33.550000,3.000000,1618.000000,266.000000,710.000000,246.000000,6.074300,274300.000000 --118.460000,34.270000,28.000000,1865.000000,463.000000,1182.000000,440.000000,2.619300,172300.000000 --122.280000,37.860000,52.000000,3007.000000,691.000000,1582.000000,636.000000,2.565200,157700.000000 --118.280000,33.940000,32.000000,1381.000000,375.000000,1268.000000,354.000000,1.105100,94200.000000 --122.180000,37.730000,42.000000,909.000000,215.000000,646.000000,198.000000,2.906300,80000.000000 --122.870000,38.390000,34.000000,1138.000000,205.000000,541.000000,180.000000,4.514700,271400.000000 --119.750000,34.440000,28.000000,1080.000000,298.000000,524.000000,251.000000,1.843200,327300.000000 --117.210000,32.850000,15.000000,2593.000000,521.000000,901.000000,456.000000,4.206500,277800.000000 --118.200000,33.820000,34.000000,2807.000000,768.000000,2217.000000,744.000000,2.428600,204800.000000 --121.880000,37.320000,40.000000,1331.000000,374.000000,1276.000000,389.000000,2.754600,172500.000000 --118.460000,34.140000,34.000000,5264.000000,771.000000,1738.000000,753.000000,8.811500,500001.000000 --118.290000,34.090000,35.000000,2198.000000,998.000000,3441.000000,912.000000,2.046700,158300.000000 --117.880000,34.110000,30.000000,3082.000000,602.000000,2008.000000,619.000000,4.141100,182700.000000 --117.680000,33.650000,6.000000,10395.000000,1915.000000,4783.000000,1811.000000,5.928000,239900.000000 --120.350000,39.340000,29.000000,1986.000000,474.000000,337.000000,100.000000,4.027800,95800.000000 --118.020000,33.820000,19.000000,2485.000000,437.000000,1286.000000,431.000000,4.746600,258300.000000 --118.350000,33.920000,24.000000,2728.000000,845.000000,2023.000000,773.000000,2.750000,239700.000000 --122.340000,37.970000,19.000000,2237.000000,580.000000,1438.000000,551.000000,2.338200,120700.000000 --118.330000,34.020000,46.000000,1528.000000,391.000000,933.000000,366.000000,2.197900,125700.000000 --118.400000,33.900000,37.000000,2458.000000,400.000000,920.000000,375.000000,7.892400,500001.000000 --117.970000,33.730000,18.000000,3698.000000,574.000000,2046.000000,614.000000,6.298400,269800.000000 --121.320000,38.570000,15.000000,3369.000000,499.000000,1733.000000,470.000000,5.310000,127500.000000 --117.940000,33.880000,46.000000,1747.000000,312.000000,770.000000,296.000000,5.421700,256000.000000 --118.540000,34.150000,26.000000,10111.000000,1295.000000,3599.000000,1257.000000,10.229200,500001.000000 --117.860000,33.830000,23.000000,2377.000000,403.000000,1101.000000,408.000000,5.343900,227100.000000 --119.950000,36.800000,30.000000,1233.000000,214.000000,620.000000,199.000000,3.429700,112500.000000 --121.420000,36.860000,41.000000,440.000000,106.000000,389.000000,94.000000,2.681800,225000.000000 --117.090000,32.690000,34.000000,1469.000000,267.000000,1031.000000,267.000000,3.458300,112700.000000 --119.200000,34.150000,27.000000,2076.000000,681.000000,1904.000000,647.000000,1.477300,160800.000000 --117.170000,32.760000,45.000000,3149.000000,639.000000,1160.000000,661.000000,2.726600,354200.000000 --117.900000,33.910000,36.000000,1376.000000,257.000000,687.000000,221.000000,3.540300,195400.000000 --122.030000,37.330000,23.000000,4221.000000,671.000000,1782.000000,641.000000,7.486300,412300.000000 --118.180000,33.900000,31.000000,2536.000000,603.000000,2625.000000,576.000000,3.090900,150900.000000 --119.050000,35.320000,11.000000,7035.000000,1455.000000,3525.000000,1387.000000,3.482700,93600.000000 --119.670000,34.470000,35.000000,2700.000000,422.000000,1995.000000,383.000000,4.975700,500001.000000 --118.350000,34.170000,44.000000,2572.000000,613.000000,1280.000000,570.000000,3.558300,232000.000000 --118.300000,33.870000,31.000000,1398.000000,261.000000,823.000000,263.000000,5.064100,234900.000000 --118.250000,34.160000,52.000000,2477.000000,385.000000,993.000000,371.000000,4.913500,368100.000000 --117.910000,33.820000,29.000000,1444.000000,326.000000,1038.000000,271.000000,2.384300,182900.000000 --118.360000,33.980000,40.000000,1113.000000,234.000000,584.000000,231.000000,3.092700,316000.000000 --121.290000,37.990000,45.000000,965.000000,198.000000,498.000000,195.000000,1.694400,75200.000000 --122.740000,38.460000,9.000000,2268.000000,594.000000,1311.000000,585.000000,2.660700,91500.000000 --118.290000,33.930000,31.000000,3894.000000,1017.000000,3590.000000,962.000000,2.043700,137200.000000 --122.050000,37.310000,25.000000,4601.000000,696.000000,2003.000000,666.000000,8.072700,455500.000000 --117.080000,32.570000,18.000000,2203.000000,544.000000,1943.000000,497.000000,2.250000,103200.000000 --122.040000,37.970000,10.000000,974.000000,316.000000,631.000000,286.000000,2.315200,140600.000000 --120.310000,37.110000,38.000000,1696.000000,301.000000,985.000000,278.000000,2.405400,112500.000000 --117.270000,34.100000,9.000000,3904.000000,1042.000000,3688.000000,896.000000,1.802200,78000.000000 --118.260000,33.950000,44.000000,1481.000000,329.000000,999.000000,315.000000,1.514700,94600.000000 --118.110000,34.160000,52.000000,1353.000000,274.000000,852.000000,306.000000,3.458300,239900.000000 --118.340000,33.990000,34.000000,397.000000,132.000000,250.000000,121.000000,1.675000,166700.000000 --117.890000,33.600000,40.000000,1639.000000,352.000000,498.000000,278.000000,5.633600,500001.000000 --119.720000,34.420000,52.000000,1759.000000,387.000000,980.000000,402.000000,4.012500,261000.000000 --118.440000,34.180000,36.000000,2077.000000,496.000000,1206.000000,528.000000,2.232600,221000.000000 --122.080000,37.970000,9.000000,2643.000000,439.000000,1105.000000,467.000000,6.657900,245200.000000 --122.450000,37.760000,50.000000,2518.000000,507.000000,979.000000,516.000000,4.691200,500001.000000 --118.220000,33.940000,41.000000,928.000000,249.000000,1108.000000,236.000000,3.432300,144600.000000 --118.330000,34.070000,52.000000,1482.000000,171.000000,531.000000,161.000000,15.000100,500001.000000 --117.660000,34.050000,14.000000,2644.000000,525.000000,2021.000000,511.000000,3.646700,147500.000000 --120.940000,35.420000,18.000000,3418.000000,686.000000,970.000000,453.000000,3.773800,279400.000000 --117.300000,34.050000,6.000000,2155.000000,544.000000,1039.000000,391.000000,1.667500,95800.000000 --117.920000,33.640000,5.000000,949.000000,287.000000,497.000000,244.000000,2.750000,225000.000000 --118.190000,33.990000,37.000000,2073.000000,614.000000,2544.000000,598.000000,2.905400,156300.000000 --122.080000,37.940000,44.000000,2185.000000,357.000000,943.000000,366.000000,4.725000,232100.000000 --117.720000,34.090000,33.000000,4979.000000,934.000000,2575.000000,874.000000,3.795800,152500.000000 --118.190000,34.080000,35.000000,1554.000000,381.000000,1487.000000,374.000000,1.903800,139500.000000 --122.240000,38.110000,42.000000,1743.000000,388.000000,889.000000,341.000000,2.324100,99200.000000 --121.810000,37.230000,17.000000,2319.000000,324.000000,1076.000000,338.000000,6.466400,278300.000000 --118.340000,34.180000,45.000000,3046.000000,633.000000,1448.000000,599.000000,3.240000,226900.000000 --120.570000,38.200000,13.000000,4110.000000,847.000000,1796.000000,706.000000,2.641700,122300.000000 --120.450000,34.640000,30.000000,2330.000000,422.000000,1255.000000,449.000000,3.851200,134600.000000 --118.250000,33.950000,25.000000,764.000000,200.000000,801.000000,220.000000,1.138400,100000.000000 --117.950000,33.900000,15.000000,3057.000000,479.000000,1679.000000,498.000000,6.842900,372600.000000 --117.200000,33.120000,18.000000,4372.000000,736.000000,1473.000000,675.000000,5.119400,247800.000000 --117.300000,34.530000,38.000000,1643.000000,489.000000,1196.000000,406.000000,1.227500,64100.000000 --121.870000,37.270000,18.000000,3561.000000,560.000000,1753.000000,553.000000,5.029200,269400.000000 --118.280000,34.030000,40.000000,2118.000000,796.000000,2195.000000,658.000000,1.797600,164600.000000 --119.770000,36.440000,26.000000,1727.000000,289.000000,802.000000,259.000000,3.208300,75000.000000 --122.380000,40.090000,16.000000,2077.000000,388.000000,1155.000000,389.000000,3.136100,84800.000000 --118.900000,34.180000,14.000000,2627.000000,328.000000,1121.000000,328.000000,7.050400,333800.000000 --121.010000,37.250000,16.000000,2216.000000,458.000000,1135.000000,424.000000,2.731600,97500.000000 --116.980000,32.720000,15.000000,4209.000000,680.000000,1914.000000,641.000000,4.513500,158300.000000 --119.980000,38.920000,28.000000,1408.000000,312.000000,522.000000,221.000000,2.070800,89600.000000 --121.930000,37.720000,26.000000,2806.000000,459.000000,1453.000000,444.000000,4.910700,213800.000000 --117.640000,34.090000,34.000000,2839.000000,659.000000,1822.000000,631.000000,3.050000,121300.000000 --119.850000,37.390000,14.000000,2744.000000,555.000000,1153.000000,474.000000,2.753000,111100.000000 --118.200000,33.980000,43.000000,1091.000000,320.000000,1418.000000,316.000000,2.152200,159400.000000 --120.830000,37.070000,16.000000,3736.000000,761.000000,1942.000000,730.000000,2.559800,120200.000000 --117.070000,32.580000,25.000000,1607.000000,280.000000,899.000000,260.000000,3.819400,134400.000000 --119.050000,35.340000,14.000000,3580.000000,984.000000,1933.000000,912.000000,2.663700,175000.000000 --117.570000,34.150000,3.000000,12806.000000,2219.000000,4249.000000,1499.000000,5.485000,343100.000000 --121.370000,38.670000,36.000000,1786.000000,338.000000,974.000000,319.000000,2.555000,72700.000000 --122.180000,37.700000,36.000000,2639.000000,533.000000,1209.000000,519.000000,4.026800,205500.000000 --116.940000,32.810000,8.000000,2517.000000,632.000000,1686.000000,613.000000,2.136000,143500.000000 --121.210000,39.240000,7.000000,4194.000000,673.000000,1355.000000,566.000000,4.370200,226100.000000 --122.060000,37.710000,36.000000,3541.000000,570.000000,1478.000000,529.000000,4.635000,248600.000000 --118.440000,34.190000,11.000000,2891.000000,951.000000,2166.000000,768.000000,2.891000,178100.000000 --122.360000,37.720000,10.000000,479.000000,125.000000,355.000000,108.000000,2.708300,180400.000000 --121.320000,38.620000,29.000000,2430.000000,448.000000,1087.000000,394.000000,3.086400,177900.000000 --118.270000,33.940000,43.000000,1309.000000,344.000000,1182.000000,340.000000,1.662500,88700.000000 --122.040000,37.970000,39.000000,1323.000000,245.000000,705.000000,261.000000,3.196800,151000.000000 --118.210000,33.960000,39.000000,2050.000000,529.000000,1959.000000,485.000000,2.138900,168900.000000 --117.200000,33.580000,2.000000,30450.000000,5033.000000,9419.000000,3197.000000,4.593600,174300.000000 --120.500000,37.370000,18.000000,8606.000000,1678.000000,5303.000000,1644.000000,2.401200,79700.000000 --118.170000,33.980000,36.000000,627.000000,177.000000,834.000000,175.000000,2.984400,163600.000000 --117.880000,33.830000,22.000000,3522.000000,543.000000,1706.000000,524.000000,6.468500,241200.000000 --118.290000,33.990000,46.000000,2198.000000,530.000000,2067.000000,497.000000,2.054200,103400.000000 --117.420000,34.100000,18.000000,3977.000000,809.000000,2231.000000,742.000000,4.139900,115400.000000 --116.960000,32.710000,18.000000,2413.000000,533.000000,1129.000000,551.000000,2.456700,155000.000000 --118.360000,34.070000,52.000000,2046.000000,451.000000,944.000000,435.000000,3.426500,456900.000000 --122.260000,38.330000,34.000000,2048.000000,316.000000,780.000000,267.000000,5.815000,339200.000000 --120.510000,37.290000,20.000000,4927.000000,1042.000000,4205.000000,1009.000000,1.767900,79800.000000 --117.940000,33.620000,25.000000,1188.000000,264.000000,569.000000,249.000000,3.660700,500001.000000 --118.270000,33.940000,30.000000,1041.000000,275.000000,877.000000,270.000000,1.526800,91600.000000 --117.930000,34.090000,37.000000,1185.000000,225.000000,769.000000,235.000000,4.462500,154200.000000 --118.220000,33.920000,43.000000,1195.000000,256.000000,1251.000000,262.000000,3.453900,125000.000000 --121.840000,37.320000,16.000000,1866.000000,364.000000,1835.000000,412.000000,5.336300,212800.000000 --122.030000,37.830000,24.000000,5948.000000,738.000000,1997.000000,710.000000,9.870800,500001.000000 --122.460000,38.290000,21.000000,2423.000000,560.000000,1098.000000,503.000000,2.364000,173300.000000 --118.320000,34.010000,50.000000,1842.000000,377.000000,817.000000,341.000000,3.154800,157700.000000 --118.020000,33.950000,35.000000,2085.000000,400.000000,1112.000000,391.000000,3.488600,173900.000000 --118.310000,34.190000,13.000000,3801.000000,1116.000000,1986.000000,1078.000000,2.087500,222700.000000 --117.800000,34.100000,13.000000,2996.000000,495.000000,1187.000000,464.000000,6.245600,161700.000000 --118.460000,34.260000,33.000000,1358.000000,247.000000,738.000000,235.000000,5.094700,210300.000000 --121.940000,37.340000,41.000000,2151.000000,473.000000,1092.000000,469.000000,3.732100,250000.000000 --117.640000,33.870000,2.000000,17470.000000,2727.000000,5964.000000,1985.000000,6.230800,257900.000000 --117.900000,34.110000,23.000000,4776.000000,1316.000000,4797.000000,1187.000000,2.166700,142600.000000 --118.340000,34.110000,51.000000,937.000000,348.000000,527.000000,333.000000,4.357100,468800.000000 --122.310000,37.560000,45.000000,1685.000000,321.000000,815.000000,314.000000,4.295500,309700.000000 --118.360000,34.210000,41.000000,337.000000,65.000000,198.000000,50.000000,1.892900,152900.000000 --122.450000,37.710000,45.000000,2253.000000,431.000000,1382.000000,392.000000,4.256200,221600.000000 --118.680000,34.130000,9.000000,11251.000000,1594.000000,3029.000000,1227.000000,6.727300,500001.000000 --119.640000,36.850000,15.000000,2397.000000,353.000000,1258.000000,347.000000,4.990400,157300.000000 --122.160000,37.760000,45.000000,2299.000000,514.000000,1437.000000,484.000000,2.512200,95500.000000 --117.990000,33.670000,19.000000,3808.000000,790.000000,1776.000000,756.000000,4.625000,282200.000000 --121.830000,37.400000,27.000000,1145.000000,150.000000,492.000000,160.000000,5.716000,348300.000000 --118.190000,35.050000,14.000000,2992.000000,573.000000,1631.000000,526.000000,3.745200,83200.000000 --118.030000,33.770000,24.000000,3810.000000,579.000000,1818.000000,590.000000,5.805300,255900.000000 --122.260000,37.820000,22.000000,3682.000000,1270.000000,2024.000000,1250.000000,1.218500,170000.000000 --118.370000,33.930000,46.000000,442.000000,88.000000,255.000000,94.000000,4.447400,246900.000000 --118.220000,34.050000,43.000000,1153.000000,411.000000,1667.000000,409.000000,1.940200,139300.000000 --122.490000,37.680000,34.000000,3718.000000,676.000000,2510.000000,632.000000,5.331100,270800.000000 --116.510000,33.840000,16.000000,980.000000,193.000000,454.000000,185.000000,4.072900,100000.000000 --121.880000,37.660000,29.000000,2702.000000,680.000000,1360.000000,642.000000,3.112700,233000.000000 --122.440000,37.800000,52.000000,2869.000000,594.000000,500.000000,335.000000,5.037600,500001.000000 --121.340000,38.050000,16.000000,667.000000,92.000000,267.000000,90.000000,5.614700,244700.000000 --117.870000,33.840000,16.000000,1545.000000,354.000000,730.000000,350.000000,4.511200,139000.000000 --122.280000,37.890000,52.000000,2315.000000,408.000000,835.000000,369.000000,4.589300,290100.000000 --121.830000,37.990000,18.000000,2741.000000,449.000000,1507.000000,460.000000,4.756600,142500.000000 --119.530000,36.650000,43.000000,1676.000000,320.000000,1056.000000,276.000000,2.556200,93200.000000 --117.390000,34.090000,10.000000,5736.000000,945.000000,3528.000000,932.000000,4.395800,130700.000000 --118.230000,33.900000,45.000000,1285.000000,238.000000,840.000000,211.000000,3.410700,112500.000000 --121.320000,38.670000,21.000000,3455.000000,706.000000,1605.000000,704.000000,3.138200,91600.000000 --118.330000,34.050000,46.000000,3015.000000,795.000000,2300.000000,725.000000,2.070600,268500.000000 --122.210000,37.840000,44.000000,3424.000000,597.000000,1358.000000,597.000000,6.019400,292300.000000 --117.900000,34.530000,8.000000,3484.000000,647.000000,2169.000000,619.000000,3.976600,135800.000000 --122.470000,37.510000,15.000000,4974.000000,764.000000,2222.000000,774.000000,6.760600,364300.000000 --118.020000,33.770000,7.000000,586.000000,118.000000,232.000000,107.000000,5.207700,181300.000000 --119.730000,34.430000,35.000000,2703.000000,654.000000,1383.000000,631.000000,4.527800,340400.000000 --120.680000,35.140000,34.000000,3100.000000,617.000000,1155.000000,542.000000,3.093800,245900.000000 --122.470000,38.290000,14.000000,3732.000000,846.000000,1277.000000,775.000000,2.565800,208000.000000 --121.900000,37.350000,52.000000,1034.000000,239.000000,531.000000,223.000000,2.741100,227100.000000 --121.870000,37.260000,17.000000,1051.000000,172.000000,446.000000,173.000000,5.665200,234500.000000 --117.970000,33.890000,15.000000,3801.000000,542.000000,1992.000000,526.000000,9.068300,367400.000000 --116.870000,33.910000,37.000000,1858.000000,361.000000,1632.000000,310.000000,2.753600,73100.000000 --122.150000,37.470000,38.000000,1560.000000,301.000000,1331.000000,316.000000,3.052100,151500.000000 --118.310000,34.010000,52.000000,2547.000000,475.000000,1417.000000,444.000000,1.821400,123200.000000 --118.440000,34.040000,49.000000,32.000000,7.000000,14.000000,7.000000,2.187500,225000.000000 --118.010000,33.850000,29.000000,2064.000000,447.000000,1265.000000,400.000000,3.886400,209300.000000 --122.270000,41.200000,52.000000,4513.000000,985.000000,1926.000000,815.000000,1.592300,56000.000000 --122.320000,37.560000,49.000000,2016.000000,299.000000,691.000000,288.000000,5.549000,500001.000000 --119.770000,36.720000,43.000000,1763.000000,389.000000,1623.000000,390.000000,1.442700,47700.000000 --122.140000,37.840000,24.000000,2131.000000,343.000000,874.000000,373.000000,5.634900,355600.000000 --118.340000,34.090000,14.000000,3032.000000,999.000000,1691.000000,841.000000,2.200000,210000.000000 --117.610000,34.340000,18.000000,5210.000000,912.000000,1301.000000,464.000000,4.862300,176900.000000 --118.230000,33.760000,21.000000,49.000000,14.000000,29.000000,16.000000,5.000000,87500.000000 --117.890000,33.770000,32.000000,2342.000000,570.000000,1445.000000,453.000000,4.195100,195000.000000 --118.260000,33.910000,39.000000,967.000000,256.000000,903.000000,256.000000,1.903800,93100.000000 --118.400000,33.990000,39.000000,1613.000000,380.000000,1113.000000,356.000000,2.825000,276700.000000 --117.140000,32.920000,15.000000,1558.000000,314.000000,949.000000,332.000000,5.286400,174400.000000 --118.150000,33.770000,52.000000,2204.000000,498.000000,899.000000,445.000000,4.176500,393900.000000 --118.590000,34.210000,17.000000,2737.000000,868.000000,2924.000000,785.000000,2.579700,183500.000000 --121.370000,36.830000,14.000000,3658.000000,612.000000,1951.000000,600.000000,4.760000,216000.000000 --120.480000,35.020000,17.000000,2721.000000,477.000000,1672.000000,492.000000,2.979800,204800.000000 --118.440000,34.210000,41.000000,1440.000000,325.000000,1014.000000,322.000000,2.875000,168600.000000 --122.320000,38.330000,17.000000,851.000000,118.000000,370.000000,123.000000,5.087700,209300.000000 --121.870000,37.280000,21.000000,3305.000000,749.000000,2459.000000,701.000000,3.968800,249600.000000 --117.100000,33.070000,16.000000,2402.000000,336.000000,1080.000000,365.000000,8.680300,347300.000000 --118.030000,33.760000,25.000000,4650.000000,849.000000,2503.000000,790.000000,5.742000,221900.000000 --122.400000,37.730000,48.000000,1489.000000,326.000000,1115.000000,356.000000,2.636400,199300.000000 --118.340000,34.120000,41.000000,3257.000000,679.000000,1237.000000,638.000000,4.241500,409600.000000 --121.040000,39.240000,48.000000,1188.000000,227.000000,471.000000,219.000000,2.312500,125700.000000 --117.970000,33.910000,19.000000,8096.000000,1318.000000,3853.000000,1313.000000,6.007600,269500.000000 --117.100000,32.680000,45.000000,1183.000000,289.000000,900.000000,266.000000,2.494300,99600.000000 --116.610000,33.930000,35.000000,321.000000,71.000000,157.000000,61.000000,2.805600,68100.000000 --118.390000,34.080000,27.000000,6605.000000,1710.000000,2665.000000,1520.000000,3.808800,500001.000000 --121.230000,38.650000,19.000000,2926.000000,476.000000,1349.000000,480.000000,4.643700,212900.000000 --122.200000,37.790000,29.000000,1640.000000,376.000000,939.000000,340.000000,2.832100,150000.000000 --117.180000,32.830000,23.000000,2105.000000,525.000000,1218.000000,484.000000,3.375000,184100.000000 --118.080000,33.770000,26.000000,2461.000000,562.000000,971.000000,544.000000,2.194400,87500.000000 --120.450000,34.660000,7.000000,3329.000000,504.000000,1462.000000,452.000000,4.787500,198300.000000 --117.820000,33.680000,4.000000,1346.000000,213.000000,603.000000,219.000000,8.797400,360600.000000 --121.920000,36.610000,27.000000,1619.000000,352.000000,831.000000,344.000000,4.300000,226400.000000 --122.010000,37.530000,19.000000,4572.000000,712.000000,2346.000000,709.000000,6.066700,245700.000000 --118.270000,33.950000,34.000000,987.000000,248.000000,902.000000,221.000000,2.336500,98000.000000 --119.960000,38.940000,27.000000,1492.000000,393.000000,717.000000,254.000000,1.890600,104200.000000 --121.420000,36.570000,13.000000,2685.000000,621.000000,2474.000000,573.000000,2.877500,134100.000000 --120.960000,37.660000,15.000000,2485.000000,434.000000,1296.000000,434.000000,3.854200,145200.000000 --118.650000,34.200000,23.000000,7480.000000,1084.000000,3037.000000,1058.000000,6.922300,338400.000000 --122.310000,38.000000,29.000000,3108.000000,534.000000,1687.000000,516.000000,4.333300,170800.000000 --118.350000,34.070000,48.000000,890.000000,255.000000,434.000000,232.000000,3.611100,450000.000000 --118.190000,33.790000,29.000000,3497.000000,1096.000000,2994.000000,919.000000,1.810900,137500.000000 --122.140000,37.410000,35.000000,2419.000000,426.000000,949.000000,433.000000,6.458800,437100.000000 --119.810000,36.710000,25.000000,1026.000000,221.000000,789.000000,183.000000,1.562500,52800.000000 --117.180000,32.680000,29.000000,1539.000000,344.000000,556.000000,289.000000,3.250000,500001.000000 --117.770000,34.080000,27.000000,5929.000000,932.000000,2817.000000,828.000000,6.043400,214800.000000 --118.110000,33.860000,33.000000,2389.000000,410.000000,1229.000000,393.000000,5.388900,234900.000000 --118.280000,34.090000,52.000000,1739.000000,464.000000,938.000000,482.000000,2.442900,228800.000000 --117.930000,34.040000,30.000000,1336.000000,239.000000,905.000000,253.000000,4.885400,178100.000000 --117.050000,32.760000,37.000000,4879.000000,906.000000,2076.000000,871.000000,3.662500,154800.000000 --118.250000,33.870000,18.000000,6812.000000,1263.000000,3704.000000,1216.000000,4.250000,169200.000000 --122.410000,37.780000,52.000000,254.000000,72.000000,153.000000,29.000000,3.862500,350000.000000 --119.720000,34.470000,34.000000,3262.000000,533.000000,1265.000000,502.000000,5.841100,381800.000000 --118.120000,34.150000,22.000000,1671.000000,480.000000,1005.000000,443.000000,3.011900,171400.000000 --122.210000,37.830000,40.000000,4991.000000,674.000000,1616.000000,654.000000,7.554400,411500.000000 --119.380000,36.560000,14.000000,3965.000000,804.000000,1945.000000,733.000000,2.690600,95300.000000 --118.380000,34.280000,22.000000,4428.000000,825.000000,3152.000000,836.000000,4.793200,166300.000000 --117.340000,34.120000,26.000000,1008.000000,164.000000,568.000000,196.000000,3.351600,105600.000000 --122.060000,37.390000,22.000000,1236.000000,290.000000,413.000000,274.000000,3.687500,40000.000000 --118.460000,34.070000,49.000000,2418.000000,301.000000,850.000000,318.000000,14.286700,500001.000000 --117.900000,34.150000,21.000000,2056.000000,461.000000,1332.000000,429.000000,3.394200,212800.000000 --123.470000,39.800000,18.000000,2130.000000,545.000000,863.000000,346.000000,2.357100,79200.000000 --121.910000,37.250000,31.000000,1944.000000,343.000000,975.000000,334.000000,4.920500,240500.000000 --122.320000,38.320000,22.000000,2483.000000,528.000000,1478.000000,492.000000,4.087800,164400.000000 --118.140000,33.880000,30.000000,2596.000000,580.000000,1662.000000,539.000000,4.050700,179500.000000 --117.820000,33.810000,25.000000,2662.000000,402.000000,1247.000000,401.000000,5.439500,244000.000000 --118.270000,34.070000,38.000000,1270.000000,556.000000,1692.000000,450.000000,1.870000,170800.000000 --117.440000,33.950000,31.000000,914.000000,177.000000,556.000000,161.000000,3.734400,115300.000000 --118.100000,34.070000,36.000000,1240.000000,349.000000,1383.000000,338.000000,2.493100,170300.000000 --121.830000,37.370000,43.000000,1461.000000,284.000000,800.000000,258.000000,3.227900,182400.000000 --120.900000,35.330000,16.000000,1576.000000,287.000000,595.000000,262.000000,3.588000,266300.000000 --121.750000,36.920000,48.000000,1801.000000,353.000000,1071.000000,361.000000,3.600000,194500.000000 --117.910000,33.650000,24.000000,885.000000,321.000000,590.000000,254.000000,2.625000,217900.000000 --117.200000,32.800000,33.000000,2573.000000,436.000000,1084.000000,443.000000,4.241700,294100.000000 --118.230000,34.180000,43.000000,1708.000000,280.000000,768.000000,276.000000,6.207000,457400.000000 --118.320000,33.930000,34.000000,1536.000000,273.000000,804.000000,287.000000,4.961500,157800.000000 --117.760000,34.120000,16.000000,9020.000000,1509.000000,3575.000000,1486.000000,4.241500,275700.000000 --118.450000,34.230000,25.000000,4393.000000,1369.000000,3781.000000,1267.000000,2.583300,183700.000000 --122.450000,41.280000,15.000000,2740.000000,503.000000,1188.000000,445.000000,3.451900,128800.000000 --118.330000,34.010000,43.000000,2227.000000,564.000000,956.000000,472.000000,2.021700,187500.000000 --124.160000,40.790000,46.000000,3042.000000,597.000000,1206.000000,541.000000,2.113500,90600.000000 --118.140000,34.060000,37.000000,1339.000000,258.000000,706.000000,238.000000,4.756900,253800.000000 --121.140000,38.770000,15.000000,10282.000000,1333.000000,3868.000000,1300.000000,6.478900,287800.000000 --117.750000,33.830000,14.000000,2452.000000,296.000000,954.000000,275.000000,8.237500,388300.000000 --122.120000,37.690000,30.000000,1197.000000,269.000000,695.000000,279.000000,3.437500,157800.000000 --117.790000,34.070000,33.000000,1694.000000,333.000000,1689.000000,301.000000,3.758300,116300.000000 --118.410000,34.090000,37.000000,2716.000000,302.000000,809.000000,291.000000,15.000100,500001.000000 --118.530000,34.440000,19.000000,1285.000000,195.000000,650.000000,193.000000,6.039800,217800.000000 --120.780000,38.740000,28.000000,4236.000000,877.000000,2008.000000,881.000000,2.160300,111300.000000 --122.350000,37.580000,26.000000,854.000000,246.000000,396.000000,231.000000,2.839300,375000.000000 --119.720000,36.820000,15.000000,946.000000,239.000000,550.000000,246.000000,2.263900,52500.000000 --118.140000,34.010000,42.000000,1973.000000,510.000000,1841.000000,502.000000,2.532600,156500.000000 --117.120000,32.750000,25.000000,2222.000000,634.000000,1025.000000,568.000000,1.640000,130000.000000 --117.900000,34.130000,37.000000,1801.000000,422.000000,1564.000000,425.000000,3.159700,133000.000000 --117.390000,33.690000,5.000000,6529.000000,997.000000,3464.000000,1006.000000,5.327500,168700.000000 --122.450000,40.610000,17.000000,785.000000,155.000000,417.000000,136.000000,2.328900,58200.000000 --117.120000,34.210000,19.000000,4641.000000,994.000000,1334.000000,474.000000,4.597200,123900.000000 --122.760000,38.460000,14.000000,4742.000000,756.000000,2149.000000,732.000000,4.515200,199200.000000 --118.190000,34.120000,46.000000,3387.000000,820.000000,2833.000000,813.000000,2.987000,176900.000000 --118.310000,34.060000,36.000000,369.000000,147.000000,145.000000,136.000000,0.880400,450000.000000 --122.340000,37.950000,45.000000,1128.000000,240.000000,702.000000,270.000000,3.671900,134100.000000 --118.220000,34.660000,17.000000,3810.000000,662.000000,1867.000000,586.000000,4.900000,152400.000000 --118.290000,34.050000,40.000000,907.000000,349.000000,1426.000000,323.000000,1.857100,143800.000000 --117.960000,33.870000,37.000000,1785.000000,360.000000,1155.000000,403.000000,4.798400,175800.000000 --119.570000,34.380000,22.000000,2512.000000,426.000000,919.000000,341.000000,5.759000,425000.000000 --118.280000,33.750000,41.000000,1305.000000,381.000000,1384.000000,369.000000,2.450000,186800.000000 --121.890000,38.010000,32.000000,1000.000000,188.000000,663.000000,212.000000,4.097200,99200.000000 --118.130000,34.160000,52.000000,1872.000000,357.000000,984.000000,364.000000,4.000000,250400.000000 --118.040000,34.180000,37.000000,3134.000000,532.000000,1220.000000,508.000000,5.286500,455400.000000 --123.220000,39.160000,32.000000,1149.000000,187.000000,499.000000,208.000000,3.658700,154600.000000 --120.690000,38.440000,13.000000,1473.000000,265.000000,597.000000,228.000000,4.291700,121300.000000 --118.040000,33.800000,33.000000,2685.000000,466.000000,1359.000000,476.000000,5.026100,245100.000000 --119.800000,36.730000,45.000000,925.000000,231.000000,797.000000,228.000000,1.701100,44800.000000 --117.490000,33.910000,17.000000,5364.000000,1020.000000,3754.000000,936.000000,3.285700,139100.000000 --118.340000,34.010000,37.000000,4291.000000,1102.000000,1941.000000,953.000000,1.794500,106300.000000 --118.370000,34.190000,41.000000,2924.000000,867.000000,2751.000000,836.000000,2.100000,171600.000000 --117.270000,34.450000,8.000000,6463.000000,1095.000000,3213.000000,1031.000000,3.221500,108800.000000 --120.450000,34.870000,4.000000,1533.000000,221.000000,545.000000,191.000000,7.569600,328700.000000 --122.320000,37.520000,26.000000,4042.000000,591.000000,1611.000000,578.000000,8.469300,419200.000000 --121.420000,38.490000,17.000000,13180.000000,2444.000000,7235.000000,2335.000000,3.363000,103000.000000 --115.570000,32.780000,29.000000,2321.000000,367.000000,1173.000000,360.000000,4.037500,86400.000000 --118.470000,33.990000,52.000000,2167.000000,622.000000,1095.000000,570.000000,2.851400,358700.000000 --118.270000,33.960000,42.000000,796.000000,203.000000,697.000000,177.000000,2.037000,92600.000000 --118.050000,33.900000,41.000000,550.000000,129.000000,642.000000,125.000000,1.875000,119900.000000 --118.960000,35.400000,28.000000,4667.000000,875.000000,2404.000000,841.000000,3.232500,89000.000000 --117.130000,32.980000,5.000000,2276.000000,311.000000,1158.000000,317.000000,6.432100,271900.000000 --122.040000,37.610000,36.000000,1151.000000,216.000000,727.000000,215.000000,4.171900,187000.000000 --116.580000,33.090000,36.000000,992.000000,224.000000,334.000000,126.000000,3.008900,134400.000000 --121.980000,38.250000,4.000000,2487.000000,440.000000,1545.000000,452.000000,4.910300,140400.000000 --122.300000,37.920000,32.000000,3943.000000,605.000000,1524.000000,614.000000,6.067700,321600.000000 --121.570000,39.480000,15.000000,202.000000,54.000000,145.000000,40.000000,0.825200,42500.000000 --118.090000,33.920000,36.000000,847.000000,185.000000,713.000000,194.000000,4.854200,167400.000000 --117.710000,33.610000,25.000000,3004.000000,718.000000,891.000000,626.000000,2.395000,80300.000000 --118.210000,33.900000,41.000000,941.000000,233.000000,973.000000,253.000000,1.958300,102300.000000 --118.290000,34.170000,52.000000,1732.000000,305.000000,875.000000,311.000000,4.325000,292600.000000 --118.950000,35.400000,23.000000,4483.000000,894.000000,2136.000000,883.000000,3.687500,101700.000000 --117.410000,34.230000,17.000000,889.000000,131.000000,439.000000,141.000000,6.142600,155000.000000 --121.920000,36.570000,42.000000,3944.000000,738.000000,1374.000000,598.000000,4.174000,394400.000000 --121.640000,39.150000,15.000000,2659.000000,396.000000,1159.000000,407.000000,5.234000,124900.000000 --120.920000,37.630000,39.000000,45.000000,8.000000,22.000000,9.000000,1.767900,450000.000000 --122.270000,37.840000,52.000000,1688.000000,337.000000,853.000000,325.000000,2.180600,99700.000000 --118.270000,34.100000,51.000000,3149.000000,519.000000,1082.000000,510.000000,6.445900,421600.000000 --121.810000,37.240000,21.000000,3250.000000,610.000000,1978.000000,568.000000,4.500000,234400.000000 --114.620000,33.620000,26.000000,18.000000,3.000000,5.000000,3.000000,0.536000,275000.000000 --118.090000,34.710000,5.000000,5807.000000,1182.000000,2602.000000,1007.000000,2.401200,159400.000000 --118.200000,34.020000,48.000000,2230.000000,593.000000,2419.000000,598.000000,2.394400,130700.000000 --119.620000,36.590000,17.000000,2287.000000,390.000000,1330.000000,393.000000,4.019700,88000.000000 --118.410000,34.190000,42.000000,779.000000,145.000000,450.000000,148.000000,3.979200,193800.000000 --118.300000,33.980000,48.000000,1998.000000,410.000000,1176.000000,382.000000,3.045500,102400.000000 --117.330000,34.120000,38.000000,1703.000000,385.000000,1356.000000,363.000000,2.039100,70400.000000 --118.500000,34.020000,28.000000,5109.000000,1482.000000,2313.000000,1451.000000,3.326600,483300.000000 --118.070000,33.920000,36.000000,1560.000000,320.000000,1348.000000,314.000000,3.622000,174000.000000 --117.130000,32.580000,27.000000,2511.000000,615.000000,1427.000000,576.000000,3.164500,156000.000000 --117.270000,34.490000,7.000000,2344.000000,351.000000,846.000000,314.000000,4.736100,174500.000000 --121.450000,38.600000,44.000000,2324.000000,413.000000,823.000000,375.000000,4.662500,158900.000000 --121.980000,37.220000,46.000000,10088.000000,1910.000000,3728.000000,1781.000000,5.232100,500001.000000 --120.310000,36.650000,24.000000,943.000000,209.000000,514.000000,156.000000,2.250000,76600.000000 --117.950000,33.840000,32.000000,1378.000000,492.000000,1202.000000,448.000000,3.402800,183700.000000 --119.700000,36.800000,34.000000,1768.000000,303.000000,888.000000,314.000000,3.808800,87700.000000 --121.880000,37.430000,17.000000,3469.000000,896.000000,2762.000000,808.000000,3.388400,245800.000000 --118.430000,34.260000,37.000000,1269.000000,348.000000,1835.000000,335.000000,3.258300,147200.000000 --121.890000,37.350000,48.000000,1562.000000,439.000000,1469.000000,424.000000,2.567300,177500.000000 --121.330000,38.040000,15.000000,2903.000000,440.000000,1325.000000,423.000000,4.517900,145600.000000 --123.730000,39.170000,20.000000,4620.000000,1042.000000,1745.000000,794.000000,2.375000,158800.000000 --118.040000,33.970000,34.000000,1759.000000,431.000000,1282.000000,391.000000,3.049100,158200.000000 --118.150000,34.190000,48.000000,1854.000000,360.000000,1126.000000,382.000000,3.221600,161600.000000 --118.110000,34.020000,17.000000,9559.000000,1911.000000,5279.000000,1844.000000,5.151500,318900.000000 --121.200000,38.670000,10.000000,3875.000000,668.000000,1632.000000,593.000000,4.690200,171000.000000 --118.390000,34.120000,29.000000,6447.000000,1012.000000,2184.000000,960.000000,8.281600,500001.000000 --118.370000,34.060000,52.000000,2239.000000,423.000000,832.000000,411.000000,5.085800,470000.000000 --118.520000,34.200000,35.000000,2891.000000,594.000000,1757.000000,581.000000,4.357100,199800.000000 --118.370000,33.950000,52.000000,836.000000,175.000000,747.000000,166.000000,4.125000,174000.000000 --121.340000,37.980000,8.000000,2628.000000,428.000000,1158.000000,393.000000,5.300200,191700.000000 --119.320000,36.190000,11.000000,3136.000000,620.000000,2013.000000,583.000000,3.335000,69700.000000 --117.840000,34.040000,4.000000,9959.000000,1544.000000,4904.000000,1429.000000,6.975400,402500.000000 --118.230000,34.150000,19.000000,2294.000000,716.000000,1686.000000,680.000000,3.028800,258300.000000 --115.520000,32.980000,21.000000,1302.000000,327.000000,1244.000000,316.000000,2.205400,66400.000000 --117.790000,34.070000,34.000000,975.000000,192.000000,870.000000,183.000000,3.793300,116100.000000 --115.590000,32.960000,17.000000,841.000000,146.000000,473.000000,154.000000,3.197900,113500.000000 --121.830000,37.300000,17.000000,1299.000000,211.000000,825.000000,217.000000,4.500000,235800.000000 --117.270000,34.500000,8.000000,3567.000000,543.000000,1133.000000,419.000000,5.373300,302600.000000 --118.040000,33.930000,35.000000,1805.000000,387.000000,1505.000000,366.000000,4.166700,151900.000000 --122.090000,37.950000,32.000000,1339.000000,209.000000,601.000000,209.000000,6.026500,247900.000000 --122.230000,37.750000,50.000000,1542.000000,289.000000,654.000000,268.000000,3.963200,240000.000000 --117.880000,33.720000,38.000000,1421.000000,300.000000,1236.000000,263.000000,3.984400,165300.000000 --122.420000,37.750000,52.000000,2164.000000,533.000000,1122.000000,469.000000,3.263200,306000.000000 --118.050000,34.140000,39.000000,2125.000000,295.000000,862.000000,303.000000,8.972800,500001.000000 --118.060000,34.110000,36.000000,2178.000000,485.000000,914.000000,412.000000,2.765600,239500.000000 --118.150000,33.870000,33.000000,2373.000000,552.000000,1673.000000,571.000000,3.068500,181800.000000 --117.250000,32.760000,38.000000,2331.000000,493.000000,836.000000,433.000000,4.912500,452600.000000 --117.860000,33.740000,34.000000,2254.000000,630.000000,2984.000000,625.000000,2.500000,162500.000000 --122.530000,39.090000,11.000000,1264.000000,271.000000,370.000000,177.000000,1.300000,69700.000000 --117.970000,33.680000,23.000000,1722.000000,316.000000,865.000000,309.000000,4.645200,273800.000000 --118.060000,34.030000,36.000000,21.000000,7.000000,21.000000,9.000000,2.375000,175000.000000 --117.820000,33.740000,25.000000,2720.000000,680.000000,1559.000000,631.000000,3.095800,137800.000000 --121.800000,37.700000,22.000000,5533.000000,943.000000,2474.000000,910.000000,4.736100,216800.000000 --121.730000,36.850000,22.000000,1304.000000,278.000000,887.000000,227.000000,3.660700,206300.000000 --118.320000,33.860000,34.000000,495.000000,90.000000,269.000000,93.000000,6.439100,252300.000000 --118.280000,34.040000,24.000000,1283.000000,545.000000,1932.000000,516.000000,1.296900,160200.000000 --117.030000,32.950000,19.000000,4500.000000,815.000000,2456.000000,782.000000,4.503200,168900.000000 --117.870000,33.830000,27.000000,2287.000000,353.000000,1140.000000,351.000000,5.616300,231000.000000 --122.090000,37.650000,35.000000,1130.000000,192.000000,543.000000,184.000000,4.389700,190600.000000 --117.600000,34.030000,16.000000,1499.000000,232.000000,918.000000,239.000000,5.567700,175400.000000 --121.460000,38.610000,43.000000,1111.000000,269.000000,613.000000,290.000000,1.291700,66300.000000 --117.960000,34.530000,10.000000,2907.000000,559.000000,1681.000000,531.000000,3.859400,141000.000000 --116.460000,33.790000,10.000000,6960.000000,1487.000000,1130.000000,661.000000,2.141100,136400.000000 --118.540000,34.370000,27.000000,2051.000000,301.000000,917.000000,287.000000,7.605900,323700.000000 --122.160000,37.450000,52.000000,1135.000000,219.000000,441.000000,200.000000,7.541800,492000.000000 --117.710000,34.060000,27.000000,2127.000000,628.000000,1970.000000,534.000000,1.472200,91300.000000 --118.290000,34.030000,42.000000,907.000000,378.000000,822.000000,288.000000,1.287500,179200.000000 --118.180000,33.900000,32.000000,1452.000000,365.000000,1888.000000,366.000000,3.546100,146400.000000 --121.360000,38.690000,13.000000,6850.000000,1400.000000,4251.000000,1421.000000,3.698900,93300.000000 --122.370000,40.520000,18.000000,4547.000000,774.000000,2269.000000,766.000000,3.789600,98100.000000 --122.410000,37.710000,49.000000,1852.000000,429.000000,1615.000000,447.000000,3.495000,217800.000000 --118.530000,34.240000,24.000000,2718.000000,719.000000,3018.000000,644.000000,2.907600,275300.000000 --121.880000,37.670000,16.000000,4070.000000,624.000000,1543.000000,577.000000,6.521400,311500.000000 --120.090000,37.000000,11.000000,3761.000000,675.000000,2374.000000,673.000000,3.459800,74600.000000 --117.100000,32.750000,17.000000,871.000000,379.000000,955.000000,351.000000,1.437500,96400.000000 --119.640000,36.350000,30.000000,1765.000000,310.000000,746.000000,298.000000,2.812500,70200.000000 --118.260000,33.970000,47.000000,1504.000000,374.000000,1168.000000,358.000000,1.462500,94200.000000 --117.600000,33.910000,15.000000,1864.000000,271.000000,1006.000000,288.000000,7.237900,251000.000000 --122.200000,39.510000,37.000000,2358.000000,413.000000,1060.000000,424.000000,2.833300,69700.000000 --122.120000,37.690000,10.000000,2227.000000,560.000000,1140.000000,472.000000,2.397300,167300.000000 --118.200000,33.970000,43.000000,825.000000,212.000000,820.000000,184.000000,1.889700,174300.000000 --121.280000,38.140000,38.000000,2803.000000,500.000000,1223.000000,509.000000,4.119000,128800.000000 --119.030000,34.230000,16.000000,5323.000000,795.000000,2493.000000,779.000000,5.676200,271300.000000 --121.700000,38.100000,19.000000,4896.000000,1083.000000,2150.000000,905.000000,3.339800,89700.000000 --117.960000,33.830000,30.000000,2838.000000,649.000000,1758.000000,593.000000,3.383100,197400.000000 --120.700000,36.990000,32.000000,320.000000,73.000000,222.000000,78.000000,2.927100,87500.000000 --122.390000,37.740000,45.000000,1462.000000,308.000000,924.000000,302.000000,2.176700,185300.000000 --121.760000,38.410000,19.000000,686.000000,107.000000,348.000000,109.000000,3.930600,93800.000000 --121.350000,38.660000,8.000000,3322.000000,805.000000,1694.000000,774.000000,2.701100,130700.000000 --118.670000,34.280000,21.000000,4059.000000,598.000000,2133.000000,634.000000,5.694900,235300.000000 --118.310000,34.100000,33.000000,766.000000,347.000000,918.000000,305.000000,1.705000,350000.000000 --117.690000,34.040000,5.000000,4459.000000,896.000000,2028.000000,881.000000,4.009600,182600.000000 --119.600000,36.580000,28.000000,1452.000000,300.000000,919.000000,308.000000,2.828700,73100.000000 --121.760000,36.750000,21.000000,1141.000000,257.000000,671.000000,195.000000,3.842400,155700.000000 --117.940000,33.860000,35.000000,1235.000000,227.000000,875.000000,220.000000,4.696400,183100.000000 --120.860000,37.770000,28.000000,1208.000000,232.000000,535.000000,232.000000,2.352300,94700.000000 --121.840000,37.350000,22.000000,2914.000000,768.000000,2962.000000,762.000000,2.203100,164000.000000 --121.070000,38.900000,52.000000,1280.000000,281.000000,523.000000,266.000000,1.737500,122200.000000 --118.450000,33.960000,24.000000,3097.000000,791.000000,1075.000000,639.000000,5.723000,500001.000000 --118.290000,34.180000,52.000000,1602.000000,265.000000,667.000000,251.000000,5.049000,323500.000000 --119.970000,36.440000,18.000000,1128.000000,237.000000,772.000000,220.000000,2.177100,39200.000000 --121.930000,38.310000,25.000000,185.000000,32.000000,85.000000,32.000000,4.875000,250000.000000 --118.200000,33.930000,38.000000,1626.000000,307.000000,1280.000000,295.000000,3.531300,146500.000000 --122.180000,38.230000,21.000000,2475.000000,341.000000,812.000000,308.000000,7.258900,320400.000000 --118.010000,34.140000,20.000000,3350.000000,831.000000,1816.000000,744.000000,2.835200,161700.000000 --117.870000,34.130000,32.000000,1741.000000,373.000000,872.000000,333.000000,3.421900,194500.000000 --118.530000,34.270000,32.000000,1931.000000,298.000000,948.000000,314.000000,5.384700,329200.000000 --117.140000,32.800000,33.000000,2670.000000,435.000000,1256.000000,431.000000,3.941700,179800.000000 --118.070000,34.170000,34.000000,4062.000000,597.000000,1525.000000,566.000000,7.858800,454800.000000 --117.580000,33.880000,16.000000,1739.000000,478.000000,1235.000000,420.000000,2.296900,116100.000000 --120.060000,36.970000,35.000000,1859.000000,428.000000,1208.000000,399.000000,1.404400,61700.000000 --121.830000,38.430000,24.000000,1307.000000,314.000000,917.000000,291.000000,2.224400,98100.000000 --122.480000,37.720000,45.000000,1405.000000,338.000000,733.000000,342.000000,4.111600,187500.000000 --116.910000,32.750000,5.000000,8710.000000,1614.000000,4372.000000,1527.000000,4.781300,240900.000000 --119.770000,36.740000,20.000000,1855.000000,519.000000,1091.000000,443.000000,1.554700,93900.000000 --119.460000,36.910000,12.000000,2980.000000,495.000000,1184.000000,429.000000,3.914100,123900.000000 --118.180000,33.910000,41.000000,1260.000000,299.000000,1535.000000,322.000000,3.013400,128100.000000 --118.390000,34.060000,43.000000,1879.000000,397.000000,873.000000,382.000000,3.815800,500001.000000 --118.220000,33.990000,4.000000,1849.000000,577.000000,1529.000000,418.000000,2.770800,186300.000000 --116.990000,33.200000,17.000000,2980.000000,539.000000,1531.000000,505.000000,3.155300,250000.000000 --117.160000,32.730000,52.000000,1863.000000,559.000000,906.000000,493.000000,1.920300,195800.000000 --117.380000,33.980000,10.000000,642.000000,176.000000,462.000000,186.000000,2.152800,162500.000000 --122.440000,38.340000,25.000000,3106.000000,715.000000,1262.000000,665.000000,1.948700,233500.000000 --117.880000,33.920000,13.000000,3292.000000,727.000000,1565.000000,698.000000,5.457000,308800.000000 --119.710000,34.440000,41.000000,2220.000000,367.000000,927.000000,355.000000,5.318400,376000.000000 --119.060000,34.370000,32.000000,3885.000000,759.000000,2504.000000,736.000000,3.645300,201700.000000 --121.910000,37.310000,16.000000,2962.000000,898.000000,1555.000000,795.000000,2.580400,216300.000000 --121.560000,37.000000,20.000000,3976.000000,953.000000,3866.000000,950.000000,2.538700,160100.000000 --122.490000,38.000000,26.000000,48.000000,8.000000,19.000000,8.000000,7.719700,400000.000000 --118.330000,34.020000,45.000000,1667.000000,399.000000,928.000000,375.000000,1.878300,118200.000000 --122.260000,37.510000,29.000000,3703.000000,1075.000000,1611.000000,1025.000000,2.707500,323800.000000 --121.990000,37.830000,16.000000,2939.000000,380.000000,1177.000000,396.000000,8.083900,372000.000000 --121.420000,37.740000,35.000000,796.000000,132.000000,313.000000,152.000000,3.150000,153200.000000 --121.390000,38.610000,35.000000,2024.000000,359.000000,786.000000,364.000000,2.463200,156900.000000 --122.420000,37.620000,36.000000,1017.000000,165.000000,407.000000,159.000000,4.800000,306800.000000 --121.440000,38.480000,12.000000,4929.000000,1010.000000,2621.000000,870.000000,2.726200,109800.000000 --117.480000,33.980000,20.000000,2451.000000,475.000000,1785.000000,456.000000,3.396600,115000.000000 --122.050000,37.380000,24.000000,2424.000000,501.000000,1367.000000,507.000000,4.072000,364200.000000 --123.920000,41.540000,22.000000,2920.000000,636.000000,1382.000000,499.000000,2.020200,71100.000000 --119.010000,35.400000,11.000000,8739.000000,2190.000000,4781.000000,1919.000000,1.710900,44600.000000 --122.330000,37.570000,43.000000,2543.000000,621.000000,1301.000000,606.000000,3.111100,318400.000000 --120.990000,37.610000,39.000000,512.000000,132.000000,443.000000,127.000000,1.285700,60000.000000 --121.960000,37.580000,15.000000,3575.000000,597.000000,1777.000000,559.000000,5.719200,283500.000000 --121.580000,39.160000,33.000000,1897.000000,378.000000,888.000000,385.000000,2.111100,68700.000000 --120.590000,38.530000,15.000000,432.000000,87.000000,208.000000,73.000000,3.612500,100000.000000 --117.580000,33.870000,30.000000,701.000000,131.000000,356.000000,125.000000,3.291700,144300.000000 --121.840000,39.750000,29.000000,4362.000000,1053.000000,2053.000000,1000.000000,1.728400,74500.000000 --121.800000,36.690000,12.000000,3877.000000,914.000000,2274.000000,858.000000,3.423900,194800.000000 --122.220000,37.810000,52.000000,2944.000000,536.000000,1034.000000,521.000000,5.350900,302100.000000 --117.640000,33.450000,26.000000,1528.000000,234.000000,607.000000,218.000000,6.287100,325500.000000 --120.420000,37.980000,18.000000,3059.000000,609.000000,1335.000000,581.000000,2.512900,115900.000000 --118.300000,34.060000,47.000000,1390.000000,872.000000,2860.000000,827.000000,1.468000,137500.000000 --122.250000,37.870000,52.000000,1204.000000,460.000000,2016.000000,477.000000,0.949000,350000.000000 --120.270000,39.350000,11.000000,2520.000000,401.000000,397.000000,165.000000,4.665000,145600.000000 --119.880000,36.930000,12.000000,3174.000000,520.000000,1590.000000,488.000000,4.534700,101200.000000 --122.370000,37.580000,52.000000,2188.000000,361.000000,917.000000,357.000000,4.400000,500000.000000 --117.820000,33.720000,24.000000,3260.000000,458.000000,1383.000000,442.000000,6.598700,272800.000000 --118.220000,33.930000,30.000000,443.000000,170.000000,903.000000,189.000000,2.196400,125000.000000 --120.970000,38.650000,9.000000,3707.000000,602.000000,1601.000000,555.000000,4.071400,300600.000000 --122.060000,37.700000,33.000000,3906.000000,790.000000,1912.000000,770.000000,3.518700,209400.000000 --118.230000,33.920000,32.000000,2698.000000,640.000000,1953.000000,613.000000,1.222200,107200.000000 --117.340000,34.460000,9.000000,5983.000000,1122.000000,3515.000000,1064.000000,3.150500,102000.000000 --119.240000,36.330000,9.000000,3289.000000,621.000000,1866.000000,631.000000,3.159900,95000.000000 --122.180000,37.730000,42.000000,4074.000000,874.000000,2736.000000,780.000000,2.455000,82400.000000 --118.200000,33.820000,43.000000,1758.000000,347.000000,954.000000,312.000000,5.260600,198900.000000 --117.070000,32.810000,15.000000,2000.000000,402.000000,778.000000,369.000000,4.359400,224200.000000 --122.250000,38.020000,16.000000,1803.000000,267.000000,946.000000,266.000000,5.700100,205100.000000 --118.420000,34.310000,19.000000,6755.000000,1443.000000,4205.000000,1395.000000,3.958300,163200.000000 --122.270000,37.850000,52.000000,1966.000000,347.000000,793.000000,331.000000,2.775000,152500.000000 --117.920000,33.650000,28.000000,1087.000000,423.000000,807.000000,425.000000,0.970200,225400.000000 --118.160000,34.130000,36.000000,4003.000000,647.000000,1337.000000,631.000000,7.723000,500001.000000 --122.490000,37.690000,35.000000,2576.000000,443.000000,1273.000000,433.000000,4.739100,272800.000000 --122.480000,38.310000,29.000000,2375.000000,560.000000,1124.000000,502.000000,2.327600,166200.000000 --117.670000,34.020000,16.000000,3042.000000,524.000000,1516.000000,475.000000,4.890600,178500.000000 --117.150000,32.910000,14.000000,1259.000000,238.000000,889.000000,247.000000,4.946400,174800.000000 --118.340000,34.030000,46.000000,2437.000000,502.000000,1151.000000,477.000000,2.444400,134100.000000 --121.540000,38.500000,15.000000,6093.000000,1051.000000,2415.000000,997.000000,4.207500,183600.000000 --118.150000,33.970000,32.000000,1174.000000,373.000000,1758.000000,361.000000,2.426300,158100.000000 --122.540000,38.140000,16.000000,4431.000000,603.000000,1659.000000,630.000000,7.541200,392100.000000 --118.010000,33.880000,19.000000,1434.000000,391.000000,1088.000000,341.000000,3.369000,269600.000000 --117.680000,35.620000,30.000000,2994.000000,741.000000,1481.000000,581.000000,2.145800,52400.000000 --120.640000,35.260000,21.000000,3298.000000,716.000000,1862.000000,687.000000,2.150700,221500.000000 --121.290000,38.100000,14.000000,1551.000000,297.000000,785.000000,281.000000,3.775000,163300.000000 --120.190000,37.530000,25.000000,1470.000000,341.000000,706.000000,283.000000,1.761400,71300.000000 --117.310000,34.100000,28.000000,2899.000000,755.000000,2406.000000,655.000000,1.520800,69500.000000 --118.090000,33.870000,31.000000,3498.000000,728.000000,2098.000000,697.000000,3.983700,246000.000000 --117.990000,34.120000,37.000000,1527.000000,331.000000,1504.000000,324.000000,3.285700,130100.000000 --119.810000,34.470000,26.000000,4382.000000,618.000000,1728.000000,587.000000,7.473400,432200.000000 --116.960000,33.520000,9.000000,2802.000000,471.000000,1155.000000,421.000000,4.125000,392100.000000 --122.310000,37.570000,37.000000,1437.000000,305.000000,979.000000,331.000000,4.000000,273700.000000 --117.390000,33.970000,52.000000,3307.000000,553.000000,1269.000000,529.000000,4.317600,136200.000000 --118.510000,34.190000,38.000000,2182.000000,409.000000,1141.000000,379.000000,4.286500,221100.000000 --117.300000,34.120000,34.000000,1127.000000,275.000000,971.000000,249.000000,2.058300,64800.000000 --120.850000,37.510000,15.000000,1131.000000,285.000000,728.000000,281.000000,1.553100,93100.000000 --121.310000,37.930000,21.000000,1556.000000,314.000000,1140.000000,304.000000,2.466700,81400.000000 --118.160000,34.090000,33.000000,1515.000000,415.000000,1345.000000,346.000000,2.375000,175000.000000 --118.030000,33.840000,30.000000,4781.000000,831.000000,2568.000000,797.000000,5.474600,226400.000000 --119.880000,34.400000,25.000000,2741.000000,623.000000,2272.000000,624.000000,2.264700,216700.000000 --118.570000,34.170000,35.000000,2072.000000,318.000000,908.000000,342.000000,6.092800,327300.000000 --122.110000,37.140000,29.000000,3201.000000,640.000000,1722.000000,570.000000,4.459700,204100.000000 --122.430000,37.760000,52.000000,2332.000000,434.000000,861.000000,406.000000,4.431800,437500.000000 --118.270000,33.960000,38.000000,1126.000000,270.000000,999.000000,265.000000,0.549500,91700.000000 --117.160000,33.760000,11.000000,4934.000000,929.000000,2508.000000,840.000000,2.625000,155400.000000 --122.070000,37.890000,38.000000,2139.000000,343.000000,809.000000,340.000000,5.563600,268800.000000 --117.090000,34.010000,37.000000,106.000000,18.000000,27.000000,12.000000,4.055600,131300.000000 --122.310000,37.920000,12.000000,1895.000000,600.000000,983.000000,519.000000,2.500000,195800.000000 --122.190000,37.730000,44.000000,1066.000000,253.000000,825.000000,244.000000,2.153800,79700.000000 --117.000000,32.730000,17.000000,6050.000000,1143.000000,3424.000000,1131.000000,3.764700,127600.000000 --117.210000,33.190000,21.000000,3765.000000,612.000000,1722.000000,593.000000,4.815200,218500.000000 --118.260000,34.140000,51.000000,902.000000,320.000000,650.000000,334.000000,1.541700,268800.000000 --122.100000,37.360000,35.000000,2063.000000,266.000000,676.000000,252.000000,8.529400,500001.000000 --121.860000,36.600000,33.000000,1409.000000,307.000000,633.000000,290.000000,3.556800,191200.000000 --117.240000,33.110000,10.000000,3487.000000,545.000000,1410.000000,557.000000,6.033600,240300.000000 --116.370000,33.720000,19.000000,6190.000000,1355.000000,2242.000000,1043.000000,3.002100,152300.000000 --121.320000,38.410000,17.000000,4401.000000,655.000000,1970.000000,639.000000,5.823900,247500.000000 --118.700000,34.280000,27.000000,3536.000000,646.000000,1837.000000,580.000000,4.496400,238300.000000 --118.150000,33.950000,31.000000,1053.000000,230.000000,686.000000,211.000000,4.000000,263200.000000 --118.300000,33.730000,47.000000,2852.000000,603.000000,1130.000000,560.000000,4.194000,293900.000000 --118.520000,34.190000,37.000000,1892.000000,347.000000,1039.000000,343.000000,4.829500,212100.000000 --118.220000,33.990000,6.000000,1499.000000,437.000000,1754.000000,447.000000,4.316400,143200.000000 --122.410000,37.650000,32.000000,3436.000000,868.000000,2583.000000,817.000000,3.503900,232400.000000 --122.300000,37.890000,46.000000,1520.000000,402.000000,815.000000,375.000000,2.803600,211600.000000 --121.430000,38.560000,50.000000,1533.000000,288.000000,532.000000,257.000000,2.541700,125900.000000 --117.230000,32.860000,16.000000,1200.000000,468.000000,648.000000,443.000000,3.045000,100000.000000 --117.230000,32.790000,23.000000,2578.000000,665.000000,989.000000,622.000000,3.548400,238000.000000 --117.160000,32.720000,52.000000,788.000000,463.000000,805.000000,391.000000,0.914200,162500.000000 --122.410000,37.660000,34.000000,1075.000000,318.000000,906.000000,294.000000,3.005200,242500.000000 --117.230000,32.730000,36.000000,2052.000000,287.000000,699.000000,265.000000,7.555700,441400.000000 --118.330000,34.000000,47.000000,1671.000000,388.000000,895.000000,317.000000,2.205400,121500.000000 --117.430000,33.550000,8.000000,446.000000,62.000000,188.000000,68.000000,9.435600,465600.000000 --118.360000,34.080000,52.000000,1965.000000,480.000000,794.000000,451.000000,3.282400,304800.000000 --121.090000,38.970000,13.000000,1467.000000,221.000000,688.000000,231.000000,5.253600,191900.000000 --119.450000,35.150000,33.000000,5050.000000,964.000000,2293.000000,919.000000,3.159200,75400.000000 --121.270000,38.640000,22.000000,1597.000000,280.000000,657.000000,273.000000,4.309800,213500.000000 --118.000000,33.900000,35.000000,1758.000000,309.000000,972.000000,338.000000,4.383100,209800.000000 --118.210000,34.050000,45.000000,2146.000000,607.000000,2868.000000,625.000000,2.121000,144000.000000 --122.500000,37.770000,52.000000,2299.000000,441.000000,1252.000000,415.000000,5.056200,336700.000000 --122.310000,37.920000,38.000000,1250.000000,236.000000,631.000000,279.000000,3.724000,220100.000000 --118.300000,34.000000,40.000000,1131.000000,281.000000,859.000000,230.000000,1.180600,134600.000000 --121.840000,38.020000,46.000000,66.000000,22.000000,37.000000,21.000000,0.536000,87500.000000 --117.250000,32.800000,30.000000,2061.000000,631.000000,1007.000000,577.000000,2.581300,253100.000000 --124.140000,40.600000,27.000000,1148.000000,206.000000,521.000000,219.000000,4.025000,128100.000000 --118.180000,34.050000,52.000000,1070.000000,231.000000,925.000000,220.000000,1.825000,133000.000000 --119.780000,36.800000,34.000000,3426.000000,623.000000,1938.000000,647.000000,2.899400,66000.000000 --122.220000,38.080000,37.000000,2811.000000,539.000000,1574.000000,516.000000,3.105300,96700.000000 --118.500000,34.260000,33.000000,2831.000000,510.000000,1340.000000,504.000000,4.831600,237300.000000 --118.450000,34.180000,34.000000,1843.000000,442.000000,861.000000,417.000000,3.687500,246400.000000 --119.790000,36.310000,25.000000,4984.000000,1029.000000,2414.000000,961.000000,2.293700,72300.000000 --117.210000,32.740000,45.000000,3025.000000,583.000000,1980.000000,550.000000,2.298200,87500.000000 --122.080000,40.640000,14.000000,3099.000000,519.000000,1447.000000,494.000000,4.013200,141200.000000 --122.310000,37.520000,24.000000,2328.000000,335.000000,969.000000,354.000000,7.736400,435800.000000 --119.740000,36.760000,36.000000,912.000000,216.000000,842.000000,219.000000,1.476600,52800.000000 --118.280000,34.010000,52.000000,795.000000,308.000000,1118.000000,275.000000,1.217500,131300.000000 --118.270000,34.110000,39.000000,3825.000000,916.000000,1378.000000,746.000000,4.409400,352600.000000 --117.200000,33.160000,13.000000,4503.000000,1137.000000,3094.000000,1091.000000,2.315900,91600.000000 --122.330000,37.530000,25.000000,1729.000000,383.000000,769.000000,352.000000,4.041700,458500.000000 --120.860000,35.400000,21.000000,2787.000000,641.000000,1106.000000,501.000000,2.704300,186200.000000 --119.470000,35.400000,32.000000,2167.000000,421.000000,1301.000000,394.000000,1.971800,69800.000000 --117.270000,34.160000,32.000000,2894.000000,427.000000,1151.000000,446.000000,6.223600,159700.000000 --121.920000,38.020000,8.000000,2750.000000,479.000000,1526.000000,484.000000,5.102000,156500.000000 --121.450000,38.560000,51.000000,1250.000000,235.000000,452.000000,232.000000,2.625000,121200.000000 --117.910000,33.840000,16.000000,919.000000,253.000000,912.000000,249.000000,1.590300,165400.000000 --118.480000,35.610000,17.000000,4002.000000,930.000000,1614.000000,731.000000,1.623600,67300.000000 --118.030000,33.840000,28.000000,3857.000000,857.000000,2328.000000,830.000000,4.015600,196000.000000 --118.320000,34.040000,48.000000,1184.000000,328.000000,953.000000,311.000000,2.352600,156300.000000 --121.300000,38.890000,23.000000,1750.000000,297.000000,1012.000000,315.000000,3.470600,99300.000000 --117.690000,34.070000,34.000000,4055.000000,739.000000,2470.000000,753.000000,3.858600,136000.000000 --118.340000,33.940000,36.000000,2796.000000,1041.000000,4033.000000,944.000000,2.488600,160700.000000 --121.920000,36.620000,52.000000,2584.000000,599.000000,790.000000,444.000000,2.526300,286400.000000 --122.110000,37.410000,27.000000,5110.000000,1599.000000,2764.000000,1482.000000,3.419800,351900.000000 --117.650000,34.100000,44.000000,2808.000000,585.000000,1444.000000,550.000000,2.715900,139300.000000 --121.800000,38.010000,44.000000,3184.000000,581.000000,1399.000000,548.000000,2.723400,110200.000000 --122.660000,38.810000,22.000000,852.000000,176.000000,461.000000,142.000000,3.437500,83300.000000 --122.390000,37.780000,3.000000,3464.000000,1179.000000,1441.000000,919.000000,4.710500,275000.000000 --117.060000,34.870000,14.000000,3348.000000,619.000000,1756.000000,557.000000,3.598700,91400.000000 --121.340000,38.660000,16.000000,3154.000000,860.000000,1837.000000,793.000000,1.980500,92900.000000 --121.920000,36.950000,29.000000,3457.000000,699.000000,1327.000000,563.000000,3.659700,252300.000000 --122.590000,38.040000,25.000000,3412.000000,455.000000,1238.000000,406.000000,8.364600,397300.000000 --118.280000,34.110000,46.000000,1156.000000,203.000000,514.000000,213.000000,4.201900,352100.000000 --121.390000,38.600000,22.000000,5773.000000,1320.000000,2607.000000,1250.000000,2.523800,118800.000000 --122.330000,40.520000,23.000000,2801.000000,507.000000,1318.000000,454.000000,3.508100,116700.000000 --118.200000,34.040000,47.000000,1894.000000,408.000000,1629.000000,379.000000,3.761900,127600.000000 --121.960000,37.000000,20.000000,3847.000000,727.000000,1725.000000,737.000000,3.344700,305200.000000 --117.890000,33.870000,32.000000,1569.000000,422.000000,835.000000,386.000000,3.046500,148900.000000 --117.230000,32.880000,18.000000,5566.000000,1465.000000,6303.000000,1458.000000,1.858000,205000.000000 --122.000000,37.120000,17.000000,4413.000000,672.000000,1674.000000,608.000000,6.977200,383300.000000 --118.400000,34.280000,22.000000,3517.000000,810.000000,3134.000000,847.000000,2.665200,164800.000000 --122.460000,37.760000,52.000000,2236.000000,545.000000,1186.000000,532.000000,3.453100,414300.000000 --121.990000,37.540000,18.000000,3584.000000,715.000000,1673.000000,661.000000,3.944400,240100.000000 --117.230000,32.740000,16.000000,735.000000,139.000000,299.000000,134.000000,4.635400,179200.000000 --121.840000,37.290000,4.000000,2937.000000,648.000000,1780.000000,665.000000,4.385100,160400.000000 --118.150000,34.860000,10.000000,4597.000000,1009.000000,2227.000000,821.000000,2.614900,83500.000000 --118.330000,33.980000,38.000000,3063.000000,796.000000,2153.000000,721.000000,1.847200,149100.000000 --120.680000,35.510000,17.000000,1701.000000,298.000000,941.000000,293.000000,4.321800,209100.000000 --117.950000,33.790000,34.000000,2912.000000,520.000000,1625.000000,501.000000,4.466700,190600.000000 --117.970000,34.050000,33.000000,1452.000000,268.000000,1274.000000,278.000000,3.656300,162700.000000 --119.750000,36.870000,3.000000,13802.000000,2244.000000,5226.000000,1972.000000,5.094100,143700.000000 --122.080000,37.350000,35.000000,1347.000000,207.000000,548.000000,189.000000,7.706800,500001.000000 --122.320000,37.950000,36.000000,1425.000000,245.000000,573.000000,239.000000,4.350000,185000.000000 --122.220000,38.100000,38.000000,931.000000,181.000000,566.000000,207.000000,3.022100,93300.000000 --124.090000,40.550000,24.000000,2978.000000,553.000000,1370.000000,480.000000,2.764400,97300.000000 --121.500000,38.570000,41.000000,1124.000000,344.000000,807.000000,316.000000,1.471200,94600.000000 --118.110000,33.910000,19.000000,3056.000000,759.000000,1561.000000,740.000000,3.136900,196900.000000 --121.230000,37.960000,37.000000,2351.000000,564.000000,1591.000000,549.000000,1.656300,57200.000000 --121.890000,37.280000,35.000000,2418.000000,375.000000,988.000000,374.000000,6.093600,365400.000000 --122.480000,37.650000,39.000000,3348.000000,666.000000,1817.000000,668.000000,4.259300,227400.000000 --118.310000,34.090000,36.000000,2517.000000,842.000000,2446.000000,689.000000,2.152400,187500.000000 --123.020000,38.810000,35.000000,956.000000,213.000000,488.000000,215.000000,3.025000,140600.000000 --120.470000,34.650000,32.000000,2193.000000,430.000000,1074.000000,377.000000,2.333300,130200.000000 --122.100000,37.680000,37.000000,2116.000000,503.000000,1109.000000,448.000000,2.535000,174000.000000 --122.420000,37.790000,52.000000,3364.000000,1100.000000,2112.000000,1045.000000,2.134300,400000.000000 --122.640000,41.630000,19.000000,2722.000000,479.000000,1108.000000,430.000000,3.106200,100000.000000 --118.020000,33.910000,34.000000,2518.000000,429.000000,1309.000000,421.000000,4.786100,210700.000000 --119.020000,35.360000,48.000000,1833.000000,396.000000,947.000000,363.000000,2.282700,70000.000000 --121.330000,38.650000,23.000000,2446.000000,523.000000,1132.000000,513.000000,2.626600,198500.000000 --118.080000,33.950000,32.000000,1962.000000,387.000000,1274.000000,398.000000,4.830400,160600.000000 --118.080000,33.790000,34.000000,2840.000000,395.000000,1127.000000,396.000000,7.614400,376200.000000 --118.230000,33.910000,27.000000,1694.000000,393.000000,1890.000000,373.000000,3.034100,89100.000000 --118.290000,33.750000,37.000000,1319.000000,292.000000,766.000000,285.000000,2.703100,218900.000000 --118.020000,34.130000,34.000000,1966.000000,319.000000,980.000000,297.000000,7.730700,429000.000000 --117.890000,33.600000,36.000000,1496.000000,247.000000,441.000000,203.000000,7.816400,500001.000000 --118.230000,34.650000,17.000000,1827.000000,348.000000,766.000000,335.000000,3.567300,136300.000000 --118.310000,34.020000,45.000000,1423.000000,278.000000,822.000000,276.000000,2.451900,98100.000000 --118.070000,33.800000,34.000000,3486.000000,507.000000,1311.000000,503.000000,7.122100,384500.000000 --118.250000,33.940000,43.000000,1113.000000,378.000000,1305.000000,334.000000,1.143400,91300.000000 --122.440000,37.710000,52.000000,2711.000000,591.000000,1848.000000,524.000000,3.956700,251500.000000 --119.750000,34.500000,26.000000,3563.000000,579.000000,1479.000000,575.000000,5.952200,438400.000000 --117.940000,33.940000,26.000000,1962.000000,540.000000,1236.000000,520.000000,2.215600,145000.000000 --119.230000,34.170000,18.000000,6171.000000,1490.000000,2164.000000,1210.000000,3.687500,500001.000000 --118.110000,34.680000,6.000000,7430.000000,1184.000000,3489.000000,1115.000000,5.326700,140100.000000 --122.470000,37.770000,52.000000,2241.000000,443.000000,1042.000000,377.000000,4.163500,398400.000000 --120.930000,35.760000,11.000000,8997.000000,1698.000000,1825.000000,756.000000,3.230000,154300.000000 --118.140000,34.170000,52.000000,2667.000000,486.000000,1681.000000,504.000000,4.052400,173100.000000 --122.730000,38.460000,14.000000,4042.000000,1298.000000,2323.000000,1158.000000,2.065100,135400.000000 --117.060000,32.760000,37.000000,2356.000000,476.000000,1231.000000,499.000000,2.965000,155700.000000 --120.710000,35.500000,12.000000,3098.000000,453.000000,1433.000000,434.000000,5.250800,292900.000000 --118.310000,34.050000,35.000000,1692.000000,423.000000,1578.000000,406.000000,2.531300,305800.000000 --119.700000,36.750000,11.000000,3626.000000,779.000000,1819.000000,731.000000,2.495600,87500.000000 --121.340000,38.640000,17.000000,2761.000000,501.000000,1128.000000,482.000000,3.756200,139700.000000 --117.910000,34.090000,20.000000,4327.000000,1037.000000,2296.000000,963.000000,3.044100,185400.000000 --119.760000,36.790000,32.000000,2463.000000,468.000000,1261.000000,486.000000,3.328100,75100.000000 --120.660000,35.490000,17.000000,4422.000000,945.000000,2307.000000,885.000000,2.828500,171300.000000 --118.280000,34.080000,42.000000,1618.000000,522.000000,1454.000000,440.000000,3.160700,182000.000000 --122.540000,37.900000,48.000000,2491.000000,460.000000,937.000000,455.000000,4.437500,370000.000000 --117.590000,33.880000,13.000000,3239.000000,849.000000,2751.000000,813.000000,2.611100,107000.000000 --120.470000,34.940000,17.000000,1368.000000,308.000000,642.000000,303.000000,1.863300,109400.000000 --118.250000,33.930000,42.000000,819.000000,233.000000,899.000000,228.000000,1.134600,85400.000000 --121.970000,37.290000,25.000000,4096.000000,743.000000,2027.000000,741.000000,5.329400,300300.000000 --122.010000,36.970000,43.000000,2162.000000,509.000000,1208.000000,464.000000,2.541700,260900.000000 --122.020000,37.600000,32.000000,1295.000000,295.000000,1097.000000,328.000000,3.238600,149600.000000 --118.230000,34.090000,49.000000,1638.000000,456.000000,1500.000000,430.000000,2.692300,150000.000000 --117.170000,34.280000,13.000000,4867.000000,718.000000,780.000000,250.000000,7.199700,253800.000000 --122.330000,37.390000,52.000000,573.000000,102.000000,232.000000,92.000000,6.226300,500001.000000 --117.910000,33.600000,37.000000,2088.000000,510.000000,673.000000,390.000000,5.104800,500001.000000 --117.930000,33.860000,35.000000,931.000000,181.000000,516.000000,174.000000,5.586700,182500.000000 --119.860000,34.420000,23.000000,1450.000000,642.000000,1258.000000,607.000000,1.179000,225000.000000 --118.140000,34.060000,27.000000,5257.000000,1082.000000,3496.000000,1036.000000,3.390600,237200.000000 --119.700000,36.300000,10.000000,956.000000,201.000000,693.000000,220.000000,2.289500,62000.000000 --117.120000,34.100000,40.000000,96.000000,14.000000,46.000000,14.000000,3.270800,162500.000000 --119.630000,34.420000,42.000000,1765.000000,263.000000,753.000000,260.000000,8.560800,500001.000000 diff --git a/05_src/data/slides_data/daily_shelter_overnight_occupancy.csv b/05_src/data/slides_data/daily_shelter_overnight_occupancy.csv deleted file mode 100644 index 8c4b918e3..000000000 --- a/05_src/data/slides_data/daily_shelter_overnight_occupancy.csv +++ /dev/null @@ -1,27080 +0,0 @@ -_id,OCCUPANCY_DATE,ORGANIZATION_ID,ORGANIZATION_NAME,SHELTER_ID,SHELTER_GROUP,LOCATION_ID,LOCATION_NAME,LOCATION_ADDRESS,LOCATION_POSTAL_CODE,LOCATION_CITY,LOCATION_PROVINCE,PROGRAM_ID,PROGRAM_NAME,SECTOR,PROGRAM_MODEL,OVERNIGHT_SERVICE_TYPE,PROGRAM_AREA,SERVICE_USER_COUNT,CAPACITY_TYPE,CAPACITY_ACTUAL_BED,CAPACITY_FUNDING_BED,OCCUPIED_BEDS,UNOCCUPIED_BEDS,UNAVAILABLE_BEDS,CAPACITY_ACTUAL_ROOM,CAPACITY_FUNDING_ROOM,OCCUPIED_ROOMS,UNOCCUPIED_ROOMS,UNAVAILABLE_ROOMS,OCCUPANCY_RATE_BEDS,OCCUPANCY_RATE_ROOMS -2299795,2022-01-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,48.0,55.0,48.0,0.0,7.0,,100.0 -2299796,2022-01-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,15.0,9.0,0.0,6.0,,100.0 -2299797,2022-01-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,18.0,29.0,18.0,0.0,11.0,,100.0 -2299798,2022-01-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2299799,2022-01-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,294,Room Based Capacity,,,,,,107.0,113.0,107.0,0.0,6.0,,100.0 -2299800,2022-01-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,336,Room Based Capacity,,,,,,106.0,107.0,106.0,0.0,1.0,,100.0 -2299801,2022-01-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2299802,2022-01-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2299803,2022-01-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2299804,2022-01-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,33.0,32.0,0.0,1.0,,,,,,100.0, -2299805,2022-01-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2299806,2022-01-01,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2299807,2022-01-01,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2299808,2022-01-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2299809,2022-01-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,75.0,77.0,74.0,1.0,2.0,,98.67 -2299810,2022-01-01,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2299811,2022-01-01,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,122,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2299812,2022-01-01,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2299813,2022-01-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2299814,2022-01-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2299815,2022-01-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,113,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2299816,2022-01-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,6,Room Based Capacity,,,,,,6.0,10.0,6.0,0.0,4.0,,100.0 -2299817,2022-01-01,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2299818,2022-01-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2299819,2022-01-01,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,67.0,51.0,59.0,8.0,0.0,,88.06 -2299820,2022-01-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2299821,2022-01-01,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,32.0,37.0,32.0,0.0,5.0,,100.0 -2299822,2022-01-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,71.0,82.0,61.0,10.0,11.0,,85.92 -2299823,2022-01-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,26.0,30.0,13.0,13.0,4.0,,50.0 -2299824,2022-01-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,48,Room Based Capacity,,,,,,53.0,30.0,41.0,12.0,0.0,,77.36 -2299825,2022-01-01,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2299826,2022-01-01,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,75,Bed Based Capacity,78.0,80.0,75.0,3.0,2.0,,,,,,96.15, -2299827,2022-01-01,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2299828,2022-01-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,51.0,44.0,6.0,1.0,,,,,,88.0, -2299829,2022-01-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,75.0,81.0,71.0,4.0,6.0,,,,,,94.67, -2299830,2022-01-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,56.0,72.0,54.0,2.0,16.0,,,,,,96.43, -2299831,2022-01-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2299832,2022-01-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,15.0,8.0,1.0,6.0,,,,,,88.89, -2299833,2022-01-01,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2299834,2022-01-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2299835,2022-01-01,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,65.0,71.0,60.0,5.0,6.0,,92.31 -2299836,2022-01-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2299837,2022-01-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,73.0,74.0,70.0,3.0,1.0,,,,,,95.89, -2299838,2022-01-01,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2299839,2022-01-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2299840,2022-01-01,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2299841,2022-01-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,53.0,28.0,0.0,25.0,,,,,,100.0, -2299842,2022-01-01,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2299843,2022-01-01,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2299844,2022-01-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2299845,2022-01-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,231.0,245.0,226.0,5.0,14.0,,97.84 -2299846,2022-01-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2299847,2022-01-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2299848,2022-01-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2299849,2022-01-01,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2299850,2022-01-01,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,50.0,50.0,42.0,8.0,0.0,,,,,,84.0, -2299851,2022-01-01,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2299852,2022-01-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,37.0,41.0,37.0,0.0,4.0,,100.0 -2299853,2022-01-01,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2299854,2022-01-01,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2299855,2022-01-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2299856,2022-01-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2299857,2022-01-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2299858,2022-01-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2299859,2022-01-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2299860,2022-01-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,263.0,262.0,263.0,0.0,0.0,,100.0 -2299861,2022-01-01,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2299862,2022-01-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,5.0,5.0,2.0,3.0,0.0,,,,,,40.0, -2299863,2022-01-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2299864,2022-01-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2299865,2022-01-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2299866,2022-01-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2299867,2022-01-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2299868,2022-01-01,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2299869,2022-01-01,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2299870,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,70.0,48.0,0.0,22.0,,,,,,100.0, -2299871,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2299872,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2299873,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,55.0,48.0,0.0,7.0,,,,,,100.0, -2299874,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,225.0,235.0,225.0,0.0,10.0,,100.0 -2299875,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,283,Room Based Capacity,,,,,,246.0,263.0,246.0,0.0,17.0,,100.0 -2299876,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,174,Bed Based Capacity,174.0,174.0,174.0,0.0,0.0,,,,,,100.0, -2299877,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2299878,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,100.0,90.0,0.0,10.0,,,,,,100.0, -2299879,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2299880,2022-01-01,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,51.0,23.0,2.0,26.0,,,,,,92.0, -2299881,2022-01-01,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2299882,2022-01-01,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2299883,2022-01-01,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2299884,2022-01-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,40.0,27.0,1.0,12.0,,96.43 -2299885,2022-01-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2299886,2022-01-01,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2299887,2022-01-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2299888,2022-01-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2299889,2022-01-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2299890,2022-01-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2299891,2022-01-01,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2299892,2022-01-01,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2299893,2022-01-01,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2299894,2022-01-01,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2299895,2022-01-01,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2299896,2022-01-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,19.0,14.0,0.0,5.0,,,,,,100.0, -2299897,2022-01-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2299898,2022-01-01,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2299899,2022-01-01,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2299900,2022-01-01,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2299901,2022-01-01,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,63.0,75.0,62.0,1.0,12.0,,98.41 -2299902,2022-01-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2299903,2022-01-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,28.0,22.0,1.0,5.0,,95.65 -2299904,2022-01-01,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2299905,2022-01-01,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,72.0,73.0,71.0,1.0,1.0,,98.61 -2299906,2022-01-01,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2299907,2022-01-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2299908,2022-01-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,227,Bed Based Capacity,234.0,234.0,227.0,7.0,0.0,,,,,,97.01, -2299909,2022-01-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2299910,2022-01-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2299911,2022-01-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,39.0,36.0,1.0,2.0,,,,,,97.3, -2299912,2022-01-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2299913,2022-01-01,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2299914,2022-01-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2299915,2022-01-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2299916,2022-01-01,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2299917,2022-01-01,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,37.0,28.0,0.0,9.0,,,,,,100.0, -2299918,2022-01-01,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2299919,2022-01-01,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,27.0,22.0,1.0,4.0,,95.65 -2299920,2022-01-01,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2299921,2022-01-01,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2299922,2022-01-01,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2299923,2022-01-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2299924,2022-01-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2299925,2022-01-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2299926,2022-01-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,20.0,20.0,6.0,14.0,0.0,,,,,,30.0, -2299927,2022-01-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2299928,2022-01-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2299929,2022-01-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2299930,2022-01-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2299931,2022-01-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,48.0,55.0,48.0,0.0,7.0,,100.0 -2299932,2022-01-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,15.0,9.0,0.0,6.0,,100.0 -2299933,2022-01-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,17,Room Based Capacity,,,,,,17.0,29.0,17.0,0.0,12.0,,100.0 -2299934,2022-01-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2299935,2022-01-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,294,Room Based Capacity,,,,,,107.0,113.0,107.0,0.0,6.0,,100.0 -2299936,2022-01-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,336,Room Based Capacity,,,,,,106.0,107.0,106.0,0.0,1.0,,100.0 -2299937,2022-01-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2299938,2022-01-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2299939,2022-01-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2299940,2022-01-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,33.0,32.0,0.0,1.0,,,,,,100.0, -2299941,2022-01-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2299942,2022-01-02,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2299943,2022-01-02,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2299944,2022-01-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2299945,2022-01-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,74.0,77.0,73.0,1.0,3.0,,98.65 -2299946,2022-01-02,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2299947,2022-01-02,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,122,Room Based Capacity,,,,,,65.0,86.0,65.0,0.0,21.0,,100.0 -2299948,2022-01-02,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2299949,2022-01-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2299950,2022-01-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2299951,2022-01-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,111,Room Based Capacity,,,,,,39.0,63.0,39.0,0.0,24.0,,100.0 -2299952,2022-01-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,6,Room Based Capacity,,,,,,6.0,10.0,6.0,0.0,4.0,,100.0 -2299953,2022-01-02,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2299954,2022-01-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2299955,2022-01-02,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,62,Room Based Capacity,,,,,,67.0,51.0,58.0,9.0,0.0,,86.57 -2299956,2022-01-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2299957,2022-01-02,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2299958,2022-01-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,71.0,82.0,61.0,10.0,11.0,,85.92 -2299959,2022-01-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,26.0,30.0,10.0,16.0,4.0,,38.46 -2299960,2022-01-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,48,Room Based Capacity,,,,,,53.0,30.0,41.0,12.0,0.0,,77.36 -2299961,2022-01-02,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2299962,2022-01-02,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,75,Bed Based Capacity,78.0,80.0,75.0,3.0,2.0,,,,,,96.15, -2299963,2022-01-02,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2299964,2022-01-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,51.0,44.0,6.0,1.0,,,,,,88.0, -2299965,2022-01-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,75.0,81.0,71.0,4.0,6.0,,,,,,94.67, -2299966,2022-01-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,56.0,72.0,53.0,3.0,16.0,,,,,,94.64, -2299967,2022-01-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2299968,2022-01-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,15.0,8.0,1.0,6.0,,,,,,88.89, -2299969,2022-01-02,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2299970,2022-01-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2299971,2022-01-02,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,65.0,71.0,60.0,5.0,6.0,,92.31 -2299972,2022-01-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2299973,2022-01-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2299974,2022-01-02,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2299975,2022-01-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2299976,2022-01-02,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2299977,2022-01-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,53.0,29.0,0.0,24.0,,,,,,100.0, -2299978,2022-01-02,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2299979,2022-01-02,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2299980,2022-01-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,46,Bed Based Capacity,48.0,50.0,46.0,2.0,2.0,,,,,,95.83, -2299981,2022-01-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,231.0,245.0,226.0,5.0,14.0,,97.84 -2299982,2022-01-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2299983,2022-01-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2299984,2022-01-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2299985,2022-01-02,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2299986,2022-01-02,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,50.0,50.0,41.0,9.0,0.0,,,,,,82.0, -2299987,2022-01-02,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2299988,2022-01-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,37.0,41.0,37.0,0.0,4.0,,100.0 -2299989,2022-01-02,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2299990,2022-01-02,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2299991,2022-01-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2299992,2022-01-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2299993,2022-01-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2299994,2022-01-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2299995,2022-01-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2299996,2022-01-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,263.0,262.0,263.0,0.0,0.0,,100.0 -2299997,2022-01-02,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2299998,2022-01-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,5.0,5.0,2.0,3.0,0.0,,,,,,40.0, -2299999,2022-01-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300000,2022-01-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300001,2022-01-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300002,2022-01-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300003,2022-01-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2300004,2022-01-02,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300005,2022-01-02,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2300006,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,70.0,48.0,0.0,22.0,,,,,,100.0, -2300007,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300008,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2300009,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,55.0,49.0,0.0,6.0,,,,,,100.0, -2300010,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,225.0,235.0,225.0,0.0,10.0,,100.0 -2300011,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,284,Room Based Capacity,,,,,,247.0,263.0,247.0,0.0,16.0,,100.0 -2300012,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,174,Bed Based Capacity,174.0,174.0,174.0,0.0,0.0,,,,,,100.0, -2300013,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300014,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,100.0,90.0,0.0,10.0,,,,,,100.0, -2300015,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2300016,2022-01-02,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,51.0,29.0,0.0,22.0,,,,,,100.0, -2300017,2022-01-02,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300018,2022-01-02,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300019,2022-01-02,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300020,2022-01-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,40.0,28.0,0.0,12.0,,100.0 -2300021,2022-01-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300022,2022-01-02,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300023,2022-01-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2300024,2022-01-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2300025,2022-01-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300026,2022-01-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300027,2022-01-02,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300028,2022-01-02,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300029,2022-01-02,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2300030,2022-01-02,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300031,2022-01-02,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2300032,2022-01-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,19.0,13.0,0.0,6.0,,,,,,100.0, -2300033,2022-01-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2300034,2022-01-02,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2300035,2022-01-02,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2300036,2022-01-02,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2300037,2022-01-02,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,63.0,75.0,62.0,1.0,12.0,,98.41 -2300038,2022-01-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2300039,2022-01-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,28.0,22.0,1.0,5.0,,95.65 -2300040,2022-01-02,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2300041,2022-01-02,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,72.0,73.0,71.0,1.0,1.0,,98.61 -2300042,2022-01-02,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2300043,2022-01-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2300044,2022-01-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,234.0,234.0,222.0,12.0,0.0,,,,,,94.87, -2300045,2022-01-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2300046,2022-01-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2300047,2022-01-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,39.0,35.0,2.0,2.0,,,,,,94.59, -2300048,2022-01-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,30.0,30.0,28.0,2.0,0.0,,,,,,93.33, -2300049,2022-01-02,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2300050,2022-01-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2300051,2022-01-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2300052,2022-01-02,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2300053,2022-01-02,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,37.0,28.0,0.0,9.0,,,,,,100.0, -2300054,2022-01-02,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2300055,2022-01-02,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,27.0,22.0,1.0,4.0,,95.65 -2300056,2022-01-02,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300057,2022-01-02,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2300058,2022-01-02,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2300059,2022-01-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2300060,2022-01-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2300061,2022-01-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300062,2022-01-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,20.0,20.0,7.0,13.0,0.0,,,,,,35.0, -2300063,2022-01-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300064,2022-01-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2300065,2022-01-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2300066,2022-01-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300067,2022-01-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,48.0,55.0,48.0,0.0,7.0,,100.0 -2300068,2022-01-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,15.0,9.0,0.0,6.0,,100.0 -2300069,2022-01-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,17,Room Based Capacity,,,,,,17.0,29.0,17.0,0.0,12.0,,100.0 -2300070,2022-01-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2300071,2022-01-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,290,Room Based Capacity,,,,,,107.0,113.0,105.0,2.0,6.0,,98.13 -2300072,2022-01-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,336,Room Based Capacity,,,,,,106.0,107.0,106.0,0.0,1.0,,100.0 -2300073,2022-01-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2300074,2022-01-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2300075,2022-01-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2300076,2022-01-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,33.0,32.0,0.0,1.0,,,,,,100.0, -2300077,2022-01-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300078,2022-01-03,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2300079,2022-01-03,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2300080,2022-01-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,25,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2300081,2022-01-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,74.0,77.0,73.0,1.0,3.0,,98.65 -2300082,2022-01-03,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2300083,2022-01-03,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2300084,2022-01-03,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2300085,2022-01-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,154,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2300086,2022-01-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2300087,2022-01-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,111,Room Based Capacity,,,,,,39.0,63.0,39.0,0.0,24.0,,100.0 -2300088,2022-01-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,6,Room Based Capacity,,,,,,6.0,10.0,6.0,0.0,4.0,,100.0 -2300089,2022-01-03,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2300090,2022-01-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2300091,2022-01-03,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,62,Room Based Capacity,,,,,,67.0,51.0,58.0,9.0,0.0,,86.57 -2300092,2022-01-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300093,2022-01-03,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2300094,2022-01-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,71.0,82.0,61.0,10.0,11.0,,85.92 -2300095,2022-01-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,8,Room Based Capacity,,,,,,26.0,30.0,8.0,18.0,4.0,,30.77 -2300096,2022-01-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,56,Room Based Capacity,,,,,,54.0,30.0,49.0,5.0,0.0,,90.74 -2300097,2022-01-03,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2300098,2022-01-03,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,75,Bed Based Capacity,78.0,80.0,75.0,3.0,2.0,,,,,,96.15, -2300099,2022-01-03,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2300100,2022-01-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,50.0,51.0,43.0,7.0,1.0,,,,,,86.0, -2300101,2022-01-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,75.0,81.0,71.0,4.0,6.0,,,,,,94.67, -2300102,2022-01-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,56.0,72.0,55.0,1.0,16.0,,,,,,98.21, -2300103,2022-01-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2300104,2022-01-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,15.0,8.0,1.0,6.0,,,,,,88.89, -2300105,2022-01-03,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2300106,2022-01-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,10,Bed Based Capacity,15.0,15.0,10.0,5.0,0.0,,,,,,66.67, -2300107,2022-01-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2300108,2022-01-03,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,65.0,71.0,60.0,5.0,6.0,,92.31 -2300109,2022-01-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2300110,2022-01-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2300111,2022-01-03,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2300112,2022-01-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2300113,2022-01-03,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2300114,2022-01-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,53.0,32.0,0.0,21.0,,,,,,100.0, -2300115,2022-01-03,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300116,2022-01-03,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2300117,2022-01-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2300118,2022-01-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,231.0,245.0,226.0,5.0,14.0,,97.84 -2300119,2022-01-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2300120,2022-01-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2300121,2022-01-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2300122,2022-01-03,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2300123,2022-01-03,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,50.0,50.0,41.0,9.0,0.0,,,,,,82.0, -2300124,2022-01-03,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2300125,2022-01-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,37.0,41.0,36.0,1.0,4.0,,97.3 -2300126,2022-01-03,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300127,2022-01-03,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2300128,2022-01-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2300129,2022-01-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300130,2022-01-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2300131,2022-01-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300132,2022-01-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2300133,2022-01-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,262.0,262.0,262.0,0.0,0.0,,100.0 -2300134,2022-01-03,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2300135,2022-01-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,5.0,5.0,2.0,3.0,0.0,,,,,,40.0, -2300136,2022-01-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300137,2022-01-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300138,2022-01-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300139,2022-01-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300140,2022-01-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2300141,2022-01-03,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300142,2022-01-03,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2300143,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,60.0,70.0,53.0,7.0,10.0,,,,,,88.33, -2300144,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300145,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2300146,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,55.0,50.0,0.0,5.0,,,,,,100.0, -2300147,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,226.0,235.0,226.0,0.0,9.0,,100.0 -2300148,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,284,Room Based Capacity,,,,,,247.0,263.0,247.0,0.0,16.0,,100.0 -2300149,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,26,Bed Based Capacity,50.0,50.0,26.0,24.0,0.0,,,,,,52.0, -2300150,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,28,Bed Based Capacity,30.0,66.0,28.0,2.0,36.0,,,,,,93.33, -2300151,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,173,Bed Based Capacity,174.0,174.0,173.0,1.0,0.0,,,,,,99.43, -2300152,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300153,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,100.0,90.0,0.0,10.0,,,,,,100.0, -2300154,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,35.0,34.0,0.0,1.0,,,,,,100.0, -2300155,2022-01-03,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,51.0,29.0,0.0,22.0,,,,,,100.0, -2300156,2022-01-03,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300157,2022-01-03,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300158,2022-01-03,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300159,2022-01-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,29.0,40.0,28.0,1.0,11.0,,96.55 -2300160,2022-01-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300161,2022-01-03,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300162,2022-01-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,44.0,44.0,35.0,9.0,0.0,,,,,,79.55, -2300163,2022-01-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2300164,2022-01-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300165,2022-01-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300166,2022-01-03,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300167,2022-01-03,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300168,2022-01-03,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2300169,2022-01-03,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300170,2022-01-03,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2300171,2022-01-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,19.0,12.0,1.0,6.0,,,,,,92.31, -2300172,2022-01-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2300173,2022-01-03,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2300174,2022-01-03,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2300175,2022-01-03,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2300176,2022-01-03,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,63.0,75.0,62.0,1.0,12.0,,98.41 -2300177,2022-01-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2300178,2022-01-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,28.0,22.0,1.0,5.0,,95.65 -2300179,2022-01-03,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2300180,2022-01-03,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,73.0,73.0,71.0,2.0,0.0,,97.26 -2300181,2022-01-03,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2300182,2022-01-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2300183,2022-01-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,220,Bed Based Capacity,234.0,234.0,220.0,14.0,0.0,,,,,,94.02, -2300184,2022-01-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2300185,2022-01-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2300186,2022-01-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,39.0,35.0,2.0,2.0,,,,,,94.59, -2300187,2022-01-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,30.0,30.0,28.0,2.0,0.0,,,,,,93.33, -2300188,2022-01-03,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2300189,2022-01-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2300190,2022-01-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2300191,2022-01-03,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2300192,2022-01-03,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2300193,2022-01-03,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2300194,2022-01-03,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,27.0,22.0,1.0,4.0,,95.65 -2300195,2022-01-03,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300196,2022-01-03,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2300197,2022-01-03,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2300198,2022-01-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2300199,2022-01-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2300200,2022-01-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300201,2022-01-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,20.0,20.0,7.0,13.0,0.0,,,,,,35.0, -2300202,2022-01-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300203,2022-01-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2300204,2022-01-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2300205,2022-01-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300206,2022-01-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,48.0,55.0,48.0,0.0,7.0,,100.0 -2300207,2022-01-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,10.0,15.0,9.0,1.0,5.0,,90.0 -2300208,2022-01-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,17.0,29.0,16.0,1.0,12.0,,94.12 -2300209,2022-01-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2300210,2022-01-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,288,Room Based Capacity,,,,,,105.0,113.0,104.0,1.0,8.0,,99.05 -2300211,2022-01-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,336,Room Based Capacity,,,,,,106.0,107.0,106.0,0.0,1.0,,100.0 -2300212,2022-01-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2300213,2022-01-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2300214,2022-01-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2300215,2022-01-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,33.0,32.0,0.0,1.0,,,,,,100.0, -2300216,2022-01-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300217,2022-01-04,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2300218,2022-01-04,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2300219,2022-01-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2300220,2022-01-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2300221,2022-01-04,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2300222,2022-01-04,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2300223,2022-01-04,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2300224,2022-01-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2300225,2022-01-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2300226,2022-01-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,111,Room Based Capacity,,,,,,39.0,63.0,39.0,0.0,24.0,,100.0 -2300227,2022-01-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2300228,2022-01-04,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2300229,2022-01-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2300230,2022-01-04,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,67.0,51.0,59.0,8.0,0.0,,88.06 -2300231,2022-01-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300232,2022-01-04,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2300233,2022-01-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,71.0,82.0,60.0,11.0,11.0,,84.51 -2300234,2022-01-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,27.0,30.0,10.0,17.0,3.0,,37.04 -2300235,2022-01-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,53,Room Based Capacity,,,,,,54.0,30.0,47.0,7.0,0.0,,87.04 -2300236,2022-01-04,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2300237,2022-01-04,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,76,Bed Based Capacity,79.0,80.0,76.0,3.0,1.0,,,,,,96.2, -2300238,2022-01-04,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2300239,2022-01-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,50.0,51.0,43.0,7.0,1.0,,,,,,86.0, -2300240,2022-01-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,75.0,81.0,70.0,5.0,6.0,,,,,,93.33, -2300241,2022-01-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,56.0,72.0,54.0,2.0,16.0,,,,,,96.43, -2300242,2022-01-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2300243,2022-01-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,15.0,8.0,1.0,6.0,,,,,,88.89, -2300244,2022-01-04,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2300245,2022-01-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,10,Bed Based Capacity,10.0,15.0,10.0,0.0,5.0,,,,,,100.0, -2300246,2022-01-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2300247,2022-01-04,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,65.0,71.0,59.0,6.0,6.0,,90.77 -2300248,2022-01-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2300249,2022-01-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2300250,2022-01-04,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2300251,2022-01-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2300252,2022-01-04,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2300253,2022-01-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,32.0,53.0,31.0,1.0,21.0,,,,,,96.88, -2300254,2022-01-04,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300255,2022-01-04,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2300256,2022-01-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2300257,2022-01-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,231.0,245.0,224.0,7.0,14.0,,96.97 -2300258,2022-01-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2300259,2022-01-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2300260,2022-01-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2300261,2022-01-04,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2300262,2022-01-04,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2300263,2022-01-04,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2300264,2022-01-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2300265,2022-01-04,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300266,2022-01-04,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2300267,2022-01-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2300268,2022-01-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300269,2022-01-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2300270,2022-01-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300271,2022-01-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2300272,2022-01-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,263.0,262.0,263.0,0.0,0.0,,100.0 -2300273,2022-01-04,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2300274,2022-01-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,5.0,5.0,2.0,3.0,0.0,,,,,,40.0, -2300275,2022-01-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300276,2022-01-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2300277,2022-01-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300278,2022-01-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300279,2022-01-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2300280,2022-01-04,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300281,2022-01-04,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2300282,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,60.0,70.0,55.0,5.0,10.0,,,,,,91.67, -2300283,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300284,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2300285,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2300286,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,228.0,235.0,228.0,0.0,7.0,,100.0 -2300287,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,284,Room Based Capacity,,,,,,248.0,263.0,247.0,1.0,15.0,,99.6 -2300288,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,2,Bed Based Capacity,3.0,66.0,2.0,1.0,63.0,,,,,,66.67, -2300289,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,174,Bed Based Capacity,174.0,174.0,174.0,0.0,0.0,,,,,,100.0, -2300290,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300291,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,100.0,90.0,0.0,10.0,,,,,,100.0, -2300292,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,35.0,34.0,0.0,1.0,,,,,,100.0, -2300293,2022-01-04,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,51.0,30.0,0.0,21.0,,,,,,100.0, -2300294,2022-01-04,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300295,2022-01-04,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300296,2022-01-04,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300297,2022-01-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,40.0,31.0,0.0,9.0,,100.0 -2300298,2022-01-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300299,2022-01-04,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300300,2022-01-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,44.0,44.0,34.0,10.0,0.0,,,,,,77.27, -2300301,2022-01-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2300302,2022-01-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300303,2022-01-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300304,2022-01-04,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300305,2022-01-04,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300306,2022-01-04,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2300307,2022-01-04,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300308,2022-01-04,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2300309,2022-01-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,19.0,13.0,0.0,6.0,,,,,,100.0, -2300310,2022-01-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2300311,2022-01-04,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2300312,2022-01-04,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2300313,2022-01-04,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2300314,2022-01-04,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,216,Room Based Capacity,,,,,,63.0,75.0,61.0,2.0,12.0,,96.83 -2300315,2022-01-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2300316,2022-01-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,28.0,22.0,1.0,5.0,,95.65 -2300317,2022-01-04,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2300318,2022-01-04,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,73.0,73.0,71.0,2.0,0.0,,97.26 -2300319,2022-01-04,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2300320,2022-01-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,125,Room Based Capacity,,,,,,125.0,131.0,125.0,0.0,6.0,,100.0 -2300321,2022-01-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,219,Bed Based Capacity,234.0,234.0,219.0,15.0,0.0,,,,,,93.59, -2300322,2022-01-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2300323,2022-01-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2300324,2022-01-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,39.0,35.0,2.0,2.0,,,,,,94.59, -2300325,2022-01-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,30.0,30.0,28.0,2.0,0.0,,,,,,93.33, -2300326,2022-01-04,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2300327,2022-01-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2300328,2022-01-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2300329,2022-01-04,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2300330,2022-01-04,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,37.0,24.0,4.0,9.0,,,,,,85.71, -2300331,2022-01-04,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2300332,2022-01-04,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,69,Room Based Capacity,,,,,,23.0,27.0,21.0,2.0,4.0,,91.3 -2300333,2022-01-04,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300334,2022-01-04,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,28.0,28.0,26.0,2.0,0.0,,92.86 -2300335,2022-01-04,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2300336,2022-01-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300337,2022-01-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2300338,2022-01-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300339,2022-01-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,20.0,20.0,6.0,14.0,0.0,,,,,,30.0, -2300340,2022-01-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300341,2022-01-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2300342,2022-01-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2300343,2022-01-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300344,2022-01-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,49.0,55.0,49.0,0.0,6.0,,100.0 -2300345,2022-01-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2300346,2022-01-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,17.0,29.0,16.0,1.0,12.0,,94.12 -2300347,2022-01-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2300348,2022-01-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,97.0,113.0,97.0,0.0,16.0,,100.0 -2300349,2022-01-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,332,Room Based Capacity,,,,,,105.0,107.0,105.0,0.0,2.0,,100.0 -2300350,2022-01-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2300351,2022-01-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2300352,2022-01-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2300353,2022-01-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2300354,2022-01-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300355,2022-01-05,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2300356,2022-01-05,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2300357,2022-01-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2300358,2022-01-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2300359,2022-01-05,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2300360,2022-01-05,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,69.0,86.0,68.0,1.0,17.0,,98.55 -2300361,2022-01-05,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2300362,2022-01-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2300363,2022-01-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2300364,2022-01-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2300365,2022-01-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2300366,2022-01-05,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2300367,2022-01-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2300368,2022-01-05,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,67.0,51.0,59.0,8.0,0.0,,88.06 -2300369,2022-01-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300370,2022-01-05,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,32.0,37.0,32.0,0.0,5.0,,100.0 -2300371,2022-01-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,71.0,82.0,61.0,10.0,11.0,,85.92 -2300372,2022-01-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,27.0,30.0,13.0,14.0,3.0,,48.15 -2300373,2022-01-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,51,Room Based Capacity,,,,,,54.0,30.0,45.0,9.0,0.0,,83.33 -2300374,2022-01-05,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2300375,2022-01-05,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,76,Bed Based Capacity,80.0,80.0,76.0,4.0,0.0,,,,,,95.0, -2300376,2022-01-05,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2300377,2022-01-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,50.0,51.0,43.0,7.0,1.0,,,,,,86.0, -2300378,2022-01-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,75.0,81.0,70.0,5.0,6.0,,,,,,93.33, -2300379,2022-01-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,72.0,48.0,0.0,24.0,,,,,,100.0, -2300380,2022-01-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2300381,2022-01-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,15.0,11.0,0.0,4.0,,,,,,100.0, -2300382,2022-01-05,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2300383,2022-01-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,12,Bed Based Capacity,12.0,15.0,12.0,0.0,3.0,,,,,,100.0, -2300384,2022-01-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2300385,2022-01-05,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,65.0,71.0,59.0,6.0,6.0,,90.77 -2300386,2022-01-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2300387,2022-01-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2300388,2022-01-05,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2300389,2022-01-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2300390,2022-01-05,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2300391,2022-01-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,32.0,53.0,31.0,1.0,21.0,,,,,,96.88, -2300392,2022-01-05,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300393,2022-01-05,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2300394,2022-01-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2300395,2022-01-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,231.0,245.0,223.0,8.0,14.0,,96.54 -2300396,2022-01-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2300397,2022-01-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,88,Room Based Capacity,,,,,,90.0,92.0,88.0,2.0,2.0,,97.78 -2300398,2022-01-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,47.0,52.0,47.0,0.0,5.0,,100.0 -2300399,2022-01-05,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2300400,2022-01-05,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2300401,2022-01-05,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2300402,2022-01-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2300403,2022-01-05,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300404,2022-01-05,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2300405,2022-01-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2300406,2022-01-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300407,2022-01-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2300408,2022-01-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300409,2022-01-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2300410,2022-01-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,262.0,266.0,0.0,0.0,,100.0 -2300411,2022-01-05,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2300412,2022-01-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,5.0,3.0,2.0,0.0,,,,,,60.0, -2300413,2022-01-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300414,2022-01-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2300415,2022-01-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300416,2022-01-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300417,2022-01-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2300418,2022-01-05,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300419,2022-01-05,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2300420,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,60.0,70.0,54.0,6.0,10.0,,,,,,90.0, -2300421,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300422,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,30.0,31.0,28.0,2.0,1.0,,,,,,93.33, -2300423,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2300424,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2300425,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,284,Room Based Capacity,,,,,,247.0,263.0,247.0,0.0,16.0,,100.0 -2300426,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,174,Bed Based Capacity,174.0,174.0,174.0,0.0,0.0,,,,,,100.0, -2300427,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300428,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,100.0,90.0,0.0,10.0,,,,,,100.0, -2300429,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,35.0,34.0,0.0,1.0,,,,,,100.0, -2300430,2022-01-05,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,51.0,34.0,1.0,16.0,,,,,,97.14, -2300431,2022-01-05,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300432,2022-01-05,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300433,2022-01-05,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300434,2022-01-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,32.0,40.0,32.0,0.0,8.0,,100.0 -2300435,2022-01-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2300436,2022-01-05,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300437,2022-01-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,44.0,44.0,35.0,9.0,0.0,,,,,,79.55, -2300438,2022-01-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2300439,2022-01-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300440,2022-01-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300441,2022-01-05,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300442,2022-01-05,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300443,2022-01-05,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2300444,2022-01-05,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300445,2022-01-05,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2300446,2022-01-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,19.0,12.0,0.0,7.0,,,,,,100.0, -2300447,2022-01-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2300448,2022-01-05,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2300449,2022-01-05,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2300450,2022-01-05,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2300451,2022-01-05,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,63.0,75.0,61.0,2.0,12.0,,96.83 -2300452,2022-01-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2300453,2022-01-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2300454,2022-01-05,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,49.0,47.0,1.0,1.0,,,,,,97.92, -2300455,2022-01-05,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,73.0,73.0,71.0,2.0,0.0,,97.26 -2300456,2022-01-05,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2300457,2022-01-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,125,Room Based Capacity,,,,,,125.0,131.0,125.0,0.0,6.0,,100.0 -2300458,2022-01-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,218,Bed Based Capacity,234.0,234.0,218.0,16.0,0.0,,,,,,93.16, -2300459,2022-01-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2300460,2022-01-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2300461,2022-01-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,39.0,35.0,2.0,2.0,,,,,,94.59, -2300462,2022-01-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,30.0,30.0,27.0,3.0,0.0,,,,,,90.0, -2300463,2022-01-05,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2300464,2022-01-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2300465,2022-01-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2300466,2022-01-05,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2300467,2022-01-05,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2300468,2022-01-05,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2300469,2022-01-05,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,23.0,27.0,22.0,1.0,4.0,,95.65 -2300470,2022-01-05,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300471,2022-01-05,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,28.0,28.0,26.0,2.0,0.0,,92.86 -2300472,2022-01-05,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2300473,2022-01-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300474,2022-01-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2300475,2022-01-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2300476,2022-01-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,20.0,20.0,5.0,15.0,0.0,,,,,,25.0, -2300477,2022-01-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300478,2022-01-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2300479,2022-01-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2300480,2022-01-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300481,2022-01-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,48.0,55.0,48.0,0.0,7.0,,100.0 -2300482,2022-01-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2300483,2022-01-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,16.0,29.0,16.0,0.0,13.0,,100.0 -2300484,2022-01-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2300485,2022-01-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,97.0,113.0,97.0,0.0,16.0,,100.0 -2300486,2022-01-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,330,Room Based Capacity,,,,,,105.0,107.0,104.0,1.0,2.0,,99.05 -2300487,2022-01-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2300488,2022-01-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2300489,2022-01-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2300490,2022-01-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2300491,2022-01-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300492,2022-01-06,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2300493,2022-01-06,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2300494,2022-01-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2300495,2022-01-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2300496,2022-01-06,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2300497,2022-01-06,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,71.0,86.0,70.0,1.0,15.0,,98.59 -2300498,2022-01-06,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2300499,2022-01-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2300500,2022-01-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2300501,2022-01-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2300502,2022-01-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2300503,2022-01-06,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2300504,2022-01-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2300505,2022-01-06,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,67.0,51.0,59.0,8.0,0.0,,88.06 -2300506,2022-01-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300507,2022-01-06,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2300508,2022-01-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,71.0,82.0,61.0,10.0,11.0,,85.92 -2300509,2022-01-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,8,Room Based Capacity,,,,,,28.0,30.0,8.0,20.0,2.0,,28.57 -2300510,2022-01-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,55,Room Based Capacity,,,,,,54.0,30.0,49.0,5.0,0.0,,90.74 -2300511,2022-01-06,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2300512,2022-01-06,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,76,Bed Based Capacity,80.0,80.0,76.0,4.0,0.0,,,,,,95.0, -2300513,2022-01-06,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,48.0,50.0,46.0,2.0,2.0,,,,,,95.83, -2300514,2022-01-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,50.0,51.0,43.0,7.0,1.0,,,,,,86.0, -2300515,2022-01-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,75.0,81.0,71.0,4.0,6.0,,,,,,94.67, -2300516,2022-01-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,72.0,49.0,0.0,23.0,,,,,,100.0, -2300517,2022-01-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2300518,2022-01-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,15.0,11.0,0.0,4.0,,,,,,100.0, -2300519,2022-01-06,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2300520,2022-01-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,3,Bed Based Capacity,3.0,15.0,3.0,0.0,12.0,,,,,,100.0, -2300521,2022-01-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2300522,2022-01-06,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,64,Room Based Capacity,,,,,,60.0,71.0,59.0,1.0,11.0,,98.33 -2300523,2022-01-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2300524,2022-01-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2300525,2022-01-06,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2300526,2022-01-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2300527,2022-01-06,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,42.0,40.0,0.0,2.0,,100.0 -2300528,2022-01-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,53.0,33.0,1.0,19.0,,,,,,97.06, -2300529,2022-01-06,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300530,2022-01-06,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2300531,2022-01-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,50.0,47.0,1.0,2.0,,,,,,97.92, -2300532,2022-01-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,231.0,245.0,223.0,8.0,14.0,,96.54 -2300533,2022-01-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2300534,2022-01-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,90.0,92.0,87.0,3.0,2.0,,96.67 -2300535,2022-01-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,47.0,52.0,47.0,0.0,5.0,,100.0 -2300536,2022-01-06,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2300537,2022-01-06,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2300538,2022-01-06,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2300539,2022-01-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2300540,2022-01-06,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300541,2022-01-06,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2300542,2022-01-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2300543,2022-01-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300544,2022-01-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2300545,2022-01-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300546,2022-01-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2300547,2022-01-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,262.0,267.0,0.0,0.0,,100.0 -2300548,2022-01-06,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2300549,2022-01-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,5.0,3.0,2.0,0.0,,,,,,60.0, -2300550,2022-01-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300551,2022-01-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2300552,2022-01-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300553,2022-01-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300554,2022-01-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2300555,2022-01-06,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300556,2022-01-06,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,89.0,94.0,89.0,0.0,5.0,,100.0 -2300557,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,60.0,70.0,56.0,4.0,10.0,,,,,,93.33, -2300558,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300559,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2300560,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2300561,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2300562,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,282,Room Based Capacity,,,,,,247.0,263.0,246.0,1.0,16.0,,99.6 -2300563,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,173,Bed Based Capacity,174.0,174.0,173.0,1.0,0.0,,,,,,99.43, -2300564,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300565,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,100,Bed Based Capacity,100.0,100.0,100.0,0.0,0.0,,,,,,100.0, -2300566,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2300567,2022-01-06,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,48.0,51.0,46.0,2.0,3.0,,,,,,95.83, -2300568,2022-01-06,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300569,2022-01-06,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300570,2022-01-06,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300571,2022-01-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,32.0,40.0,32.0,0.0,8.0,,100.0 -2300572,2022-01-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300573,2022-01-06,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300574,2022-01-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2300575,2022-01-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2300576,2022-01-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300577,2022-01-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300578,2022-01-06,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300579,2022-01-06,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300580,2022-01-06,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2300581,2022-01-06,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300582,2022-01-06,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2300583,2022-01-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,19.0,12.0,0.0,7.0,,,,,,100.0, -2300584,2022-01-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2300585,2022-01-06,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2300586,2022-01-06,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,28.0,25.0,0.0,3.0,,,,,,100.0, -2300587,2022-01-06,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2300588,2022-01-06,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,63.0,75.0,61.0,2.0,12.0,,96.83 -2300589,2022-01-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2300590,2022-01-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2300591,2022-01-06,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,49.0,47.0,1.0,1.0,,,,,,97.92, -2300592,2022-01-06,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2300593,2022-01-06,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,54.0,49.0,0.0,5.0,,,,,,100.0, -2300594,2022-01-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,125,Room Based Capacity,,,,,,125.0,131.0,125.0,0.0,6.0,,100.0 -2300595,2022-01-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,217,Bed Based Capacity,234.0,234.0,217.0,17.0,0.0,,,,,,92.74, -2300596,2022-01-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,36.0,34.0,1.0,1.0,,,,,,97.14, -2300597,2022-01-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2300598,2022-01-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,39.0,35.0,2.0,2.0,,,,,,94.59, -2300599,2022-01-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,30.0,30.0,27.0,3.0,0.0,,,,,,90.0, -2300600,2022-01-06,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2300601,2022-01-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2300602,2022-01-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2300603,2022-01-06,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2300604,2022-01-06,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2300605,2022-01-06,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2300606,2022-01-06,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,23.0,27.0,22.0,1.0,4.0,,95.65 -2300607,2022-01-06,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300608,2022-01-06,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2300609,2022-01-06,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2300610,2022-01-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300611,2022-01-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2300612,2022-01-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300613,2022-01-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,20.0,20.0,5.0,15.0,0.0,,,,,,25.0, -2300614,2022-01-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300615,2022-01-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2300616,2022-01-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2300617,2022-01-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300618,2022-01-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,48.0,55.0,48.0,0.0,7.0,,100.0 -2300619,2022-01-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,11.0,15.0,10.0,1.0,4.0,,90.91 -2300620,2022-01-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,16.0,29.0,16.0,0.0,13.0,,100.0 -2300621,2022-01-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2300622,2022-01-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,96.0,113.0,96.0,0.0,17.0,,100.0 -2300623,2022-01-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,330,Room Based Capacity,,,,,,104.0,107.0,104.0,0.0,3.0,,100.0 -2300624,2022-01-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2300625,2022-01-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2300626,2022-01-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2300627,2022-01-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2300628,2022-01-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300629,2022-01-07,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2300630,2022-01-07,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2300631,2022-01-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2300632,2022-01-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2300633,2022-01-07,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2300634,2022-01-07,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2300635,2022-01-07,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2300636,2022-01-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2300637,2022-01-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2300638,2022-01-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2300639,2022-01-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2300640,2022-01-07,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2300641,2022-01-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2300642,2022-01-07,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,67.0,51.0,59.0,8.0,0.0,,88.06 -2300643,2022-01-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300644,2022-01-07,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2300645,2022-01-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,71.0,82.0,58.0,13.0,11.0,,81.69 -2300646,2022-01-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,12.0,30.0,7.0,5.0,18.0,,58.33 -2300647,2022-01-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,54,Room Based Capacity,,,,,,49.0,30.0,48.0,1.0,0.0,,97.96 -2300648,2022-01-07,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2300649,2022-01-07,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,76,Bed Based Capacity,80.0,80.0,76.0,4.0,0.0,,,,,,95.0, -2300650,2022-01-07,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2300651,2022-01-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,50.0,51.0,43.0,7.0,1.0,,,,,,86.0, -2300652,2022-01-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2300653,2022-01-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,72.0,48.0,0.0,24.0,,,,,,100.0, -2300654,2022-01-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2300655,2022-01-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,15.0,12.0,0.0,3.0,,,,,,100.0, -2300656,2022-01-07,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2300657,2022-01-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,5,Bed Based Capacity,15.0,15.0,5.0,10.0,0.0,,,,,,33.33, -2300658,2022-01-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2300659,2022-01-07,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,61.0,71.0,60.0,1.0,10.0,,98.36 -2300660,2022-01-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2300661,2022-01-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2300662,2022-01-07,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2300663,2022-01-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2300664,2022-01-07,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,42.0,40.0,0.0,2.0,,100.0 -2300665,2022-01-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,53.0,33.0,1.0,19.0,,,,,,97.06, -2300666,2022-01-07,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300667,2022-01-07,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,44.0,41.0,0.0,3.0,,,,,,100.0, -2300668,2022-01-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2300669,2022-01-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,231.0,245.0,223.0,8.0,14.0,,96.54 -2300670,2022-01-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2300671,2022-01-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,90.0,92.0,87.0,3.0,2.0,,96.67 -2300672,2022-01-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2300673,2022-01-07,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2300674,2022-01-07,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2300675,2022-01-07,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2300676,2022-01-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2300677,2022-01-07,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300678,2022-01-07,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2300679,2022-01-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2300680,2022-01-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300681,2022-01-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2300682,2022-01-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300683,2022-01-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2300684,2022-01-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2300685,2022-01-07,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2300686,2022-01-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,5.0,3.0,2.0,0.0,,,,,,60.0, -2300687,2022-01-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300688,2022-01-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2300689,2022-01-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300690,2022-01-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300691,2022-01-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2300692,2022-01-07,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300693,2022-01-07,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,89.0,94.0,89.0,0.0,5.0,,100.0 -2300694,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2300695,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300696,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300697,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2300698,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,228.0,235.0,228.0,0.0,7.0,,100.0 -2300699,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,283,Room Based Capacity,,,,,,247.0,263.0,247.0,0.0,16.0,,100.0 -2300700,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,13,Bed Based Capacity,50.0,50.0,13.0,37.0,0.0,,,,,,26.0, -2300701,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,27,Bed Based Capacity,66.0,66.0,27.0,39.0,0.0,,,,,,40.91, -2300702,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,174,Bed Based Capacity,174.0,174.0,174.0,0.0,0.0,,,,,,100.0, -2300703,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300704,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,99,Bed Based Capacity,99.0,100.0,99.0,0.0,1.0,,,,,,100.0, -2300705,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2300706,2022-01-07,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,48.0,51.0,46.0,2.0,3.0,,,,,,95.83, -2300707,2022-01-07,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300708,2022-01-07,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300709,2022-01-07,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300710,2022-01-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,33.0,40.0,33.0,0.0,7.0,,100.0 -2300711,2022-01-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300712,2022-01-07,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300713,2022-01-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2300714,2022-01-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2300715,2022-01-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300716,2022-01-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300717,2022-01-07,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2300718,2022-01-07,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300719,2022-01-07,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2300720,2022-01-07,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300721,2022-01-07,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2300722,2022-01-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,19.0,12.0,0.0,7.0,,,,,,100.0, -2300723,2022-01-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2300724,2022-01-07,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2300725,2022-01-07,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2300726,2022-01-07,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2300727,2022-01-07,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,63.0,75.0,62.0,1.0,12.0,,98.41 -2300728,2022-01-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2300729,2022-01-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2300730,2022-01-07,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,49.0,47.0,1.0,1.0,,,,,,97.92, -2300731,2022-01-07,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2300732,2022-01-07,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,54.0,49.0,0.0,5.0,,,,,,100.0, -2300733,2022-01-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2300734,2022-01-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,215,Bed Based Capacity,234.0,234.0,215.0,19.0,0.0,,,,,,91.88, -2300735,2022-01-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2300736,2022-01-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2300737,2022-01-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,39.0,34.0,0.0,5.0,,,,,,100.0, -2300738,2022-01-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,30.0,27.0,0.0,3.0,,,,,,100.0, -2300739,2022-01-07,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2300740,2022-01-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2300741,2022-01-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2300742,2022-01-07,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2300743,2022-01-07,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2300744,2022-01-07,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2300745,2022-01-07,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2300746,2022-01-07,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300747,2022-01-07,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2300748,2022-01-07,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2300749,2022-01-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300750,2022-01-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2300751,2022-01-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300752,2022-01-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,20.0,20.0,5.0,15.0,0.0,,,,,,25.0, -2300753,2022-01-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300754,2022-01-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2300755,2022-01-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2300756,2022-01-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300757,2022-01-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,49.0,55.0,49.0,0.0,6.0,,100.0 -2300758,2022-01-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2300759,2022-01-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,16.0,29.0,16.0,0.0,13.0,,100.0 -2300760,2022-01-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2300761,2022-01-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,96.0,113.0,95.0,1.0,17.0,,98.96 -2300762,2022-01-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,327,Room Based Capacity,,,,,,104.0,107.0,104.0,0.0,3.0,,100.0 -2300763,2022-01-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2300764,2022-01-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2300765,2022-01-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2300766,2022-01-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2300767,2022-01-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300768,2022-01-08,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2300769,2022-01-08,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,63.0,65.0,62.0,1.0,2.0,,98.41 -2300770,2022-01-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2300771,2022-01-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2300772,2022-01-08,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2300773,2022-01-08,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2300774,2022-01-08,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2300775,2022-01-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2300776,2022-01-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2300777,2022-01-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2300778,2022-01-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2300779,2022-01-08,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2300780,2022-01-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2300781,2022-01-08,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,64,Room Based Capacity,,,,,,67.0,51.0,60.0,7.0,0.0,,89.55 -2300782,2022-01-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300783,2022-01-08,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2300784,2022-01-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,71.0,82.0,58.0,13.0,11.0,,81.69 -2300785,2022-01-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,12.0,30.0,3.0,9.0,18.0,,25.0 -2300786,2022-01-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,55,Room Based Capacity,,,,,,51.0,30.0,49.0,2.0,0.0,,96.08 -2300787,2022-01-08,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2300788,2022-01-08,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,76,Bed Based Capacity,80.0,80.0,76.0,4.0,0.0,,,,,,95.0, -2300789,2022-01-08,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2300790,2022-01-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,50.0,51.0,43.0,7.0,1.0,,,,,,86.0, -2300791,2022-01-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2300792,2022-01-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,72.0,47.0,1.0,24.0,,,,,,97.92, -2300793,2022-01-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2300794,2022-01-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,15.0,11.0,1.0,3.0,,,,,,91.67, -2300795,2022-01-08,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2300796,2022-01-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,11,Bed Based Capacity,15.0,15.0,11.0,4.0,0.0,,,,,,73.33, -2300797,2022-01-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2300798,2022-01-08,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,61.0,71.0,60.0,1.0,10.0,,98.36 -2300799,2022-01-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2300800,2022-01-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2300801,2022-01-08,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2300802,2022-01-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2300803,2022-01-08,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,42.0,40.0,0.0,2.0,,100.0 -2300804,2022-01-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,53.0,33.0,0.0,20.0,,,,,,100.0, -2300805,2022-01-08,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2300806,2022-01-08,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2300807,2022-01-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2300808,2022-01-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,232.0,245.0,225.0,7.0,13.0,,96.98 -2300809,2022-01-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2300810,2022-01-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,90.0,92.0,87.0,3.0,2.0,,96.67 -2300811,2022-01-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2300812,2022-01-08,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2300813,2022-01-08,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2300814,2022-01-08,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2300815,2022-01-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2300816,2022-01-08,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300817,2022-01-08,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2300818,2022-01-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2300819,2022-01-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300820,2022-01-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2300821,2022-01-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300822,2022-01-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2300823,2022-01-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,267.0,271.0,266.0,1.0,4.0,,99.63 -2300824,2022-01-08,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2300825,2022-01-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300826,2022-01-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300827,2022-01-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2300828,2022-01-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300829,2022-01-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300830,2022-01-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2300831,2022-01-08,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300832,2022-01-08,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,89.0,94.0,89.0,0.0,5.0,,100.0 -2300833,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2300834,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300835,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300836,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2300837,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,228.0,235.0,228.0,0.0,7.0,,100.0 -2300838,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,282,Room Based Capacity,,,,,,246.0,263.0,246.0,0.0,17.0,,100.0 -2300839,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,42,Bed Based Capacity,50.0,50.0,42.0,8.0,0.0,,,,,,84.0, -2300840,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2300841,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,174,Bed Based Capacity,174.0,174.0,174.0,0.0,0.0,,,,,,100.0, -2300842,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300843,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,98,Bed Based Capacity,98.0,100.0,98.0,0.0,2.0,,,,,,100.0, -2300844,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2300845,2022-01-08,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,48.0,51.0,44.0,4.0,3.0,,,,,,91.67, -2300846,2022-01-08,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300847,2022-01-08,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300848,2022-01-08,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300849,2022-01-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,34.0,40.0,34.0,0.0,6.0,,100.0 -2300850,2022-01-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300851,2022-01-08,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300852,2022-01-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2300853,2022-01-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2300854,2022-01-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300855,2022-01-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300856,2022-01-08,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2300857,2022-01-08,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300858,2022-01-08,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2300859,2022-01-08,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300860,2022-01-08,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2300861,2022-01-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,19.0,13.0,0.0,6.0,,,,,,100.0, -2300862,2022-01-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2300863,2022-01-08,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2300864,2022-01-08,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2300865,2022-01-08,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2300866,2022-01-08,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,63.0,75.0,62.0,1.0,12.0,,98.41 -2300867,2022-01-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2300868,2022-01-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2300869,2022-01-08,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,49.0,47.0,1.0,1.0,,,,,,97.92, -2300870,2022-01-08,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2300871,2022-01-08,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2300872,2022-01-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2300873,2022-01-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,212,Bed Based Capacity,234.0,234.0,212.0,22.0,0.0,,,,,,90.6, -2300874,2022-01-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2300875,2022-01-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2300876,2022-01-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,39.0,34.0,0.0,5.0,,,,,,100.0, -2300877,2022-01-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,30.0,27.0,0.0,3.0,,,,,,100.0, -2300878,2022-01-08,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2300879,2022-01-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2300880,2022-01-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2300881,2022-01-08,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2300882,2022-01-08,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2300883,2022-01-08,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2300884,2022-01-08,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2300885,2022-01-08,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300886,2022-01-08,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2300887,2022-01-08,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2300888,2022-01-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300889,2022-01-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2300890,2022-01-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300891,2022-01-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,20.0,20.0,5.0,15.0,0.0,,,,,,25.0, -2300892,2022-01-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300893,2022-01-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2300894,2022-01-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2300895,2022-01-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300896,2022-01-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,49.0,55.0,49.0,0.0,6.0,,100.0 -2300897,2022-01-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2300898,2022-01-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,16.0,29.0,16.0,0.0,13.0,,100.0 -2300899,2022-01-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2300900,2022-01-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,96.0,113.0,95.0,1.0,17.0,,98.96 -2300901,2022-01-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,327,Room Based Capacity,,,,,,104.0,107.0,104.0,0.0,3.0,,100.0 -2300902,2022-01-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2300903,2022-01-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2300904,2022-01-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2300905,2022-01-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2300906,2022-01-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300907,2022-01-09,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2300908,2022-01-09,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2300909,2022-01-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2300910,2022-01-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2300911,2022-01-09,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2300912,2022-01-09,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2300913,2022-01-09,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2300914,2022-01-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2300915,2022-01-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2300916,2022-01-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2300917,2022-01-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2300918,2022-01-09,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2300919,2022-01-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2300920,2022-01-09,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,64,Room Based Capacity,,,,,,67.0,51.0,60.0,7.0,0.0,,89.55 -2300921,2022-01-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300922,2022-01-09,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2300923,2022-01-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,71.0,82.0,58.0,13.0,11.0,,81.69 -2300924,2022-01-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,8.0,30.0,1.0,7.0,22.0,,12.5 -2300925,2022-01-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,54,Room Based Capacity,,,,,,68.0,30.0,48.0,20.0,0.0,,70.59 -2300926,2022-01-09,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2300927,2022-01-09,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,78,Bed Based Capacity,80.0,80.0,78.0,2.0,0.0,,,,,,97.5, -2300928,2022-01-09,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2300929,2022-01-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,51.0,44.0,6.0,1.0,,,,,,88.0, -2300930,2022-01-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2300931,2022-01-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,72.0,48.0,0.0,24.0,,,,,,100.0, -2300932,2022-01-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2300933,2022-01-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,15.0,11.0,1.0,3.0,,,,,,91.67, -2300934,2022-01-09,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,44,Bed Based Capacity,44.0,55.0,44.0,0.0,11.0,,,,,,100.0, -2300935,2022-01-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,11,Bed Based Capacity,15.0,15.0,11.0,4.0,0.0,,,,,,73.33, -2300936,2022-01-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2300937,2022-01-09,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,61.0,71.0,60.0,1.0,10.0,,98.36 -2300938,2022-01-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,4.0,4.0,0.0,0.0,,,,,,100.0, -2300939,2022-01-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2300940,2022-01-09,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2300941,2022-01-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2300942,2022-01-09,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,42.0,40.0,0.0,2.0,,100.0 -2300943,2022-01-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,53.0,33.0,0.0,20.0,,,,,,100.0, -2300944,2022-01-09,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2300945,2022-01-09,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2300946,2022-01-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2300947,2022-01-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,232.0,245.0,225.0,7.0,13.0,,96.98 -2300948,2022-01-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2300949,2022-01-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,90.0,92.0,87.0,3.0,2.0,,96.67 -2300950,2022-01-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2300951,2022-01-09,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2300952,2022-01-09,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2300953,2022-01-09,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2300954,2022-01-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2300955,2022-01-09,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300956,2022-01-09,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2300957,2022-01-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2300958,2022-01-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2300959,2022-01-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2300960,2022-01-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2300961,2022-01-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2300962,2022-01-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2300963,2022-01-09,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,45.0,43.0,2.0,0.0,,,,,,95.56, -2300964,2022-01-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2300965,2022-01-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2300966,2022-01-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2300967,2022-01-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2300968,2022-01-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2300969,2022-01-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2300970,2022-01-09,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300971,2022-01-09,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,89.0,94.0,89.0,0.0,5.0,,100.0 -2300972,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2300973,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2300974,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2300975,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2300976,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,229.0,235.0,229.0,0.0,6.0,,100.0 -2300977,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,280,Room Based Capacity,,,,,,244.0,263.0,244.0,0.0,19.0,,100.0 -2300978,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2300979,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2300980,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,174,Bed Based Capacity,174.0,174.0,174.0,0.0,0.0,,,,,,100.0, -2300981,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2300982,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,98,Bed Based Capacity,98.0,100.0,98.0,0.0,2.0,,,,,,100.0, -2300983,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2300984,2022-01-09,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,51.0,48.0,0.0,3.0,,,,,,100.0, -2300985,2022-01-09,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2300986,2022-01-09,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,68.0,83.0,63.0,5.0,15.0,,,,,,92.65, -2300987,2022-01-09,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2300988,2022-01-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,34.0,40.0,34.0,0.0,6.0,,100.0 -2300989,2022-01-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300990,2022-01-09,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2300991,2022-01-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,44.0,44.0,38.0,6.0,0.0,,,,,,86.36, -2300992,2022-01-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2300993,2022-01-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2300994,2022-01-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2300995,2022-01-09,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2300996,2022-01-09,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2300997,2022-01-09,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2300998,2022-01-09,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2300999,2022-01-09,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2301000,2022-01-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,19.0,14.0,0.0,5.0,,,,,,100.0, -2301001,2022-01-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2301002,2022-01-09,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301003,2022-01-09,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2301004,2022-01-09,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301005,2022-01-09,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,63.0,75.0,62.0,1.0,12.0,,98.41 -2301006,2022-01-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2301007,2022-01-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301008,2022-01-09,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,49.0,47.0,0.0,2.0,,,,,,100.0, -2301009,2022-01-09,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301010,2022-01-09,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2301011,2022-01-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2301012,2022-01-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,211,Bed Based Capacity,234.0,234.0,211.0,23.0,0.0,,,,,,90.17, -2301013,2022-01-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2301014,2022-01-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301015,2022-01-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,39.0,35.0,0.0,4.0,,,,,,100.0, -2301016,2022-01-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,30.0,27.0,0.0,3.0,,,,,,100.0, -2301017,2022-01-09,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301018,2022-01-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2301019,2022-01-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2301020,2022-01-09,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2301021,2022-01-09,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2301022,2022-01-09,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2301023,2022-01-09,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2301024,2022-01-09,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301025,2022-01-09,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2301026,2022-01-09,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2301027,2022-01-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301028,2022-01-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2301029,2022-01-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301030,2022-01-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,20.0,20.0,5.0,15.0,0.0,,,,,,25.0, -2301031,2022-01-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301032,2022-01-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2301033,2022-01-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2301034,2022-01-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301035,2022-01-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,50.0,55.0,50.0,0.0,5.0,,100.0 -2301036,2022-01-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2301037,2022-01-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,29.0,14.0,0.0,15.0,,100.0 -2301038,2022-01-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2301039,2022-01-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,264,Room Based Capacity,,,,,,94.0,113.0,94.0,0.0,19.0,,100.0 -2301040,2022-01-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,332,Room Based Capacity,,,,,,105.0,107.0,105.0,0.0,2.0,,100.0 -2301041,2022-01-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2301042,2022-01-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2301043,2022-01-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2301044,2022-01-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2301045,2022-01-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,15.0,13.0,1.0,1.0,,,,,,92.86, -2301046,2022-01-10,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2301047,2022-01-10,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2301048,2022-01-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2301049,2022-01-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2301050,2022-01-10,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2301051,2022-01-10,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2301052,2022-01-10,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2301053,2022-01-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2301054,2022-01-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2301055,2022-01-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2301056,2022-01-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2301057,2022-01-10,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2301058,2022-01-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2301059,2022-01-10,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,64,Room Based Capacity,,,,,,67.0,51.0,60.0,7.0,0.0,,89.55 -2301060,2022-01-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301061,2022-01-10,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2301062,2022-01-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,71.0,82.0,58.0,13.0,11.0,,81.69 -2301063,2022-01-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,52,Room Based Capacity,,,,,,68.0,30.0,46.0,22.0,0.0,,67.65 -2301064,2022-01-10,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2301065,2022-01-10,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,88.0,88.0,81.0,7.0,0.0,,,,,,92.05, -2301066,2022-01-10,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2301067,2022-01-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2301068,2022-01-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2301069,2022-01-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,72.0,48.0,0.0,24.0,,,,,,100.0, -2301070,2022-01-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2301071,2022-01-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,15.0,12.0,0.0,3.0,,,,,,100.0, -2301072,2022-01-10,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,43,Bed Based Capacity,44.0,55.0,43.0,1.0,11.0,,,,,,97.73, -2301073,2022-01-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,12,Bed Based Capacity,15.0,15.0,12.0,3.0,0.0,,,,,,80.0, -2301074,2022-01-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2301075,2022-01-10,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,63.0,71.0,61.0,2.0,8.0,,96.83 -2301076,2022-01-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2301077,2022-01-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2301078,2022-01-10,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2301079,2022-01-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2301080,2022-01-10,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,42.0,40.0,0.0,2.0,,100.0 -2301081,2022-01-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,53.0,33.0,0.0,20.0,,,,,,100.0, -2301082,2022-01-10,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2301083,2022-01-10,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2301084,2022-01-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2301085,2022-01-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,232.0,245.0,226.0,6.0,13.0,,97.41 -2301086,2022-01-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2301087,2022-01-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,90.0,92.0,87.0,3.0,2.0,,96.67 -2301088,2022-01-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2301089,2022-01-10,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2301090,2022-01-10,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2301091,2022-01-10,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2301092,2022-01-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2301093,2022-01-10,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301094,2022-01-10,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2301095,2022-01-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2301096,2022-01-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301097,2022-01-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,36,Bed Based Capacity,44.0,44.0,36.0,8.0,0.0,,,,,,81.82, -2301098,2022-01-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301099,2022-01-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301100,2022-01-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2301101,2022-01-10,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,45.0,43.0,0.0,2.0,,,,,,100.0, -2301102,2022-01-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301103,2022-01-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2301104,2022-01-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2301105,2022-01-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2301106,2022-01-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301107,2022-01-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2301108,2022-01-10,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2301109,2022-01-10,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,87.0,94.0,87.0,0.0,7.0,,100.0 -2301110,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,58.0,70.0,57.0,1.0,12.0,,,,,,98.28, -2301111,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301112,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301113,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2301114,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,12.0,100.0,12.0,0.0,88.0,,100.0 -2301115,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,228.0,235.0,228.0,0.0,7.0,,100.0 -2301116,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,282,Room Based Capacity,,,,,,246.0,263.0,246.0,0.0,17.0,,100.0 -2301117,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,60.0,60.0,58.0,2.0,0.0,,,,,,96.67, -2301118,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,67,Bed Based Capacity,71.0,71.0,67.0,4.0,0.0,,,,,,94.37, -2301119,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,182,Bed Based Capacity,184.0,184.0,182.0,2.0,0.0,,,,,,98.91, -2301120,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2301121,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,110,Bed Based Capacity,115.0,115.0,110.0,5.0,0.0,,,,,,95.65, -2301122,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,35.0,32.0,0.0,3.0,,,,,,100.0, -2301123,2022-01-10,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,51.0,48.0,0.0,3.0,,,,,,100.0, -2301124,2022-01-10,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2301125,2022-01-10,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,68.0,83.0,52.0,16.0,15.0,,,,,,76.47, -2301126,2022-01-10,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2301127,2022-01-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2301128,2022-01-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301129,2022-01-10,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2301130,2022-01-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2301131,2022-01-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2301132,2022-01-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2301133,2022-01-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2301134,2022-01-10,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301135,2022-01-10,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301136,2022-01-10,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2301137,2022-01-10,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2301138,2022-01-10,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2301139,2022-01-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2301140,2022-01-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2301141,2022-01-10,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301142,2022-01-10,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2301143,2022-01-10,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301144,2022-01-10,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,63.0,75.0,62.0,1.0,12.0,,98.41 -2301145,2022-01-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2301146,2022-01-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301147,2022-01-10,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,49.0,47.0,0.0,2.0,,,,,,100.0, -2301148,2022-01-10,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301149,2022-01-10,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2301150,2022-01-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2301151,2022-01-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,210,Bed Based Capacity,234.0,234.0,210.0,24.0,0.0,,,,,,89.74, -2301152,2022-01-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2301153,2022-01-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301154,2022-01-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,39.0,35.0,0.0,4.0,,,,,,100.0, -2301155,2022-01-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,30.0,27.0,0.0,3.0,,,,,,100.0, -2301156,2022-01-10,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301157,2022-01-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2301158,2022-01-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2301159,2022-01-10,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2301160,2022-01-10,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2301161,2022-01-10,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2301162,2022-01-10,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2301163,2022-01-10,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2301164,2022-01-10,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2301165,2022-01-10,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2301166,2022-01-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301167,2022-01-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2301168,2022-01-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301169,2022-01-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,20.0,20.0,5.0,15.0,0.0,,,,,,25.0, -2301170,2022-01-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2301171,2022-01-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2301172,2022-01-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2301173,2022-01-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301174,2022-01-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,50.0,55.0,50.0,0.0,5.0,,100.0 -2301175,2022-01-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2301176,2022-01-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,29.0,14.0,0.0,15.0,,100.0 -2301177,2022-01-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2301178,2022-01-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,268,Room Based Capacity,,,,,,96.0,113.0,96.0,0.0,17.0,,100.0 -2301179,2022-01-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,334,Room Based Capacity,,,,,,106.0,107.0,106.0,0.0,1.0,,100.0 -2301180,2022-01-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2301181,2022-01-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2301182,2022-01-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2301183,2022-01-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2301184,2022-01-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2301185,2022-01-11,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2301186,2022-01-11,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2301187,2022-01-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2301188,2022-01-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2301189,2022-01-11,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2301190,2022-01-11,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2301191,2022-01-11,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2301192,2022-01-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2301193,2022-01-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2301194,2022-01-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,114,Room Based Capacity,,,,,,40.0,63.0,40.0,0.0,23.0,,100.0 -2301195,2022-01-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2301196,2022-01-11,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2301197,2022-01-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2301198,2022-01-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2301199,2022-01-11,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,64,Room Based Capacity,,,,,,67.0,51.0,60.0,7.0,0.0,,89.55 -2301200,2022-01-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301201,2022-01-11,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2301202,2022-01-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,71.0,82.0,58.0,13.0,11.0,,81.69 -2301203,2022-01-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,50,Room Based Capacity,,,,,,68.0,30.0,44.0,24.0,0.0,,64.71 -2301204,2022-01-11,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2301205,2022-01-11,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2301206,2022-01-11,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2301207,2022-01-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2301208,2022-01-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,72.0,81.0,68.0,4.0,9.0,,,,,,94.44, -2301209,2022-01-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,72.0,48.0,0.0,24.0,,,,,,100.0, -2301210,2022-01-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2301211,2022-01-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,15.0,13.0,1.0,1.0,,,,,,92.86, -2301212,2022-01-11,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,43,Bed Based Capacity,44.0,55.0,43.0,1.0,11.0,,,,,,97.73, -2301213,2022-01-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2301214,2022-01-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2301215,2022-01-11,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2301216,2022-01-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2301217,2022-01-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2301218,2022-01-11,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2301219,2022-01-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2301220,2022-01-11,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2301221,2022-01-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,53.0,33.0,0.0,20.0,,,,,,100.0, -2301222,2022-01-11,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2301223,2022-01-11,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2301224,2022-01-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,50.0,42.0,0.0,8.0,,,,,,100.0, -2301225,2022-01-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,232.0,245.0,226.0,6.0,13.0,,97.41 -2301226,2022-01-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2301227,2022-01-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,90.0,92.0,87.0,3.0,2.0,,96.67 -2301228,2022-01-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2301229,2022-01-11,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2301230,2022-01-11,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2301231,2022-01-11,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2301232,2022-01-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2301233,2022-01-11,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301234,2022-01-11,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2301235,2022-01-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2301236,2022-01-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301237,2022-01-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,34,Bed Based Capacity,44.0,44.0,34.0,10.0,0.0,,,,,,77.27, -2301238,2022-01-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301239,2022-01-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301240,2022-01-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2301241,2022-01-11,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,45.0,43.0,0.0,2.0,,,,,,100.0, -2301242,2022-01-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301243,2022-01-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2301244,2022-01-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2301245,2022-01-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301246,2022-01-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301247,2022-01-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2301248,2022-01-11,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2301249,2022-01-11,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,89.0,94.0,89.0,0.0,5.0,,100.0 -2301250,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2301251,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2301252,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301253,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2301254,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Room Based Capacity,,,,,,13.0,100.0,13.0,0.0,87.0,,100.0 -2301255,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2301256,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,283,Room Based Capacity,,,,,,247.0,263.0,247.0,0.0,16.0,,100.0 -2301257,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2301258,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2301259,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2301260,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2301261,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2301262,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2301263,2022-01-11,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,51.0,47.0,0.0,4.0,,,,,,100.0, -2301264,2022-01-11,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2301265,2022-01-11,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,68.0,83.0,52.0,16.0,15.0,,,,,,76.47, -2301266,2022-01-11,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2301267,2022-01-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2301268,2022-01-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301269,2022-01-11,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2301270,2022-01-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2301271,2022-01-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2301272,2022-01-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2301273,2022-01-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2301274,2022-01-11,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301275,2022-01-11,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301276,2022-01-11,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2301277,2022-01-11,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2301278,2022-01-11,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2301279,2022-01-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2301280,2022-01-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2301281,2022-01-11,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301282,2022-01-11,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2301283,2022-01-11,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301284,2022-01-11,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2301285,2022-01-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2301286,2022-01-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301287,2022-01-11,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,49.0,47.0,0.0,2.0,,,,,,100.0, -2301288,2022-01-11,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301289,2022-01-11,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2301290,2022-01-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2301291,2022-01-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,212,Bed Based Capacity,218.0,234.0,212.0,6.0,16.0,,,,,,97.25, -2301292,2022-01-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2301293,2022-01-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301294,2022-01-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2301295,2022-01-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,30.0,27.0,0.0,3.0,,,,,,100.0, -2301296,2022-01-11,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301297,2022-01-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2301298,2022-01-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2301299,2022-01-11,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2301300,2022-01-11,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,37.0,25.0,3.0,9.0,,,,,,89.29, -2301301,2022-01-11,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2301302,2022-01-11,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2301303,2022-01-11,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2301304,2022-01-11,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2301305,2022-01-11,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2301306,2022-01-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301307,2022-01-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2301308,2022-01-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2301309,2022-01-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,20.0,20.0,5.0,15.0,0.0,,,,,,25.0, -2301310,2022-01-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2301311,2022-01-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2301312,2022-01-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2301313,2022-01-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301314,2022-01-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,50.0,55.0,49.0,1.0,5.0,,98.0 -2301315,2022-01-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2301316,2022-01-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,29.0,14.0,0.0,15.0,,100.0 -2301317,2022-01-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2301318,2022-01-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,95.0,113.0,95.0,0.0,18.0,,100.0 -2301319,2022-01-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,350,Room Based Capacity,,,,,,110.0,107.0,109.0,1.0,0.0,,99.09 -2301320,2022-01-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2301321,2022-01-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2301322,2022-01-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2301323,2022-01-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,31.0,33.0,28.0,3.0,2.0,,,,,,90.32, -2301324,2022-01-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2301325,2022-01-12,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2301326,2022-01-12,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2301327,2022-01-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2301328,2022-01-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2301329,2022-01-12,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2301330,2022-01-12,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2301331,2022-01-12,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2301332,2022-01-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2301333,2022-01-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2301334,2022-01-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2301335,2022-01-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2301336,2022-01-12,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2301337,2022-01-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2301338,2022-01-12,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,67.0,51.0,59.0,8.0,0.0,,88.06 -2301339,2022-01-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301340,2022-01-12,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2301341,2022-01-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,62,Room Based Capacity,,,,,,71.0,82.0,55.0,16.0,11.0,,77.46 -2301342,2022-01-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,52,Room Based Capacity,,,,,,68.0,30.0,49.0,19.0,0.0,,72.06 -2301343,2022-01-12,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2301344,2022-01-12,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,88.0,88.0,83.0,5.0,0.0,,,,,,94.32, -2301345,2022-01-12,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2301346,2022-01-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2301347,2022-01-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,72.0,81.0,70.0,2.0,9.0,,,,,,97.22, -2301348,2022-01-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,72.0,45.0,0.0,27.0,,,,,,100.0, -2301349,2022-01-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2301350,2022-01-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2301351,2022-01-12,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,47.0,55.0,46.0,1.0,8.0,,,,,,97.87, -2301352,2022-01-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,10,Bed Based Capacity,15.0,15.0,10.0,5.0,0.0,,,,,,66.67, -2301353,2022-01-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2301354,2022-01-12,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2301355,2022-01-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2301356,2022-01-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2301357,2022-01-12,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2301358,2022-01-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2301359,2022-01-12,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,42.0,39.0,0.0,3.0,,100.0 -2301360,2022-01-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,53.0,33.0,0.0,20.0,,,,,,100.0, -2301361,2022-01-12,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2301362,2022-01-12,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2301363,2022-01-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,50.0,42.0,0.0,8.0,,,,,,100.0, -2301364,2022-01-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,232.0,245.0,225.0,7.0,13.0,,96.98 -2301365,2022-01-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2301366,2022-01-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2301367,2022-01-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2301368,2022-01-12,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2301369,2022-01-12,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,50.0,50.0,39.0,11.0,0.0,,,,,,78.0, -2301370,2022-01-12,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2301371,2022-01-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2301372,2022-01-12,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301373,2022-01-12,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2301374,2022-01-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2301375,2022-01-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301376,2022-01-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,34,Bed Based Capacity,44.0,44.0,34.0,10.0,0.0,,,,,,77.27, -2301377,2022-01-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301378,2022-01-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301379,2022-01-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2301380,2022-01-12,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,45.0,43.0,0.0,2.0,,,,,,100.0, -2301381,2022-01-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301382,2022-01-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2301383,2022-01-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2301384,2022-01-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2301385,2022-01-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301386,2022-01-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2301387,2022-01-12,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2301388,2022-01-12,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2301389,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,54.0,70.0,52.0,2.0,16.0,,,,,,96.3, -2301390,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301391,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2301392,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2301393,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,24,Room Based Capacity,,,,,,24.0,100.0,24.0,0.0,76.0,,100.0 -2301394,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2301395,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,287,Room Based Capacity,,,,,,250.0,263.0,249.0,1.0,13.0,,99.6 -2301396,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2301397,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2301398,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2301399,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2301400,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,115.0,115.0,114.0,1.0,0.0,,,,,,99.13, -2301401,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2301402,2022-01-12,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,51.0,47.0,0.0,4.0,,,,,,100.0, -2301403,2022-01-12,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2301404,2022-01-12,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,68.0,83.0,43.0,25.0,15.0,,,,,,63.24, -2301405,2022-01-12,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2301406,2022-01-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2301407,2022-01-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2301408,2022-01-12,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2301409,2022-01-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2301410,2022-01-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2301411,2022-01-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2301412,2022-01-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2301413,2022-01-12,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301414,2022-01-12,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301415,2022-01-12,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2301416,2022-01-12,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2301417,2022-01-12,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2301418,2022-01-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301419,2022-01-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,43.0,41.0,0.0,2.0,,,,,,100.0, -2301420,2022-01-12,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301421,2022-01-12,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2301422,2022-01-12,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301423,2022-01-12,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2301424,2022-01-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,67.0,67.0,66.0,1.0,0.0,,,,,,98.51, -2301425,2022-01-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301426,2022-01-12,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,49.0,47.0,0.0,2.0,,,,,,100.0, -2301427,2022-01-12,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301428,2022-01-12,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2301429,2022-01-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,127.0,131.0,127.0,0.0,4.0,,100.0 -2301430,2022-01-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,217,Bed Based Capacity,218.0,234.0,217.0,1.0,16.0,,,,,,99.54, -2301431,2022-01-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,36.0,33.0,0.0,3.0,,,,,,100.0, -2301432,2022-01-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301433,2022-01-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2301434,2022-01-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,30.0,27.0,0.0,3.0,,,,,,100.0, -2301435,2022-01-12,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301436,2022-01-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2301437,2022-01-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2301438,2022-01-12,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2301439,2022-01-12,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,37.0,23.0,5.0,9.0,,,,,,82.14, -2301440,2022-01-12,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2301441,2022-01-12,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2301442,2022-01-12,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2301443,2022-01-12,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2301444,2022-01-12,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2301445,2022-01-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301446,2022-01-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2301447,2022-01-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301448,2022-01-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,20.0,20.0,6.0,14.0,0.0,,,,,,30.0, -2301449,2022-01-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2301450,2022-01-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2301451,2022-01-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2301452,2022-01-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301453,2022-01-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,49.0,55.0,49.0,0.0,6.0,,100.0 -2301454,2022-01-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2301455,2022-01-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,29.0,14.0,0.0,15.0,,100.0 -2301456,2022-01-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2301457,2022-01-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,95.0,113.0,95.0,0.0,18.0,,100.0 -2301458,2022-01-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,361,Room Based Capacity,,,,,,113.0,107.0,113.0,0.0,0.0,,100.0 -2301459,2022-01-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2301460,2022-01-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2301461,2022-01-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2301462,2022-01-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,31.0,33.0,27.0,4.0,2.0,,,,,,87.1, -2301463,2022-01-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2301464,2022-01-13,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2301465,2022-01-13,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2301466,2022-01-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2301467,2022-01-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2301468,2022-01-13,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2301469,2022-01-13,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2301470,2022-01-13,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2301471,2022-01-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2301472,2022-01-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2301473,2022-01-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2301474,2022-01-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,10.0,5.0,0.0,5.0,,100.0 -2301475,2022-01-13,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2301476,2022-01-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2301477,2022-01-13,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,64,Room Based Capacity,,,,,,67.0,51.0,60.0,7.0,0.0,,89.55 -2301478,2022-01-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301479,2022-01-13,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2301480,2022-01-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,62,Room Based Capacity,,,,,,71.0,82.0,55.0,16.0,11.0,,77.46 -2301481,2022-01-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,57,Room Based Capacity,,,,,,65.0,30.0,54.0,11.0,0.0,,83.08 -2301482,2022-01-13,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2301483,2022-01-13,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,88.0,88.0,83.0,5.0,0.0,,,,,,94.32, -2301484,2022-01-13,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2301485,2022-01-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2301486,2022-01-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,72.0,81.0,70.0,2.0,9.0,,,,,,97.22, -2301487,2022-01-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,72.0,45.0,0.0,27.0,,,,,,100.0, -2301488,2022-01-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,22.0,22.0,16.0,6.0,0.0,,,,,,72.73, -2301489,2022-01-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2301490,2022-01-13,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,47.0,55.0,46.0,1.0,8.0,,,,,,97.87, -2301491,2022-01-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,6,Bed Based Capacity,15.0,15.0,6.0,9.0,0.0,,,,,,40.0, -2301492,2022-01-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2301493,2022-01-13,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2301494,2022-01-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2301495,2022-01-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,72.0,74.0,71.0,1.0,2.0,,,,,,98.61, -2301496,2022-01-13,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2301497,2022-01-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2301498,2022-01-13,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,42.0,40.0,1.0,1.0,,97.56 -2301499,2022-01-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,53.0,33.0,0.0,20.0,,,,,,100.0, -2301500,2022-01-13,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2301501,2022-01-13,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2301502,2022-01-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,50.0,40.0,0.0,10.0,,,,,,100.0, -2301503,2022-01-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,233.0,245.0,224.0,9.0,12.0,,96.14 -2301504,2022-01-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2301505,2022-01-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2301506,2022-01-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2301507,2022-01-13,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2301508,2022-01-13,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2301509,2022-01-13,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2301510,2022-01-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2301511,2022-01-13,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301512,2022-01-13,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2301513,2022-01-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2301514,2022-01-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301515,2022-01-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,33,Bed Based Capacity,44.0,44.0,33.0,11.0,0.0,,,,,,75.0, -2301516,2022-01-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301517,2022-01-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301518,2022-01-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,268.0,271.0,267.0,1.0,3.0,,99.63 -2301519,2022-01-13,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,43.0,45.0,41.0,2.0,2.0,,,,,,95.35, -2301520,2022-01-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301521,2022-01-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2301522,2022-01-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,25.0,25.0,19.0,6.0,0.0,,,,,,76.0, -2301523,2022-01-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2301524,2022-01-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301525,2022-01-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2301526,2022-01-13,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2301527,2022-01-13,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2301528,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2301529,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301530,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301531,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,55.0,53.0,1.0,1.0,,,,,,98.15, -2301532,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,24,Room Based Capacity,,,,,,24.0,100.0,24.0,0.0,76.0,,100.0 -2301533,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2301534,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,289,Room Based Capacity,,,,,,251.0,263.0,251.0,0.0,12.0,,100.0 -2301535,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,60.0,60.0,58.0,2.0,0.0,,,,,,96.67, -2301536,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,68,Bed Based Capacity,71.0,71.0,68.0,3.0,0.0,,,,,,95.77, -2301537,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2301538,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2301539,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,114.0,115.0,114.0,0.0,1.0,,,,,,100.0, -2301540,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2301541,2022-01-13,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,51.0,46.0,0.0,5.0,,,,,,100.0, -2301542,2022-01-13,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2301543,2022-01-13,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,83.0,45.0,0.0,38.0,,,,,,100.0, -2301544,2022-01-13,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,18.0,18.0,16.0,2.0,0.0,,,,,,88.89, -2301545,2022-01-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2301546,2022-01-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301547,2022-01-13,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2301548,2022-01-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2301549,2022-01-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2301550,2022-01-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2301551,2022-01-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2301552,2022-01-13,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301553,2022-01-13,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301554,2022-01-13,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2301555,2022-01-13,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2301556,2022-01-13,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2301557,2022-01-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301558,2022-01-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,43.0,41.0,0.0,2.0,,,,,,100.0, -2301559,2022-01-13,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301560,2022-01-13,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,28.0,23.0,0.0,5.0,,,,,,100.0, -2301561,2022-01-13,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301562,2022-01-13,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2301563,2022-01-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,67.0,67.0,64.0,3.0,0.0,,,,,,95.52, -2301564,2022-01-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301565,2022-01-13,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,49.0,47.0,0.0,2.0,,,,,,100.0, -2301566,2022-01-13,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301567,2022-01-13,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2301568,2022-01-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2301569,2022-01-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,218,Bed Based Capacity,218.0,234.0,218.0,0.0,16.0,,,,,,100.0, -2301570,2022-01-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,36.0,32.0,0.0,4.0,,,,,,100.0, -2301571,2022-01-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301572,2022-01-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2301573,2022-01-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,30.0,27.0,0.0,3.0,,,,,,100.0, -2301574,2022-01-13,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301575,2022-01-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2301576,2022-01-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2301577,2022-01-13,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2301578,2022-01-13,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,37.0,23.0,5.0,9.0,,,,,,82.14, -2301579,2022-01-13,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2301580,2022-01-13,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2301581,2022-01-13,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2301582,2022-01-13,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2301583,2022-01-13,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2301584,2022-01-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301585,2022-01-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2301586,2022-01-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301587,2022-01-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,20.0,20.0,7.0,13.0,0.0,,,,,,35.0, -2301588,2022-01-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,23.0,23.0,21.0,2.0,0.0,,,,,,91.3, -2301589,2022-01-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2301590,2022-01-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2301591,2022-01-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301592,2022-01-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,49.0,55.0,49.0,0.0,6.0,,100.0 -2301593,2022-01-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2301594,2022-01-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,29.0,14.0,0.0,15.0,,100.0 -2301595,2022-01-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2301596,2022-01-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,94.0,113.0,94.0,0.0,19.0,,100.0 -2301597,2022-01-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,365,Room Based Capacity,,,,,,114.0,107.0,114.0,0.0,0.0,,100.0 -2301598,2022-01-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2301599,2022-01-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2301600,2022-01-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2301601,2022-01-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,31.0,33.0,27.0,4.0,2.0,,,,,,87.1, -2301602,2022-01-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2301603,2022-01-14,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2301604,2022-01-14,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2301605,2022-01-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2301606,2022-01-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2301607,2022-01-14,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2301608,2022-01-14,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2301609,2022-01-14,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2301610,2022-01-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2301611,2022-01-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2301612,2022-01-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,33.0,40.0,33.0,0.0,7.0,,100.0 -2301613,2022-01-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,10.0,12.0,0.0,0.0,,100.0 -2301614,2022-01-14,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2301615,2022-01-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2301616,2022-01-14,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,67.0,51.0,61.0,6.0,0.0,,91.04 -2301617,2022-01-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2301618,2022-01-14,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2301619,2022-01-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,62,Room Based Capacity,,,,,,71.0,82.0,55.0,16.0,11.0,,77.46 -2301620,2022-01-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,8.0,30.0,1.0,7.0,22.0,,12.5 -2301621,2022-01-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,56,Room Based Capacity,,,,,,64.0,30.0,54.0,10.0,0.0,,84.38 -2301622,2022-01-14,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2301623,2022-01-14,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,84,Bed Based Capacity,88.0,88.0,84.0,4.0,0.0,,,,,,95.45, -2301624,2022-01-14,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2301625,2022-01-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2301626,2022-01-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,73.0,81.0,72.0,1.0,8.0,,,,,,98.63, -2301627,2022-01-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2301628,2022-01-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,22.0,22.0,16.0,6.0,0.0,,,,,,72.73, -2301629,2022-01-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,20.0,20.0,10.0,10.0,0.0,,,,,,50.0, -2301630,2022-01-14,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2301631,2022-01-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,8,Bed Based Capacity,15.0,15.0,8.0,7.0,0.0,,,,,,53.33, -2301632,2022-01-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2301633,2022-01-14,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2301634,2022-01-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2301635,2022-01-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,72.0,74.0,69.0,3.0,2.0,,,,,,95.83, -2301636,2022-01-14,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,13,Bed Based Capacity,34.0,34.0,13.0,21.0,0.0,,,,,,38.24, -2301637,2022-01-14,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2301638,2022-01-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2301639,2022-01-14,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2301640,2022-01-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,46.0,53.0,43.0,3.0,7.0,,,,,,93.48, -2301641,2022-01-14,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2301642,2022-01-14,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2301643,2022-01-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2301644,2022-01-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,233.0,245.0,226.0,7.0,12.0,,97.0 -2301645,2022-01-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2301646,2022-01-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2301647,2022-01-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2301648,2022-01-14,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2301649,2022-01-14,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2301650,2022-01-14,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2301651,2022-01-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2301652,2022-01-14,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301653,2022-01-14,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2301654,2022-01-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2301655,2022-01-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301656,2022-01-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,33,Bed Based Capacity,44.0,44.0,33.0,11.0,0.0,,,,,,75.0, -2301657,2022-01-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301658,2022-01-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301659,2022-01-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2301660,2022-01-14,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,45.0,36.0,0.0,9.0,,,,,,100.0, -2301661,2022-01-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301662,2022-01-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2301663,2022-01-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,25.0,25.0,19.0,6.0,0.0,,,,,,76.0, -2301664,2022-01-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2301665,2022-01-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301666,2022-01-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2301667,2022-01-14,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2301668,2022-01-14,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2301669,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2301670,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301671,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,31.0,29.0,1.0,1.0,,,,,,96.67, -2301672,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2301673,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,35,Room Based Capacity,,,,,,35.0,100.0,35.0,0.0,65.0,,100.0 -2301674,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,229.0,235.0,228.0,1.0,6.0,,99.56 -2301675,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,290,Room Based Capacity,,,,,,254.0,263.0,252.0,2.0,9.0,,99.21 -2301676,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2301677,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2301678,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2301679,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2301680,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,114.0,115.0,114.0,0.0,1.0,,,,,,100.0, -2301681,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2301682,2022-01-14,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,51.0,45.0,1.0,5.0,,,,,,97.83, -2301683,2022-01-14,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2301684,2022-01-14,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,45.0,83.0,35.0,10.0,38.0,,,,,,77.78, -2301685,2022-01-14,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2301686,2022-01-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2301687,2022-01-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301688,2022-01-14,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2301689,2022-01-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2301690,2022-01-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2301691,2022-01-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2301692,2022-01-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2301693,2022-01-14,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2301694,2022-01-14,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301695,2022-01-14,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2301696,2022-01-14,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2301697,2022-01-14,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2301698,2022-01-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301699,2022-01-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,43.0,41.0,0.0,2.0,,,,,,100.0, -2301700,2022-01-14,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301701,2022-01-14,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,28.0,25.0,2.0,1.0,,,,,,92.59, -2301702,2022-01-14,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301703,2022-01-14,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,64.0,75.0,62.0,2.0,11.0,,96.88 -2301704,2022-01-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,64.0,67.0,64.0,0.0,3.0,,,,,,100.0, -2301705,2022-01-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301706,2022-01-14,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,49.0,47.0,0.0,2.0,,,,,,100.0, -2301707,2022-01-14,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301708,2022-01-14,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2301709,2022-01-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2301710,2022-01-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,218,Bed Based Capacity,218.0,234.0,218.0,0.0,16.0,,,,,,100.0, -2301711,2022-01-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,36.0,32.0,0.0,4.0,,,,,,100.0, -2301712,2022-01-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301713,2022-01-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,39.0,39.0,35.0,4.0,0.0,,,,,,89.74, -2301714,2022-01-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,30.0,26.0,2.0,2.0,,,,,,92.86, -2301715,2022-01-14,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301716,2022-01-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2301717,2022-01-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2301718,2022-01-14,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2301719,2022-01-14,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,37.0,23.0,5.0,9.0,,,,,,82.14, -2301720,2022-01-14,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2301721,2022-01-14,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2301722,2022-01-14,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301723,2022-01-14,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2301724,2022-01-14,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2301725,2022-01-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301726,2022-01-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,24.0,24.0,20.0,4.0,0.0,,,,,,83.33, -2301727,2022-01-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2301728,2022-01-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,19.0,20.0,6.0,13.0,1.0,,,,,,31.58, -2301729,2022-01-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,23.0,23.0,21.0,2.0,0.0,,,,,,91.3, -2301730,2022-01-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2301731,2022-01-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2301732,2022-01-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301733,2022-01-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,49.0,55.0,49.0,0.0,6.0,,100.0 -2301734,2022-01-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2301735,2022-01-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16193,COSTI North York West Hotel Program - Women,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,16.0,29.0,16.0,0.0,13.0,,100.0 -2301736,2022-01-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2301737,2022-01-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,94.0,113.0,93.0,1.0,19.0,,98.94 -2301738,2022-01-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,365,Room Based Capacity,,,,,,114.0,107.0,114.0,0.0,0.0,,100.0 -2301739,2022-01-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2301740,2022-01-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2301741,2022-01-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2301742,2022-01-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,31.0,33.0,27.0,4.0,2.0,,,,,,87.1, -2301743,2022-01-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2301744,2022-01-15,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2301745,2022-01-15,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,63.0,65.0,62.0,1.0,2.0,,98.41 -2301746,2022-01-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2301747,2022-01-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2301748,2022-01-15,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2301749,2022-01-15,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2301750,2022-01-15,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2301751,2022-01-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2301752,2022-01-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2301753,2022-01-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,33.0,40.0,33.0,0.0,7.0,,100.0 -2301754,2022-01-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,10.0,12.0,0.0,0.0,,100.0 -2301755,2022-01-15,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2301756,2022-01-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2301757,2022-01-15,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,67.0,51.0,61.0,6.0,0.0,,91.04 -2301758,2022-01-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301759,2022-01-15,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2301760,2022-01-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,61,Room Based Capacity,,,,,,71.0,82.0,54.0,17.0,11.0,,76.06 -2301761,2022-01-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,53,Room Based Capacity,,,,,,67.0,30.0,53.0,14.0,0.0,,79.1 -2301762,2022-01-15,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2301763,2022-01-15,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,84,Bed Based Capacity,88.0,88.0,84.0,4.0,0.0,,,,,,95.45, -2301764,2022-01-15,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2301765,2022-01-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2301766,2022-01-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,74.0,81.0,71.0,3.0,7.0,,,,,,95.95, -2301767,2022-01-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,56.0,72.0,55.0,1.0,16.0,,,,,,98.21, -2301768,2022-01-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,22.0,22.0,16.0,6.0,0.0,,,,,,72.73, -2301769,2022-01-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,20.0,20.0,9.0,11.0,0.0,,,,,,45.0, -2301770,2022-01-15,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2301771,2022-01-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,7,Bed Based Capacity,15.0,15.0,7.0,8.0,0.0,,,,,,46.67, -2301772,2022-01-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2301773,2022-01-15,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2301774,2022-01-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2301775,2022-01-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2301776,2022-01-15,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2301777,2022-01-15,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,44,Bed Based Capacity,55.0,55.0,44.0,11.0,0.0,,,,,,80.0, -2301778,2022-01-15,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2301779,2022-01-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2301780,2022-01-15,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,41.0,42.0,39.0,2.0,1.0,,95.12 -2301781,2022-01-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,52.0,53.0,51.0,1.0,1.0,,,,,,98.08, -2301782,2022-01-15,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2301783,2022-01-15,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2301784,2022-01-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2301785,2022-01-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,233.0,245.0,228.0,5.0,12.0,,97.85 -2301786,2022-01-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2301787,2022-01-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2301788,2022-01-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2301789,2022-01-15,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2301790,2022-01-15,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,50.0,50.0,39.0,11.0,0.0,,,,,,78.0, -2301791,2022-01-15,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2301792,2022-01-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2301793,2022-01-15,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301794,2022-01-15,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2301795,2022-01-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2301796,2022-01-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301797,2022-01-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,34,Bed Based Capacity,44.0,44.0,34.0,10.0,0.0,,,,,,77.27, -2301798,2022-01-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301799,2022-01-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301800,2022-01-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2301801,2022-01-15,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,45.0,36.0,0.0,9.0,,,,,,100.0, -2301802,2022-01-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301803,2022-01-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2301804,2022-01-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,25.0,25.0,18.0,7.0,0.0,,,,,,72.0, -2301805,2022-01-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2301806,2022-01-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301807,2022-01-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2301808,2022-01-15,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2301809,2022-01-15,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2301810,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2301811,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301812,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,31.0,29.0,1.0,1.0,,,,,,96.67, -2301813,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2301814,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,35,Room Based Capacity,,,,,,35.0,100.0,35.0,0.0,65.0,,100.0 -2301815,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,231.0,235.0,231.0,0.0,4.0,,100.0 -2301816,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,290,Room Based Capacity,,,,,,252.0,263.0,252.0,0.0,11.0,,100.0 -2301817,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2301818,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2301819,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2301820,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2301821,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,114.0,115.0,114.0,0.0,1.0,,,,,,100.0, -2301822,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,35.0,33.0,0.0,2.0,,,,,,100.0, -2301823,2022-01-15,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,51.0,45.0,1.0,5.0,,,,,,97.83, -2301824,2022-01-15,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2301825,2022-01-15,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,83.0,35.0,0.0,48.0,,,,,,100.0, -2301826,2022-01-15,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2301827,2022-01-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2301828,2022-01-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301829,2022-01-15,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2301830,2022-01-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2301831,2022-01-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2301832,2022-01-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2301833,2022-01-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2301834,2022-01-15,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2301835,2022-01-15,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301836,2022-01-15,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2301837,2022-01-15,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2301838,2022-01-15,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2301839,2022-01-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301840,2022-01-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,43.0,41.0,0.0,2.0,,,,,,100.0, -2301841,2022-01-15,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301842,2022-01-15,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,26.0,28.0,24.0,2.0,2.0,,,,,,92.31, -2301843,2022-01-15,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301844,2022-01-15,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,64.0,75.0,62.0,2.0,11.0,,96.88 -2301845,2022-01-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,64.0,67.0,64.0,0.0,3.0,,,,,,100.0, -2301846,2022-01-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301847,2022-01-15,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2301848,2022-01-15,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301849,2022-01-15,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301850,2022-01-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2301851,2022-01-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,218,Bed Based Capacity,218.0,234.0,218.0,0.0,16.0,,,,,,100.0, -2301852,2022-01-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,36.0,31.0,0.0,5.0,,,,,,100.0, -2301853,2022-01-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301854,2022-01-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,39.0,39.0,36.0,3.0,0.0,,,,,,92.31, -2301855,2022-01-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,29.0,30.0,26.0,3.0,1.0,,,,,,89.66, -2301856,2022-01-15,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301857,2022-01-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2301858,2022-01-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2301859,2022-01-15,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2301860,2022-01-15,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,37.0,24.0,4.0,9.0,,,,,,85.71, -2301861,2022-01-15,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2301862,2022-01-15,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2301863,2022-01-15,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2301864,2022-01-15,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2301865,2022-01-15,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2301866,2022-01-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2301867,2022-01-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2301868,2022-01-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,19.0,19.0,13.0,6.0,0.0,,,,,,68.42, -2301869,2022-01-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,19.0,20.0,7.0,12.0,1.0,,,,,,36.84, -2301870,2022-01-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,23.0,23.0,21.0,2.0,0.0,,,,,,91.3, -2301871,2022-01-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2301872,2022-01-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2301873,2022-01-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2301874,2022-01-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16192,COSTI North York West Hotel Program - Men,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,1.0,55.0,1.0,0.0,54.0,,100.0 -2301875,2022-01-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16191,COSTI North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,10.0,15.0,10.0,0.0,5.0,,100.0 -2301876,2022-01-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2301877,2022-01-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,93.0,113.0,93.0,0.0,20.0,,100.0 -2301878,2022-01-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,365,Room Based Capacity,,,,,,114.0,107.0,114.0,0.0,0.0,,100.0 -2301879,2022-01-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2301880,2022-01-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,143.0,155.0,143.0,0.0,12.0,,100.0 -2301881,2022-01-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2301882,2022-01-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,33.0,27.0,1.0,5.0,,,,,,96.43, -2301883,2022-01-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2301884,2022-01-16,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,20.0,1.0,9.0,,95.24 -2301885,2022-01-16,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2301886,2022-01-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,83.0,83.0,63.0,20.0,0.0,,75.9 -2301887,2022-01-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,12.0,12.0,2.0,10.0,0.0,,16.67 -2301888,2022-01-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2301889,2022-01-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,76.0,77.0,75.0,1.0,1.0,,98.68 -2301890,2022-01-16,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2301891,2022-01-16,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2301892,2022-01-16,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2301893,2022-01-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2301894,2022-01-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2301895,2022-01-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,33.0,40.0,33.0,0.0,7.0,,100.0 -2301896,2022-01-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,10.0,12.0,0.0,0.0,,100.0 -2301897,2022-01-16,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2301898,2022-01-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2301899,2022-01-16,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,67.0,51.0,61.0,6.0,0.0,,91.04 -2301900,2022-01-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301901,2022-01-16,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2301902,2022-01-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,59,Room Based Capacity,,,,,,71.0,82.0,52.0,19.0,11.0,,73.24 -2301903,2022-01-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,59,Room Based Capacity,,,,,,67.0,30.0,57.0,10.0,0.0,,85.07 -2301904,2022-01-16,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2301905,2022-01-16,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,84,Bed Based Capacity,88.0,88.0,84.0,4.0,0.0,,,,,,95.45, -2301906,2022-01-16,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2301907,2022-01-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2301908,2022-01-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,81.0,72.0,2.0,7.0,,,,,,97.3, -2301909,2022-01-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,72.0,56.0,0.0,16.0,,,,,,100.0, -2301910,2022-01-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,22.0,22.0,16.0,6.0,0.0,,,,,,72.73, -2301911,2022-01-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,20.0,20.0,8.0,12.0,0.0,,,,,,40.0, -2301912,2022-01-16,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2301913,2022-01-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301914,2022-01-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2301915,2022-01-16,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2301916,2022-01-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2301917,2022-01-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2301918,2022-01-16,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2301919,2022-01-16,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2301920,2022-01-16,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2301921,2022-01-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2301922,2022-01-16,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,41.0,42.0,38.0,3.0,1.0,,92.68 -2301923,2022-01-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2301924,2022-01-16,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2301925,2022-01-16,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2301926,2022-01-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2301927,2022-01-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,233.0,245.0,228.0,5.0,12.0,,97.85 -2301928,2022-01-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2301929,2022-01-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2301930,2022-01-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2301931,2022-01-16,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2301932,2022-01-16,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,50.0,50.0,40.0,10.0,0.0,,,,,,80.0, -2301933,2022-01-16,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2301934,2022-01-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2301935,2022-01-16,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301936,2022-01-16,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2301937,2022-01-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2301938,2022-01-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2301939,2022-01-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,35,Bed Based Capacity,44.0,44.0,35.0,9.0,0.0,,,,,,79.55, -2301940,2022-01-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2301941,2022-01-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301942,2022-01-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2301943,2022-01-16,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,45.0,35.0,0.0,10.0,,,,,,100.0, -2301944,2022-01-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2301945,2022-01-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2301946,2022-01-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,25.0,25.0,18.0,7.0,0.0,,,,,,72.0, -2301947,2022-01-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2301948,2022-01-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2301949,2022-01-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2301950,2022-01-16,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2301951,2022-01-16,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2301952,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2301953,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301954,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,31.0,29.0,1.0,1.0,,,,,,96.67, -2301955,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2301956,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,35,Room Based Capacity,,,,,,35.0,100.0,35.0,0.0,65.0,,100.0 -2301957,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,229.0,235.0,229.0,0.0,6.0,,100.0 -2301958,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,291,Room Based Capacity,,,,,,253.0,263.0,253.0,0.0,10.0,,100.0 -2301959,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,54,Bed Based Capacity,60.0,60.0,54.0,6.0,0.0,,,,,,90.0, -2301960,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2301961,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2301962,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2301963,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,114.0,115.0,114.0,0.0,1.0,,,,,,100.0, -2301964,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,35.0,34.0,0.0,1.0,,,,,,100.0, -2301965,2022-01-16,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,51.0,44.0,0.0,7.0,,,,,,100.0, -2301966,2022-01-16,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2301967,2022-01-16,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,83.0,35.0,0.0,48.0,,,,,,100.0, -2301968,2022-01-16,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2301969,2022-01-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,37.0,40.0,35.0,2.0,3.0,,94.59 -2301970,2022-01-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301971,2022-01-16,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2301972,2022-01-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2301973,2022-01-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2301974,2022-01-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2301975,2022-01-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2301976,2022-01-16,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301977,2022-01-16,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2301978,2022-01-16,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2301979,2022-01-16,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2301980,2022-01-16,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2301981,2022-01-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2301982,2022-01-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,43.0,41.0,0.0,2.0,,,,,,100.0, -2301983,2022-01-16,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2301984,2022-01-16,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2301985,2022-01-16,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2301986,2022-01-16,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,64.0,75.0,62.0,2.0,11.0,,96.88 -2301987,2022-01-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,64.0,67.0,64.0,0.0,3.0,,,,,,100.0, -2301988,2022-01-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2301989,2022-01-16,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2301990,2022-01-16,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2301991,2022-01-16,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2301992,2022-01-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2301993,2022-01-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,218,Bed Based Capacity,218.0,234.0,218.0,0.0,16.0,,,,,,100.0, -2301994,2022-01-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,36.0,31.0,0.0,5.0,,,,,,100.0, -2301995,2022-01-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2301996,2022-01-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,39.0,39.0,35.0,4.0,0.0,,,,,,89.74, -2301997,2022-01-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,29.0,30.0,27.0,2.0,1.0,,,,,,93.1, -2301998,2022-01-16,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2301999,2022-01-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302000,2022-01-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302001,2022-01-16,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302002,2022-01-16,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,37.0,24.0,4.0,9.0,,,,,,85.71, -2302003,2022-01-16,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2302004,2022-01-16,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302005,2022-01-16,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302006,2022-01-16,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2302007,2022-01-16,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302008,2022-01-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302009,2022-01-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2302010,2022-01-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,19.0,19.0,11.0,8.0,0.0,,,,,,57.89, -2302011,2022-01-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,19.0,20.0,7.0,12.0,1.0,,,,,,36.84, -2302012,2022-01-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,23.0,23.0,20.0,3.0,0.0,,,,,,86.96, -2302013,2022-01-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302014,2022-01-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2302015,2022-01-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302016,2022-01-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302017,2022-01-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,92.0,113.0,92.0,0.0,21.0,,100.0 -2302018,2022-01-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,366,Room Based Capacity,,,,,,114.0,107.0,114.0,0.0,0.0,,100.0 -2302019,2022-01-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2302020,2022-01-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,146,Room Based Capacity,,,,,,142.0,155.0,142.0,0.0,13.0,,100.0 -2302021,2022-01-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2302022,2022-01-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,33.0,28.0,0.0,5.0,,,,,,100.0, -2302023,2022-01-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,15.0,13.0,1.0,1.0,,,,,,92.86, -2302024,2022-01-17,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,30.0,19.0,1.0,10.0,,95.0 -2302025,2022-01-17,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2302026,2022-01-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,63.0,83.0,63.0,0.0,20.0,,100.0 -2302027,2022-01-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2302028,2022-01-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2302029,2022-01-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2302030,2022-01-17,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2302031,2022-01-17,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2302032,2022-01-17,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2302033,2022-01-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2302034,2022-01-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2302035,2022-01-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2302036,2022-01-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2302037,2022-01-17,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2302038,2022-01-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2302039,2022-01-17,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,67.0,51.0,61.0,6.0,0.0,,91.04 -2302040,2022-01-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302041,2022-01-17,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2302042,2022-01-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,59,Room Based Capacity,,,,,,71.0,82.0,52.0,19.0,11.0,,73.24 -2302043,2022-01-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,61,Room Based Capacity,,,,,,69.0,30.0,59.0,10.0,0.0,,85.51 -2302044,2022-01-17,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2302045,2022-01-17,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,85,Bed Based Capacity,88.0,88.0,85.0,3.0,0.0,,,,,,96.59, -2302046,2022-01-17,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2302047,2022-01-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2302048,2022-01-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2302049,2022-01-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2302050,2022-01-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,22.0,22.0,16.0,6.0,0.0,,,,,,72.73, -2302051,2022-01-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,20.0,20.0,9.0,11.0,0.0,,,,,,45.0, -2302052,2022-01-17,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2302053,2022-01-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,10,Bed Based Capacity,15.0,15.0,10.0,5.0,0.0,,,,,,66.67, -2302054,2022-01-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2302055,2022-01-17,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2302056,2022-01-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2302057,2022-01-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,72.0,74.0,70.0,2.0,2.0,,,,,,97.22, -2302058,2022-01-17,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2302059,2022-01-17,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2302060,2022-01-17,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2302061,2022-01-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2302062,2022-01-17,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,42.0,38.0,0.0,4.0,,100.0 -2302063,2022-01-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,53.0,50.0,1.0,2.0,,,,,,98.04, -2302064,2022-01-17,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2302065,2022-01-17,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,44.0,37.0,0.0,7.0,,,,,,100.0, -2302066,2022-01-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2302067,2022-01-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,233.0,245.0,228.0,5.0,12.0,,97.85 -2302068,2022-01-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2302069,2022-01-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2302070,2022-01-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2302071,2022-01-17,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2302072,2022-01-17,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,50.0,41.0,3.0,6.0,,,,,,93.18, -2302073,2022-01-17,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2302074,2022-01-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2302075,2022-01-17,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302076,2022-01-17,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2302077,2022-01-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2302078,2022-01-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302079,2022-01-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,35,Bed Based Capacity,44.0,44.0,35.0,9.0,0.0,,,,,,79.55, -2302080,2022-01-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302081,2022-01-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2302082,2022-01-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2302083,2022-01-17,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,45.0,35.0,0.0,10.0,,,,,,100.0, -2302084,2022-01-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2302085,2022-01-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302086,2022-01-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,25.0,25.0,18.0,7.0,0.0,,,,,,72.0, -2302087,2022-01-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2302088,2022-01-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302089,2022-01-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2302090,2022-01-17,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2302091,2022-01-17,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2302092,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2302093,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302094,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2302095,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2302096,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,35,Room Based Capacity,,,,,,35.0,100.0,35.0,0.0,65.0,,100.0 -2302097,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,229.0,235.0,229.0,0.0,6.0,,100.0 -2302098,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,291,Room Based Capacity,,,,,,253.0,263.0,253.0,0.0,10.0,,100.0 -2302099,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,53,Bed Based Capacity,60.0,60.0,53.0,7.0,0.0,,,,,,88.33, -2302100,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2302101,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2302102,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2302103,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,114.0,115.0,114.0,0.0,1.0,,,,,,100.0, -2302104,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,35.0,33.0,1.0,1.0,,,,,,97.06, -2302105,2022-01-17,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,51.0,44.0,0.0,7.0,,,,,,100.0, -2302106,2022-01-17,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2302107,2022-01-17,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,83.0,35.0,0.0,48.0,,,,,,100.0, -2302108,2022-01-17,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2302109,2022-01-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2302110,2022-01-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302111,2022-01-17,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2302112,2022-01-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2302113,2022-01-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2302114,2022-01-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302115,2022-01-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2302116,2022-01-17,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2302117,2022-01-17,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302118,2022-01-17,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2302119,2022-01-17,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2302120,2022-01-17,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2302121,2022-01-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302122,2022-01-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,43.0,41.0,0.0,2.0,,,,,,100.0, -2302123,2022-01-17,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2302124,2022-01-17,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,28.0,25.0,1.0,2.0,,,,,,96.15, -2302125,2022-01-17,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2302126,2022-01-17,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,64.0,75.0,62.0,2.0,11.0,,96.88 -2302127,2022-01-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,64.0,67.0,64.0,0.0,3.0,,,,,,100.0, -2302128,2022-01-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2302129,2022-01-17,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2302130,2022-01-17,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2302131,2022-01-17,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2302132,2022-01-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,124.0,131.0,124.0,0.0,7.0,,100.0 -2302133,2022-01-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,217,Bed Based Capacity,218.0,234.0,217.0,1.0,16.0,,,,,,99.54, -2302134,2022-01-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,36.0,31.0,0.0,5.0,,,,,,100.0, -2302135,2022-01-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2302136,2022-01-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,39.0,39.0,35.0,4.0,0.0,,,,,,89.74, -2302137,2022-01-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,29.0,30.0,27.0,2.0,1.0,,,,,,93.1, -2302138,2022-01-17,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2302139,2022-01-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302140,2022-01-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302141,2022-01-17,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302142,2022-01-17,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,33.0,37.0,26.0,7.0,4.0,,,,,,78.79, -2302143,2022-01-17,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,3.0,5.0,2.0,1.0,2.0,,,,,,66.67, -2302144,2022-01-17,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302145,2022-01-17,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302146,2022-01-17,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,28.0,28.0,26.0,2.0,0.0,,92.86 -2302147,2022-01-17,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302148,2022-01-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302149,2022-01-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2302150,2022-01-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,19.0,19.0,10.0,9.0,0.0,,,,,,52.63, -2302151,2022-01-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,19.0,20.0,7.0,12.0,1.0,,,,,,36.84, -2302152,2022-01-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2302153,2022-01-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302154,2022-01-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2302155,2022-01-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302156,2022-01-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302157,2022-01-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,92.0,113.0,92.0,0.0,21.0,,100.0 -2302158,2022-01-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,370,Room Based Capacity,,,,,,114.0,107.0,114.0,0.0,0.0,,100.0 -2302159,2022-01-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2302160,2022-01-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,146,Room Based Capacity,,,,,,142.0,155.0,142.0,0.0,13.0,,100.0 -2302161,2022-01-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2302162,2022-01-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,33.0,29.0,2.0,2.0,,,,,,93.55, -2302163,2022-01-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2302164,2022-01-18,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2302165,2022-01-18,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,63.0,65.0,62.0,1.0,2.0,,98.41 -2302166,2022-01-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,63,Room Based Capacity,,,,,,70.0,83.0,63.0,7.0,13.0,,90.0 -2302167,2022-01-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2302168,2022-01-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2302169,2022-01-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2302170,2022-01-18,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2302171,2022-01-18,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,121,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2302172,2022-01-18,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2302173,2022-01-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2302174,2022-01-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2302175,2022-01-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2302176,2022-01-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2302177,2022-01-18,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2302178,2022-01-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2302179,2022-01-18,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,67.0,51.0,61.0,6.0,0.0,,91.04 -2302180,2022-01-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302181,2022-01-18,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2302182,2022-01-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,58,Room Based Capacity,,,,,,71.0,82.0,52.0,19.0,11.0,,73.24 -2302183,2022-01-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,57,Room Based Capacity,,,,,,69.0,30.0,55.0,14.0,0.0,,79.71 -2302184,2022-01-18,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2302185,2022-01-18,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2302186,2022-01-18,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2302187,2022-01-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2302188,2022-01-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2302189,2022-01-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,72.0,54.0,1.0,17.0,,,,,,98.18, -2302190,2022-01-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2302191,2022-01-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,20.0,20.0,10.0,10.0,0.0,,,,,,50.0, -2302192,2022-01-18,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2302193,2022-01-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2302194,2022-01-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2302195,2022-01-18,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2302196,2022-01-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2302197,2022-01-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,73.0,74.0,71.0,2.0,1.0,,,,,,97.26, -2302198,2022-01-18,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2302199,2022-01-18,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2302200,2022-01-18,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2302201,2022-01-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2302202,2022-01-18,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,38.0,42.0,37.0,1.0,4.0,,97.37 -2302203,2022-01-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2302204,2022-01-18,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2302205,2022-01-18,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,38.0,44.0,37.0,1.0,6.0,,,,,,97.37, -2302206,2022-01-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302207,2022-01-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,233.0,245.0,228.0,5.0,12.0,,97.85 -2302208,2022-01-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2302209,2022-01-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2302210,2022-01-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2302211,2022-01-18,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2302212,2022-01-18,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,50.0,42.0,2.0,6.0,,,,,,95.45, -2302213,2022-01-18,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2302214,2022-01-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2302215,2022-01-18,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302216,2022-01-18,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2302217,2022-01-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2302218,2022-01-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302219,2022-01-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,35,Bed Based Capacity,44.0,44.0,35.0,9.0,0.0,,,,,,79.55, -2302220,2022-01-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302221,2022-01-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2302222,2022-01-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2302223,2022-01-18,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,45.0,34.0,0.0,11.0,,,,,,100.0, -2302224,2022-01-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2302225,2022-01-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302226,2022-01-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,25.0,25.0,18.0,7.0,0.0,,,,,,72.0, -2302227,2022-01-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302228,2022-01-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302229,2022-01-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2302230,2022-01-18,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2302231,2022-01-18,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2302232,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,60.0,70.0,58.0,2.0,10.0,,,,,,96.67, -2302233,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2302234,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,31.0,29.0,1.0,1.0,,,,,,96.67, -2302235,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2302236,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,48.0,100.0,48.0,0.0,52.0,,100.0 -2302237,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,228.0,235.0,228.0,0.0,7.0,,100.0 -2302238,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,286,Room Based Capacity,,,,,,250.0,263.0,250.0,0.0,13.0,,100.0 -2302239,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2302240,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2302241,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2302242,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2302243,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,111,Bed Based Capacity,115.0,115.0,111.0,4.0,0.0,,,,,,96.52, -2302244,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2302245,2022-01-18,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,51.0,45.0,0.0,6.0,,,,,,100.0, -2302246,2022-01-18,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2302247,2022-01-18,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,35.0,83.0,22.0,13.0,48.0,,,,,,62.86, -2302248,2022-01-18,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2302249,2022-01-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,35.0,40.0,34.0,1.0,5.0,,97.14 -2302250,2022-01-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302251,2022-01-18,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2302252,2022-01-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2302253,2022-01-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2302254,2022-01-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302255,2022-01-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2302256,2022-01-18,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2302257,2022-01-18,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302258,2022-01-18,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2302259,2022-01-18,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2302260,2022-01-18,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2302261,2022-01-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302262,2022-01-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,43.0,42.0,0.0,1.0,,,,,,100.0, -2302263,2022-01-18,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2302264,2022-01-18,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2302265,2022-01-18,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2302266,2022-01-18,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,216,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2302267,2022-01-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,64.0,67.0,61.0,3.0,3.0,,,,,,95.31, -2302268,2022-01-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2302269,2022-01-18,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2302270,2022-01-18,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2302271,2022-01-18,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2302272,2022-01-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,124.0,131.0,124.0,0.0,7.0,,100.0 -2302273,2022-01-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,218,Bed Based Capacity,219.0,222.0,218.0,1.0,3.0,,,,,,99.54, -2302274,2022-01-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,36.0,31.0,0.0,5.0,,,,,,100.0, -2302275,2022-01-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2302276,2022-01-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,39.0,39.0,35.0,4.0,0.0,,,,,,89.74, -2302277,2022-01-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2302278,2022-01-18,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2302279,2022-01-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302280,2022-01-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302281,2022-01-18,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302282,2022-01-18,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,33.0,37.0,26.0,7.0,4.0,,,,,,78.79, -2302283,2022-01-18,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,3.0,5.0,2.0,1.0,2.0,,,,,,66.67, -2302284,2022-01-18,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302285,2022-01-18,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2302286,2022-01-18,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2302287,2022-01-18,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302288,2022-01-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302289,2022-01-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302290,2022-01-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,19.0,19.0,10.0,9.0,0.0,,,,,,52.63, -2302291,2022-01-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,19.0,20.0,7.0,12.0,1.0,,,,,,36.84, -2302292,2022-01-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302293,2022-01-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302294,2022-01-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2302295,2022-01-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302296,2022-01-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302297,2022-01-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,91.0,113.0,91.0,0.0,22.0,,100.0 -2302298,2022-01-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,376,Room Based Capacity,,,,,,116.0,107.0,116.0,0.0,0.0,,100.0 -2302299,2022-01-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2302300,2022-01-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,146,Room Based Capacity,,,,,,142.0,155.0,142.0,0.0,13.0,,100.0 -2302301,2022-01-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2302302,2022-01-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2302303,2022-01-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2302304,2022-01-19,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2302305,2022-01-19,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,63.0,65.0,62.0,1.0,2.0,,98.41 -2302306,2022-01-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,69.0,83.0,66.0,3.0,14.0,,95.65 -2302307,2022-01-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2302308,2022-01-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2302309,2022-01-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2302310,2022-01-19,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2302311,2022-01-19,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2302312,2022-01-19,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2302313,2022-01-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2302314,2022-01-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2302315,2022-01-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2302316,2022-01-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2302317,2022-01-19,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2302318,2022-01-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2302319,2022-01-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2302320,2022-01-19,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,67.0,51.0,61.0,6.0,0.0,,91.04 -2302321,2022-01-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302322,2022-01-19,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2302323,2022-01-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,57,Room Based Capacity,,,,,,71.0,82.0,51.0,20.0,11.0,,71.83 -2302324,2022-01-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,55,Room Based Capacity,,,,,,70.0,30.0,53.0,17.0,0.0,,75.71 -2302325,2022-01-19,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2302326,2022-01-19,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2302327,2022-01-19,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2302328,2022-01-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2302329,2022-01-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2302330,2022-01-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2302331,2022-01-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2302332,2022-01-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,20.0,20.0,10.0,10.0,0.0,,,,,,50.0, -2302333,2022-01-19,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2302334,2022-01-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2302335,2022-01-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2302336,2022-01-19,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2302337,2022-01-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302338,2022-01-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,73.0,74.0,72.0,1.0,1.0,,,,,,98.63, -2302339,2022-01-19,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2302340,2022-01-19,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2302341,2022-01-19,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2302342,2022-01-19,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2302343,2022-01-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2302344,2022-01-19,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302345,2022-01-19,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,44.0,38.0,0.0,6.0,,,,,,100.0, -2302346,2022-01-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302347,2022-01-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,233.0,245.0,226.0,7.0,12.0,,97.0 -2302348,2022-01-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2302349,2022-01-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,87.0,92.0,87.0,0.0,5.0,,100.0 -2302350,2022-01-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2302351,2022-01-19,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2302352,2022-01-19,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,50.0,42.0,2.0,6.0,,,,,,95.45, -2302353,2022-01-19,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302354,2022-01-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2302355,2022-01-19,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302356,2022-01-19,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2302357,2022-01-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2302358,2022-01-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302359,2022-01-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,29,Bed Based Capacity,44.0,44.0,29.0,15.0,0.0,,,,,,65.91, -2302360,2022-01-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2302361,2022-01-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2302362,2022-01-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2302363,2022-01-19,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,34.0,45.0,32.0,2.0,11.0,,,,,,94.12, -2302364,2022-01-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2302365,2022-01-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302366,2022-01-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,25.0,25.0,19.0,6.0,0.0,,,,,,76.0, -2302367,2022-01-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2302368,2022-01-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302369,2022-01-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2302370,2022-01-19,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2302371,2022-01-19,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2302372,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,57.0,70.0,57.0,0.0,13.0,,,,,,100.0, -2302373,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2302374,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2302375,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2302376,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,56.0,100.0,56.0,0.0,44.0,,100.0 -2302377,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,226.0,235.0,226.0,0.0,9.0,,100.0 -2302378,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,285,Room Based Capacity,,,,,,249.0,263.0,249.0,0.0,14.0,,100.0 -2302379,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2302380,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2302381,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,182,Bed Based Capacity,184.0,184.0,182.0,2.0,0.0,,,,,,98.91, -2302382,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2302383,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2302384,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2302385,2022-01-19,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,51.0,45.0,0.0,6.0,,,,,,100.0, -2302386,2022-01-19,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2302387,2022-01-19,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,35.0,83.0,15.0,20.0,48.0,,,,,,42.86, -2302388,2022-01-19,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2302389,2022-01-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2302390,2022-01-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302391,2022-01-19,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2302392,2022-01-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2302393,2022-01-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2302394,2022-01-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302395,2022-01-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2302396,2022-01-19,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2302397,2022-01-19,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302398,2022-01-19,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,17.0,20.0,17.0,0.0,3.0,,,,,,100.0, -2302399,2022-01-19,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2302400,2022-01-19,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2302401,2022-01-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302402,2022-01-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,43.0,42.0,0.0,1.0,,,,,,100.0, -2302403,2022-01-19,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2302404,2022-01-19,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2302405,2022-01-19,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2302406,2022-01-19,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,216,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2302407,2022-01-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,67.0,62.0,0.0,5.0,,,,,,100.0, -2302408,2022-01-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2302409,2022-01-19,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2302410,2022-01-19,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2302411,2022-01-19,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2302412,2022-01-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,126.0,131.0,123.0,3.0,5.0,,97.62 -2302413,2022-01-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,219,Bed Based Capacity,219.0,222.0,219.0,0.0,3.0,,,,,,100.0, -2302414,2022-01-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,36.0,32.0,0.0,4.0,,,,,,100.0, -2302415,2022-01-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2302416,2022-01-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,39.0,39.0,35.0,4.0,0.0,,,,,,89.74, -2302417,2022-01-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2302418,2022-01-19,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2302419,2022-01-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302420,2022-01-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302421,2022-01-19,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302422,2022-01-19,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,24,Bed Based Capacity,26.0,37.0,24.0,2.0,11.0,,,,,,92.31, -2302423,2022-01-19,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2302424,2022-01-19,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302425,2022-01-19,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302426,2022-01-19,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2302427,2022-01-19,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302428,2022-01-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302429,2022-01-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302430,2022-01-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,14.0,19.0,11.0,3.0,5.0,,,,,,78.57, -2302431,2022-01-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,20.0,20.0,8.0,12.0,0.0,,,,,,40.0, -2302432,2022-01-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302433,2022-01-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302434,2022-01-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2302435,2022-01-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302436,2022-01-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302437,2022-01-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,92.0,113.0,92.0,0.0,21.0,,100.0 -2302438,2022-01-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,384,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2302439,2022-01-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2302440,2022-01-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,144.0,155.0,144.0,0.0,11.0,,100.0 -2302441,2022-01-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2302442,2022-01-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2302443,2022-01-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2302444,2022-01-20,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2302445,2022-01-20,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,63.0,65.0,62.0,1.0,2.0,,98.41 -2302446,2022-01-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,69.0,83.0,67.0,2.0,14.0,,97.1 -2302447,2022-01-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2302448,2022-01-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2302449,2022-01-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2302450,2022-01-20,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2302451,2022-01-20,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2302452,2022-01-20,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2302453,2022-01-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2302454,2022-01-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2302455,2022-01-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2302456,2022-01-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2302457,2022-01-20,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2302458,2022-01-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2302459,2022-01-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2302460,2022-01-20,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,67.0,51.0,62.0,5.0,0.0,,92.54 -2302461,2022-01-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302462,2022-01-20,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2302463,2022-01-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,71.0,82.0,39.0,32.0,11.0,,54.93 -2302464,2022-01-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,58,Room Based Capacity,,,,,,70.0,30.0,56.0,14.0,0.0,,80.0 -2302465,2022-01-20,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2302466,2022-01-20,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2302467,2022-01-20,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302468,2022-01-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,48.0,51.0,41.0,7.0,3.0,,,,,,85.42, -2302469,2022-01-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,72.0,81.0,70.0,2.0,9.0,,,,,,97.22, -2302470,2022-01-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2302471,2022-01-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2302472,2022-01-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,20.0,20.0,10.0,10.0,0.0,,,,,,50.0, -2302473,2022-01-20,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2302474,2022-01-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302475,2022-01-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2302476,2022-01-20,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2302477,2022-01-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2302478,2022-01-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2302479,2022-01-20,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,32,Bed Based Capacity,34.0,34.0,32.0,2.0,0.0,,,,,,94.12, -2302480,2022-01-20,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2302481,2022-01-20,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,7,Room Based Capacity,,,,,,11.0,11.0,7.0,4.0,0.0,,63.64 -2302482,2022-01-20,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2302483,2022-01-20,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2302484,2022-01-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,53.0,50.0,1.0,2.0,,,,,,98.04, -2302485,2022-01-20,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302486,2022-01-20,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,44.0,40.0,0.0,4.0,,,,,,100.0, -2302487,2022-01-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302488,2022-01-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,233.0,245.0,225.0,8.0,12.0,,96.57 -2302489,2022-01-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2302490,2022-01-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2302491,2022-01-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2302492,2022-01-20,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2302493,2022-01-20,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,50.0,40.0,4.0,6.0,,,,,,90.91, -2302494,2022-01-20,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2302495,2022-01-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,41.0,41.0,39.0,2.0,0.0,,95.12 -2302496,2022-01-20,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302497,2022-01-20,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2302498,2022-01-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,37.0,37.0,33.0,4.0,0.0,,,,,,89.19, -2302499,2022-01-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302500,2022-01-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,29,Bed Based Capacity,44.0,44.0,29.0,15.0,0.0,,,,,,65.91, -2302501,2022-01-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302502,2022-01-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2302503,2022-01-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2302504,2022-01-20,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,45.0,32.0,0.0,13.0,,,,,,100.0, -2302505,2022-01-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2302506,2022-01-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302507,2022-01-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,25.0,25.0,19.0,6.0,0.0,,,,,,76.0, -2302508,2022-01-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302509,2022-01-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302510,2022-01-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2302511,2022-01-20,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,50.0,47.0,1.0,2.0,,,,,,97.92, -2302512,2022-01-20,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,91.0,94.0,90.0,1.0,3.0,,98.9 -2302513,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,52.0,70.0,49.0,3.0,18.0,,,,,,94.23, -2302514,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2302515,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2302516,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2302517,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,58.0,100.0,58.0,0.0,42.0,,100.0 -2302518,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2302519,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,283,Room Based Capacity,,,,,,249.0,263.0,247.0,2.0,14.0,,99.2 -2302520,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,59.0,60.0,59.0,0.0,1.0,,,,,,100.0, -2302521,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2302522,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2302523,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2302524,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2302525,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2302526,2022-01-20,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,51.0,43.0,2.0,6.0,,,,,,95.56, -2302527,2022-01-20,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,13311,Homes First Society - Flex Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,3.0,1.0,0.0,2.0,,,,,,100.0, -2302528,2022-01-20,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,83.0,12.0,2.0,69.0,,,,,,85.71, -2302529,2022-01-20,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2302530,2022-01-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2302531,2022-01-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302532,2022-01-20,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2302533,2022-01-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2302534,2022-01-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2302535,2022-01-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302536,2022-01-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2302537,2022-01-20,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2302538,2022-01-20,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302539,2022-01-20,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,17.0,20.0,17.0,0.0,3.0,,,,,,100.0, -2302540,2022-01-20,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2302541,2022-01-20,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2302542,2022-01-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302543,2022-01-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,43.0,42.0,0.0,1.0,,,,,,100.0, -2302544,2022-01-20,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2302545,2022-01-20,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2302546,2022-01-20,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2302547,2022-01-20,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,216,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2302548,2022-01-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,67.0,62.0,0.0,5.0,,,,,,100.0, -2302549,2022-01-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2302550,2022-01-20,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2302551,2022-01-20,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2302552,2022-01-20,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2302553,2022-01-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2302554,2022-01-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,219,Bed Based Capacity,219.0,222.0,219.0,0.0,3.0,,,,,,100.0, -2302555,2022-01-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,36.0,32.0,0.0,4.0,,,,,,100.0, -2302556,2022-01-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2302557,2022-01-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,39.0,39.0,35.0,4.0,0.0,,,,,,89.74, -2302558,2022-01-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2302559,2022-01-20,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2302560,2022-01-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302561,2022-01-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302562,2022-01-20,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302563,2022-01-20,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,37.0,29.0,0.0,8.0,,,,,,100.0, -2302564,2022-01-20,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2302565,2022-01-20,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302566,2022-01-20,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302567,2022-01-20,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2302568,2022-01-20,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302569,2022-01-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302570,2022-01-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302571,2022-01-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,19.0,11.0,1.0,7.0,,,,,,91.67, -2302572,2022-01-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,20.0,20.0,11.0,9.0,0.0,,,,,,55.0, -2302573,2022-01-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302574,2022-01-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302575,2022-01-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2302576,2022-01-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302577,2022-01-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302578,2022-01-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,93.0,113.0,93.0,0.0,20.0,,100.0 -2302579,2022-01-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,389,Room Based Capacity,,,,,,119.0,107.0,119.0,0.0,0.0,,100.0 -2302580,2022-01-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2302581,2022-01-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2302582,2022-01-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2302583,2022-01-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2302584,2022-01-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2302585,2022-01-21,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2302586,2022-01-21,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,63.0,65.0,62.0,1.0,2.0,,98.41 -2302587,2022-01-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,72.0,83.0,68.0,4.0,11.0,,94.44 -2302588,2022-01-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2302589,2022-01-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2302590,2022-01-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,75.0,77.0,74.0,1.0,2.0,,98.67 -2302591,2022-01-21,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2302592,2022-01-21,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2302593,2022-01-21,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2302594,2022-01-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2302595,2022-01-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2302596,2022-01-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2302597,2022-01-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2302598,2022-01-21,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2302599,2022-01-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,15.0,4.0,1.0,10.0,,,,,,80.0, -2302600,2022-01-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2302601,2022-01-21,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2302602,2022-01-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2302603,2022-01-21,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2302604,2022-01-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,71.0,82.0,28.0,43.0,11.0,,39.44 -2302605,2022-01-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,8.0,30.0,1.0,7.0,22.0,,12.5 -2302606,2022-01-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,62,Room Based Capacity,,,,,,70.0,30.0,57.0,13.0,0.0,,81.43 -2302607,2022-01-21,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2302608,2022-01-21,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,88.0,88.0,88.0,0.0,0.0,,,,,,100.0, -2302609,2022-01-21,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302610,2022-01-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,48.0,51.0,41.0,7.0,3.0,,,,,,85.42, -2302611,2022-01-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2302612,2022-01-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2302613,2022-01-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2302614,2022-01-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,20.0,20.0,10.0,10.0,0.0,,,,,,50.0, -2302615,2022-01-21,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2302616,2022-01-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2302617,2022-01-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2302618,2022-01-21,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2302619,2022-01-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2302620,2022-01-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2302621,2022-01-21,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2302622,2022-01-21,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,52,Bed Based Capacity,55.0,55.0,52.0,3.0,0.0,,,,,,94.55, -2302623,2022-01-21,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,19.0,23.0,19.0,0.0,4.0,,100.0 -2302624,2022-01-21,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2302625,2022-01-21,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2302626,2022-01-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,53.0,49.0,1.0,3.0,,,,,,98.0, -2302627,2022-01-21,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302628,2022-01-21,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,44.0,39.0,1.0,4.0,,,,,,97.5, -2302629,2022-01-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302630,2022-01-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,228.0,245.0,228.0,0.0,17.0,,100.0 -2302631,2022-01-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2302632,2022-01-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2302633,2022-01-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2302634,2022-01-21,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2302635,2022-01-21,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2302636,2022-01-21,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2302637,2022-01-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2302638,2022-01-21,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302639,2022-01-21,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2302640,2022-01-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,37.0,37.0,32.0,5.0,0.0,,,,,,86.49, -2302641,2022-01-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302642,2022-01-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,44.0,29.0,0.0,15.0,,,,,,100.0, -2302643,2022-01-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302644,2022-01-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,54.0,52.0,1.0,1.0,,,,,,98.11, -2302645,2022-01-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2302646,2022-01-21,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,45.0,32.0,0.0,13.0,,,,,,100.0, -2302647,2022-01-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2302648,2022-01-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302649,2022-01-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2302650,2022-01-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2302651,2022-01-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302652,2022-01-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2302653,2022-01-21,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2302654,2022-01-21,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2302655,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,52.0,70.0,50.0,2.0,18.0,,,,,,96.15, -2302656,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302657,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2302658,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,55.0,51.0,0.0,4.0,,,,,,100.0, -2302659,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,70.0,100.0,70.0,0.0,30.0,,100.0 -2302660,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2302661,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,286,Room Based Capacity,,,,,,251.0,263.0,251.0,0.0,12.0,,100.0 -2302662,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2302663,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2302664,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2302665,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2302666,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2302667,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2302668,2022-01-21,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,51.0,45.0,0.0,6.0,,,,,,100.0, -2302669,2022-01-21,15,Homes First Society,26,HFS - Strachan House,1033.0,HFS Strachan House,805A Wellington St W,M5V 1G8,Toronto,ON,12032,Homes First Society - Strachan House,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,14.0,83.0,1.0,13.0,69.0,,,,,,7.14, -2302670,2022-01-21,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2302671,2022-01-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2302672,2022-01-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302673,2022-01-21,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2302674,2022-01-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2302675,2022-01-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2302676,2022-01-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302677,2022-01-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2302678,2022-01-21,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302679,2022-01-21,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302680,2022-01-21,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2302681,2022-01-21,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2302682,2022-01-21,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2302683,2022-01-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302684,2022-01-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,43.0,42.0,0.0,1.0,,,,,,100.0, -2302685,2022-01-21,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2302686,2022-01-21,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2302687,2022-01-21,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2302688,2022-01-21,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,216,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2302689,2022-01-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,67.0,67.0,63.0,4.0,0.0,,,,,,94.03, -2302690,2022-01-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2302691,2022-01-21,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2302692,2022-01-21,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2302693,2022-01-21,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2302694,2022-01-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2302695,2022-01-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,220,Bed Based Capacity,220.0,222.0,220.0,0.0,2.0,,,,,,100.0, -2302696,2022-01-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,36.0,31.0,0.0,5.0,,,,,,100.0, -2302697,2022-01-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2302698,2022-01-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2302699,2022-01-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2302700,2022-01-21,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2302701,2022-01-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302702,2022-01-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302703,2022-01-21,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302704,2022-01-21,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,37.0,29.0,0.0,8.0,,,,,,100.0, -2302705,2022-01-21,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2302706,2022-01-21,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302707,2022-01-21,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302708,2022-01-21,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2302709,2022-01-21,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302710,2022-01-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302711,2022-01-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2302712,2022-01-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,19.0,11.0,1.0,7.0,,,,,,91.67, -2302713,2022-01-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,20.0,20.0,11.0,9.0,0.0,,,,,,55.0, -2302714,2022-01-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302715,2022-01-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302716,2022-01-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2302717,2022-01-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302718,2022-01-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302719,2022-01-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,93.0,113.0,93.0,0.0,20.0,,100.0 -2302720,2022-01-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,389,Room Based Capacity,,,,,,119.0,107.0,119.0,0.0,0.0,,100.0 -2302721,2022-01-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2302722,2022-01-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2302723,2022-01-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2302724,2022-01-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2302725,2022-01-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2302726,2022-01-22,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2302727,2022-01-22,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2302728,2022-01-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,72.0,83.0,67.0,5.0,11.0,,93.06 -2302729,2022-01-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2302730,2022-01-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2302731,2022-01-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2302732,2022-01-22,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2302733,2022-01-22,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2302734,2022-01-22,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2302735,2022-01-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2302736,2022-01-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2302737,2022-01-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2302738,2022-01-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2302739,2022-01-22,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2302740,2022-01-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2302741,2022-01-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2302742,2022-01-22,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2302743,2022-01-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302744,2022-01-22,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2302745,2022-01-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,71.0,82.0,28.0,43.0,11.0,,39.44 -2302746,2022-01-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,58,Room Based Capacity,,,,,,70.0,30.0,53.0,17.0,0.0,,75.71 -2302747,2022-01-22,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2302748,2022-01-22,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,88.0,88.0,88.0,0.0,0.0,,,,,,100.0, -2302749,2022-01-22,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302750,2022-01-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,48.0,51.0,41.0,7.0,3.0,,,,,,85.42, -2302751,2022-01-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2302752,2022-01-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2302753,2022-01-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2302754,2022-01-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,20.0,20.0,9.0,11.0,0.0,,,,,,45.0, -2302755,2022-01-22,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2302756,2022-01-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2302757,2022-01-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2302758,2022-01-22,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2302759,2022-01-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2302760,2022-01-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2302761,2022-01-22,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2302762,2022-01-22,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2302763,2022-01-22,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,19.0,23.0,19.0,0.0,4.0,,100.0 -2302764,2022-01-22,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2302765,2022-01-22,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2302766,2022-01-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,53.0,50.0,0.0,3.0,,,,,,100.0, -2302767,2022-01-22,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302768,2022-01-22,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,44.0,40.0,1.0,3.0,,,,,,97.56, -2302769,2022-01-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302770,2022-01-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,228.0,245.0,228.0,0.0,17.0,,100.0 -2302771,2022-01-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2302772,2022-01-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2302773,2022-01-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2302774,2022-01-22,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2302775,2022-01-22,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2302776,2022-01-22,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302777,2022-01-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2302778,2022-01-22,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302779,2022-01-22,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2302780,2022-01-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,37.0,37.0,32.0,5.0,0.0,,,,,,86.49, -2302781,2022-01-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302782,2022-01-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,44.0,29.0,0.0,15.0,,,,,,100.0, -2302783,2022-01-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302784,2022-01-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2302785,2022-01-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2302786,2022-01-22,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,45.0,32.0,0.0,13.0,,,,,,100.0, -2302787,2022-01-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2302788,2022-01-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302789,2022-01-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2302790,2022-01-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2302791,2022-01-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302792,2022-01-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2302793,2022-01-22,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2302794,2022-01-22,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2302795,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,70.0,52.0,1.0,17.0,,,,,,98.11, -2302796,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302797,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2302798,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,55.0,51.0,0.0,4.0,,,,,,100.0, -2302799,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,71.0,100.0,71.0,0.0,29.0,,100.0 -2302800,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2302801,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,287,Room Based Capacity,,,,,,252.0,263.0,252.0,0.0,11.0,,100.0 -2302802,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2302803,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2302804,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2302805,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2302806,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2302807,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2302808,2022-01-22,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,51.0,46.0,0.0,5.0,,,,,,100.0, -2302809,2022-01-22,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2302810,2022-01-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2302811,2022-01-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302812,2022-01-22,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2302813,2022-01-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2302814,2022-01-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2302815,2022-01-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302816,2022-01-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2302817,2022-01-22,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302818,2022-01-22,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302819,2022-01-22,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2302820,2022-01-22,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2302821,2022-01-22,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2302822,2022-01-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302823,2022-01-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,43.0,42.0,0.0,1.0,,,,,,100.0, -2302824,2022-01-22,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2302825,2022-01-22,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2302826,2022-01-22,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2302827,2022-01-22,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2302828,2022-01-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,67.0,67.0,66.0,1.0,0.0,,,,,,98.51, -2302829,2022-01-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2302830,2022-01-22,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2302831,2022-01-22,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2302832,2022-01-22,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,54.0,49.0,0.0,5.0,,,,,,100.0, -2302833,2022-01-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2302834,2022-01-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,221,Bed Based Capacity,221.0,222.0,221.0,0.0,1.0,,,,,,100.0, -2302835,2022-01-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,36.0,31.0,0.0,5.0,,,,,,100.0, -2302836,2022-01-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2302837,2022-01-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2302838,2022-01-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2302839,2022-01-22,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2302840,2022-01-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302841,2022-01-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302842,2022-01-22,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302843,2022-01-22,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,37.0,29.0,0.0,8.0,,,,,,100.0, -2302844,2022-01-22,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2302845,2022-01-22,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302846,2022-01-22,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302847,2022-01-22,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2302848,2022-01-22,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302849,2022-01-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302850,2022-01-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2302851,2022-01-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,19.0,12.0,0.0,7.0,,,,,,100.0, -2302852,2022-01-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,20.0,20.0,11.0,9.0,0.0,,,,,,55.0, -2302853,2022-01-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302854,2022-01-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302855,2022-01-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,10.0,8.0,1.0,1.0,,,,,,88.89, -2302856,2022-01-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302857,2022-01-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302858,2022-01-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,261,Room Based Capacity,,,,,,93.0,113.0,92.0,1.0,20.0,,98.92 -2302859,2022-01-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,393,Room Based Capacity,,,,,,120.0,107.0,120.0,0.0,0.0,,100.0 -2302860,2022-01-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2302861,2022-01-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2302862,2022-01-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2302863,2022-01-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2302864,2022-01-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2302865,2022-01-23,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2302866,2022-01-23,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2302867,2022-01-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,76.0,83.0,67.0,9.0,7.0,,88.16 -2302868,2022-01-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2302869,2022-01-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2302870,2022-01-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2302871,2022-01-23,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2302872,2022-01-23,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2302873,2022-01-23,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2302874,2022-01-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2302875,2022-01-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2302876,2022-01-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2302877,2022-01-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2302878,2022-01-23,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2302879,2022-01-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2302880,2022-01-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2302881,2022-01-23,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2302882,2022-01-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302883,2022-01-23,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2302884,2022-01-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,71.0,82.0,28.0,43.0,11.0,,39.44 -2302885,2022-01-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,53,Room Based Capacity,,,,,,70.0,30.0,48.0,22.0,0.0,,68.57 -2302886,2022-01-23,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2302887,2022-01-23,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,88.0,88.0,88.0,0.0,0.0,,,,,,100.0, -2302888,2022-01-23,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302889,2022-01-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,51.0,41.0,0.0,10.0,,,,,,100.0, -2302890,2022-01-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2302891,2022-01-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,55.0,72.0,53.0,2.0,17.0,,,,,,96.36, -2302892,2022-01-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2302893,2022-01-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,20.0,20.0,9.0,11.0,0.0,,,,,,45.0, -2302894,2022-01-23,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2302895,2022-01-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2302896,2022-01-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2302897,2022-01-23,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2302898,2022-01-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2302899,2022-01-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2302900,2022-01-23,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2302901,2022-01-23,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2302902,2022-01-23,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,19.0,23.0,19.0,0.0,4.0,,100.0 -2302903,2022-01-23,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2302904,2022-01-23,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2302905,2022-01-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,53.0,47.0,3.0,3.0,,,,,,94.0, -2302906,2022-01-23,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302907,2022-01-23,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2302908,2022-01-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2302909,2022-01-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,228.0,245.0,228.0,0.0,17.0,,100.0 -2302910,2022-01-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2302911,2022-01-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2302912,2022-01-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2302913,2022-01-23,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2302914,2022-01-23,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,50.0,43.0,1.0,6.0,,,,,,97.73, -2302915,2022-01-23,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302916,2022-01-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2302917,2022-01-23,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302918,2022-01-23,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2302919,2022-01-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,37.0,37.0,32.0,5.0,0.0,,,,,,86.49, -2302920,2022-01-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2302921,2022-01-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,44.0,29.0,0.0,15.0,,,,,,100.0, -2302922,2022-01-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302923,2022-01-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2302924,2022-01-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2302925,2022-01-23,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,31,Bed Based Capacity,32.0,45.0,31.0,1.0,13.0,,,,,,96.88, -2302926,2022-01-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2302927,2022-01-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2302928,2022-01-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2302929,2022-01-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302930,2022-01-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2302931,2022-01-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2302932,2022-01-23,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2302933,2022-01-23,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2302934,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2302935,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302936,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2302937,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,55.0,51.0,0.0,4.0,,,,,,100.0, -2302938,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,71.0,100.0,71.0,0.0,29.0,,100.0 -2302939,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,218.0,235.0,218.0,0.0,17.0,,100.0 -2302940,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,285,Room Based Capacity,,,,,,252.0,263.0,251.0,1.0,11.0,,99.6 -2302941,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,60.0,60.0,58.0,2.0,0.0,,,,,,96.67, -2302942,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2302943,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2302944,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2302945,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2302946,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2302947,2022-01-23,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,51.0,46.0,0.0,5.0,,,,,,100.0, -2302948,2022-01-23,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2302949,2022-01-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2302950,2022-01-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302951,2022-01-23,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2302952,2022-01-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2302953,2022-01-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2302954,2022-01-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2302955,2022-01-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2302956,2022-01-23,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2302957,2022-01-23,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2302958,2022-01-23,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2302959,2022-01-23,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2302960,2022-01-23,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2302961,2022-01-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302962,2022-01-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2302963,2022-01-23,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2302964,2022-01-23,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2302965,2022-01-23,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2302966,2022-01-23,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2302967,2022-01-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2302968,2022-01-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2302969,2022-01-23,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2302970,2022-01-23,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2302971,2022-01-23,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,54.0,49.0,0.0,5.0,,,,,,100.0, -2302972,2022-01-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2302973,2022-01-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,220,Bed Based Capacity,221.0,222.0,220.0,1.0,1.0,,,,,,99.55, -2302974,2022-01-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,36.0,31.0,0.0,5.0,,,,,,100.0, -2302975,2022-01-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2302976,2022-01-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2302977,2022-01-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2302978,2022-01-23,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2302979,2022-01-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2302980,2022-01-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2302981,2022-01-23,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2302982,2022-01-23,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,37.0,28.0,1.0,8.0,,,,,,96.55, -2302983,2022-01-23,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2302984,2022-01-23,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2302985,2022-01-23,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2302986,2022-01-23,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2302987,2022-01-23,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2302988,2022-01-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2302989,2022-01-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2302990,2022-01-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,19.0,12.0,0.0,7.0,,,,,,100.0, -2302991,2022-01-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,20.0,20.0,12.0,8.0,0.0,,,,,,60.0, -2302992,2022-01-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2302993,2022-01-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2302994,2022-01-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,10.0,8.0,1.0,1.0,,,,,,88.89, -2302995,2022-01-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2302996,2022-01-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2302997,2022-01-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,91.0,113.0,91.0,0.0,22.0,,100.0 -2302998,2022-01-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,395,Room Based Capacity,,,,,,121.0,107.0,121.0,0.0,0.0,,100.0 -2302999,2022-01-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303000,2022-01-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2303001,2022-01-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2303002,2022-01-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2303003,2022-01-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2303004,2022-01-24,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2303005,2022-01-24,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2303006,2022-01-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,76.0,83.0,69.0,7.0,7.0,,90.79 -2303007,2022-01-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,21,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2303008,2022-01-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303009,2022-01-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,74.0,77.0,73.0,1.0,3.0,,98.65 -2303010,2022-01-24,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2303011,2022-01-24,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2303012,2022-01-24,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2303013,2022-01-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2303014,2022-01-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303015,2022-01-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2303016,2022-01-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2303017,2022-01-24,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2303018,2022-01-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2303019,2022-01-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2303020,2022-01-24,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2303021,2022-01-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303022,2022-01-24,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303023,2022-01-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,71.0,82.0,19.0,52.0,11.0,,26.76 -2303024,2022-01-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,55,Room Based Capacity,,,,,,70.0,30.0,50.0,20.0,0.0,,71.43 -2303025,2022-01-24,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303026,2022-01-24,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,88.0,88.0,88.0,0.0,0.0,,,,,,100.0, -2303027,2022-01-24,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303028,2022-01-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,51.0,42.0,0.0,9.0,,,,,,100.0, -2303029,2022-01-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2303030,2022-01-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2303031,2022-01-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2303032,2022-01-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,20.0,20.0,3.0,17.0,0.0,,,,,,15.0, -2303033,2022-01-24,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2303034,2022-01-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2303035,2022-01-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2303036,2022-01-24,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2303037,2022-01-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2303038,2022-01-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2303039,2022-01-24,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2303040,2022-01-24,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2303041,2022-01-24,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,26.0,29.0,26.0,0.0,3.0,,100.0 -2303042,2022-01-24,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2303043,2022-01-24,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2303044,2022-01-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,53.0,49.0,1.0,3.0,,,,,,98.0, -2303045,2022-01-24,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303046,2022-01-24,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2303047,2022-01-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303048,2022-01-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,228.0,245.0,228.0,0.0,17.0,,100.0 -2303049,2022-01-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2303050,2022-01-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2303051,2022-01-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2303052,2022-01-24,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2303053,2022-01-24,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,50.0,43.0,1.0,6.0,,,,,,97.73, -2303054,2022-01-24,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2303055,2022-01-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,40.0,41.0,38.0,2.0,1.0,,95.0 -2303056,2022-01-24,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303057,2022-01-24,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2303058,2022-01-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,37.0,37.0,32.0,5.0,0.0,,,,,,86.49, -2303059,2022-01-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303060,2022-01-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,29,Bed Based Capacity,44.0,44.0,29.0,15.0,0.0,,,,,,65.91, -2303061,2022-01-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303062,2022-01-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2303063,2022-01-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2303064,2022-01-24,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,45.0,30.0,0.0,15.0,,,,,,100.0, -2303065,2022-01-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2303066,2022-01-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303067,2022-01-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,25.0,25.0,19.0,6.0,0.0,,,,,,76.0, -2303068,2022-01-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303069,2022-01-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303070,2022-01-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2303071,2022-01-24,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2303072,2022-01-24,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2303073,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,60.0,70.0,59.0,1.0,10.0,,,,,,98.33, -2303074,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303075,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2303076,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2303077,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,71.0,100.0,71.0,0.0,29.0,,100.0 -2303078,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2303079,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,285,Room Based Capacity,,,,,,251.0,263.0,251.0,0.0,12.0,,100.0 -2303080,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2303081,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2303082,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2303083,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2303084,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2303085,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2303086,2022-01-24,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,51.0,45.0,1.0,5.0,,,,,,97.83, -2303087,2022-01-24,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2303088,2022-01-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,35.0,40.0,34.0,1.0,5.0,,97.14 -2303089,2022-01-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303090,2022-01-24,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2303091,2022-01-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2303092,2022-01-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2303093,2022-01-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2303094,2022-01-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2303095,2022-01-24,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303096,2022-01-24,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303097,2022-01-24,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2303098,2022-01-24,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2303099,2022-01-24,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2303100,2022-01-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303101,2022-01-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2303102,2022-01-24,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2303103,2022-01-24,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2303104,2022-01-24,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2303105,2022-01-24,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2303106,2022-01-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2303107,2022-01-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2303108,2022-01-24,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2303109,2022-01-24,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2303110,2022-01-24,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2303111,2022-01-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2303112,2022-01-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,221,Bed Based Capacity,221.0,222.0,221.0,0.0,1.0,,,,,,100.0, -2303113,2022-01-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,36.0,32.0,0.0,4.0,,,,,,100.0, -2303114,2022-01-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,76.0,77.0,72.0,4.0,1.0,,94.74 -2303115,2022-01-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2303116,2022-01-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2303117,2022-01-24,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2303118,2022-01-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2303119,2022-01-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2303120,2022-01-24,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303121,2022-01-24,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,37.0,28.0,0.0,9.0,,,,,,100.0, -2303122,2022-01-24,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2303123,2022-01-24,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2303124,2022-01-24,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303125,2022-01-24,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2303126,2022-01-24,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2303127,2022-01-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303128,2022-01-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2303129,2022-01-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,19.0,12.0,0.0,7.0,,,,,,100.0, -2303130,2022-01-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,20.0,20.0,14.0,6.0,0.0,,,,,,70.0, -2303131,2022-01-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303132,2022-01-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2303133,2022-01-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2303134,2022-01-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,31.0,28.0,1.0,2.0,,,,,,96.55, -2303135,2022-01-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2303136,2022-01-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,92.0,113.0,92.0,0.0,21.0,,100.0 -2303137,2022-01-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,395,Room Based Capacity,,,,,,121.0,107.0,121.0,0.0,0.0,,100.0 -2303138,2022-01-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303139,2022-01-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2303140,2022-01-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2303141,2022-01-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,33.0,31.0,0.0,2.0,,,,,,100.0, -2303142,2022-01-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2303143,2022-01-25,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2303144,2022-01-25,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2303145,2022-01-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,77.0,83.0,73.0,4.0,6.0,,94.81 -2303146,2022-01-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2303147,2022-01-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303148,2022-01-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2303149,2022-01-25,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2303150,2022-01-25,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2303151,2022-01-25,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2303152,2022-01-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2303153,2022-01-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303154,2022-01-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2303155,2022-01-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2303156,2022-01-25,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2303157,2022-01-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2303158,2022-01-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2303159,2022-01-25,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2303160,2022-01-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303161,2022-01-25,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303162,2022-01-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,9.0,82.0,9.0,0.0,73.0,,100.0 -2303163,2022-01-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,52,Room Based Capacity,,,,,,47.0,30.0,47.0,0.0,0.0,,100.0 -2303164,2022-01-25,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303165,2022-01-25,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,88.0,88.0,88.0,0.0,0.0,,,,,,100.0, -2303166,2022-01-25,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303167,2022-01-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,51.0,42.0,0.0,9.0,,,,,,100.0, -2303168,2022-01-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,81.0,73.0,0.0,8.0,,,,,,100.0, -2303169,2022-01-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2303170,2022-01-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,22.0,22.0,16.0,6.0,0.0,,,,,,72.73, -2303171,2022-01-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,20.0,2.0,0.0,18.0,,,,,,100.0, -2303172,2022-01-25,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2303173,2022-01-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303174,2022-01-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2303175,2022-01-25,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2303176,2022-01-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2303177,2022-01-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2303178,2022-01-25,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2303179,2022-01-25,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2303180,2022-01-25,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303181,2022-01-25,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2303182,2022-01-25,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2303183,2022-01-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,53.0,52.0,0.0,1.0,,,,,,100.0, -2303184,2022-01-25,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303185,2022-01-25,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2303186,2022-01-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2303187,2022-01-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,229.0,245.0,229.0,0.0,16.0,,100.0 -2303188,2022-01-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2303189,2022-01-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2303190,2022-01-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2303191,2022-01-25,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2303192,2022-01-25,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2303193,2022-01-25,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303194,2022-01-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2303195,2022-01-25,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303196,2022-01-25,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2303197,2022-01-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,37.0,37.0,32.0,5.0,0.0,,,,,,86.49, -2303198,2022-01-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303199,2022-01-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,33,Bed Based Capacity,44.0,44.0,33.0,11.0,0.0,,,,,,75.0, -2303200,2022-01-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303201,2022-01-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2303202,2022-01-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2303203,2022-01-25,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,45.0,29.0,1.0,15.0,,,,,,96.67, -2303204,2022-01-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2303205,2022-01-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303206,2022-01-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2303207,2022-01-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303208,2022-01-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303209,2022-01-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2303210,2022-01-25,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2303211,2022-01-25,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2303212,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,60.0,70.0,57.0,3.0,10.0,,,,,,95.0, -2303213,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2303214,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,31.0,29.0,1.0,1.0,,,,,,96.67, -2303215,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,55.0,51.0,0.0,4.0,,,,,,100.0, -2303216,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,71.0,100.0,71.0,0.0,29.0,,100.0 -2303217,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2303218,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,288,Room Based Capacity,,,,,,253.0,263.0,253.0,0.0,10.0,,100.0 -2303219,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2303220,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2303221,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2303222,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2303223,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2303224,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2303225,2022-01-25,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,51.0,46.0,0.0,5.0,,,,,,100.0, -2303226,2022-01-25,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2303227,2022-01-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2303228,2022-01-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303229,2022-01-25,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2303230,2022-01-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2303231,2022-01-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2303232,2022-01-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2303233,2022-01-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2303234,2022-01-25,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303235,2022-01-25,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2303236,2022-01-25,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2303237,2022-01-25,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2303238,2022-01-25,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2303239,2022-01-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303240,2022-01-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2303241,2022-01-25,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2303242,2022-01-25,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2303243,2022-01-25,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2303244,2022-01-25,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2303245,2022-01-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2303246,2022-01-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2303247,2022-01-25,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2303248,2022-01-25,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2303249,2022-01-25,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2303250,2022-01-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2303251,2022-01-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,222.0,222.0,222.0,0.0,0.0,,,,,,100.0, -2303252,2022-01-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,36.0,32.0,0.0,4.0,,,,,,100.0, -2303253,2022-01-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2303254,2022-01-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2303255,2022-01-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2303256,2022-01-25,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2303257,2022-01-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2303258,2022-01-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2303259,2022-01-25,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303260,2022-01-25,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,34.0,29.0,0.0,5.0,,,,,,100.0, -2303261,2022-01-25,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2303262,2022-01-25,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,27.0,23.0,1.0,3.0,,95.83 -2303263,2022-01-25,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303264,2022-01-25,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2303265,2022-01-25,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2303266,2022-01-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303267,2022-01-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2303268,2022-01-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,19.0,14.0,0.0,5.0,,,,,,100.0, -2303269,2022-01-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,20.0,20.0,15.0,5.0,0.0,,,,,,75.0, -2303270,2022-01-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2303271,2022-01-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2303272,2022-01-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2303273,2022-01-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,31.0,28.0,1.0,2.0,,,,,,96.55, -2303274,2022-01-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2303275,2022-01-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,264,Room Based Capacity,,,,,,93.0,113.0,93.0,0.0,20.0,,100.0 -2303276,2022-01-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,403,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2303277,2022-01-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303278,2022-01-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2303279,2022-01-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2303280,2022-01-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2303281,2022-01-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303282,2022-01-26,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2303283,2022-01-26,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2303284,2022-01-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,72.0,83.0,69.0,3.0,11.0,,95.83 -2303285,2022-01-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2303286,2022-01-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303287,2022-01-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2303288,2022-01-26,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2303289,2022-01-26,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2303290,2022-01-26,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2303291,2022-01-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2303292,2022-01-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303293,2022-01-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2303294,2022-01-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2303295,2022-01-26,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2303296,2022-01-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2303297,2022-01-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2303298,2022-01-26,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2303299,2022-01-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303300,2022-01-26,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303301,2022-01-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,8.0,82.0,8.0,0.0,74.0,,100.0 -2303302,2022-01-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,48,Room Based Capacity,,,,,,49.0,30.0,44.0,5.0,0.0,,89.8 -2303303,2022-01-26,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303304,2022-01-26,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2303305,2022-01-26,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303306,2022-01-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,42.0,51.0,41.0,1.0,9.0,,,,,,97.62, -2303307,2022-01-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,81.0,74.0,0.0,7.0,,,,,,100.0, -2303308,2022-01-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2303309,2022-01-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2303310,2022-01-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,20.0,1.0,0.0,19.0,,,,,,100.0, -2303311,2022-01-26,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2303312,2022-01-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303313,2022-01-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2303314,2022-01-26,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2303315,2022-01-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2303316,2022-01-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2303317,2022-01-26,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2303318,2022-01-26,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2303319,2022-01-26,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2303320,2022-01-26,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2303321,2022-01-26,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2303322,2022-01-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,53.0,52.0,0.0,1.0,,,,,,100.0, -2303323,2022-01-26,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303324,2022-01-26,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2303325,2022-01-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303326,2022-01-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,230.0,245.0,229.0,1.0,15.0,,99.57 -2303327,2022-01-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2303328,2022-01-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2303329,2022-01-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2303330,2022-01-26,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2303331,2022-01-26,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2303332,2022-01-26,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303333,2022-01-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,39.0,41.0,38.0,1.0,2.0,,97.44 -2303334,2022-01-26,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303335,2022-01-26,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2303336,2022-01-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,35.0,37.0,32.0,3.0,2.0,,,,,,91.43, -2303337,2022-01-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303338,2022-01-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,38,Bed Based Capacity,44.0,44.0,38.0,6.0,0.0,,,,,,86.36, -2303339,2022-01-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303340,2022-01-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,54.0,51.0,2.0,1.0,,,,,,96.23, -2303341,2022-01-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2303342,2022-01-26,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,45.0,29.0,0.0,16.0,,,,,,100.0, -2303343,2022-01-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2303344,2022-01-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303345,2022-01-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2303346,2022-01-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303347,2022-01-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303348,2022-01-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2303349,2022-01-26,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2303350,2022-01-26,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2303351,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,60.0,70.0,59.0,1.0,10.0,,,,,,98.33, -2303352,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2303353,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,31.0,29.0,0.0,2.0,,,,,,100.0, -2303354,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2303355,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,71.0,100.0,71.0,0.0,29.0,,100.0 -2303356,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2303357,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,288,Room Based Capacity,,,,,,252.0,263.0,252.0,0.0,11.0,,100.0 -2303358,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,59.0,60.0,58.0,1.0,1.0,,,,,,98.31, -2303359,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2303360,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2303361,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2303362,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2303363,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2303364,2022-01-26,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2303365,2022-01-26,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2303366,2022-01-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2303367,2022-01-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303368,2022-01-26,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2303369,2022-01-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2303370,2022-01-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2303371,2022-01-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2303372,2022-01-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2303373,2022-01-26,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303374,2022-01-26,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2303375,2022-01-26,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2303376,2022-01-26,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2303377,2022-01-26,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2303378,2022-01-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303379,2022-01-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2303380,2022-01-26,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2303381,2022-01-26,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2303382,2022-01-26,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2303383,2022-01-26,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2303384,2022-01-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2303385,2022-01-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2303386,2022-01-26,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2303387,2022-01-26,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,72.0,73.0,71.0,1.0,1.0,,98.61 -2303388,2022-01-26,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2303389,2022-01-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2303390,2022-01-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,221,Bed Based Capacity,222.0,222.0,221.0,1.0,0.0,,,,,,99.55, -2303391,2022-01-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,36.0,33.0,0.0,3.0,,,,,,100.0, -2303392,2022-01-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2303393,2022-01-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2303394,2022-01-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,30.0,28.0,1.0,1.0,,,,,,96.55, -2303395,2022-01-26,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2303396,2022-01-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2303397,2022-01-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2303398,2022-01-26,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303399,2022-01-26,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,34.0,29.0,0.0,5.0,,,,,,100.0, -2303400,2022-01-26,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2303401,2022-01-26,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,27.0,23.0,1.0,3.0,,95.83 -2303402,2022-01-26,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303403,2022-01-26,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2303404,2022-01-26,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2303405,2022-01-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303406,2022-01-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2303407,2022-01-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,19.0,16.0,0.0,3.0,,,,,,100.0, -2303408,2022-01-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,20.0,20.0,15.0,5.0,0.0,,,,,,75.0, -2303409,2022-01-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303410,2022-01-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2303411,2022-01-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2303412,2022-01-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,31.0,31.0,28.0,3.0,0.0,,,,,,90.32, -2303413,2022-01-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2303414,2022-01-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,91.0,113.0,91.0,0.0,22.0,,100.0 -2303415,2022-01-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,404,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2303416,2022-01-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303417,2022-01-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2303418,2022-01-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2303419,2022-01-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2303420,2022-01-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303421,2022-01-27,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2303422,2022-01-27,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2303423,2022-01-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,75.0,83.0,70.0,5.0,8.0,,93.33 -2303424,2022-01-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2303425,2022-01-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303426,2022-01-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2303427,2022-01-27,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2303428,2022-01-27,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2303429,2022-01-27,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2303430,2022-01-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,148,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2303431,2022-01-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303432,2022-01-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2303433,2022-01-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2303434,2022-01-27,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2303435,2022-01-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2303436,2022-01-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2303437,2022-01-27,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2303438,2022-01-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303439,2022-01-27,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303440,2022-01-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,37,Room Based Capacity,,,,,,51.0,30.0,33.0,18.0,0.0,,64.71 -2303441,2022-01-27,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303442,2022-01-27,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2303443,2022-01-27,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303444,2022-01-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,50.0,51.0,42.0,8.0,1.0,,,,,,84.0, -2303445,2022-01-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,81.0,74.0,0.0,7.0,,,,,,100.0, -2303446,2022-01-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2303447,2022-01-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,22.0,22.0,16.0,6.0,0.0,,,,,,72.73, -2303448,2022-01-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,20.0,1.0,0.0,19.0,,,,,,100.0, -2303449,2022-01-27,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2303450,2022-01-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2303451,2022-01-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2303452,2022-01-27,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2303453,2022-01-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2303454,2022-01-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2303455,2022-01-27,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2303456,2022-01-27,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2303457,2022-01-27,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2303458,2022-01-27,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2303459,2022-01-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2303460,2022-01-27,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2303461,2022-01-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2303462,2022-01-27,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303463,2022-01-27,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2303464,2022-01-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303465,2022-01-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,231.0,245.0,230.0,1.0,14.0,,99.57 -2303466,2022-01-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2303467,2022-01-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2303468,2022-01-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2303469,2022-01-27,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2303470,2022-01-27,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2303471,2022-01-27,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2303472,2022-01-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,39.0,41.0,38.0,1.0,2.0,,97.44 -2303473,2022-01-27,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303474,2022-01-27,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2303475,2022-01-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,37.0,33.0,2.0,2.0,,,,,,94.29, -2303476,2022-01-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303477,2022-01-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2303478,2022-01-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303479,2022-01-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,54.0,52.0,1.0,1.0,,,,,,98.11, -2303480,2022-01-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2303481,2022-01-27,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,45.0,32.0,1.0,12.0,,,,,,96.97, -2303482,2022-01-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2303483,2022-01-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303484,2022-01-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2303485,2022-01-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303486,2022-01-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303487,2022-01-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2303488,2022-01-27,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303489,2022-01-27,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2303490,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,58.0,70.0,57.0,1.0,12.0,,,,,,98.28, -2303491,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2303492,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2303493,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2303494,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,71.0,100.0,71.0,0.0,29.0,,100.0 -2303495,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2303496,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,288,Room Based Capacity,,,,,,252.0,263.0,251.0,1.0,11.0,,99.6 -2303497,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,59.0,60.0,59.0,0.0,1.0,,,,,,100.0, -2303498,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2303499,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2303500,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2303501,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,115.0,115.0,114.0,1.0,0.0,,,,,,99.13, -2303502,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2303503,2022-01-27,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,51.0,47.0,3.0,1.0,,,,,,94.0, -2303504,2022-01-27,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2303505,2022-01-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,36.0,40.0,35.0,1.0,4.0,,97.22 -2303506,2022-01-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303507,2022-01-27,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2303508,2022-01-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2303509,2022-01-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2303510,2022-01-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2303511,2022-01-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2303512,2022-01-27,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2303513,2022-01-27,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2303514,2022-01-27,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2303515,2022-01-27,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2303516,2022-01-27,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2303517,2022-01-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303518,2022-01-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2303519,2022-01-27,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2303520,2022-01-27,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2303521,2022-01-27,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2303522,2022-01-27,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2303523,2022-01-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2303524,2022-01-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2303525,2022-01-27,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2303526,2022-01-27,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2303527,2022-01-27,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2303528,2022-01-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2303529,2022-01-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,222.0,222.0,222.0,0.0,0.0,,,,,,100.0, -2303530,2022-01-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2303531,2022-01-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2303532,2022-01-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2303533,2022-01-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2303534,2022-01-27,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2303535,2022-01-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2303536,2022-01-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2303537,2022-01-27,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303538,2022-01-27,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,34.0,29.0,0.0,5.0,,,,,,100.0, -2303539,2022-01-27,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2303540,2022-01-27,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,24.0,27.0,22.0,2.0,3.0,,91.67 -2303541,2022-01-27,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303542,2022-01-27,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2303543,2022-01-27,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2303544,2022-01-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303545,2022-01-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2303546,2022-01-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,18.0,19.0,16.0,2.0,1.0,,,,,,88.89, -2303547,2022-01-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,20.0,20.0,14.0,6.0,0.0,,,,,,70.0, -2303548,2022-01-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303549,2022-01-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2303550,2022-01-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,10.0,10.0,7.0,3.0,0.0,,,,,,70.0, -2303551,2022-01-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,31.0,31.0,28.0,3.0,0.0,,,,,,90.32, -2303552,2022-01-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2303553,2022-01-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,89.0,113.0,89.0,0.0,24.0,,100.0 -2303554,2022-01-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,404,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2303555,2022-01-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303556,2022-01-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2303557,2022-01-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2303558,2022-01-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2303559,2022-01-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303560,2022-01-28,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2303561,2022-01-28,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2303562,2022-01-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,80.0,83.0,72.0,8.0,3.0,,90.0 -2303563,2022-01-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2303564,2022-01-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303565,2022-01-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2303566,2022-01-28,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2303567,2022-01-28,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2303568,2022-01-28,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2303569,2022-01-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,147,Room Based Capacity,,,,,,41.0,43.0,40.0,1.0,2.0,,97.56 -2303570,2022-01-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303571,2022-01-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,28.0,40.0,28.0,0.0,12.0,,100.0 -2303572,2022-01-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2303573,2022-01-28,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2303574,2022-01-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2303575,2022-01-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2303576,2022-01-28,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2303577,2022-01-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303578,2022-01-28,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303579,2022-01-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,30,Room Based Capacity,,,,,,54.0,30.0,26.0,28.0,0.0,,48.15 -2303580,2022-01-28,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303581,2022-01-28,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2303582,2022-01-28,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303583,2022-01-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2303584,2022-01-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,81.0,74.0,0.0,7.0,,,,,,100.0, -2303585,2022-01-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2303586,2022-01-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,22.0,22.0,15.0,7.0,0.0,,,,,,68.18, -2303587,2022-01-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,20.0,1.0,0.0,19.0,,,,,,100.0, -2303588,2022-01-28,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2303589,2022-01-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2303590,2022-01-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,27.0,12.0,0.0,15.0,,,,,,100.0, -2303591,2022-01-28,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2303592,2022-01-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2303593,2022-01-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2303594,2022-01-28,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,38,Bed Based Capacity,39.0,40.0,38.0,1.0,1.0,,,,,,97.44, -2303595,2022-01-28,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,61.0,61.0,54.0,7.0,0.0,,,,,,88.52, -2303596,2022-01-28,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2303597,2022-01-28,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2303598,2022-01-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2303599,2022-01-28,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2303600,2022-01-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,52.0,53.0,49.0,3.0,1.0,,,,,,94.23, -2303601,2022-01-28,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2303602,2022-01-28,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2303603,2022-01-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303604,2022-01-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,231.0,245.0,231.0,0.0,14.0,,100.0 -2303605,2022-01-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2303606,2022-01-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2303607,2022-01-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2303608,2022-01-28,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2303609,2022-01-28,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2303610,2022-01-28,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2303611,2022-01-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2303612,2022-01-28,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303613,2022-01-28,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2303614,2022-01-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2303615,2022-01-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303616,2022-01-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,36,Bed Based Capacity,44.0,44.0,36.0,8.0,0.0,,,,,,81.82, -2303617,2022-01-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303618,2022-01-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,54.0,52.0,1.0,1.0,,,,,,98.11, -2303619,2022-01-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2303620,2022-01-28,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,45.0,34.0,2.0,9.0,,,,,,94.44, -2303621,2022-01-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2303622,2022-01-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303623,2022-01-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2303624,2022-01-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303625,2022-01-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303626,2022-01-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2303627,2022-01-28,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2303628,2022-01-28,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2303629,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,58.0,70.0,49.0,9.0,12.0,,,,,,84.48, -2303630,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303631,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2303632,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2303633,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,71.0,100.0,71.0,0.0,29.0,,100.0 -2303634,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2303635,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,289,Room Based Capacity,,,,,,252.0,263.0,252.0,0.0,11.0,,100.0 -2303636,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2303637,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2303638,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2303639,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2303640,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2303641,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2303642,2022-01-28,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2303643,2022-01-28,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2303644,2022-01-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2303645,2022-01-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303646,2022-01-28,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2303647,2022-01-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2303648,2022-01-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2303649,2022-01-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2303650,2022-01-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2303651,2022-01-28,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303652,2022-01-28,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2303653,2022-01-28,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2303654,2022-01-28,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2303655,2022-01-28,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2303656,2022-01-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303657,2022-01-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2303658,2022-01-28,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2303659,2022-01-28,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,28.0,26.0,1.0,1.0,,,,,,96.3, -2303660,2022-01-28,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2303661,2022-01-28,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2303662,2022-01-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2303663,2022-01-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2303664,2022-01-28,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2303665,2022-01-28,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,72.0,73.0,71.0,1.0,1.0,,98.61 -2303666,2022-01-28,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2303667,2022-01-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2303668,2022-01-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,222.0,222.0,222.0,0.0,0.0,,,,,,100.0, -2303669,2022-01-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2303670,2022-01-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2303671,2022-01-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2303672,2022-01-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,30.0,30.0,28.0,2.0,0.0,,,,,,93.33, -2303673,2022-01-28,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2303674,2022-01-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2303675,2022-01-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2303676,2022-01-28,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303677,2022-01-28,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,28,Bed Based Capacity,29.0,34.0,28.0,1.0,5.0,,,,,,96.55, -2303678,2022-01-28,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2303679,2022-01-28,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,68,Room Based Capacity,,,,,,24.0,27.0,20.0,4.0,3.0,,83.33 -2303680,2022-01-28,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303681,2022-01-28,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2303682,2022-01-28,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2303683,2022-01-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303684,2022-01-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2303685,2022-01-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,18.0,19.0,16.0,2.0,1.0,,,,,,88.89, -2303686,2022-01-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2303687,2022-01-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303688,2022-01-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2303689,2022-01-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2303690,2022-01-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,31.0,31.0,28.0,3.0,0.0,,,,,,90.32, -2303691,2022-01-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2303692,2022-01-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,89.0,113.0,89.0,0.0,24.0,,100.0 -2303693,2022-01-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,404,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2303694,2022-01-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303695,2022-01-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2303696,2022-01-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2303697,2022-01-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2303698,2022-01-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303699,2022-01-29,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2303700,2022-01-29,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2303701,2022-01-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,80.0,83.0,77.0,3.0,3.0,,96.25 -2303702,2022-01-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2303703,2022-01-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303704,2022-01-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2303705,2022-01-29,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2303706,2022-01-29,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2303707,2022-01-29,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2303708,2022-01-29,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,147,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2303709,2022-01-29,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303710,2022-01-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,28.0,40.0,28.0,0.0,12.0,,100.0 -2303711,2022-01-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2303712,2022-01-29,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2303713,2022-01-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2303714,2022-01-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2303715,2022-01-29,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2303716,2022-01-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303717,2022-01-29,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303718,2022-01-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,33,Room Based Capacity,,,,,,55.0,30.0,29.0,26.0,0.0,,52.73 -2303719,2022-01-29,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303720,2022-01-29,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2303721,2022-01-29,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303722,2022-01-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2303723,2022-01-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,81.0,74.0,0.0,7.0,,,,,,100.0, -2303724,2022-01-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2303725,2022-01-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,22.0,22.0,15.0,7.0,0.0,,,,,,68.18, -2303726,2022-01-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,10.0,20.0,1.0,9.0,10.0,,,,,,10.0, -2303727,2022-01-29,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2303728,2022-01-29,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,13,Bed Based Capacity,19.0,19.0,13.0,6.0,0.0,,,,,,68.42, -2303729,2022-01-29,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,27.0,12.0,0.0,15.0,,,,,,100.0, -2303730,2022-01-29,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2303731,2022-01-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2303732,2022-01-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2303733,2022-01-29,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,39.0,40.0,33.0,6.0,1.0,,,,,,84.62, -2303734,2022-01-29,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,68.0,68.0,55.0,13.0,0.0,,,,,,80.88, -2303735,2022-01-29,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2303736,2022-01-29,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2303737,2022-01-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2303738,2022-01-29,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2303739,2022-01-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,53.0,52.0,0.0,1.0,,,,,,100.0, -2303740,2022-01-29,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2303741,2022-01-29,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2303742,2022-01-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2303743,2022-01-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,231.0,245.0,231.0,0.0,14.0,,100.0 -2303744,2022-01-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2303745,2022-01-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2303746,2022-01-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2303747,2022-01-29,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2303748,2022-01-29,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2303749,2022-01-29,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,16.0,16.0,14.0,2.0,0.0,,,,,,87.5, -2303750,2022-01-29,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2303751,2022-01-29,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303752,2022-01-29,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2303753,2022-01-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2303754,2022-01-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303755,2022-01-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,37,Bed Based Capacity,44.0,44.0,37.0,7.0,0.0,,,,,,84.09, -2303756,2022-01-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303757,2022-01-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2303758,2022-01-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2303759,2022-01-29,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,40.0,45.0,38.0,2.0,5.0,,,,,,95.0, -2303760,2022-01-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2303761,2022-01-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303762,2022-01-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2303763,2022-01-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2303764,2022-01-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303765,2022-01-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2303766,2022-01-29,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303767,2022-01-29,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2303768,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,58.0,70.0,51.0,7.0,12.0,,,,,,87.93, -2303769,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303770,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2303771,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,55.0,52.0,1.0,2.0,,,,,,98.11, -2303772,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,79.0,100.0,77.0,2.0,21.0,,97.47 -2303773,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,210.0,235.0,210.0,0.0,25.0,,100.0 -2303774,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,290,Room Based Capacity,,,,,,252.0,263.0,252.0,0.0,11.0,,100.0 -2303775,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2303776,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2303777,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2303778,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2303779,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2303780,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2303781,2022-01-29,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2303782,2022-01-29,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2303783,2022-01-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2303784,2022-01-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303785,2022-01-29,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2303786,2022-01-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2303787,2022-01-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2303788,2022-01-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2303789,2022-01-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2303790,2022-01-29,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303791,2022-01-29,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2303792,2022-01-29,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2303793,2022-01-29,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2303794,2022-01-29,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2303795,2022-01-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303796,2022-01-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,43.0,42.0,1.0,0.0,,,,,,97.67, -2303797,2022-01-29,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2303798,2022-01-29,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2303799,2022-01-29,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2303800,2022-01-29,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2303801,2022-01-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2303802,2022-01-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2303803,2022-01-29,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2303804,2022-01-29,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2303805,2022-01-29,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2303806,2022-01-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2303807,2022-01-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,230,Bed Based Capacity,235.0,235.0,230.0,5.0,0.0,,,,,,97.87, -2303808,2022-01-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2303809,2022-01-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2303810,2022-01-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2303811,2022-01-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,30.0,30.0,27.0,3.0,0.0,,,,,,90.0, -2303812,2022-01-29,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2303813,2022-01-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2303814,2022-01-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2303815,2022-01-29,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303816,2022-01-29,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,34.0,29.0,0.0,5.0,,,,,,100.0, -2303817,2022-01-29,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2303818,2022-01-29,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,68,Room Based Capacity,,,,,,24.0,27.0,20.0,4.0,3.0,,83.33 -2303819,2022-01-29,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303820,2022-01-29,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2303821,2022-01-29,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2303822,2022-01-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303823,2022-01-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2303824,2022-01-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,19.0,17.0,1.0,1.0,,,,,,94.44, -2303825,2022-01-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2303826,2022-01-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303827,2022-01-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2303828,2022-01-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2303829,2022-01-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,31.0,31.0,28.0,3.0,0.0,,,,,,90.32, -2303830,2022-01-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2303831,2022-01-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,89.0,113.0,89.0,0.0,24.0,,100.0 -2303832,2022-01-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,398,Room Based Capacity,,,,,,121.0,107.0,121.0,0.0,0.0,,100.0 -2303833,2022-01-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303834,2022-01-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2303835,2022-01-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2303836,2022-01-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2303837,2022-01-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303838,2022-01-30,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2303839,2022-01-30,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2303840,2022-01-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,79.0,83.0,78.0,1.0,4.0,,98.73 -2303841,2022-01-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2303842,2022-01-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303843,2022-01-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2303844,2022-01-30,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2303845,2022-01-30,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2303846,2022-01-30,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2303847,2022-01-30,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,147,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2303848,2022-01-30,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303849,2022-01-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,28.0,40.0,28.0,0.0,12.0,,100.0 -2303850,2022-01-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2303851,2022-01-30,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2303852,2022-01-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,5.0,15.0,2.0,3.0,10.0,,,,,,40.0, -2303853,2022-01-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2303854,2022-01-30,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2303855,2022-01-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303856,2022-01-30,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2303857,2022-01-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,31,Room Based Capacity,,,,,,54.0,30.0,28.0,26.0,0.0,,51.85 -2303858,2022-01-30,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303859,2022-01-30,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2303860,2022-01-30,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303861,2022-01-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2303862,2022-01-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,81.0,74.0,0.0,7.0,,,,,,100.0, -2303863,2022-01-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2303864,2022-01-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,22.0,22.0,15.0,7.0,0.0,,,,,,68.18, -2303865,2022-01-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,10.0,20.0,6.0,4.0,10.0,,,,,,60.0, -2303866,2022-01-30,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2303867,2022-01-30,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,12,Bed Based Capacity,19.0,19.0,12.0,7.0,0.0,,,,,,63.16, -2303868,2022-01-30,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2303869,2022-01-30,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2303870,2022-01-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2303871,2022-01-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2303872,2022-01-30,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,35,Bed Based Capacity,40.0,40.0,35.0,5.0,0.0,,,,,,87.5, -2303873,2022-01-30,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,68.0,68.0,55.0,13.0,0.0,,,,,,80.88, -2303874,2022-01-30,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2303875,2022-01-30,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2303876,2022-01-30,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2303877,2022-01-30,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,52.0,53.0,51.0,1.0,1.0,,,,,,98.08, -2303878,2022-01-30,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2303879,2022-01-30,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2303880,2022-01-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2303881,2022-01-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,231.0,245.0,231.0,0.0,14.0,,100.0 -2303882,2022-01-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2303883,2022-01-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2303884,2022-01-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2303885,2022-01-30,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2303886,2022-01-30,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2303887,2022-01-30,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2303888,2022-01-30,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2303889,2022-01-30,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303890,2022-01-30,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2303891,2022-01-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2303892,2022-01-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303893,2022-01-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,37,Bed Based Capacity,44.0,44.0,37.0,7.0,0.0,,,,,,84.09, -2303894,2022-01-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303895,2022-01-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2303896,2022-01-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2303897,2022-01-30,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,40.0,45.0,38.0,2.0,5.0,,,,,,95.0, -2303898,2022-01-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2303899,2022-01-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2303900,2022-01-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2303901,2022-01-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303902,2022-01-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2303903,2022-01-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2303904,2022-01-30,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303905,2022-01-30,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2303906,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,58.0,70.0,53.0,5.0,12.0,,,,,,91.38, -2303907,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303908,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2303909,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2303910,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,79.0,100.0,78.0,1.0,21.0,,98.73 -2303911,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,211.0,235.0,211.0,0.0,24.0,,100.0 -2303912,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,289,Room Based Capacity,,,,,,252.0,263.0,252.0,0.0,11.0,,100.0 -2303913,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2303914,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2303915,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2303916,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2303917,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,113,Bed Based Capacity,115.0,115.0,113.0,2.0,0.0,,,,,,98.26, -2303918,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2303919,2022-01-30,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2303920,2022-01-30,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,18.0,18.0,16.0,2.0,0.0,,,,,,88.89, -2303921,2022-01-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2303922,2022-01-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303923,2022-01-30,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2303924,2022-01-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2303925,2022-01-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2303926,2022-01-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2303927,2022-01-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2303928,2022-01-30,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303929,2022-01-30,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2303930,2022-01-30,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2303931,2022-01-30,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2303932,2022-01-30,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2303933,2022-01-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2303934,2022-01-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2303935,2022-01-30,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2303936,2022-01-30,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2303937,2022-01-30,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2303938,2022-01-30,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2303939,2022-01-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2303940,2022-01-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2303941,2022-01-30,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,54.0,54.0,50.0,4.0,0.0,,,,,,92.59, -2303942,2022-01-30,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2303943,2022-01-30,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2303944,2022-01-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2303945,2022-01-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,234,Bed Based Capacity,235.0,235.0,234.0,1.0,0.0,,,,,,99.57, -2303946,2022-01-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2303947,2022-01-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2303948,2022-01-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2303949,2022-01-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,30.0,30.0,27.0,3.0,0.0,,,,,,90.0, -2303950,2022-01-30,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2303951,2022-01-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2303952,2022-01-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2303953,2022-01-30,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2303954,2022-01-30,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,34.0,29.0,0.0,5.0,,,,,,100.0, -2303955,2022-01-30,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2303956,2022-01-30,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,68,Room Based Capacity,,,,,,24.0,27.0,20.0,4.0,3.0,,83.33 -2303957,2022-01-30,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2303958,2022-01-30,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2303959,2022-01-30,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2303960,2022-01-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2303961,2022-01-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2303962,2022-01-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,19.0,17.0,1.0,1.0,,,,,,94.44, -2303963,2022-01-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,20.0,20.0,17.0,3.0,0.0,,,,,,85.0, -2303964,2022-01-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2303965,2022-01-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2303966,2022-01-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2303967,2022-01-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,31.0,31.0,28.0,3.0,0.0,,,,,,90.32, -2303968,2022-01-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2303969,2022-01-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,89.0,113.0,89.0,0.0,24.0,,100.0 -2303970,2022-01-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,398,Room Based Capacity,,,,,,121.0,107.0,121.0,0.0,0.0,,100.0 -2303971,2022-01-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2303972,2022-01-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2303973,2022-01-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2303974,2022-01-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2303975,2022-01-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2303976,2022-01-31,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2303977,2022-01-31,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2303978,2022-01-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,83.0,78.0,0.0,5.0,,100.0 -2303979,2022-01-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2303980,2022-01-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2303981,2022-01-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2303982,2022-01-31,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2303983,2022-01-31,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2303984,2022-01-31,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2303985,2022-01-31,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,151,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2303986,2022-01-31,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2303987,2022-01-31,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,28.0,40.0,28.0,0.0,12.0,,100.0 -2303988,2022-01-31,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,32,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2303989,2022-01-31,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2303990,2022-01-31,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,15.0,4.0,1.0,10.0,,,,,,80.0, -2303991,2022-01-31,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2303992,2022-01-31,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2303993,2022-01-31,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2303994,2022-01-31,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2303995,2022-01-31,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,30,Room Based Capacity,,,,,,68.0,30.0,27.0,41.0,0.0,,39.71 -2303996,2022-01-31,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2303997,2022-01-31,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2303998,2022-01-31,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2303999,2022-01-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,50.0,51.0,43.0,7.0,1.0,,,,,,86.0, -2304000,2022-01-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,81.0,74.0,0.0,7.0,,,,,,100.0, -2304001,2022-01-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2304002,2022-01-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2304003,2022-01-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,20.0,10.0,0.0,10.0,,,,,,100.0, -2304004,2022-01-31,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,45,Bed Based Capacity,45.0,55.0,45.0,0.0,10.0,,,,,,100.0, -2304005,2022-01-31,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2304006,2022-01-31,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2304007,2022-01-31,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2304008,2022-01-31,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2304009,2022-01-31,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2304010,2022-01-31,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,38,Bed Based Capacity,40.0,40.0,38.0,2.0,0.0,,,,,,95.0, -2304011,2022-01-31,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,57,Bed Based Capacity,68.0,68.0,57.0,11.0,0.0,,,,,,83.82, -2304012,2022-01-31,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2304013,2022-01-31,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304014,2022-01-31,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2304015,2022-01-31,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,52.0,53.0,50.0,2.0,1.0,,,,,,96.15, -2304016,2022-01-31,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2304017,2022-01-31,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304018,2022-01-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304019,2022-01-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,231.0,245.0,230.0,1.0,14.0,,99.57 -2304020,2022-01-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2304021,2022-01-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304022,2022-01-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2304023,2022-01-31,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2304024,2022-01-31,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2304025,2022-01-31,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2304026,2022-01-31,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2304027,2022-01-31,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304028,2022-01-31,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2304029,2022-01-31,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,37.0,34.0,1.0,2.0,,,,,,97.14, -2304030,2022-01-31,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304031,2022-01-31,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,38,Bed Based Capacity,44.0,44.0,38.0,6.0,0.0,,,,,,86.36, -2304032,2022-01-31,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304033,2022-01-31,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304034,2022-01-31,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2304035,2022-01-31,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,45.0,40.0,0.0,5.0,,,,,,100.0, -2304036,2022-01-31,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2304037,2022-01-31,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2304038,2022-01-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,25.0,25.0,17.0,8.0,0.0,,,,,,68.0, -2304039,2022-01-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304040,2022-01-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304041,2022-01-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2304042,2022-01-31,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304043,2022-01-31,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,92.0,94.0,91.0,1.0,2.0,,98.91 -2304044,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,58.0,70.0,51.0,7.0,12.0,,,,,,87.93, -2304045,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304046,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2304047,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2304048,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,79.0,100.0,78.0,1.0,21.0,,98.73 -2304049,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,211.0,235.0,211.0,0.0,24.0,,100.0 -2304050,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,290,Room Based Capacity,,,,,,253.0,263.0,253.0,0.0,10.0,,100.0 -2304051,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2304052,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2304053,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,179,Bed Based Capacity,184.0,184.0,179.0,5.0,0.0,,,,,,97.28, -2304054,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2304055,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2304056,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2304057,2022-01-31,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2304058,2022-01-31,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2304059,2022-01-31,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2304060,2022-01-31,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304061,2022-01-31,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304062,2022-01-31,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2304063,2022-01-31,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2304064,2022-01-31,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304065,2022-01-31,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2304066,2022-01-31,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304067,2022-01-31,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2304068,2022-01-31,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2304069,2022-01-31,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,27.0,22.0,0.0,5.0,,,,,,100.0, -2304070,2022-01-31,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2304071,2022-01-31,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304072,2022-01-31,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2304073,2022-01-31,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2304074,2022-01-31,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2304075,2022-01-31,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2304076,2022-01-31,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2304077,2022-01-31,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2304078,2022-01-31,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,28.0,20.0,3.0,5.0,,86.96 -2304079,2022-01-31,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2304080,2022-01-31,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2304081,2022-01-31,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2304082,2022-01-31,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2304083,2022-01-31,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,234,Bed Based Capacity,234.0,235.0,234.0,0.0,1.0,,,,,,100.0, -2304084,2022-01-31,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2304085,2022-01-31,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2304086,2022-01-31,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2304087,2022-01-31,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2304088,2022-01-31,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2304089,2022-01-31,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2304090,2022-01-31,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2304091,2022-01-31,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2304092,2022-01-31,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,34.0,29.0,0.0,5.0,,,,,,100.0, -2304093,2022-01-31,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2304094,2022-01-31,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,68,Room Based Capacity,,,,,,24.0,27.0,20.0,4.0,3.0,,83.33 -2304095,2022-01-31,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304096,2022-01-31,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2304097,2022-01-31,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2304098,2022-01-31,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304099,2022-01-31,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2304100,2022-01-31,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304101,2022-01-31,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2304102,2022-01-31,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304103,2022-01-31,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2304104,2022-01-31,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2304105,2022-01-31,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,31.0,31.0,28.0,3.0,0.0,,,,,,90.32, -2304106,2022-02-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2304107,2022-02-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2304108,2022-02-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,401,Room Based Capacity,,,,,,122.0,107.0,122.0,0.0,0.0,,100.0 -2304109,2022-02-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2304110,2022-02-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2304111,2022-02-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2304112,2022-02-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2304113,2022-02-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304114,2022-02-01,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2304115,2022-02-01,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2304116,2022-02-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2304117,2022-02-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2304118,2022-02-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2304119,2022-02-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2304120,2022-02-01,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2304121,2022-02-01,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,125,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2304122,2022-02-01,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2304123,2022-02-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2304124,2022-02-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2304125,2022-02-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,27.0,40.0,27.0,0.0,13.0,,100.0 -2304126,2022-02-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2304127,2022-02-01,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2304128,2022-02-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,15.0,4.0,1.0,10.0,,,,,,80.0, -2304129,2022-02-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2304130,2022-02-01,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2304131,2022-02-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304132,2022-02-01,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2304133,2022-02-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,31,Room Based Capacity,,,,,,68.0,30.0,28.0,40.0,0.0,,41.18 -2304134,2022-02-01,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2304135,2022-02-01,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2304136,2022-02-01,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304137,2022-02-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,51.0,44.0,6.0,1.0,,,,,,88.0, -2304138,2022-02-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,81.0,73.0,0.0,8.0,,,,,,100.0, -2304139,2022-02-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,72.0,55.0,0.0,17.0,,,,,,100.0, -2304140,2022-02-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,21.0,22.0,16.0,5.0,1.0,,,,,,76.19, -2304141,2022-02-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,20.0,10.0,0.0,10.0,,,,,,100.0, -2304142,2022-02-01,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,47.0,55.0,46.0,1.0,8.0,,,,,,97.87, -2304143,2022-02-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,11,Bed Based Capacity,19.0,19.0,11.0,8.0,0.0,,,,,,57.89, -2304144,2022-02-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2304145,2022-02-01,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2304146,2022-02-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2304147,2022-02-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,73.0,74.0,71.0,2.0,1.0,,,,,,97.26, -2304148,2022-02-01,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2304149,2022-02-01,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,64,Bed Based Capacity,68.0,68.0,64.0,4.0,0.0,,,,,,94.12, -2304150,2022-02-01,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2304151,2022-02-01,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304152,2022-02-01,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2304153,2022-02-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,52.0,53.0,50.0,2.0,1.0,,,,,,96.15, -2304154,2022-02-01,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2304155,2022-02-01,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2304156,2022-02-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2304157,2022-02-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,231.0,245.0,230.0,1.0,14.0,,99.57 -2304158,2022-02-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2304159,2022-02-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304160,2022-02-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2304161,2022-02-01,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2304162,2022-02-01,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2304163,2022-02-01,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2304164,2022-02-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2304165,2022-02-01,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304166,2022-02-01,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2304167,2022-02-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2304168,2022-02-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304169,2022-02-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2304170,2022-02-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304171,2022-02-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,54.0,54.0,52.0,2.0,0.0,,,,,,96.3, -2304172,2022-02-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2304173,2022-02-01,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,45.0,40.0,0.0,5.0,,,,,,100.0, -2304174,2022-02-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2304175,2022-02-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2304176,2022-02-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,25.0,25.0,16.0,9.0,0.0,,,,,,64.0, -2304177,2022-02-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304178,2022-02-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304179,2022-02-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2304180,2022-02-01,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2304181,2022-02-01,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2304182,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,58.0,70.0,55.0,3.0,12.0,,,,,,94.83, -2304183,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304184,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2304185,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2304186,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2304187,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2304188,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,290,Room Based Capacity,,,,,,253.0,263.0,253.0,0.0,10.0,,100.0 -2304189,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,54,Bed Based Capacity,54.0,60.0,54.0,0.0,6.0,,,,,,100.0, -2304190,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2304191,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,184.0,183.0,1.0,0.0,,,,,,99.46, -2304192,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2304193,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,106,Bed Based Capacity,115.0,115.0,106.0,9.0,0.0,,,,,,92.17, -2304194,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2304195,2022-02-01,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2304196,2022-02-01,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2304197,2022-02-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,36.0,40.0,35.0,1.0,4.0,,97.22 -2304198,2022-02-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304199,2022-02-01,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304200,2022-02-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2304201,2022-02-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2304202,2022-02-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304203,2022-02-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2304204,2022-02-01,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304205,2022-02-01,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2304206,2022-02-01,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2304207,2022-02-01,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2304208,2022-02-01,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2304209,2022-02-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304210,2022-02-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2304211,2022-02-01,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2304212,2022-02-01,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2304213,2022-02-01,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2304214,2022-02-01,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2304215,2022-02-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2304216,2022-02-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2304217,2022-02-01,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,51.0,54.0,49.0,2.0,3.0,,,,,,96.08, -2304218,2022-02-01,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,73.0,73.0,71.0,2.0,0.0,,97.26 -2304219,2022-02-01,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304220,2022-02-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2304221,2022-02-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,234,Bed Based Capacity,234.0,235.0,234.0,0.0,1.0,,,,,,100.0, -2304222,2022-02-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2304223,2022-02-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2304224,2022-02-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2304225,2022-02-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2304226,2022-02-01,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2304227,2022-02-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2304228,2022-02-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2304229,2022-02-01,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2304230,2022-02-01,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,34.0,33.0,0.0,1.0,,,,,,100.0, -2304231,2022-02-01,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2304232,2022-02-01,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,68,Room Based Capacity,,,,,,24.0,27.0,20.0,4.0,3.0,,83.33 -2304233,2022-02-01,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304234,2022-02-01,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2304235,2022-02-01,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2304236,2022-02-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304237,2022-02-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2304238,2022-02-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2304239,2022-02-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2304240,2022-02-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304241,2022-02-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2304242,2022-02-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2304243,2022-02-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2304244,2022-02-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2304245,2022-02-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2304246,2022-02-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,400,Room Based Capacity,,,,,,122.0,107.0,122.0,0.0,0.0,,100.0 -2304247,2022-02-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2304248,2022-02-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2304249,2022-02-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2304250,2022-02-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2304251,2022-02-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304252,2022-02-02,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,21.0,30.0,18.0,3.0,9.0,,85.71 -2304253,2022-02-02,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2304254,2022-02-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,81.0,83.0,78.0,3.0,2.0,,96.3 -2304255,2022-02-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2304256,2022-02-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2304257,2022-02-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2304258,2022-02-02,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2304259,2022-02-02,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,120,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2304260,2022-02-02,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,99.0,100.0,98.0,1.0,1.0,,98.99 -2304261,2022-02-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,147,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2304262,2022-02-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2304263,2022-02-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2304264,2022-02-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2304265,2022-02-02,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2304266,2022-02-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,15.0,3.0,2.0,10.0,,,,,,60.0, -2304267,2022-02-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2304268,2022-02-02,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2304269,2022-02-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304270,2022-02-02,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2304271,2022-02-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,30,Room Based Capacity,,,,,,68.0,30.0,27.0,41.0,0.0,,39.71 -2304272,2022-02-02,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2304273,2022-02-02,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2304274,2022-02-02,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304275,2022-02-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,51.0,51.0,48.0,3.0,0.0,,,,,,94.12, -2304276,2022-02-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2304277,2022-02-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2304278,2022-02-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,21.0,22.0,15.0,6.0,1.0,,,,,,71.43, -2304279,2022-02-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2304280,2022-02-02,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2304281,2022-02-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2304282,2022-02-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,27.0,9.0,3.0,15.0,,,,,,75.0, -2304283,2022-02-02,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2304284,2022-02-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304285,2022-02-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,73.0,74.0,69.0,4.0,1.0,,,,,,94.52, -2304286,2022-02-02,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,38,Bed Based Capacity,40.0,40.0,38.0,2.0,0.0,,,,,,95.0, -2304287,2022-02-02,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,59,Bed Based Capacity,68.0,68.0,59.0,9.0,0.0,,,,,,86.76, -2304288,2022-02-02,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2304289,2022-02-02,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304290,2022-02-02,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2304291,2022-02-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,52.0,53.0,50.0,2.0,1.0,,,,,,96.15, -2304292,2022-02-02,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2304293,2022-02-02,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,42.0,44.0,41.0,1.0,2.0,,,,,,97.62, -2304294,2022-02-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2304295,2022-02-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,231.0,245.0,229.0,2.0,14.0,,99.13 -2304296,2022-02-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2304297,2022-02-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304298,2022-02-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2304299,2022-02-02,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2304300,2022-02-02,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2304301,2022-02-02,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,16.0,16.0,14.0,2.0,0.0,,,,,,87.5, -2304302,2022-02-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,40.0,41.0,38.0,2.0,1.0,,95.0 -2304303,2022-02-02,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304304,2022-02-02,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2304305,2022-02-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2304306,2022-02-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304307,2022-02-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2304308,2022-02-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304309,2022-02-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304310,2022-02-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2304311,2022-02-02,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,45.0,43.0,0.0,2.0,,,,,,100.0, -2304312,2022-02-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2304313,2022-02-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2304314,2022-02-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,25.0,25.0,17.0,8.0,0.0,,,,,,68.0, -2304315,2022-02-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304316,2022-02-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304317,2022-02-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2304318,2022-02-02,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2304319,2022-02-02,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2304320,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,58.0,70.0,45.0,13.0,12.0,,,,,,77.59, -2304321,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304322,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2304323,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,55.0,53.0,1.0,1.0,,,,,,98.15, -2304324,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2304325,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,210.0,235.0,210.0,0.0,25.0,,100.0 -2304326,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,292,Room Based Capacity,,,,,,255.0,263.0,255.0,0.0,8.0,,100.0 -2304327,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,53,Bed Based Capacity,60.0,60.0,53.0,7.0,0.0,,,,,,88.33, -2304328,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2304329,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2304330,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2304331,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,112,Bed Based Capacity,115.0,115.0,112.0,3.0,0.0,,,,,,97.39, -2304332,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2304333,2022-02-02,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2304334,2022-02-02,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2304335,2022-02-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2304336,2022-02-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304337,2022-02-02,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304338,2022-02-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304339,2022-02-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2304340,2022-02-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304341,2022-02-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2304342,2022-02-02,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2304343,2022-02-02,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304344,2022-02-02,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2304345,2022-02-02,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,27.0,21.0,1.0,5.0,,,,,,95.45, -2304346,2022-02-02,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2304347,2022-02-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304348,2022-02-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2304349,2022-02-02,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2304350,2022-02-02,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2304351,2022-02-02,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,34.0,33.0,0.0,1.0,,100.0 -2304352,2022-02-02,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2304353,2022-02-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2304354,2022-02-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2304355,2022-02-02,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,49.0,48.0,1.0,0.0,,,,,,97.96, -2304356,2022-02-02,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2304357,2022-02-02,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304358,2022-02-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,126.0,131.0,126.0,0.0,5.0,,100.0 -2304359,2022-02-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,233,Bed Based Capacity,233.0,235.0,233.0,0.0,2.0,,,,,,100.0, -2304360,2022-02-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2304361,2022-02-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2304362,2022-02-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2304363,2022-02-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2304364,2022-02-02,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2304365,2022-02-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2304366,2022-02-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2304367,2022-02-02,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2304368,2022-02-02,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,31,Bed Based Capacity,33.0,34.0,31.0,2.0,1.0,,,,,,93.94, -2304369,2022-02-02,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2304370,2022-02-02,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,68,Room Based Capacity,,,,,,24.0,27.0,20.0,4.0,3.0,,83.33 -2304371,2022-02-02,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304372,2022-02-02,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2304373,2022-02-02,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2304374,2022-02-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304375,2022-02-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2304376,2022-02-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2304377,2022-02-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,20.0,20.0,16.0,4.0,0.0,,,,,,80.0, -2304378,2022-02-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304379,2022-02-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2304380,2022-02-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2304381,2022-02-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2304382,2022-02-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2304383,2022-02-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,88.0,113.0,88.0,0.0,25.0,,100.0 -2304384,2022-02-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,405,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2304385,2022-02-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2304386,2022-02-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2304387,2022-02-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2304388,2022-02-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2304389,2022-02-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304390,2022-02-03,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,23.0,30.0,18.0,5.0,7.0,,78.26 -2304391,2022-02-03,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2304392,2022-02-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2304393,2022-02-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2304394,2022-02-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2304395,2022-02-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2304396,2022-02-03,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2304397,2022-02-03,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,121,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2304398,2022-02-03,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2304399,2022-02-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2304400,2022-02-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2304401,2022-02-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2304402,2022-02-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2304403,2022-02-03,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2304404,2022-02-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,15.0,4.0,1.0,10.0,,,,,,80.0, -2304405,2022-02-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2304406,2022-02-03,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2304407,2022-02-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304408,2022-02-03,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2304409,2022-02-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,11.0,30.0,1.0,10.0,19.0,,9.09 -2304410,2022-02-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,30,Room Based Capacity,,,,,,68.0,30.0,27.0,41.0,0.0,,39.71 -2304411,2022-02-03,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2304412,2022-02-03,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2304413,2022-02-03,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2304414,2022-02-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2304415,2022-02-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2304416,2022-02-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2304417,2022-02-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,21.0,22.0,15.0,6.0,1.0,,,,,,71.43, -2304418,2022-02-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2304419,2022-02-03,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2304420,2022-02-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,12,Bed Based Capacity,19.0,19.0,12.0,7.0,0.0,,,,,,63.16, -2304421,2022-02-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,27.0,10.0,2.0,15.0,,,,,,83.33, -2304422,2022-02-03,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2304423,2022-02-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304424,2022-02-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,72.0,74.0,71.0,1.0,2.0,,,,,,98.61, -2304425,2022-02-03,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2304426,2022-02-03,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,64,Bed Based Capacity,68.0,68.0,64.0,4.0,0.0,,,,,,94.12, -2304427,2022-02-03,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,42.0,44.0,41.0,1.0,2.0,,97.62 -2304428,2022-02-03,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304429,2022-02-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2304430,2022-02-03,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2304431,2022-02-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,53.0,52.0,0.0,1.0,,,,,,100.0, -2304432,2022-02-03,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2304433,2022-02-03,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304434,2022-02-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304435,2022-02-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,233.0,245.0,229.0,4.0,12.0,,98.28 -2304436,2022-02-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2304437,2022-02-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304438,2022-02-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2304439,2022-02-03,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2304440,2022-02-03,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2304441,2022-02-03,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,16.0,14.0,1.0,1.0,,,,,,93.33, -2304442,2022-02-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2304443,2022-02-03,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304444,2022-02-03,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2304445,2022-02-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2304446,2022-02-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304447,2022-02-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304448,2022-02-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2304449,2022-02-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304450,2022-02-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,267.0,271.0,266.0,1.0,4.0,,99.63 -2304451,2022-02-03,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,45.0,43.0,0.0,2.0,,,,,,100.0, -2304452,2022-02-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2304453,2022-02-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2304454,2022-02-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,25.0,25.0,18.0,7.0,0.0,,,,,,72.0, -2304455,2022-02-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2304456,2022-02-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304457,2022-02-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2304458,2022-02-03,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304459,2022-02-03,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2304460,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,58.0,70.0,51.0,7.0,12.0,,,,,,87.93, -2304461,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304462,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2304463,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2304464,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,100.0,84.0,0.0,16.0,,100.0 -2304465,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,211.0,235.0,211.0,0.0,24.0,,100.0 -2304466,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,292,Room Based Capacity,,,,,,254.0,287.0,254.0,0.0,33.0,,100.0 -2304467,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2304468,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2304469,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2304470,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2304471,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,115.0,115.0,0.0,0.0,,,,,,100.0, -2304472,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,35.0,35.0,32.0,3.0,0.0,,,,,,91.43, -2304473,2022-02-03,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2304474,2022-02-03,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2304475,2022-02-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,38.0,40.0,31.0,7.0,2.0,,81.58 -2304476,2022-02-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304477,2022-02-03,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304478,2022-02-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304479,2022-02-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,17.0,17.0,15.0,2.0,0.0,,,,,,88.24, -2304480,2022-02-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304481,2022-02-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,14.0,14.0,9.0,5.0,0.0,,64.29 -2304482,2022-02-03,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304483,2022-02-03,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304484,2022-02-03,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2304485,2022-02-03,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2304486,2022-02-03,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2304487,2022-02-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304488,2022-02-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2304489,2022-02-03,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2304490,2022-02-03,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2304491,2022-02-03,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2304492,2022-02-03,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2304493,2022-02-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2304494,2022-02-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2304495,2022-02-03,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2304496,2022-02-03,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2304497,2022-02-03,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304498,2022-02-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,127.0,131.0,127.0,0.0,4.0,,100.0 -2304499,2022-02-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,233,Bed Based Capacity,233.0,235.0,233.0,0.0,2.0,,,,,,100.0, -2304500,2022-02-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2304501,2022-02-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2304502,2022-02-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2304503,2022-02-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2304504,2022-02-03,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2304505,2022-02-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2304506,2022-02-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2304507,2022-02-03,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2304508,2022-02-03,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,34.0,32.0,1.0,1.0,,,,,,96.97, -2304509,2022-02-03,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,5.0,3.0,0.0,2.0,,,,,,100.0, -2304510,2022-02-03,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,25.0,27.0,23.0,2.0,2.0,,92.0 -2304511,2022-02-03,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304512,2022-02-03,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2304513,2022-02-03,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2304514,2022-02-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304515,2022-02-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2304516,2022-02-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304517,2022-02-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,20.0,20.0,17.0,3.0,0.0,,,,,,85.0, -2304518,2022-02-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304519,2022-02-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2304520,2022-02-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2304521,2022-02-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2304522,2022-02-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2304523,2022-02-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,89.0,113.0,88.0,1.0,24.0,,98.88 -2304524,2022-02-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,405,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2304525,2022-02-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2304526,2022-02-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2304527,2022-02-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2304528,2022-02-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2304529,2022-02-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304530,2022-02-04,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,23.0,30.0,21.0,2.0,7.0,,91.3 -2304531,2022-02-04,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2304532,2022-02-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2304533,2022-02-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2304534,2022-02-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2304535,2022-02-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2304536,2022-02-04,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2304537,2022-02-04,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,121,Room Based Capacity,,,,,,65.0,86.0,65.0,0.0,21.0,,100.0 -2304538,2022-02-04,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,98.0,100.0,97.0,1.0,2.0,,98.98 -2304539,2022-02-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2304540,2022-02-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2304541,2022-02-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2304542,2022-02-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2304543,2022-02-04,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2304544,2022-02-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,15.0,3.0,2.0,10.0,,,,,,60.0, -2304545,2022-02-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2304546,2022-02-04,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2304547,2022-02-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304548,2022-02-04,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2304549,2022-02-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,11.0,30.0,1.0,10.0,19.0,,9.09 -2304550,2022-02-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,32,Room Based Capacity,,,,,,68.0,30.0,28.0,40.0,0.0,,41.18 -2304551,2022-02-04,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2304552,2022-02-04,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2304553,2022-02-04,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304554,2022-02-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2304555,2022-02-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,70.0,81.0,69.0,1.0,11.0,,,,,,98.57, -2304556,2022-02-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2304557,2022-02-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,21.0,22.0,15.0,6.0,1.0,,,,,,71.43, -2304558,2022-02-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2304559,2022-02-04,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2304560,2022-02-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304561,2022-02-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2304562,2022-02-04,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2304563,2022-02-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2304564,2022-02-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,72.0,74.0,71.0,1.0,2.0,,,,,,98.61, -2304565,2022-02-04,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,32,Bed Based Capacity,34.0,34.0,32.0,2.0,0.0,,,,,,94.12, -2304566,2022-02-04,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,52,Bed Based Capacity,55.0,55.0,52.0,3.0,0.0,,,,,,94.55, -2304567,2022-02-04,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2304568,2022-02-04,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304569,2022-02-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2304570,2022-02-04,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2304571,2022-02-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2304572,2022-02-04,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2304573,2022-02-04,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2304574,2022-02-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2304575,2022-02-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,234.0,245.0,227.0,7.0,11.0,,97.01 -2304576,2022-02-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2304577,2022-02-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304578,2022-02-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2304579,2022-02-04,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2304580,2022-02-04,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2304581,2022-02-04,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,16.0,14.0,1.0,1.0,,,,,,93.33, -2304582,2022-02-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2304583,2022-02-04,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304584,2022-02-04,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2304585,2022-02-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2304586,2022-02-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304587,2022-02-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304588,2022-02-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304589,2022-02-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304590,2022-02-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2304591,2022-02-04,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,40,Bed Based Capacity,42.0,45.0,40.0,2.0,3.0,,,,,,95.24, -2304592,2022-02-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2304593,2022-02-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2304594,2022-02-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2304595,2022-02-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304596,2022-02-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304597,2022-02-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2304598,2022-02-04,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2304599,2022-02-04,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2304600,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,60.0,70.0,42.0,18.0,10.0,,,,,,70.0, -2304601,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304602,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2304603,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,55.0,53.0,1.0,1.0,,,,,,98.15, -2304604,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,100.0,84.0,0.0,16.0,,100.0 -2304605,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,212.0,235.0,212.0,0.0,23.0,,100.0 -2304606,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,318,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2304607,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2304608,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,71.0,71.0,64.0,7.0,0.0,,,,,,90.14, -2304609,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,181,Bed Based Capacity,187.0,199.0,181.0,6.0,12.0,,,,,,96.79, -2304610,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2304611,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,121,Bed Based Capacity,130.0,130.0,121.0,9.0,0.0,,,,,,93.08, -2304612,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2304613,2022-02-04,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,51.0,51.0,48.0,3.0,0.0,,,,,,94.12, -2304614,2022-02-04,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2304615,2022-02-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,40.0,40.0,34.0,6.0,0.0,,85.0 -2304616,2022-02-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304617,2022-02-04,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304618,2022-02-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2304619,2022-02-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2304620,2022-02-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304621,2022-02-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2304622,2022-02-04,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304623,2022-02-04,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304624,2022-02-04,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2304625,2022-02-04,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2304626,2022-02-04,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2304627,2022-02-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304628,2022-02-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2304629,2022-02-04,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2304630,2022-02-04,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2304631,2022-02-04,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2304632,2022-02-04,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2304633,2022-02-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2304634,2022-02-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2304635,2022-02-04,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2304636,2022-02-04,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,74.0,74.0,72.0,2.0,0.0,,97.3 -2304637,2022-02-04,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,56.0,56.0,0.0,0.0,,,,,,100.0, -2304638,2022-02-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2304639,2022-02-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,229,Bed Based Capacity,231.0,235.0,229.0,2.0,4.0,,,,,,99.13, -2304640,2022-02-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2304641,2022-02-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2304642,2022-02-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2304643,2022-02-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2304644,2022-02-04,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2304645,2022-02-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2304646,2022-02-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2304647,2022-02-04,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,16.0,16.0,14.0,2.0,0.0,,,,,,87.5, -2304648,2022-02-04,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,34.0,32.0,1.0,1.0,,,,,,96.97, -2304649,2022-02-04,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,3.0,5.0,1.0,2.0,2.0,,,,,,33.33, -2304650,2022-02-04,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2304651,2022-02-04,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304652,2022-02-04,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2304653,2022-02-04,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2304654,2022-02-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304655,2022-02-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2304656,2022-02-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304657,2022-02-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2304658,2022-02-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304659,2022-02-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2304660,2022-02-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2304661,2022-02-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2304662,2022-02-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2304663,2022-02-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,88.0,113.0,88.0,0.0,25.0,,100.0 -2304664,2022-02-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,409,Room Based Capacity,,,,,,124.0,107.0,124.0,0.0,0.0,,100.0 -2304665,2022-02-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2304666,2022-02-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2304667,2022-02-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2304668,2022-02-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2304669,2022-02-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304670,2022-02-05,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2304671,2022-02-05,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2304672,2022-02-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,75.0,83.0,74.0,1.0,8.0,,98.67 -2304673,2022-02-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2304674,2022-02-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2304675,2022-02-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2304676,2022-02-05,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2304677,2022-02-05,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,122,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2304678,2022-02-05,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,99.0,100.0,97.0,2.0,1.0,,97.98 -2304679,2022-02-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2304680,2022-02-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2304681,2022-02-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,26.0,40.0,26.0,0.0,14.0,,100.0 -2304682,2022-02-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2304683,2022-02-05,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2304684,2022-02-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,5.0,15.0,1.0,4.0,10.0,,,,,,20.0, -2304685,2022-02-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2304686,2022-02-05,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2304687,2022-02-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304688,2022-02-05,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,33.0,37.0,32.0,1.0,4.0,,96.97 -2304689,2022-02-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,11.0,30.0,1.0,10.0,19.0,,9.09 -2304690,2022-02-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,32,Room Based Capacity,,,,,,68.0,30.0,28.0,40.0,0.0,,41.18 -2304691,2022-02-05,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2304692,2022-02-05,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2304693,2022-02-05,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304694,2022-02-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2304695,2022-02-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,70.0,81.0,69.0,1.0,11.0,,,,,,98.57, -2304696,2022-02-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2304697,2022-02-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,21.0,22.0,15.0,6.0,1.0,,,,,,71.43, -2304698,2022-02-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2304699,2022-02-05,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2304700,2022-02-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304701,2022-02-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2304702,2022-02-05,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2304703,2022-02-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2304704,2022-02-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2304705,2022-02-05,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2304706,2022-02-05,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2304707,2022-02-05,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2304708,2022-02-05,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304709,2022-02-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2304710,2022-02-05,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2304711,2022-02-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2304712,2022-02-05,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2304713,2022-02-05,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304714,2022-02-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2304715,2022-02-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,234.0,245.0,225.0,9.0,11.0,,96.15 -2304716,2022-02-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2304717,2022-02-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304718,2022-02-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2304719,2022-02-05,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2304720,2022-02-05,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2304721,2022-02-05,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2304722,2022-02-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,37.0,41.0,37.0,0.0,4.0,,100.0 -2304723,2022-02-05,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304724,2022-02-05,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2304725,2022-02-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2304726,2022-02-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304727,2022-02-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304728,2022-02-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304729,2022-02-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304730,2022-02-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2304731,2022-02-05,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,45.0,42.0,0.0,3.0,,,,,,100.0, -2304732,2022-02-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2304733,2022-02-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2304734,2022-02-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2304735,2022-02-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2304736,2022-02-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304737,2022-02-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2304738,2022-02-05,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304739,2022-02-05,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2304740,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,62.0,70.0,48.0,14.0,8.0,,,,,,77.42, -2304741,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304742,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2304743,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2304744,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,84.0,100.0,83.0,1.0,16.0,,98.81 -2304745,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2304746,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,311,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2304747,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2304748,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2304749,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,182,Bed Based Capacity,199.0,199.0,182.0,17.0,0.0,,,,,,91.46, -2304750,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2304751,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2304752,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2304753,2022-02-05,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2304754,2022-02-05,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2304755,2022-02-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,37.0,40.0,33.0,4.0,3.0,,89.19 -2304756,2022-02-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304757,2022-02-05,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2304758,2022-02-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2304759,2022-02-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2304760,2022-02-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304761,2022-02-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2304762,2022-02-05,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304763,2022-02-05,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304764,2022-02-05,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2304765,2022-02-05,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2304766,2022-02-05,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2304767,2022-02-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2304768,2022-02-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2304769,2022-02-05,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2304770,2022-02-05,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2304771,2022-02-05,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2304772,2022-02-05,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2304773,2022-02-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2304774,2022-02-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2304775,2022-02-05,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2304776,2022-02-05,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,74.0,74.0,0.0,0.0,,100.0 -2304777,2022-02-05,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,56.0,56.0,0.0,0.0,,,,,,100.0, -2304778,2022-02-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,130.0,131.0,129.0,1.0,1.0,,99.23 -2304779,2022-02-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,228,Bed Based Capacity,228.0,235.0,228.0,0.0,7.0,,,,,,100.0, -2304780,2022-02-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2304781,2022-02-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2304782,2022-02-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2304783,2022-02-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2304784,2022-02-05,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2304785,2022-02-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2304786,2022-02-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2304787,2022-02-05,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2304788,2022-02-05,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,34.0,33.0,0.0,1.0,,,,,,100.0, -2304789,2022-02-05,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,3.0,5.0,1.0,2.0,2.0,,,,,,33.33, -2304790,2022-02-05,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2304791,2022-02-05,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304792,2022-02-05,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2304793,2022-02-05,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2304794,2022-02-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2304795,2022-02-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2304796,2022-02-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304797,2022-02-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2304798,2022-02-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304799,2022-02-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2304800,2022-02-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2304801,2022-02-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2304802,2022-02-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2304803,2022-02-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2304804,2022-02-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,409,Room Based Capacity,,,,,,124.0,107.0,124.0,0.0,0.0,,100.0 -2304805,2022-02-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2304806,2022-02-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2304807,2022-02-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2304808,2022-02-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2304809,2022-02-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304810,2022-02-06,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2304811,2022-02-06,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2304812,2022-02-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,83.0,76.0,0.0,7.0,,100.0 -2304813,2022-02-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2304814,2022-02-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2304815,2022-02-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2304816,2022-02-06,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2304817,2022-02-06,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,121,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2304818,2022-02-06,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2304819,2022-02-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2304820,2022-02-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2304821,2022-02-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2304822,2022-02-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2304823,2022-02-06,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2304824,2022-02-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2304825,2022-02-06,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2304826,2022-02-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304827,2022-02-06,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,32.0,37.0,32.0,0.0,5.0,,100.0 -2304828,2022-02-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,11.0,30.0,1.0,10.0,19.0,,9.09 -2304829,2022-02-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,30,Room Based Capacity,,,,,,68.0,30.0,26.0,42.0,0.0,,38.24 -2304830,2022-02-06,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2304831,2022-02-06,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2304832,2022-02-06,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304833,2022-02-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2304834,2022-02-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,81.0,70.0,0.0,11.0,,,,,,100.0, -2304835,2022-02-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2304836,2022-02-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,21.0,22.0,15.0,6.0,1.0,,,,,,71.43, -2304837,2022-02-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2304838,2022-02-06,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2304839,2022-02-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2304840,2022-02-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2304841,2022-02-06,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2304842,2022-02-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,9.0,5.0,0.0,4.0,,,,,,100.0, -2304843,2022-02-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2304844,2022-02-06,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,31,Bed Based Capacity,34.0,34.0,31.0,3.0,0.0,,,,,,91.18, -2304845,2022-02-06,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2304846,2022-02-06,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2304847,2022-02-06,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304848,2022-02-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2304849,2022-02-06,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2304850,2022-02-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2304851,2022-02-06,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2304852,2022-02-06,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304853,2022-02-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304854,2022-02-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,234.0,245.0,224.0,10.0,11.0,,95.73 -2304855,2022-02-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2304856,2022-02-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304857,2022-02-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2304858,2022-02-06,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2304859,2022-02-06,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2304860,2022-02-06,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2304861,2022-02-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,35.0,41.0,35.0,0.0,6.0,,100.0 -2304862,2022-02-06,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304863,2022-02-06,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2304864,2022-02-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2304865,2022-02-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304866,2022-02-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304867,2022-02-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304868,2022-02-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2304869,2022-02-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2304870,2022-02-06,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,45.0,42.0,0.0,3.0,,,,,,100.0, -2304871,2022-02-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2304872,2022-02-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2304873,2022-02-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2304874,2022-02-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304875,2022-02-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2304876,2022-02-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2304877,2022-02-06,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304878,2022-02-06,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2304879,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,66.0,70.0,52.0,14.0,4.0,,,,,,78.79, -2304880,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2304881,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2304882,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2304883,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,100.0,83.0,0.0,17.0,,100.0 -2304884,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2304885,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,312,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2304886,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2304887,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2304888,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,199,Bed Based Capacity,199.0,199.0,199.0,0.0,0.0,,,,,,100.0, -2304889,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2304890,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2304891,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2304892,2022-02-06,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2304893,2022-02-06,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2304894,2022-02-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,37.0,40.0,33.0,4.0,3.0,,89.19 -2304895,2022-02-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304896,2022-02-06,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2304897,2022-02-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2304898,2022-02-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2304899,2022-02-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2304900,2022-02-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2304901,2022-02-06,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304902,2022-02-06,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2304903,2022-02-06,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2304904,2022-02-06,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2304905,2022-02-06,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2304906,2022-02-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2304907,2022-02-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2304908,2022-02-06,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2304909,2022-02-06,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2304910,2022-02-06,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2304911,2022-02-06,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,64.0,75.0,64.0,0.0,11.0,,100.0 -2304912,2022-02-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2304913,2022-02-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2304914,2022-02-06,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2304915,2022-02-06,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,74.0,74.0,0.0,0.0,,100.0 -2304916,2022-02-06,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,56.0,55.0,0.0,1.0,,,,,,100.0, -2304917,2022-02-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2304918,2022-02-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,227,Bed Based Capacity,228.0,235.0,227.0,1.0,7.0,,,,,,99.56, -2304919,2022-02-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2304920,2022-02-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2304921,2022-02-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2304922,2022-02-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2304923,2022-02-06,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2304924,2022-02-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2304925,2022-02-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2304926,2022-02-06,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2304927,2022-02-06,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,34.0,33.0,0.0,1.0,,,,,,100.0, -2304928,2022-02-06,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,3.0,5.0,1.0,2.0,2.0,,,,,,33.33, -2304929,2022-02-06,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2304930,2022-02-06,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304931,2022-02-06,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2304932,2022-02-06,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2304933,2022-02-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2304934,2022-02-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2304935,2022-02-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304936,2022-02-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2304937,2022-02-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2304938,2022-02-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2304939,2022-02-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2304940,2022-02-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2304941,2022-02-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2304942,2022-02-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2304943,2022-02-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,409,Room Based Capacity,,,,,,124.0,107.0,124.0,0.0,0.0,,100.0 -2304944,2022-02-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2304945,2022-02-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2304946,2022-02-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2304947,2022-02-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,33.0,33.0,31.0,2.0,0.0,,,,,,93.94, -2304948,2022-02-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2304949,2022-02-07,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2304950,2022-02-07,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2304951,2022-02-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,80.0,83.0,76.0,4.0,3.0,,95.0 -2304952,2022-02-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2304953,2022-02-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2304954,2022-02-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2304955,2022-02-07,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2304956,2022-02-07,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2304957,2022-02-07,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2304958,2022-02-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2304959,2022-02-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2304960,2022-02-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2304961,2022-02-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,16.0,18.0,16.0,0.0,2.0,,100.0 -2304962,2022-02-07,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2304963,2022-02-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,15.0,1.0,0.0,14.0,,,,,,100.0, -2304964,2022-02-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2304965,2022-02-07,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2304966,2022-02-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2304967,2022-02-07,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,32.0,37.0,32.0,0.0,5.0,,100.0 -2304968,2022-02-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,25,Room Based Capacity,,,,,,68.0,30.0,21.0,47.0,0.0,,30.88 -2304969,2022-02-07,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2304970,2022-02-07,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,88.0,88.0,87.0,1.0,0.0,,,,,,98.86, -2304971,2022-02-07,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304972,2022-02-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2304973,2022-02-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2304974,2022-02-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2304975,2022-02-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,21.0,22.0,16.0,5.0,1.0,,,,,,76.19, -2304976,2022-02-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,10.0,10.0,6.0,4.0,0.0,,,,,,60.0, -2304977,2022-02-07,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2304978,2022-02-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2304979,2022-02-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2304980,2022-02-07,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2304981,2022-02-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2304982,2022-02-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2304983,2022-02-07,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2304984,2022-02-07,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2304985,2022-02-07,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2304986,2022-02-07,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2304987,2022-02-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2304988,2022-02-07,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2304989,2022-02-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2304990,2022-02-07,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2304991,2022-02-07,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2304992,2022-02-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2304993,2022-02-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,234.0,245.0,224.0,10.0,11.0,,95.73 -2304994,2022-02-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2304995,2022-02-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2304996,2022-02-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2304997,2022-02-07,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2304998,2022-02-07,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2304999,2022-02-07,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2305000,2022-02-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,40.0,41.0,36.0,4.0,1.0,,90.0 -2305001,2022-02-07,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305002,2022-02-07,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305003,2022-02-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2305004,2022-02-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305005,2022-02-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305006,2022-02-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305007,2022-02-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305008,2022-02-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,264.0,271.0,263.0,1.0,7.0,,99.62 -2305009,2022-02-07,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,42.0,45.0,41.0,1.0,3.0,,,,,,97.62, -2305010,2022-02-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305011,2022-02-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305012,2022-02-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2305013,2022-02-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,27.0,25.0,1.0,1.0,,,,,,96.15, -2305014,2022-02-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305015,2022-02-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,47.0,47.0,47.0,0.0,0.0,,100.0 -2305016,2022-02-07,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305017,2022-02-07,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2305018,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,66.0,70.0,51.0,15.0,4.0,,,,,,77.27, -2305019,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305020,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305021,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305022,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,100.0,83.0,0.0,17.0,,100.0 -2305023,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,212.0,235.0,212.0,0.0,23.0,,100.0 -2305024,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,310,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2305025,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2305026,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2305027,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,186,Bed Based Capacity,187.0,199.0,186.0,1.0,12.0,,,,,,99.47, -2305028,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305029,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2305030,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2305031,2022-02-07,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2305032,2022-02-07,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,18.0,18.0,14.0,4.0,0.0,,,,,,77.78, -2305033,2022-02-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,39.0,40.0,36.0,3.0,1.0,,92.31 -2305034,2022-02-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305035,2022-02-07,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2305036,2022-02-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305037,2022-02-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2305038,2022-02-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2305039,2022-02-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2305040,2022-02-07,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305041,2022-02-07,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305042,2022-02-07,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2305043,2022-02-07,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,27.0,23.0,1.0,3.0,,,,,,95.83, -2305044,2022-02-07,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2305045,2022-02-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305046,2022-02-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2305047,2022-02-07,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2305048,2022-02-07,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2305049,2022-02-07,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2305050,2022-02-07,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,75.0,62.0,2.0,11.0,,96.88 -2305051,2022-02-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2305052,2022-02-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2305053,2022-02-07,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2305054,2022-02-07,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,74.0,73.0,0.0,1.0,,100.0 -2305055,2022-02-07,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305056,2022-02-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2305057,2022-02-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,227,Bed Based Capacity,227.0,227.0,227.0,0.0,0.0,,,,,,100.0, -2305058,2022-02-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2305059,2022-02-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2305060,2022-02-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2305061,2022-02-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2305062,2022-02-07,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2305063,2022-02-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2305064,2022-02-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2305065,2022-02-07,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2305066,2022-02-07,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,34.0,32.0,1.0,1.0,,,,,,96.97, -2305067,2022-02-07,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,3.0,5.0,1.0,2.0,2.0,,,,,,33.33, -2305068,2022-02-07,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2305069,2022-02-07,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305070,2022-02-07,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,28.0,28.0,26.0,2.0,0.0,,92.86 -2305071,2022-02-07,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305072,2022-02-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305073,2022-02-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2305074,2022-02-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305075,2022-02-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2305076,2022-02-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305077,2022-02-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2305078,2022-02-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2305079,2022-02-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305080,2022-02-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2305081,2022-02-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2305082,2022-02-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,125.0,107.0,125.0,0.0,0.0,,100.0 -2305083,2022-02-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2305084,2022-02-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2305085,2022-02-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2305086,2022-02-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2305087,2022-02-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305088,2022-02-08,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2305089,2022-02-08,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2305090,2022-02-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,79.0,83.0,72.0,7.0,4.0,,91.14 -2305091,2022-02-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2305092,2022-02-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2305093,2022-02-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2305094,2022-02-08,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2305095,2022-02-08,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2305096,2022-02-08,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,97.0,100.0,97.0,0.0,3.0,,100.0 -2305097,2022-02-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2305098,2022-02-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2305099,2022-02-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2305100,2022-02-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,16.0,18.0,16.0,0.0,2.0,,100.0 -2305101,2022-02-08,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2305102,2022-02-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2305103,2022-02-08,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2305104,2022-02-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305105,2022-02-08,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,80,Room Based Capacity,,,,,,33.0,37.0,31.0,2.0,4.0,,93.94 -2305106,2022-02-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,17.0,30.0,4.0,13.0,13.0,,23.53 -2305107,2022-02-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,26,Room Based Capacity,,,,,,68.0,30.0,22.0,46.0,0.0,,32.35 -2305108,2022-02-08,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2305109,2022-02-08,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2305110,2022-02-08,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305111,2022-02-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,51.0,49.0,1.0,1.0,,,,,,98.0, -2305112,2022-02-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2305113,2022-02-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2305114,2022-02-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,21.0,22.0,17.0,4.0,1.0,,,,,,80.95, -2305115,2022-02-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2305116,2022-02-08,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2305117,2022-02-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2305118,2022-02-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2305119,2022-02-08,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2305120,2022-02-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2305121,2022-02-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2305122,2022-02-08,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2305123,2022-02-08,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2305124,2022-02-08,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2305125,2022-02-08,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2305126,2022-02-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2305127,2022-02-08,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2305128,2022-02-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2305129,2022-02-08,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305130,2022-02-08,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305131,2022-02-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305132,2022-02-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,234.0,245.0,224.0,10.0,11.0,,95.73 -2305133,2022-02-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2305134,2022-02-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2305135,2022-02-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2305136,2022-02-08,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2305137,2022-02-08,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2305138,2022-02-08,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305139,2022-02-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,40.0,41.0,37.0,3.0,1.0,,92.5 -2305140,2022-02-08,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305141,2022-02-08,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305142,2022-02-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,37.0,35.0,0.0,2.0,,,,,,100.0, -2305143,2022-02-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305144,2022-02-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305145,2022-02-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305146,2022-02-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305147,2022-02-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2305148,2022-02-08,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2305149,2022-02-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305150,2022-02-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305151,2022-02-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2305152,2022-02-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,27.0,24.0,1.0,2.0,,,,,,96.0, -2305153,2022-02-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305154,2022-02-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,47.0,47.0,46.0,1.0,0.0,,97.87 -2305155,2022-02-08,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2305156,2022-02-08,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2305157,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,56.0,70.0,55.0,1.0,14.0,,,,,,98.21, -2305158,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305159,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305160,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305161,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,100.0,85.0,0.0,15.0,,100.0 -2305162,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,231,Room Based Capacity,,,,,,207.0,235.0,207.0,0.0,28.0,,100.0 -2305163,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,313,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2305164,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2305165,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2305166,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,185,Bed Based Capacity,186.0,199.0,185.0,1.0,13.0,,,,,,99.46, -2305167,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305168,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2305169,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2305170,2022-02-08,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2305171,2022-02-08,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2305172,2022-02-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2305173,2022-02-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305174,2022-02-08,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2305175,2022-02-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305176,2022-02-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2305177,2022-02-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2305178,2022-02-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2305179,2022-02-08,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305180,2022-02-08,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305181,2022-02-08,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2305182,2022-02-08,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2305183,2022-02-08,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2305184,2022-02-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305185,2022-02-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,43.0,42.0,1.0,0.0,,,,,,97.67, -2305186,2022-02-08,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2305187,2022-02-08,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2305188,2022-02-08,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2305189,2022-02-08,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,64.0,75.0,61.0,3.0,11.0,,95.31 -2305190,2022-02-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2305191,2022-02-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2305192,2022-02-08,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2305193,2022-02-08,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2305194,2022-02-08,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305195,2022-02-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2305196,2022-02-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,227.0,225.0,0.0,2.0,,,,,,100.0, -2305197,2022-02-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2305198,2022-02-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2305199,2022-02-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2305200,2022-02-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2305201,2022-02-08,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2305202,2022-02-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2305203,2022-02-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2305204,2022-02-08,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305205,2022-02-08,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2305206,2022-02-08,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,3.0,5.0,1.0,2.0,2.0,,,,,,33.33, -2305207,2022-02-08,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2305208,2022-02-08,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305209,2022-02-08,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2305210,2022-02-08,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305211,2022-02-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305212,2022-02-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2305213,2022-02-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305214,2022-02-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,20.0,20.0,17.0,3.0,0.0,,,,,,85.0, -2305215,2022-02-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305216,2022-02-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2305217,2022-02-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2305218,2022-02-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305219,2022-02-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2305220,2022-02-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2305221,2022-02-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,125.0,107.0,125.0,0.0,0.0,,100.0 -2305222,2022-02-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2305223,2022-02-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2305224,2022-02-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2305225,2022-02-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,33.0,32.0,0.0,1.0,,,,,,100.0, -2305226,2022-02-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2305227,2022-02-09,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2305228,2022-02-09,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,216,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2305229,2022-02-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,79.0,83.0,73.0,6.0,4.0,,92.41 -2305230,2022-02-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2305231,2022-02-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2305232,2022-02-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2305233,2022-02-09,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2305234,2022-02-09,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2305235,2022-02-09,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,98.0,100.0,97.0,1.0,2.0,,98.98 -2305236,2022-02-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2305237,2022-02-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2305238,2022-02-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2305239,2022-02-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,16.0,18.0,16.0,0.0,2.0,,100.0 -2305240,2022-02-09,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2305241,2022-02-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2305242,2022-02-09,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2305243,2022-02-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305244,2022-02-09,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,32.0,3.0,2.0,,91.43 -2305245,2022-02-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,17.0,30.0,7.0,10.0,13.0,,41.18 -2305246,2022-02-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,25,Room Based Capacity,,,,,,68.0,30.0,21.0,47.0,0.0,,30.88 -2305247,2022-02-09,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2305248,2022-02-09,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,88.0,88.0,81.0,7.0,0.0,,,,,,92.05, -2305249,2022-02-09,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,49.0,50.0,47.0,2.0,1.0,,,,,,95.92, -2305250,2022-02-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2305251,2022-02-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2305252,2022-02-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2305253,2022-02-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,21.0,22.0,18.0,3.0,1.0,,,,,,85.71, -2305254,2022-02-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2305255,2022-02-09,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2305256,2022-02-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2305257,2022-02-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2305258,2022-02-09,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2305259,2022-02-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2305260,2022-02-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,72.0,74.0,69.0,3.0,2.0,,,,,,95.83, -2305261,2022-02-09,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2305262,2022-02-09,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2305263,2022-02-09,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2305264,2022-02-09,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2305265,2022-02-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2305266,2022-02-09,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2305267,2022-02-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2305268,2022-02-09,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305269,2022-02-09,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305270,2022-02-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305271,2022-02-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,231.0,245.0,223.0,8.0,14.0,,96.54 -2305272,2022-02-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2305273,2022-02-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2305274,2022-02-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2305275,2022-02-09,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2305276,2022-02-09,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2305277,2022-02-09,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305278,2022-02-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2305279,2022-02-09,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305280,2022-02-09,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305281,2022-02-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2305282,2022-02-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305283,2022-02-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305284,2022-02-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305285,2022-02-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305286,2022-02-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,265.0,271.0,264.0,1.0,6.0,,99.62 -2305287,2022-02-09,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2305288,2022-02-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305289,2022-02-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305290,2022-02-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305291,2022-02-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305292,2022-02-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305293,2022-02-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2305294,2022-02-09,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2305295,2022-02-09,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2305296,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2305297,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305298,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305299,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305300,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,100.0,85.0,0.0,15.0,,100.0 -2305301,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,229,Room Based Capacity,,,,,,205.0,235.0,205.0,0.0,30.0,,100.0 -2305302,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,311,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2305303,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2305304,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2305305,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,181,Bed Based Capacity,181.0,199.0,181.0,0.0,18.0,,,,,,100.0, -2305306,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305307,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2305308,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2305309,2022-02-09,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2305310,2022-02-09,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2305311,2022-02-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2305312,2022-02-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2305313,2022-02-09,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2305314,2022-02-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305315,2022-02-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2305316,2022-02-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2305317,2022-02-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2305318,2022-02-09,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305319,2022-02-09,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305320,2022-02-09,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2305321,2022-02-09,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2305322,2022-02-09,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2305323,2022-02-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305324,2022-02-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2305325,2022-02-09,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2305326,2022-02-09,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2305327,2022-02-09,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2305328,2022-02-09,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,75.0,62.0,2.0,11.0,,96.88 -2305329,2022-02-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2305330,2022-02-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2305331,2022-02-09,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2305332,2022-02-09,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2305333,2022-02-09,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305334,2022-02-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2305335,2022-02-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2305336,2022-02-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2305337,2022-02-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2305338,2022-02-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2305339,2022-02-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2305340,2022-02-09,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2305341,2022-02-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2305342,2022-02-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2305343,2022-02-09,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305344,2022-02-09,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2305345,2022-02-09,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,3.0,5.0,1.0,2.0,2.0,,,,,,33.33, -2305346,2022-02-09,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2305347,2022-02-09,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305348,2022-02-09,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2305349,2022-02-09,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305350,2022-02-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305351,2022-02-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2305352,2022-02-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305353,2022-02-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,20.0,20.0,17.0,3.0,0.0,,,,,,85.0, -2305354,2022-02-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305355,2022-02-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2305356,2022-02-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2305357,2022-02-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305358,2022-02-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2305359,2022-02-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,84.0,113.0,84.0,0.0,29.0,,100.0 -2305360,2022-02-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,125.0,107.0,125.0,0.0,0.0,,100.0 -2305361,2022-02-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2305362,2022-02-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2305363,2022-02-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,39.0,40.0,38.0,1.0,1.0,,97.44 -2305364,2022-02-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2305365,2022-02-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2305366,2022-02-10,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,23.0,30.0,21.0,2.0,7.0,,91.3 -2305367,2022-02-10,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2305368,2022-02-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,81.0,83.0,75.0,6.0,2.0,,92.59 -2305369,2022-02-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2305370,2022-02-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2305371,2022-02-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2305372,2022-02-10,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2305373,2022-02-10,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2305374,2022-02-10,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2305375,2022-02-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2305376,2022-02-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2305377,2022-02-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2305378,2022-02-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,16.0,18.0,16.0,0.0,2.0,,100.0 -2305379,2022-02-10,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2305380,2022-02-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2305381,2022-02-10,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2305382,2022-02-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305383,2022-02-10,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,36.0,37.0,33.0,3.0,1.0,,91.67 -2305384,2022-02-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,17.0,30.0,7.0,10.0,13.0,,41.18 -2305385,2022-02-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,29,Room Based Capacity,,,,,,68.0,30.0,21.0,47.0,0.0,,30.88 -2305386,2022-02-10,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2305387,2022-02-10,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,88.0,88.0,81.0,7.0,0.0,,,,,,92.05, -2305388,2022-02-10,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2305389,2022-02-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2305390,2022-02-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,71.0,81.0,70.0,1.0,10.0,,,,,,98.59, -2305391,2022-02-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,66.0,66.0,63.0,3.0,0.0,,,,,,95.45, -2305392,2022-02-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,21.0,22.0,18.0,3.0,1.0,,,,,,85.71, -2305393,2022-02-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2305394,2022-02-10,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2305395,2022-02-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305396,2022-02-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2305397,2022-02-10,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2305398,2022-02-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2305399,2022-02-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,74.0,74.0,70.0,4.0,0.0,,,,,,94.59, -2305400,2022-02-10,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2305401,2022-02-10,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2305402,2022-02-10,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2305403,2022-02-10,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2305404,2022-02-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2305405,2022-02-10,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2305406,2022-02-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2305407,2022-02-10,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305408,2022-02-10,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2305409,2022-02-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305410,2022-02-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,232.0,245.0,223.0,9.0,13.0,,96.12 -2305411,2022-02-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,41.0,41.0,39.0,2.0,0.0,,,,,,95.12, -2305412,2022-02-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2305413,2022-02-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2305414,2022-02-10,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2305415,2022-02-10,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2305416,2022-02-10,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2305417,2022-02-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2305418,2022-02-10,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305419,2022-02-10,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305420,2022-02-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2305421,2022-02-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305422,2022-02-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2305423,2022-02-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305424,2022-02-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305425,2022-02-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2305426,2022-02-10,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2305427,2022-02-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305428,2022-02-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305429,2022-02-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305430,2022-02-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305431,2022-02-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305432,2022-02-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2305433,2022-02-10,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,50.0,47.0,3.0,0.0,,,,,,94.0, -2305434,2022-02-10,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2305435,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,56.0,70.0,47.0,9.0,14.0,,,,,,83.93, -2305436,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305437,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305438,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305439,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,100.0,86.0,0.0,14.0,,100.0 -2305440,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,229,Room Based Capacity,,,,,,205.0,235.0,205.0,0.0,30.0,,100.0 -2305441,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,310,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2305442,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2305443,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2305444,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,199.0,183.0,1.0,15.0,,,,,,99.46, -2305445,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305446,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2305447,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2305448,2022-02-10,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2305449,2022-02-10,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2305450,2022-02-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2305451,2022-02-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305452,2022-02-10,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2305453,2022-02-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305454,2022-02-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2305455,2022-02-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2305456,2022-02-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2305457,2022-02-10,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305458,2022-02-10,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305459,2022-02-10,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2305460,2022-02-10,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305461,2022-02-10,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2305462,2022-02-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305463,2022-02-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2305464,2022-02-10,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2305465,2022-02-10,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2305466,2022-02-10,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2305467,2022-02-10,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,75.0,62.0,2.0,11.0,,96.88 -2305468,2022-02-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2305469,2022-02-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2305470,2022-02-10,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2305471,2022-02-10,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2305472,2022-02-10,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305473,2022-02-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2305474,2022-02-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2305475,2022-02-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2305476,2022-02-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2305477,2022-02-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2305478,2022-02-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2305479,2022-02-10,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,41.0,39.0,1.0,1.0,,,,,,97.5, -2305480,2022-02-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2305481,2022-02-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2305482,2022-02-10,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305483,2022-02-10,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2305484,2022-02-10,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2305485,2022-02-10,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2305486,2022-02-10,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305487,2022-02-10,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2305488,2022-02-10,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305489,2022-02-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305490,2022-02-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2305491,2022-02-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305492,2022-02-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2305493,2022-02-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305494,2022-02-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2305495,2022-02-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2305496,2022-02-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305497,2022-02-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2305498,2022-02-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,84.0,113.0,84.0,0.0,29.0,,100.0 -2305499,2022-02-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,420,Room Based Capacity,,,,,,127.0,107.0,127.0,0.0,0.0,,100.0 -2305500,2022-02-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2305501,2022-02-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2305502,2022-02-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2305503,2022-02-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2305504,2022-02-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2305505,2022-02-11,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2305506,2022-02-11,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2305507,2022-02-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,80.0,83.0,76.0,4.0,3.0,,95.0 -2305508,2022-02-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2305509,2022-02-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2305510,2022-02-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2305511,2022-02-11,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2305512,2022-02-11,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2305513,2022-02-11,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2305514,2022-02-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2305515,2022-02-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2305516,2022-02-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2305517,2022-02-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,16.0,18.0,16.0,0.0,2.0,,100.0 -2305518,2022-02-11,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2305519,2022-02-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2305520,2022-02-11,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2305521,2022-02-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305522,2022-02-11,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,35.0,37.0,33.0,2.0,2.0,,94.29 -2305523,2022-02-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,17.0,30.0,7.0,10.0,13.0,,41.18 -2305524,2022-02-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,24,Room Based Capacity,,,,,,68.0,30.0,19.0,49.0,0.0,,27.94 -2305525,2022-02-11,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2305526,2022-02-11,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,88.0,88.0,80.0,8.0,0.0,,,,,,90.91, -2305527,2022-02-11,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2305528,2022-02-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,49.0,51.0,45.0,4.0,2.0,,,,,,91.84, -2305529,2022-02-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2305530,2022-02-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2305531,2022-02-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2305532,2022-02-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2305533,2022-02-11,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2305534,2022-02-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2305535,2022-02-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2305536,2022-02-11,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2305537,2022-02-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2305538,2022-02-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2305539,2022-02-11,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2305540,2022-02-11,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2305541,2022-02-11,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2305542,2022-02-11,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2305543,2022-02-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2305544,2022-02-11,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,42.0,40.0,1.0,1.0,,97.56 -2305545,2022-02-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,53.0,52.0,0.0,1.0,,,,,,100.0, -2305546,2022-02-11,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305547,2022-02-11,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2305548,2022-02-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2305549,2022-02-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,232.0,245.0,223.0,9.0,13.0,,96.12 -2305550,2022-02-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,41.0,41.0,37.0,4.0,0.0,,,,,,90.24, -2305551,2022-02-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2305552,2022-02-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2305553,2022-02-11,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2305554,2022-02-11,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2305555,2022-02-11,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305556,2022-02-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2305557,2022-02-11,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305558,2022-02-11,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305559,2022-02-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2305560,2022-02-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305561,2022-02-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2305562,2022-02-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305563,2022-02-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305564,2022-02-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,267.0,271.0,265.0,2.0,4.0,,99.25 -2305565,2022-02-11,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2305566,2022-02-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305567,2022-02-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305568,2022-02-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305569,2022-02-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305570,2022-02-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305571,2022-02-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2305572,2022-02-11,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305573,2022-02-11,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2305574,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,56.0,70.0,50.0,6.0,14.0,,,,,,89.29, -2305575,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305576,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305577,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305578,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,100.0,86.0,0.0,14.0,,100.0 -2305579,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,209.0,235.0,209.0,0.0,26.0,,100.0 -2305580,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,310,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2305581,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2305582,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2305583,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,196,Bed Based Capacity,199.0,199.0,196.0,3.0,0.0,,,,,,98.49, -2305584,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305585,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2305586,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2305587,2022-02-11,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2305588,2022-02-11,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2305589,2022-02-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2305590,2022-02-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305591,2022-02-11,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2305592,2022-02-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305593,2022-02-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2305594,2022-02-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2305595,2022-02-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2305596,2022-02-11,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305597,2022-02-11,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305598,2022-02-11,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2305599,2022-02-11,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305600,2022-02-11,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2305601,2022-02-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305602,2022-02-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,43.0,42.0,1.0,0.0,,,,,,97.67, -2305603,2022-02-11,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2305604,2022-02-11,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2305605,2022-02-11,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2305606,2022-02-11,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2305607,2022-02-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2305608,2022-02-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2305609,2022-02-11,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2305610,2022-02-11,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2305611,2022-02-11,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305612,2022-02-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2305613,2022-02-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2305614,2022-02-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2305615,2022-02-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2305616,2022-02-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2305617,2022-02-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2305618,2022-02-11,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2305619,2022-02-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2305620,2022-02-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2305621,2022-02-11,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305622,2022-02-11,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2305623,2022-02-11,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2305624,2022-02-11,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,80,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2305625,2022-02-11,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305626,2022-02-11,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,28.0,28.0,26.0,2.0,0.0,,92.86 -2305627,2022-02-11,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305628,2022-02-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305629,2022-02-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2305630,2022-02-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305631,2022-02-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2305632,2022-02-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305633,2022-02-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2305634,2022-02-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2305635,2022-02-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305636,2022-02-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2305637,2022-02-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,84.0,113.0,84.0,0.0,29.0,,100.0 -2305638,2022-02-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,420,Room Based Capacity,,,,,,127.0,107.0,127.0,0.0,0.0,,100.0 -2305639,2022-02-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2305640,2022-02-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2305641,2022-02-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2305642,2022-02-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2305643,2022-02-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305644,2022-02-12,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2305645,2022-02-12,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2305646,2022-02-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,80.0,83.0,76.0,4.0,3.0,,95.0 -2305647,2022-02-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2305648,2022-02-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2305649,2022-02-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2305650,2022-02-12,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2305651,2022-02-12,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2305652,2022-02-12,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2305653,2022-02-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2305654,2022-02-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2305655,2022-02-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2305656,2022-02-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,16.0,18.0,16.0,0.0,2.0,,100.0 -2305657,2022-02-12,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2305658,2022-02-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,5.0,15.0,2.0,3.0,10.0,,,,,,40.0, -2305659,2022-02-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2305660,2022-02-12,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2305661,2022-02-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305662,2022-02-12,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,36.0,37.0,35.0,1.0,1.0,,97.22 -2305663,2022-02-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,14.0,30.0,7.0,7.0,16.0,,50.0 -2305664,2022-02-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,27,Room Based Capacity,,,,,,66.0,30.0,22.0,44.0,0.0,,33.33 -2305665,2022-02-12,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2305666,2022-02-12,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,88.0,88.0,80.0,8.0,0.0,,,,,,90.91, -2305667,2022-02-12,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2305668,2022-02-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,49.0,51.0,44.0,5.0,2.0,,,,,,89.8, -2305669,2022-02-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2305670,2022-02-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2305671,2022-02-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2305672,2022-02-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2305673,2022-02-12,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2305674,2022-02-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2305675,2022-02-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2305676,2022-02-12,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2305677,2022-02-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2305678,2022-02-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2305679,2022-02-12,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2305680,2022-02-12,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2305681,2022-02-12,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2305682,2022-02-12,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2305683,2022-02-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2305684,2022-02-12,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2305685,2022-02-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2305686,2022-02-12,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305687,2022-02-12,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305688,2022-02-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2305689,2022-02-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,232.0,245.0,223.0,9.0,13.0,,96.12 -2305690,2022-02-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2305691,2022-02-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2305692,2022-02-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2305693,2022-02-12,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2305694,2022-02-12,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2305695,2022-02-12,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305696,2022-02-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,39.0,41.0,37.0,2.0,2.0,,94.87 -2305697,2022-02-12,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305698,2022-02-12,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305699,2022-02-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305700,2022-02-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305701,2022-02-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2305702,2022-02-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305703,2022-02-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305704,2022-02-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2305705,2022-02-12,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2305706,2022-02-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305707,2022-02-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305708,2022-02-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305709,2022-02-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305710,2022-02-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305711,2022-02-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2305712,2022-02-12,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305713,2022-02-12,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2305714,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2305715,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305716,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2305717,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305718,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,100.0,86.0,0.0,14.0,,100.0 -2305719,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,210.0,235.0,210.0,0.0,25.0,,100.0 -2305720,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2305721,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2305722,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2305723,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,199,Bed Based Capacity,199.0,199.0,199.0,0.0,0.0,,,,,,100.0, -2305724,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305725,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2305726,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2305727,2022-02-12,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2305728,2022-02-12,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2305729,2022-02-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2305730,2022-02-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305731,2022-02-12,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2305732,2022-02-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305733,2022-02-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2305734,2022-02-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2305735,2022-02-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2305736,2022-02-12,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305737,2022-02-12,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305738,2022-02-12,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2305739,2022-02-12,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305740,2022-02-12,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2305741,2022-02-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305742,2022-02-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2305743,2022-02-12,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2305744,2022-02-12,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2305745,2022-02-12,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2305746,2022-02-12,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2305747,2022-02-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2305748,2022-02-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2305749,2022-02-12,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2305750,2022-02-12,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,74.0,73.0,72.0,2.0,0.0,,97.3 -2305751,2022-02-12,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305752,2022-02-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2305753,2022-02-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2305754,2022-02-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2305755,2022-02-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2305756,2022-02-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2305757,2022-02-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2305758,2022-02-12,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2305759,2022-02-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2305760,2022-02-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2305761,2022-02-12,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305762,2022-02-12,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,34.0,34.0,32.0,2.0,0.0,,,,,,94.12, -2305763,2022-02-12,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2305764,2022-02-12,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,80,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2305765,2022-02-12,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305766,2022-02-12,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2305767,2022-02-12,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305768,2022-02-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2305769,2022-02-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2305770,2022-02-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305771,2022-02-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,20.0,20.0,16.0,4.0,0.0,,,,,,80.0, -2305772,2022-02-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305773,2022-02-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2305774,2022-02-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2305775,2022-02-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305776,2022-02-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2305777,2022-02-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,84.0,113.0,84.0,0.0,29.0,,100.0 -2305778,2022-02-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,420,Room Based Capacity,,,,,,127.0,107.0,127.0,0.0,0.0,,100.0 -2305779,2022-02-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2305780,2022-02-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2305781,2022-02-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2305782,2022-02-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2305783,2022-02-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305784,2022-02-13,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2305785,2022-02-13,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2305786,2022-02-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,79.0,83.0,76.0,3.0,4.0,,96.2 -2305787,2022-02-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2305788,2022-02-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2305789,2022-02-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2305790,2022-02-13,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2305791,2022-02-13,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2305792,2022-02-13,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2305793,2022-02-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2305794,2022-02-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2305795,2022-02-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2305796,2022-02-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,16.0,18.0,16.0,0.0,2.0,,100.0 -2305797,2022-02-13,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2305798,2022-02-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2305799,2022-02-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2305800,2022-02-13,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2305801,2022-02-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305802,2022-02-13,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2305803,2022-02-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,14.0,30.0,7.0,7.0,16.0,,50.0 -2305804,2022-02-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,24,Room Based Capacity,,,,,,66.0,30.0,19.0,47.0,0.0,,28.79 -2305805,2022-02-13,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2305806,2022-02-13,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,88.0,88.0,80.0,8.0,0.0,,,,,,90.91, -2305807,2022-02-13,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2305808,2022-02-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,49.0,51.0,44.0,5.0,2.0,,,,,,89.8, -2305809,2022-02-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2305810,2022-02-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2305811,2022-02-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2305812,2022-02-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2305813,2022-02-13,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2305814,2022-02-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305815,2022-02-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2305816,2022-02-13,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2305817,2022-02-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2305818,2022-02-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2305819,2022-02-13,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2305820,2022-02-13,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2305821,2022-02-13,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2305822,2022-02-13,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2305823,2022-02-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,2.0,1.0,0.0,1.0,,,,,,100.0, -2305824,2022-02-13,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2305825,2022-02-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,53.0,50.0,1.0,2.0,,,,,,98.04, -2305826,2022-02-13,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305827,2022-02-13,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305828,2022-02-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2305829,2022-02-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,232.0,245.0,222.0,10.0,13.0,,95.69 -2305830,2022-02-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2305831,2022-02-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2305832,2022-02-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2305833,2022-02-13,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2305834,2022-02-13,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2305835,2022-02-13,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305836,2022-02-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,41.0,36.0,0.0,5.0,,100.0 -2305837,2022-02-13,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305838,2022-02-13,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305839,2022-02-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305840,2022-02-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305841,2022-02-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2305842,2022-02-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305843,2022-02-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305844,2022-02-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2305845,2022-02-13,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2305846,2022-02-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305847,2022-02-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305848,2022-02-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305849,2022-02-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305850,2022-02-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305851,2022-02-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2305852,2022-02-13,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305853,2022-02-13,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2305854,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,60,Bed Based Capacity,60.0,70.0,60.0,0.0,10.0,,,,,,100.0, -2305855,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305856,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305857,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305858,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,86.0,100.0,85.0,1.0,14.0,,98.84 -2305859,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,210.0,235.0,210.0,0.0,25.0,,100.0 -2305860,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2305861,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2305862,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2305863,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,199,Bed Based Capacity,199.0,199.0,199.0,0.0,0.0,,,,,,100.0, -2305864,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305865,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2305866,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2305867,2022-02-13,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2305868,2022-02-13,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,18.0,18.0,13.0,5.0,0.0,,,,,,72.22, -2305869,2022-02-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,40.0,40.0,38.0,2.0,0.0,,95.0 -2305870,2022-02-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305871,2022-02-13,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2305872,2022-02-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305873,2022-02-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2305874,2022-02-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2305875,2022-02-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2305876,2022-02-13,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2305877,2022-02-13,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305878,2022-02-13,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2305879,2022-02-13,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2305880,2022-02-13,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2305881,2022-02-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305882,2022-02-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2305883,2022-02-13,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2305884,2022-02-13,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2305885,2022-02-13,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2305886,2022-02-13,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2305887,2022-02-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2305888,2022-02-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2305889,2022-02-13,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2305890,2022-02-13,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,74.0,73.0,72.0,2.0,0.0,,97.3 -2305891,2022-02-13,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2305892,2022-02-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2305893,2022-02-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2305894,2022-02-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2305895,2022-02-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2305896,2022-02-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2305897,2022-02-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2305898,2022-02-13,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2305899,2022-02-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2305900,2022-02-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2305901,2022-02-13,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305902,2022-02-13,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2305903,2022-02-13,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2305904,2022-02-13,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,80,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2305905,2022-02-13,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305906,2022-02-13,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2305907,2022-02-13,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2305908,2022-02-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2305909,2022-02-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2305910,2022-02-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2305911,2022-02-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2305912,2022-02-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305913,2022-02-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2305914,2022-02-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2305915,2022-02-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305916,2022-02-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2305917,2022-02-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2305918,2022-02-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,416,Room Based Capacity,,,,,,125.0,107.0,125.0,0.0,0.0,,100.0 -2305919,2022-02-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2305920,2022-02-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2305921,2022-02-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2305922,2022-02-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2305923,2022-02-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2305924,2022-02-14,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2305925,2022-02-14,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2305926,2022-02-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,79.0,83.0,76.0,3.0,4.0,,96.2 -2305927,2022-02-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2305928,2022-02-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2305929,2022-02-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2305930,2022-02-14,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2305931,2022-02-14,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,132,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2305932,2022-02-14,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2305933,2022-02-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2305934,2022-02-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2305935,2022-02-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,73,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2305936,2022-02-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,15.0,18.0,15.0,0.0,3.0,,100.0 -2305937,2022-02-14,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,40,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2305938,2022-02-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2305939,2022-02-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2305940,2022-02-14,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2305941,2022-02-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305942,2022-02-14,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2305943,2022-02-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,14.0,30.0,5.0,9.0,16.0,,35.71 -2305944,2022-02-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,23,Room Based Capacity,,,,,,66.0,30.0,18.0,48.0,0.0,,27.27 -2305945,2022-02-14,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2305946,2022-02-14,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2305947,2022-02-14,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2305948,2022-02-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,49.0,51.0,44.0,5.0,2.0,,,,,,89.8, -2305949,2022-02-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2305950,2022-02-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2305951,2022-02-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2305952,2022-02-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2305953,2022-02-14,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2305954,2022-02-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2305955,2022-02-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2305956,2022-02-14,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2305957,2022-02-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2305958,2022-02-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2305959,2022-02-14,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2305960,2022-02-14,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2305961,2022-02-14,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2305962,2022-02-14,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2305963,2022-02-14,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2305964,2022-02-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,52.0,53.0,51.0,1.0,1.0,,,,,,98.08, -2305965,2022-02-14,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305966,2022-02-14,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305967,2022-02-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2305968,2022-02-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,232.0,245.0,224.0,8.0,13.0,,96.55 -2305969,2022-02-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2305970,2022-02-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2305971,2022-02-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2305972,2022-02-14,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2305973,2022-02-14,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2305974,2022-02-14,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2305975,2022-02-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,37.0,41.0,37.0,0.0,4.0,,100.0 -2305976,2022-02-14,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305977,2022-02-14,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2305978,2022-02-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2305979,2022-02-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2305980,2022-02-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2305981,2022-02-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2305982,2022-02-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,54.0,54.0,52.0,2.0,0.0,,,,,,96.3, -2305983,2022-02-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2305984,2022-02-14,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2305985,2022-02-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2305986,2022-02-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2305987,2022-02-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2305988,2022-02-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2305989,2022-02-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2305990,2022-02-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2305991,2022-02-14,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2305992,2022-02-14,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2305993,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,60,Bed Based Capacity,60.0,70.0,60.0,0.0,10.0,,,,,,100.0, -2305994,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2305995,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2305996,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2305997,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,100.0,85.0,0.0,15.0,,100.0 -2305998,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,210.0,235.0,210.0,0.0,25.0,,100.0 -2305999,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2306000,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2306001,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,68,Bed Based Capacity,71.0,71.0,68.0,3.0,0.0,,,,,,95.77, -2306002,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,198,Bed Based Capacity,199.0,199.0,198.0,1.0,0.0,,,,,,99.5, -2306003,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2306004,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306005,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306006,2022-02-14,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2306007,2022-02-14,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,18.0,18.0,16.0,2.0,0.0,,,,,,88.89, -2306008,2022-02-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306009,2022-02-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306010,2022-02-14,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2306011,2022-02-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306012,2022-02-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306013,2022-02-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306014,2022-02-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2306015,2022-02-14,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306016,2022-02-14,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306017,2022-02-14,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306018,2022-02-14,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,27.0,24.0,1.0,2.0,,,,,,96.0, -2306019,2022-02-14,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306020,2022-02-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306021,2022-02-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2306022,2022-02-14,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2306023,2022-02-14,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306024,2022-02-14,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2306025,2022-02-14,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2306026,2022-02-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2306027,2022-02-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2306028,2022-02-14,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2306029,2022-02-14,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2306030,2022-02-14,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306031,2022-02-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2306032,2022-02-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2306033,2022-02-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306034,2022-02-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,78.0,78.0,0.0,0.0,,100.0 -2306035,2022-02-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306036,2022-02-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2306037,2022-02-14,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306038,2022-02-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2306039,2022-02-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2306040,2022-02-14,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306041,2022-02-14,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306042,2022-02-14,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2306043,2022-02-14,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,24.0,27.0,23.0,1.0,3.0,,95.83 -2306044,2022-02-14,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306045,2022-02-14,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,28.0,28.0,27.0,1.0,0.0,,96.43 -2306046,2022-02-14,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306047,2022-02-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306048,2022-02-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2306049,2022-02-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2306050,2022-02-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,20.0,20.0,14.0,6.0,0.0,,,,,,70.0, -2306051,2022-02-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306052,2022-02-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2306053,2022-02-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2306054,2022-02-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306055,2022-02-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2306056,2022-02-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2306057,2022-02-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,413,Room Based Capacity,,,,,,124.0,107.0,124.0,0.0,0.0,,100.0 -2306058,2022-02-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2306059,2022-02-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2306060,2022-02-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2306061,2022-02-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2306062,2022-02-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306063,2022-02-15,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2306064,2022-02-15,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2306065,2022-02-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,79.0,83.0,77.0,2.0,4.0,,97.47 -2306066,2022-02-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,23,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2306067,2022-02-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2306068,2022-02-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2306069,2022-02-15,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2306070,2022-02-15,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2306071,2022-02-15,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2306072,2022-02-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2306073,2022-02-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2306074,2022-02-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,67,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2306075,2022-02-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,34,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2306076,2022-02-15,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,37,Room Based Capacity,,,,,,17.0,20.0,17.0,0.0,3.0,,100.0 -2306077,2022-02-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2306078,2022-02-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2306079,2022-02-15,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2306080,2022-02-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306081,2022-02-15,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2306082,2022-02-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,14.0,30.0,5.0,9.0,16.0,,35.71 -2306083,2022-02-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,66.0,30.0,17.0,49.0,0.0,,25.76 -2306084,2022-02-15,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2306085,2022-02-15,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,88.0,88.0,83.0,5.0,0.0,,,,,,94.32, -2306086,2022-02-15,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2306087,2022-02-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,51.0,47.0,3.0,1.0,,,,,,94.0, -2306088,2022-02-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2306089,2022-02-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2306090,2022-02-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2306091,2022-02-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306092,2022-02-15,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2306093,2022-02-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2306094,2022-02-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2306095,2022-02-15,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2306096,2022-02-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2306097,2022-02-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2306098,2022-02-15,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306099,2022-02-15,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2306100,2022-02-15,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,42.0,44.0,42.0,0.0,2.0,,100.0 -2306101,2022-02-15,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2306102,2022-02-15,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,42.0,40.0,1.0,1.0,,97.56 -2306103,2022-02-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,53.0,52.0,0.0,1.0,,,,,,100.0, -2306104,2022-02-15,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2306105,2022-02-15,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306106,2022-02-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2306107,2022-02-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,232.0,245.0,225.0,7.0,13.0,,96.98 -2306108,2022-02-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306109,2022-02-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2306110,2022-02-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2306111,2022-02-15,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2306112,2022-02-15,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2306113,2022-02-15,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306114,2022-02-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2306115,2022-02-15,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306116,2022-02-15,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2306117,2022-02-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2306118,2022-02-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306119,2022-02-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306120,2022-02-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306121,2022-02-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306122,2022-02-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2306123,2022-02-15,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2306124,2022-02-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306125,2022-02-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2306126,2022-02-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306127,2022-02-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306128,2022-02-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306129,2022-02-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2306130,2022-02-15,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2306131,2022-02-15,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2306132,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2306133,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306134,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306135,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2306136,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,100.0,85.0,0.0,15.0,,100.0 -2306137,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,212.0,235.0,212.0,0.0,23.0,,100.0 -2306138,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2306139,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2306140,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2306141,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,197,Bed Based Capacity,199.0,199.0,197.0,2.0,0.0,,,,,,98.99, -2306142,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2306143,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306144,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306145,2022-02-15,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2306146,2022-02-15,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2306147,2022-02-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306148,2022-02-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306149,2022-02-15,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2306150,2022-02-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306151,2022-02-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306152,2022-02-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306153,2022-02-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2306154,2022-02-15,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306155,2022-02-15,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306156,2022-02-15,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306157,2022-02-15,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306158,2022-02-15,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306159,2022-02-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306160,2022-02-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2306161,2022-02-15,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2306162,2022-02-15,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306163,2022-02-15,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2306164,2022-02-15,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2306165,2022-02-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2306166,2022-02-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,28.0,21.0,2.0,5.0,,91.3 -2306167,2022-02-15,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2306168,2022-02-15,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,74.0,73.0,72.0,2.0,0.0,,97.3 -2306169,2022-02-15,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306170,2022-02-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2306171,2022-02-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2306172,2022-02-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306173,2022-02-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2306174,2022-02-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306175,2022-02-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2306176,2022-02-15,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306177,2022-02-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2306178,2022-02-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2306179,2022-02-15,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306180,2022-02-15,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306181,2022-02-15,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2306182,2022-02-15,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2306183,2022-02-15,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306184,2022-02-15,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2306185,2022-02-15,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306186,2022-02-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306187,2022-02-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2306188,2022-02-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306189,2022-02-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,20.0,20.0,13.0,7.0,0.0,,,,,,65.0, -2306190,2022-02-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306191,2022-02-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2306192,2022-02-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2306193,2022-02-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306194,2022-02-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2306195,2022-02-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2306196,2022-02-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,404,Room Based Capacity,,,,,,121.0,107.0,121.0,0.0,0.0,,100.0 -2306197,2022-02-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2306198,2022-02-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2306199,2022-02-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2306200,2022-02-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2306201,2022-02-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306202,2022-02-16,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2306203,2022-02-16,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2306204,2022-02-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,78.0,83.0,77.0,1.0,5.0,,98.72 -2306205,2022-02-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,23,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2306206,2022-02-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2306207,2022-02-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2306208,2022-02-16,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2306209,2022-02-16,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2306210,2022-02-16,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2306211,2022-02-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,154,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2306212,2022-02-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2306213,2022-02-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,65,Room Based Capacity,,,,,,20.0,40.0,20.0,0.0,20.0,,100.0 -2306214,2022-02-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2306215,2022-02-16,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,38,Room Based Capacity,,,,,,17.0,20.0,17.0,0.0,3.0,,100.0 -2306216,2022-02-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,15.0,4.0,1.0,10.0,,,,,,80.0, -2306217,2022-02-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2306218,2022-02-16,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2306219,2022-02-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306220,2022-02-16,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2306221,2022-02-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,14.0,30.0,5.0,9.0,16.0,,35.71 -2306222,2022-02-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,67.0,30.0,17.0,50.0,0.0,,25.37 -2306223,2022-02-16,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2306224,2022-02-16,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,88.0,88.0,83.0,5.0,0.0,,,,,,94.32, -2306225,2022-02-16,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2306226,2022-02-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2306227,2022-02-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,10.0,10.0,5.0,5.0,0.0,,,,,,50.0, -2306228,2022-02-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2306229,2022-02-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2306230,2022-02-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2306231,2022-02-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306232,2022-02-16,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2306233,2022-02-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306234,2022-02-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2306235,2022-02-16,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2306236,2022-02-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306237,2022-02-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2306238,2022-02-16,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306239,2022-02-16,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2306240,2022-02-16,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2306241,2022-02-16,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2306242,2022-02-16,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2306243,2022-02-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2306244,2022-02-16,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2306245,2022-02-16,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306246,2022-02-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2306247,2022-02-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,229.0,245.0,223.0,6.0,16.0,,97.38 -2306248,2022-02-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306249,2022-02-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2306250,2022-02-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2306251,2022-02-16,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2306252,2022-02-16,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,50.0,42.0,1.0,7.0,,,,,,97.67, -2306253,2022-02-16,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306254,2022-02-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2306255,2022-02-16,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306256,2022-02-16,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2306257,2022-02-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2306258,2022-02-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306259,2022-02-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306260,2022-02-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306261,2022-02-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306262,2022-02-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2306263,2022-02-16,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2306264,2022-02-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306265,2022-02-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2306266,2022-02-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306267,2022-02-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306268,2022-02-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306269,2022-02-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2306270,2022-02-16,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2306271,2022-02-16,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2306272,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,56.0,70.0,53.0,3.0,14.0,,,,,,94.64, -2306273,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306274,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306275,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2306276,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,100.0,85.0,0.0,15.0,,100.0 -2306277,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,208.0,235.0,208.0,0.0,27.0,,100.0 -2306278,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2306279,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2306280,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2306281,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,192,Bed Based Capacity,192.0,199.0,192.0,0.0,7.0,,,,,,100.0, -2306282,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2306283,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306284,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306285,2022-02-16,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2306286,2022-02-16,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2306287,2022-02-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306288,2022-02-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306289,2022-02-16,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2306290,2022-02-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306291,2022-02-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306292,2022-02-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306293,2022-02-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2306294,2022-02-16,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306295,2022-02-16,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306296,2022-02-16,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306297,2022-02-16,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306298,2022-02-16,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306299,2022-02-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306300,2022-02-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2306301,2022-02-16,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2306302,2022-02-16,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306303,2022-02-16,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2306304,2022-02-16,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,64.0,75.0,63.0,1.0,11.0,,98.44 -2306305,2022-02-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2306306,2022-02-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,28.0,22.0,1.0,5.0,,95.65 -2306307,2022-02-16,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2306308,2022-02-16,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2306309,2022-02-16,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306310,2022-02-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2306311,2022-02-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2306312,2022-02-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306313,2022-02-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,75.0,78.0,74.0,1.0,3.0,,98.67 -2306314,2022-02-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306315,2022-02-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,30.0,30.0,28.0,2.0,0.0,,,,,,93.33, -2306316,2022-02-16,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306317,2022-02-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2306318,2022-02-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2306319,2022-02-16,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306320,2022-02-16,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306321,2022-02-16,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2306322,2022-02-16,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,24.0,27.0,23.0,1.0,3.0,,95.83 -2306323,2022-02-16,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306324,2022-02-16,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2306325,2022-02-16,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306326,2022-02-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306327,2022-02-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2306328,2022-02-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306329,2022-02-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,20.0,20.0,13.0,7.0,0.0,,,,,,65.0, -2306330,2022-02-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306331,2022-02-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2306332,2022-02-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2306333,2022-02-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306334,2022-02-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2306335,2022-02-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2306336,2022-02-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,410,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2306337,2022-02-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2306338,2022-02-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2306339,2022-02-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2306340,2022-02-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2306341,2022-02-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306342,2022-02-17,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,30.0,20.0,0.0,10.0,,100.0 -2306343,2022-02-17,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2306344,2022-02-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,83.0,78.0,0.0,5.0,,100.0 -2306345,2022-02-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,23,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2306346,2022-02-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2306347,2022-02-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2306348,2022-02-17,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2306349,2022-02-17,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,132,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2306350,2022-02-17,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2306351,2022-02-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2306352,2022-02-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,2,Bed Based Capacity,2.0,8.0,2.0,0.0,6.0,,,,,,100.0, -2306353,2022-02-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,65,Room Based Capacity,,,,,,20.0,40.0,20.0,0.0,20.0,,100.0 -2306354,2022-02-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2306355,2022-02-17,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,38,Room Based Capacity,,,,,,17.0,20.0,17.0,0.0,3.0,,100.0 -2306356,2022-02-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2306357,2022-02-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2306358,2022-02-17,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2306359,2022-02-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306360,2022-02-17,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2306361,2022-02-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,14.0,30.0,5.0,9.0,16.0,,35.71 -2306362,2022-02-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,65.0,30.0,17.0,48.0,0.0,,26.15 -2306363,2022-02-17,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2306364,2022-02-17,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,88.0,88.0,83.0,5.0,0.0,,,,,,94.32, -2306365,2022-02-17,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2306366,2022-02-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2306367,2022-02-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2306368,2022-02-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2306369,2022-02-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2306370,2022-02-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2306371,2022-02-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306372,2022-02-17,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2306373,2022-02-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306374,2022-02-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,14.0,27.0,11.0,3.0,13.0,,,,,,78.57, -2306375,2022-02-17,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,65.0,71.0,63.0,2.0,6.0,,96.92 -2306376,2022-02-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2306377,2022-02-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2306378,2022-02-17,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306379,2022-02-17,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2306380,2022-02-17,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2306381,2022-02-17,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2306382,2022-02-17,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2306383,2022-02-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2306384,2022-02-17,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2306385,2022-02-17,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306386,2022-02-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2306387,2022-02-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,230.0,245.0,223.0,7.0,15.0,,96.96 -2306388,2022-02-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306389,2022-02-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2306390,2022-02-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2306391,2022-02-17,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2306392,2022-02-17,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,50.0,42.0,2.0,6.0,,,,,,95.45, -2306393,2022-02-17,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306394,2022-02-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2306395,2022-02-17,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306396,2022-02-17,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2306397,2022-02-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2306398,2022-02-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306399,2022-02-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306400,2022-02-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306401,2022-02-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306402,2022-02-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2306403,2022-02-17,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2306404,2022-02-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306405,2022-02-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2306406,2022-02-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306407,2022-02-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306408,2022-02-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306409,2022-02-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2306410,2022-02-17,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2306411,2022-02-17,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2306412,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,54.0,70.0,52.0,2.0,16.0,,,,,,96.3, -2306413,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306414,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2306415,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2306416,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2306417,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2306418,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2306419,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2306420,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2306421,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,194,Bed Based Capacity,199.0,199.0,194.0,5.0,0.0,,,,,,97.49, -2306422,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2306423,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306424,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306425,2022-02-17,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2306426,2022-02-17,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2306427,2022-02-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306428,2022-02-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306429,2022-02-17,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2306430,2022-02-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306431,2022-02-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306432,2022-02-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306433,2022-02-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2306434,2022-02-17,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306435,2022-02-17,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306436,2022-02-17,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306437,2022-02-17,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306438,2022-02-17,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306439,2022-02-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306440,2022-02-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2306441,2022-02-17,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2306442,2022-02-17,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306443,2022-02-17,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2306444,2022-02-17,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2306445,2022-02-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2306446,2022-02-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,28.0,22.0,1.0,5.0,,95.65 -2306447,2022-02-17,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2306448,2022-02-17,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2306449,2022-02-17,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306450,2022-02-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2306451,2022-02-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2306452,2022-02-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306453,2022-02-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,78.0,73.0,0.0,5.0,,100.0 -2306454,2022-02-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306455,2022-02-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2306456,2022-02-17,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306457,2022-02-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2306458,2022-02-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2306459,2022-02-17,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2306460,2022-02-17,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306461,2022-02-17,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2306462,2022-02-17,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2306463,2022-02-17,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306464,2022-02-17,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2306465,2022-02-17,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306466,2022-02-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2306467,2022-02-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2306468,2022-02-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306469,2022-02-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,20.0,20.0,12.0,8.0,0.0,,,,,,60.0, -2306470,2022-02-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306471,2022-02-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2306472,2022-02-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2306473,2022-02-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306474,2022-02-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2306475,2022-02-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,86.0,113.0,85.0,1.0,27.0,,98.84 -2306476,2022-02-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,410,Room Based Capacity,,,,,,124.0,107.0,123.0,1.0,0.0,,99.19 -2306477,2022-02-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2306478,2022-02-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2306479,2022-02-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2306480,2022-02-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2306481,2022-02-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306482,2022-02-18,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,21.0,30.0,20.0,1.0,9.0,,95.24 -2306483,2022-02-18,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,65.0,62.0,2.0,1.0,,96.88 -2306484,2022-02-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2306485,2022-02-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2306486,2022-02-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2306487,2022-02-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,71.0,77.0,71.0,0.0,6.0,,100.0 -2306488,2022-02-18,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2306489,2022-02-18,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2306490,2022-02-18,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2306491,2022-02-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,157,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2306492,2022-02-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,1.0,8.0,1.0,0.0,7.0,,,,,,100.0, -2306493,2022-02-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,65,Room Based Capacity,,,,,,20.0,40.0,20.0,0.0,20.0,,100.0 -2306494,2022-02-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2306495,2022-02-18,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,38,Room Based Capacity,,,,,,17.0,20.0,17.0,0.0,3.0,,100.0 -2306496,2022-02-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2306497,2022-02-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2306498,2022-02-18,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2306499,2022-02-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306500,2022-02-18,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2306501,2022-02-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,14.0,30.0,2.0,12.0,16.0,,14.29 -2306502,2022-02-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,65.0,30.0,17.0,48.0,0.0,,26.15 -2306503,2022-02-18,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2306504,2022-02-18,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2306505,2022-02-18,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306506,2022-02-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2306507,2022-02-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306508,2022-02-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2306509,2022-02-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2306510,2022-02-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2306511,2022-02-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306512,2022-02-18,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2306513,2022-02-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306514,2022-02-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2306515,2022-02-18,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2306516,2022-02-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306517,2022-02-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2306518,2022-02-18,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306519,2022-02-18,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2306520,2022-02-18,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2306521,2022-02-18,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2306522,2022-02-18,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2306523,2022-02-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2306524,2022-02-18,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2306525,2022-02-18,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306526,2022-02-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306527,2022-02-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,233.0,245.0,226.0,7.0,12.0,,97.0 -2306528,2022-02-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306529,2022-02-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2306530,2022-02-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2306531,2022-02-18,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2306532,2022-02-18,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,50.0,43.0,1.0,6.0,,,,,,97.73, -2306533,2022-02-18,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306534,2022-02-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2306535,2022-02-18,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306536,2022-02-18,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2306537,2022-02-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2306538,2022-02-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306539,2022-02-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306540,2022-02-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306541,2022-02-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306542,2022-02-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2306543,2022-02-18,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2306544,2022-02-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306545,2022-02-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2306546,2022-02-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306547,2022-02-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306548,2022-02-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306549,2022-02-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2306550,2022-02-18,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2306551,2022-02-18,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2306552,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2306553,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306554,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306555,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2306556,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2306557,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2306558,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2306559,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2306560,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2306561,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,199,Bed Based Capacity,199.0,199.0,199.0,0.0,0.0,,,,,,100.0, -2306562,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2306563,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306564,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306565,2022-02-18,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2306566,2022-02-18,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2306567,2022-02-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306568,2022-02-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306569,2022-02-18,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2306570,2022-02-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306571,2022-02-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306572,2022-02-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306573,2022-02-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2306574,2022-02-18,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306575,2022-02-18,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306576,2022-02-18,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306577,2022-02-18,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306578,2022-02-18,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306579,2022-02-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306580,2022-02-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2306581,2022-02-18,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2306582,2022-02-18,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306583,2022-02-18,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2306584,2022-02-18,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,65.0,75.0,64.0,1.0,10.0,,98.46 -2306585,2022-02-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2306586,2022-02-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2306587,2022-02-18,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,53.0,53.0,50.0,3.0,0.0,,,,,,94.34, -2306588,2022-02-18,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2306589,2022-02-18,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306590,2022-02-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2306591,2022-02-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2306592,2022-02-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306593,2022-02-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2306594,2022-02-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2306595,2022-02-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2306596,2022-02-18,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306597,2022-02-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2306598,2022-02-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2306599,2022-02-18,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306600,2022-02-18,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306601,2022-02-18,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2306602,2022-02-18,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2306603,2022-02-18,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306604,2022-02-18,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2306605,2022-02-18,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306606,2022-02-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306607,2022-02-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2306608,2022-02-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306609,2022-02-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,20.0,20.0,16.0,4.0,0.0,,,,,,80.0, -2306610,2022-02-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306611,2022-02-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2306612,2022-02-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2306613,2022-02-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306614,2022-02-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2306615,2022-02-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2306616,2022-02-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,410,Room Based Capacity,,,,,,124.0,107.0,123.0,1.0,0.0,,99.19 -2306617,2022-02-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2306618,2022-02-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2306619,2022-02-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2306620,2022-02-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2306621,2022-02-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306622,2022-02-19,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,21.0,30.0,20.0,1.0,9.0,,95.24 -2306623,2022-02-19,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2306624,2022-02-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2306625,2022-02-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2306626,2022-02-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2306627,2022-02-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,71.0,77.0,71.0,0.0,6.0,,100.0 -2306628,2022-02-19,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2306629,2022-02-19,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2306630,2022-02-19,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2306631,2022-02-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2306632,2022-02-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,1.0,8.0,1.0,0.0,7.0,,,,,,100.0, -2306633,2022-02-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2306634,2022-02-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2306635,2022-02-19,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2306636,2022-02-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2306637,2022-02-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2306638,2022-02-19,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2306639,2022-02-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306640,2022-02-19,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2306641,2022-02-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,14.0,30.0,2.0,12.0,16.0,,14.29 -2306642,2022-02-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,65.0,30.0,17.0,48.0,0.0,,26.15 -2306643,2022-02-19,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2306644,2022-02-19,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2306645,2022-02-19,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306646,2022-02-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2306647,2022-02-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306648,2022-02-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2306649,2022-02-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2306650,2022-02-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2306651,2022-02-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306652,2022-02-19,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2306653,2022-02-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306654,2022-02-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2306655,2022-02-19,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2306656,2022-02-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2306657,2022-02-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2306658,2022-02-19,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306659,2022-02-19,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2306660,2022-02-19,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2306661,2022-02-19,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2306662,2022-02-19,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2306663,2022-02-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2306664,2022-02-19,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2306665,2022-02-19,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306666,2022-02-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306667,2022-02-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,233.0,245.0,226.0,7.0,12.0,,97.0 -2306668,2022-02-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306669,2022-02-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2306670,2022-02-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2306671,2022-02-19,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2306672,2022-02-19,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,50.0,43.0,1.0,6.0,,,,,,97.73, -2306673,2022-02-19,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306674,2022-02-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2306675,2022-02-19,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306676,2022-02-19,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2306677,2022-02-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2306678,2022-02-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306679,2022-02-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,37,Bed Based Capacity,44.0,44.0,37.0,7.0,0.0,,,,,,84.09, -2306680,2022-02-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306681,2022-02-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306682,2022-02-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2306683,2022-02-19,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2306684,2022-02-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306685,2022-02-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2306686,2022-02-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306687,2022-02-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,27.0,24.0,1.0,2.0,,,,,,96.0, -2306688,2022-02-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306689,2022-02-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2306690,2022-02-19,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306691,2022-02-19,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2306692,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2306693,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306694,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2306695,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2306696,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2306697,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2306698,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2306699,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2306700,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2306701,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,199,Bed Based Capacity,199.0,199.0,199.0,0.0,0.0,,,,,,100.0, -2306702,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2306703,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306704,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306705,2022-02-19,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2306706,2022-02-19,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2306707,2022-02-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306708,2022-02-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306709,2022-02-19,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2306710,2022-02-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306711,2022-02-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306712,2022-02-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306713,2022-02-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2306714,2022-02-19,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306715,2022-02-19,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306716,2022-02-19,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306717,2022-02-19,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306718,2022-02-19,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306719,2022-02-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306720,2022-02-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2306721,2022-02-19,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2306722,2022-02-19,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306723,2022-02-19,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2306724,2022-02-19,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,65.0,75.0,64.0,1.0,10.0,,98.46 -2306725,2022-02-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2306726,2022-02-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2306727,2022-02-19,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2306728,2022-02-19,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2306729,2022-02-19,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306730,2022-02-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2306731,2022-02-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2306732,2022-02-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306733,2022-02-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2306734,2022-02-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306735,2022-02-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2306736,2022-02-19,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306737,2022-02-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2306738,2022-02-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2306739,2022-02-19,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306740,2022-02-19,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306741,2022-02-19,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2306742,2022-02-19,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306743,2022-02-19,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2306744,2022-02-19,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306745,2022-02-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306746,2022-02-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2306747,2022-02-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306748,2022-02-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,20.0,20.0,16.0,4.0,0.0,,,,,,80.0, -2306749,2022-02-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306750,2022-02-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2306751,2022-02-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2306752,2022-02-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306753,2022-02-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2306754,2022-02-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2306755,2022-02-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,407,Room Based Capacity,,,,,,122.0,107.0,122.0,0.0,0.0,,100.0 -2306756,2022-02-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2306757,2022-02-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2306758,2022-02-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2306759,2022-02-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2306760,2022-02-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306761,2022-02-20,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,21.0,30.0,20.0,1.0,9.0,,95.24 -2306762,2022-02-20,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2306763,2022-02-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2306764,2022-02-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2306765,2022-02-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2306766,2022-02-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,71.0,77.0,71.0,0.0,6.0,,100.0 -2306767,2022-02-20,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2306768,2022-02-20,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2306769,2022-02-20,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2306770,2022-02-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2306771,2022-02-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,1.0,8.0,1.0,0.0,7.0,,,,,,100.0, -2306772,2022-02-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2306773,2022-02-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2306774,2022-02-20,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2306775,2022-02-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,3.0,15.0,3.0,0.0,12.0,,,,,,100.0, -2306776,2022-02-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2306777,2022-02-20,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2306778,2022-02-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306779,2022-02-20,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2306780,2022-02-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,14.0,30.0,2.0,12.0,16.0,,14.29 -2306781,2022-02-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,65.0,30.0,17.0,48.0,0.0,,26.15 -2306782,2022-02-20,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2306783,2022-02-20,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2306784,2022-02-20,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306785,2022-02-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,51.0,48.0,2.0,1.0,,,,,,96.0, -2306786,2022-02-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306787,2022-02-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2306788,2022-02-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2306789,2022-02-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2306790,2022-02-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306791,2022-02-20,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2306792,2022-02-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306793,2022-02-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2306794,2022-02-20,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2306795,2022-02-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306796,2022-02-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2306797,2022-02-20,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306798,2022-02-20,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2306799,2022-02-20,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2306800,2022-02-20,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2306801,2022-02-20,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2306802,2022-02-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2306803,2022-02-20,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2306804,2022-02-20,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306805,2022-02-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306806,2022-02-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,233.0,245.0,226.0,7.0,12.0,,97.0 -2306807,2022-02-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306808,2022-02-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2306809,2022-02-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2306810,2022-02-20,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2306811,2022-02-20,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2306812,2022-02-20,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2306813,2022-02-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2306814,2022-02-20,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306815,2022-02-20,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2306816,2022-02-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2306817,2022-02-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306818,2022-02-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2306819,2022-02-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306820,2022-02-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306821,2022-02-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2306822,2022-02-20,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2306823,2022-02-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306824,2022-02-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2306825,2022-02-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306826,2022-02-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306827,2022-02-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306828,2022-02-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2306829,2022-02-20,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306830,2022-02-20,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2306831,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,56.0,70.0,54.0,2.0,14.0,,,,,,96.43, -2306832,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306833,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306834,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,55.0,53.0,1.0,1.0,,,,,,98.15, -2306835,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2306836,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2306837,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2306838,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2306839,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2306840,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,199,Bed Based Capacity,199.0,199.0,199.0,0.0,0.0,,,,,,100.0, -2306841,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2306842,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306843,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306844,2022-02-20,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2306845,2022-02-20,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2306846,2022-02-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306847,2022-02-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306848,2022-02-20,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2306849,2022-02-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306850,2022-02-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306851,2022-02-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306852,2022-02-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2306853,2022-02-20,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306854,2022-02-20,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306855,2022-02-20,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306856,2022-02-20,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306857,2022-02-20,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306858,2022-02-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306859,2022-02-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2306860,2022-02-20,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2306861,2022-02-20,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306862,2022-02-20,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2306863,2022-02-20,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,65.0,75.0,64.0,1.0,10.0,,98.46 -2306864,2022-02-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2306865,2022-02-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2306866,2022-02-20,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2306867,2022-02-20,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2306868,2022-02-20,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306869,2022-02-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2306870,2022-02-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2306871,2022-02-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306872,2022-02-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2306873,2022-02-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2306874,2022-02-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2306875,2022-02-20,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2306876,2022-02-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2306877,2022-02-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2306878,2022-02-20,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306879,2022-02-20,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306880,2022-02-20,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2306881,2022-02-20,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2306882,2022-02-20,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306883,2022-02-20,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2306884,2022-02-20,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2306885,2022-02-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2306886,2022-02-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2306887,2022-02-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306888,2022-02-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2306889,2022-02-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306890,2022-02-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2306891,2022-02-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2306892,2022-02-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2306893,2022-02-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2306894,2022-02-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2306895,2022-02-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,407,Room Based Capacity,,,,,,122.0,107.0,122.0,0.0,0.0,,100.0 -2306896,2022-02-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2306897,2022-02-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2306898,2022-02-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2306899,2022-02-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2306900,2022-02-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306901,2022-02-21,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,21.0,30.0,20.0,1.0,9.0,,95.24 -2306902,2022-02-21,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2306903,2022-02-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2306904,2022-02-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2306905,2022-02-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2306906,2022-02-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,71.0,77.0,71.0,0.0,6.0,,100.0 -2306907,2022-02-21,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2306908,2022-02-21,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2306909,2022-02-21,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2306910,2022-02-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2306911,2022-02-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,1.0,8.0,1.0,0.0,7.0,,,,,,100.0, -2306912,2022-02-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2306913,2022-02-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2306914,2022-02-21,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2306915,2022-02-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2306916,2022-02-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2306917,2022-02-21,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2306918,2022-02-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306919,2022-02-21,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2306920,2022-02-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,14.0,30.0,2.0,12.0,16.0,,14.29 -2306921,2022-02-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,19,Room Based Capacity,,,,,,65.0,30.0,15.0,50.0,0.0,,23.08 -2306922,2022-02-21,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2306923,2022-02-21,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2306924,2022-02-21,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306925,2022-02-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,51.0,47.0,3.0,1.0,,,,,,94.0, -2306926,2022-02-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2306927,2022-02-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2306928,2022-02-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2306929,2022-02-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2306930,2022-02-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2306931,2022-02-21,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2306932,2022-02-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306933,2022-02-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2306934,2022-02-21,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2306935,2022-02-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2306936,2022-02-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2306937,2022-02-21,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2306938,2022-02-21,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2306939,2022-02-21,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2306940,2022-02-21,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2306941,2022-02-21,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2306942,2022-02-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2306943,2022-02-21,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2306944,2022-02-21,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2306945,2022-02-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306946,2022-02-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,233.0,245.0,226.0,7.0,12.0,,97.0 -2306947,2022-02-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2306948,2022-02-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2306949,2022-02-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2306950,2022-02-21,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2306951,2022-02-21,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,43.0,50.0,40.0,3.0,7.0,,,,,,93.02, -2306952,2022-02-21,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2306953,2022-02-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2306954,2022-02-21,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306955,2022-02-21,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,11.0,11.0,0.0,0.0,,,,,,100.0, -2306956,2022-02-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2306957,2022-02-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2306958,2022-02-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2306959,2022-02-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2306960,2022-02-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2306961,2022-02-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2306962,2022-02-21,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2306963,2022-02-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2306964,2022-02-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2306965,2022-02-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2306966,2022-02-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2306967,2022-02-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2306968,2022-02-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2306969,2022-02-21,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2306970,2022-02-21,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2306971,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,60.0,70.0,58.0,2.0,10.0,,,,,,96.67, -2306972,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2306973,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2306974,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2306975,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2306976,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2306977,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,298,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2306978,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2306979,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2306980,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,197,Bed Based Capacity,199.0,199.0,197.0,2.0,0.0,,,,,,98.99, -2306981,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2306982,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2306983,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2306984,2022-02-21,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2306985,2022-02-21,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2306986,2022-02-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2306987,2022-02-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306988,2022-02-21,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2306989,2022-02-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2306990,2022-02-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2306991,2022-02-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2306992,2022-02-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2306993,2022-02-21,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306994,2022-02-21,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2306995,2022-02-21,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2306996,2022-02-21,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,27.0,24.0,1.0,2.0,,,,,,96.0, -2306997,2022-02-21,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2306998,2022-02-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2306999,2022-02-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2307000,2022-02-21,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2307001,2022-02-21,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2307002,2022-02-21,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307003,2022-02-21,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,65.0,75.0,64.0,1.0,10.0,,98.46 -2307004,2022-02-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307005,2022-02-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307006,2022-02-21,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2307007,2022-02-21,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2307008,2022-02-21,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307009,2022-02-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2307010,2022-02-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2307011,2022-02-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307012,2022-02-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,78.0,78.0,0.0,0.0,,100.0 -2307013,2022-02-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307014,2022-02-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2307015,2022-02-21,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2307016,2022-02-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307017,2022-02-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307018,2022-02-21,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307019,2022-02-21,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2307020,2022-02-21,16,Women's Hostels Inc.,27,Nellie's,,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2307021,2022-02-21,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2307022,2022-02-21,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307023,2022-02-21,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2307024,2022-02-21,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307025,2022-02-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2307026,2022-02-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307027,2022-02-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2307028,2022-02-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2307029,2022-02-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307030,2022-02-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2307031,2022-02-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2307032,2022-02-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2307033,2022-02-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2307034,2022-02-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2307035,2022-02-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,407,Room Based Capacity,,,,,,122.0,107.0,122.0,0.0,0.0,,100.0 -2307036,2022-02-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2307037,2022-02-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2307038,2022-02-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2307039,2022-02-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2307040,2022-02-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307041,2022-02-22,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2307042,2022-02-22,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2307043,2022-02-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2307044,2022-02-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2307045,2022-02-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2307046,2022-02-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2307047,2022-02-22,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2307048,2022-02-22,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2307049,2022-02-22,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2307050,2022-02-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2307051,2022-02-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,1.0,8.0,1.0,0.0,7.0,,,,,,100.0, -2307052,2022-02-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,69,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2307053,2022-02-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2307054,2022-02-22,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,41,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2307055,2022-02-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,15.0,3.0,2.0,10.0,,,,,,60.0, -2307056,2022-02-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2307057,2022-02-22,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2307058,2022-02-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2307059,2022-02-22,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2307060,2022-02-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,14.0,30.0,3.0,11.0,16.0,,21.43 -2307061,2022-02-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,65.0,30.0,10.0,55.0,0.0,,15.38 -2307062,2022-02-22,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2307063,2022-02-22,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,88.0,88.0,82.0,6.0,0.0,,,,,,93.18, -2307064,2022-02-22,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307065,2022-02-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,51.0,47.0,3.0,1.0,,,,,,94.0, -2307066,2022-02-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307067,2022-02-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2307068,2022-02-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2307069,2022-02-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2307070,2022-02-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307071,2022-02-22,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2307072,2022-02-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2307073,2022-02-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2307074,2022-02-22,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2307075,2022-02-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307076,2022-02-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2307077,2022-02-22,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2307078,2022-02-22,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2307079,2022-02-22,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2307080,2022-02-22,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2307081,2022-02-22,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2307082,2022-02-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2307083,2022-02-22,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307084,2022-02-22,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307085,2022-02-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307086,2022-02-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,233.0,245.0,224.0,9.0,12.0,,96.14 -2307087,2022-02-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2307088,2022-02-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2307089,2022-02-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2307090,2022-02-22,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2307091,2022-02-22,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,50.0,40.0,0.0,10.0,,,,,,100.0, -2307092,2022-02-22,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2307093,2022-02-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2307094,2022-02-22,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307095,2022-02-22,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2307096,2022-02-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2307097,2022-02-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2307098,2022-02-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2307099,2022-02-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307100,2022-02-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307101,2022-02-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2307102,2022-02-22,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2307103,2022-02-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307104,2022-02-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2307105,2022-02-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2307106,2022-02-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2307107,2022-02-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2307108,2022-02-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2307109,2022-02-22,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307110,2022-02-22,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2307111,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,60.0,70.0,59.0,1.0,10.0,,,,,,98.33, -2307112,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307113,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307114,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2307115,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2307116,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2307117,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2307118,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2307119,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2307120,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,198,Bed Based Capacity,199.0,199.0,198.0,1.0,0.0,,,,,,99.5, -2307121,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2307122,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2307123,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,35.0,35.0,32.0,3.0,0.0,,,,,,91.43, -2307124,2022-02-22,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2307125,2022-02-22,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2307126,2022-02-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2307127,2022-02-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307128,2022-02-22,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2307129,2022-02-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307130,2022-02-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2307131,2022-02-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307132,2022-02-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2307133,2022-02-22,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307134,2022-02-22,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307135,2022-02-22,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307136,2022-02-22,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2307137,2022-02-22,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2307138,2022-02-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307139,2022-02-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2307140,2022-02-22,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2307141,2022-02-22,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2307142,2022-02-22,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307143,2022-02-22,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,214,Room Based Capacity,,,,,,65.0,75.0,64.0,1.0,10.0,,98.46 -2307144,2022-02-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307145,2022-02-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307146,2022-02-22,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2307147,2022-02-22,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2307148,2022-02-22,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307149,2022-02-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2307150,2022-02-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2307151,2022-02-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,39.0,38.0,0.0,1.0,,,,,,100.0, -2307152,2022-02-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,78.0,78.0,0.0,0.0,,100.0 -2307153,2022-02-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307154,2022-02-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2307155,2022-02-22,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2307156,2022-02-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307157,2022-02-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307158,2022-02-22,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307159,2022-02-22,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2307160,2022-02-22,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,10.0,1.0,0.0,9.0,,,,,,100.0, -2307161,2022-02-22,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2307162,2022-02-22,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307163,2022-02-22,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2307164,2022-02-22,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307165,2022-02-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2307166,2022-02-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2307167,2022-02-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307168,2022-02-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2307169,2022-02-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307170,2022-02-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2307171,2022-02-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2307172,2022-02-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2307173,2022-02-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2307174,2022-02-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,88.0,113.0,88.0,0.0,25.0,,100.0 -2307175,2022-02-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,409,Room Based Capacity,,,,,,123.0,107.0,123.0,0.0,0.0,,100.0 -2307176,2022-02-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2307177,2022-02-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2307178,2022-02-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2307179,2022-02-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2307180,2022-02-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307181,2022-02-23,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2307182,2022-02-23,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2307183,2022-02-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,79.0,83.0,77.0,2.0,4.0,,97.47 -2307184,2022-02-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2307185,2022-02-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2307186,2022-02-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2307187,2022-02-23,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2307188,2022-02-23,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2307189,2022-02-23,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2307190,2022-02-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,154,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2307191,2022-02-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2307192,2022-02-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,69,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2307193,2022-02-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2307194,2022-02-23,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2307195,2022-02-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,15.0,4.0,1.0,10.0,,,,,,80.0, -2307196,2022-02-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2307197,2022-02-23,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2307198,2022-02-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2307199,2022-02-23,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2307200,2022-02-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,13.0,30.0,3.0,10.0,17.0,,23.08 -2307201,2022-02-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,65.0,30.0,10.0,55.0,0.0,,15.38 -2307202,2022-02-23,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2307203,2022-02-23,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,82.0,88.0,80.0,2.0,6.0,,,,,,97.56, -2307204,2022-02-23,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307205,2022-02-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,51.0,47.0,3.0,1.0,,,,,,94.0, -2307206,2022-02-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307207,2022-02-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2307208,2022-02-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2307209,2022-02-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2307210,2022-02-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307211,2022-02-23,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2307212,2022-02-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2307213,2022-02-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2307214,2022-02-23,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2307215,2022-02-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2307216,2022-02-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2307217,2022-02-23,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,29,Bed Based Capacity,29.0,34.0,29.0,0.0,5.0,,,,,,100.0, -2307218,2022-02-23,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2307219,2022-02-23,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2307220,2022-02-23,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2307221,2022-02-23,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2307222,2022-02-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2307223,2022-02-23,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307224,2022-02-23,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307225,2022-02-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307226,2022-02-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,226.0,245.0,226.0,0.0,19.0,,100.0 -2307227,2022-02-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2307228,2022-02-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2307229,2022-02-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2307230,2022-02-23,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2307231,2022-02-23,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,50.0,40.0,1.0,9.0,,,,,,97.56, -2307232,2022-02-23,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307233,2022-02-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2307234,2022-02-23,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307235,2022-02-23,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2307236,2022-02-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2307237,2022-02-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2307238,2022-02-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2307239,2022-02-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307240,2022-02-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2307241,2022-02-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2307242,2022-02-23,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2307243,2022-02-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307244,2022-02-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2307245,2022-02-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2307246,2022-02-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2307247,2022-02-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2307248,2022-02-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2307249,2022-02-23,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2307250,2022-02-23,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2307251,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,60.0,70.0,59.0,1.0,10.0,,,,,,98.33, -2307252,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307253,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307254,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,55.0,52.0,1.0,2.0,,,,,,98.11, -2307255,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2307256,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2307257,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2307258,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,60.0,60.0,58.0,2.0,0.0,,,,,,96.67, -2307259,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,68,Bed Based Capacity,71.0,71.0,68.0,3.0,0.0,,,,,,95.77, -2307260,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,195,Bed Based Capacity,199.0,199.0,195.0,4.0,0.0,,,,,,97.99, -2307261,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2307262,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2307263,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2307264,2022-02-23,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2307265,2022-02-23,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,18.0,18.0,15.0,3.0,0.0,,,,,,83.33, -2307266,2022-02-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2307267,2022-02-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307268,2022-02-23,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307269,2022-02-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2307270,2022-02-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2307271,2022-02-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307272,2022-02-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2307273,2022-02-23,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307274,2022-02-23,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307275,2022-02-23,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307276,2022-02-23,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2307277,2022-02-23,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2307278,2022-02-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307279,2022-02-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,43.0,42.0,1.0,0.0,,,,,,97.67, -2307280,2022-02-23,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2307281,2022-02-23,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307282,2022-02-23,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307283,2022-02-23,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2307284,2022-02-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307285,2022-02-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307286,2022-02-23,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2307287,2022-02-23,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2307288,2022-02-23,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307289,2022-02-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2307290,2022-02-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2307291,2022-02-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,39.0,38.0,0.0,1.0,,,,,,100.0, -2307292,2022-02-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2307293,2022-02-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307294,2022-02-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2307295,2022-02-23,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2307296,2022-02-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307297,2022-02-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307298,2022-02-23,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307299,2022-02-23,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2307300,2022-02-23,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,3.0,10.0,2.0,1.0,7.0,,,,,,66.67, -2307301,2022-02-23,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2307302,2022-02-23,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307303,2022-02-23,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2307304,2022-02-23,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307305,2022-02-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2307306,2022-02-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2307307,2022-02-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307308,2022-02-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,20.0,20.0,17.0,3.0,0.0,,,,,,85.0, -2307309,2022-02-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307310,2022-02-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2307311,2022-02-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2307312,2022-02-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2307313,2022-02-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2307314,2022-02-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2307315,2022-02-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,413,Room Based Capacity,,,,,,124.0,107.0,124.0,0.0,0.0,,100.0 -2307316,2022-02-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2307317,2022-02-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2307318,2022-02-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2307319,2022-02-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2307320,2022-02-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307321,2022-02-24,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2307322,2022-02-24,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2307323,2022-02-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,81.0,83.0,79.0,2.0,2.0,,97.53 -2307324,2022-02-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2307325,2022-02-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2307326,2022-02-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2307327,2022-02-24,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2307328,2022-02-24,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2307329,2022-02-24,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2307330,2022-02-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,154,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2307331,2022-02-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2307332,2022-02-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2307333,2022-02-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2307334,2022-02-24,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2307335,2022-02-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,15.0,4.0,1.0,10.0,,,,,,80.0, -2307336,2022-02-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2307337,2022-02-24,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2307338,2022-02-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307339,2022-02-24,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2307340,2022-02-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,9,Room Based Capacity,,,,,,65.0,30.0,8.0,57.0,0.0,,12.31 -2307341,2022-02-24,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307342,2022-02-24,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,84,Bed Based Capacity,86.0,88.0,84.0,2.0,2.0,,,,,,97.67, -2307343,2022-02-24,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307344,2022-02-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,51.0,46.0,4.0,1.0,,,,,,92.0, -2307345,2022-02-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2307346,2022-02-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,72.0,81.0,71.0,1.0,9.0,,,,,,98.61, -2307347,2022-02-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2307348,2022-02-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2307349,2022-02-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307350,2022-02-24,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2307351,2022-02-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307352,2022-02-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2307353,2022-02-24,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2307354,2022-02-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2307355,2022-02-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2307356,2022-02-24,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,15,Bed Based Capacity,15.0,34.0,15.0,0.0,19.0,,,,,,100.0, -2307357,2022-02-24,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,51,Bed Based Capacity,55.0,55.0,51.0,4.0,0.0,,,,,,92.73, -2307358,2022-02-24,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,41.0,44.0,41.0,0.0,3.0,,100.0 -2307359,2022-02-24,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2307360,2022-02-24,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2307361,2022-02-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2307362,2022-02-24,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307363,2022-02-24,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2307364,2022-02-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307365,2022-02-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,231.0,245.0,229.0,2.0,14.0,,99.13 -2307366,2022-02-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2307367,2022-02-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2307368,2022-02-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2307369,2022-02-24,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2307370,2022-02-24,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,42.0,50.0,40.0,2.0,8.0,,,,,,95.24, -2307371,2022-02-24,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307372,2022-02-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2307373,2022-02-24,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307374,2022-02-24,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2307375,2022-02-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2307376,2022-02-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2307377,2022-02-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2307378,2022-02-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307379,2022-02-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307380,2022-02-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2307381,2022-02-24,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2307382,2022-02-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307383,2022-02-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2307384,2022-02-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2307385,2022-02-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2307386,2022-02-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2307387,2022-02-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2307388,2022-02-24,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307389,2022-02-24,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2307390,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,60,Bed Based Capacity,60.0,70.0,60.0,0.0,10.0,,,,,,100.0, -2307391,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307392,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307393,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2307394,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2307395,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,217.0,235.0,217.0,0.0,18.0,,100.0 -2307396,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2307397,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2307398,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,71.0,71.0,69.0,2.0,0.0,,,,,,97.18, -2307399,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,197,Bed Based Capacity,197.0,199.0,197.0,0.0,2.0,,,,,,100.0, -2307400,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2307401,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2307402,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2307403,2022-02-24,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2307404,2022-02-24,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2307405,2022-02-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2307406,2022-02-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307407,2022-02-24,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307408,2022-02-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307409,2022-02-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2307410,2022-02-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307411,2022-02-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2307412,2022-02-24,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2307413,2022-02-24,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307414,2022-02-24,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307415,2022-02-24,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307416,2022-02-24,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2307417,2022-02-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307418,2022-02-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2307419,2022-02-24,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2307420,2022-02-24,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307421,2022-02-24,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307422,2022-02-24,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2307423,2022-02-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307424,2022-02-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307425,2022-02-24,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2307426,2022-02-24,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2307427,2022-02-24,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307428,2022-02-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2307429,2022-02-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2307430,2022-02-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,39.0,37.0,0.0,2.0,,,,,,100.0, -2307431,2022-02-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2307432,2022-02-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307433,2022-02-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2307434,2022-02-24,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2307435,2022-02-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307436,2022-02-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307437,2022-02-24,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307438,2022-02-24,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2307439,2022-02-24,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,10.0,3.0,2.0,5.0,,,,,,60.0, -2307440,2022-02-24,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2307441,2022-02-24,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307442,2022-02-24,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2307443,2022-02-24,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307444,2022-02-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2307445,2022-02-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2307446,2022-02-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307447,2022-02-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2307448,2022-02-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307449,2022-02-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2307450,2022-02-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,12.0,9.0,0.0,3.0,,,,,,100.0, -2307451,2022-02-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307452,2022-02-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2307453,2022-02-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2307454,2022-02-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,417,Room Based Capacity,,,,,,126.0,107.0,126.0,0.0,0.0,,100.0 -2307455,2022-02-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2307456,2022-02-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2307457,2022-02-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2307458,2022-02-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2307459,2022-02-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307460,2022-02-25,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2307461,2022-02-25,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2307462,2022-02-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,81.0,83.0,77.0,4.0,2.0,,95.06 -2307463,2022-02-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2307464,2022-02-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2307465,2022-02-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2307466,2022-02-25,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2307467,2022-02-25,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2307468,2022-02-25,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2307469,2022-02-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2307470,2022-02-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2307471,2022-02-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2307472,2022-02-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2307473,2022-02-25,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2307474,2022-02-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2307475,2022-02-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2307476,2022-02-25,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2307477,2022-02-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2307478,2022-02-25,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2307479,2022-02-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,13.0,30.0,1.0,12.0,17.0,,7.69 -2307480,2022-02-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,8,Room Based Capacity,,,,,,65.0,30.0,8.0,57.0,0.0,,12.31 -2307481,2022-02-25,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2307482,2022-02-25,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,84,Bed Based Capacity,87.0,88.0,84.0,3.0,1.0,,,,,,96.55, -2307483,2022-02-25,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307484,2022-02-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,51.0,46.0,4.0,1.0,,,,,,92.0, -2307485,2022-02-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307486,2022-02-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2307487,2022-02-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2307488,2022-02-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2307489,2022-02-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307490,2022-02-25,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2307491,2022-02-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,19.0,19.0,15.0,4.0,0.0,,,,,,78.95, -2307492,2022-02-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,27.0,10.0,2.0,15.0,,,,,,83.33, -2307493,2022-02-25,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2307494,2022-02-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2307495,2022-02-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2307496,2022-02-25,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,13,Bed Based Capacity,13.0,34.0,13.0,0.0,21.0,,,,,,100.0, -2307497,2022-02-25,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2307498,2022-02-25,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,40.0,44.0,40.0,0.0,4.0,,100.0 -2307499,2022-02-25,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2307500,2022-02-25,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2307501,2022-02-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2307502,2022-02-25,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307503,2022-02-25,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307504,2022-02-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307505,2022-02-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,231.0,245.0,228.0,3.0,14.0,,98.7 -2307506,2022-02-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,41.0,41.0,38.0,3.0,0.0,,,,,,92.68, -2307507,2022-02-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2307508,2022-02-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2307509,2022-02-25,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2307510,2022-02-25,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2307511,2022-02-25,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307512,2022-02-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2307513,2022-02-25,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307514,2022-02-25,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2307515,2022-02-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2307516,2022-02-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2307517,2022-02-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2307518,2022-02-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307519,2022-02-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307520,2022-02-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2307521,2022-02-25,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2307522,2022-02-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307523,2022-02-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2307524,2022-02-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2307525,2022-02-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307526,2022-02-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2307527,2022-02-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2307528,2022-02-25,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2307529,2022-02-25,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2307530,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,60.0,70.0,59.0,1.0,10.0,,,,,,98.33, -2307531,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307532,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307533,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2307534,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,86.0,86.0,86.0,0.0,0.0,,100.0 -2307535,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,217.0,235.0,217.0,0.0,18.0,,100.0 -2307536,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2307537,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2307538,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2307539,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,185,Bed Based Capacity,187.0,199.0,185.0,2.0,12.0,,,,,,98.93, -2307540,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2307541,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2307542,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,35.0,35.0,32.0,3.0,0.0,,,,,,91.43, -2307543,2022-02-25,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2307544,2022-02-25,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2307545,2022-02-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,40.0,41.0,1.0,0.0,,97.62 -2307546,2022-02-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307547,2022-02-25,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307548,2022-02-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307549,2022-02-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2307550,2022-02-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307551,2022-02-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2307552,2022-02-25,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2307553,2022-02-25,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307554,2022-02-25,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307555,2022-02-25,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307556,2022-02-25,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2307557,2022-02-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2307558,2022-02-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2307559,2022-02-25,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2307560,2022-02-25,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307561,2022-02-25,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307562,2022-02-25,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2307563,2022-02-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307564,2022-02-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307565,2022-02-25,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2307566,2022-02-25,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2307567,2022-02-25,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307568,2022-02-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2307569,2022-02-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2307570,2022-02-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307571,2022-02-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2307572,2022-02-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307573,2022-02-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2307574,2022-02-25,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2307575,2022-02-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307576,2022-02-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307577,2022-02-25,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307578,2022-02-25,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2307579,2022-02-25,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,10.0,10.0,7.0,3.0,0.0,,,,,,70.0, -2307580,2022-02-25,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,25.0,27.0,23.0,2.0,2.0,,92.0 -2307581,2022-02-25,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307582,2022-02-25,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2307583,2022-02-25,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307584,2022-02-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2307585,2022-02-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307586,2022-02-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307587,2022-02-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2307588,2022-02-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307589,2022-02-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2307590,2022-02-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2307591,2022-02-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307592,2022-02-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2307593,2022-02-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2307594,2022-02-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,417,Room Based Capacity,,,,,,126.0,107.0,126.0,0.0,0.0,,100.0 -2307595,2022-02-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2307596,2022-02-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2307597,2022-02-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2307598,2022-02-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2307599,2022-02-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307600,2022-02-26,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2307601,2022-02-26,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2307602,2022-02-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,80.0,83.0,76.0,4.0,3.0,,95.0 -2307603,2022-02-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2307604,2022-02-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2307605,2022-02-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2307606,2022-02-26,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2307607,2022-02-26,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2307608,2022-02-26,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,97.0,100.0,97.0,0.0,3.0,,100.0 -2307609,2022-02-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2307610,2022-02-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2307611,2022-02-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,69,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2307612,2022-02-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2307613,2022-02-26,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2307614,2022-02-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2307615,2022-02-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2307616,2022-02-26,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2307617,2022-02-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2307618,2022-02-26,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2307619,2022-02-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,13.0,30.0,1.0,12.0,17.0,,7.69 -2307620,2022-02-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,65.0,30.0,7.0,58.0,0.0,,10.77 -2307621,2022-02-26,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2307622,2022-02-26,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,87.0,88.0,83.0,4.0,1.0,,,,,,95.4, -2307623,2022-02-26,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307624,2022-02-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,51.0,46.0,4.0,1.0,,,,,,92.0, -2307625,2022-02-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307626,2022-02-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2307627,2022-02-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2307628,2022-02-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2307629,2022-02-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307630,2022-02-26,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2307631,2022-02-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2307632,2022-02-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,27.0,10.0,2.0,15.0,,,,,,83.33, -2307633,2022-02-26,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2307634,2022-02-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2307635,2022-02-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2307636,2022-02-26,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,8,Bed Based Capacity,8.0,34.0,8.0,0.0,26.0,,,,,,100.0, -2307637,2022-02-26,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2307638,2022-02-26,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,40.0,44.0,40.0,0.0,4.0,,100.0 -2307639,2022-02-26,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2307640,2022-02-26,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2307641,2022-02-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,53.0,51.0,2.0,0.0,,,,,,96.23, -2307642,2022-02-26,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307643,2022-02-26,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307644,2022-02-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307645,2022-02-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,231.0,245.0,226.0,5.0,14.0,,97.84 -2307646,2022-02-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2307647,2022-02-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2307648,2022-02-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2307649,2022-02-26,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2307650,2022-02-26,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,49.0,50.0,44.0,5.0,1.0,,,,,,89.8, -2307651,2022-02-26,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307652,2022-02-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2307653,2022-02-26,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307654,2022-02-26,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2307655,2022-02-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2307656,2022-02-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307657,2022-02-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,37,Bed Based Capacity,44.0,44.0,37.0,7.0,0.0,,,,,,84.09, -2307658,2022-02-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307659,2022-02-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2307660,2022-02-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2307661,2022-02-26,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2307662,2022-02-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307663,2022-02-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2307664,2022-02-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2307665,2022-02-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307666,2022-02-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2307667,2022-02-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2307668,2022-02-26,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307669,2022-02-26,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2307670,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,60.0,70.0,58.0,2.0,10.0,,,,,,96.67, -2307671,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307672,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307673,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2307674,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2307675,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,217.0,235.0,217.0,0.0,18.0,,100.0 -2307676,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2307677,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2307678,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2307679,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,199.0,184.0,0.0,15.0,,,,,,100.0, -2307680,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2307681,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2307682,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,35.0,35.0,32.0,3.0,0.0,,,,,,91.43, -2307683,2022-02-26,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2307684,2022-02-26,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2307685,2022-02-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2307686,2022-02-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307687,2022-02-26,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307688,2022-02-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307689,2022-02-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2307690,2022-02-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307691,2022-02-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2307692,2022-02-26,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307693,2022-02-26,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307694,2022-02-26,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307695,2022-02-26,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307696,2022-02-26,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2307697,2022-02-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307698,2022-02-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2307699,2022-02-26,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2307700,2022-02-26,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307701,2022-02-26,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307702,2022-02-26,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2307703,2022-02-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307704,2022-02-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307705,2022-02-26,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2307706,2022-02-26,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2307707,2022-02-26,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307708,2022-02-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2307709,2022-02-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2307710,2022-02-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307711,2022-02-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2307712,2022-02-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2307713,2022-02-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2307714,2022-02-26,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,41.0,39.0,1.0,1.0,,,,,,97.5, -2307715,2022-02-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307716,2022-02-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307717,2022-02-26,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307718,2022-02-26,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2307719,2022-02-26,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307720,2022-02-26,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2307721,2022-02-26,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307722,2022-02-26,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2307723,2022-02-26,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307724,2022-02-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2307725,2022-02-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307726,2022-02-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307727,2022-02-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307728,2022-02-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2307729,2022-02-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2307730,2022-02-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2307731,2022-02-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307732,2022-02-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2307733,2022-02-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2307734,2022-02-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,417,Room Based Capacity,,,,,,126.0,107.0,126.0,0.0,0.0,,100.0 -2307735,2022-02-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2307736,2022-02-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2307737,2022-02-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2307738,2022-02-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2307739,2022-02-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307740,2022-02-27,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2307741,2022-02-27,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2307742,2022-02-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,80.0,83.0,75.0,5.0,3.0,,93.75 -2307743,2022-02-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2307744,2022-02-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2307745,2022-02-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2307746,2022-02-27,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2307747,2022-02-27,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2307748,2022-02-27,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2307749,2022-02-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2307750,2022-02-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2307751,2022-02-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2307752,2022-02-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2307753,2022-02-27,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2307754,2022-02-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2307755,2022-02-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2307756,2022-02-27,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2307757,2022-02-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2307758,2022-02-27,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,35.0,37.0,34.0,1.0,2.0,,97.14 -2307759,2022-02-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,13.0,30.0,1.0,12.0,17.0,,7.69 -2307760,2022-02-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,65.0,30.0,7.0,58.0,0.0,,10.77 -2307761,2022-02-27,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2307762,2022-02-27,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,87.0,88.0,83.0,4.0,1.0,,,,,,95.4, -2307763,2022-02-27,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2307764,2022-02-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,51.0,46.0,4.0,1.0,,,,,,92.0, -2307765,2022-02-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307766,2022-02-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,81.0,72.0,0.0,9.0,,,,,,100.0, -2307767,2022-02-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2307768,2022-02-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2307769,2022-02-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307770,2022-02-27,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2307771,2022-02-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2307772,2022-02-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2307773,2022-02-27,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2307774,2022-02-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2307775,2022-02-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2307776,2022-02-27,1,City of Toronto,91,,1240.0,Masaryk-Cowan CC,220 Cowan Ave,M6K 2N6,Toronto,ON,16711,COVID19 Response - Masaryk-Cowan,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,3,Bed Based Capacity,3.0,34.0,3.0,0.0,31.0,,,,,,100.0, -2307777,2022-02-27,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,52,Bed Based Capacity,55.0,55.0,52.0,3.0,0.0,,,,,,94.55, -2307778,2022-02-27,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,40.0,44.0,40.0,0.0,4.0,,100.0 -2307779,2022-02-27,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2307780,2022-02-27,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2307781,2022-02-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2307782,2022-02-27,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307783,2022-02-27,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307784,2022-02-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307785,2022-02-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,231.0,245.0,226.0,5.0,14.0,,97.84 -2307786,2022-02-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2307787,2022-02-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2307788,2022-02-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2307789,2022-02-27,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2307790,2022-02-27,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2307791,2022-02-27,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307792,2022-02-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2307793,2022-02-27,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307794,2022-02-27,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2307795,2022-02-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2307796,2022-02-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307797,2022-02-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,38,Bed Based Capacity,44.0,44.0,38.0,6.0,0.0,,,,,,86.36, -2307798,2022-02-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307799,2022-02-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307800,2022-02-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2307801,2022-02-27,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2307802,2022-02-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307803,2022-02-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2307804,2022-02-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2307805,2022-02-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307806,2022-02-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2307807,2022-02-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2307808,2022-02-27,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307809,2022-02-27,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2307810,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,60.0,70.0,59.0,1.0,10.0,,,,,,98.33, -2307811,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307812,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307813,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2307814,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2307815,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2307816,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2307817,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2307818,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2307819,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,183,Bed Based Capacity,184.0,199.0,183.0,1.0,15.0,,,,,,99.46, -2307820,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2307821,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2307822,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,35.0,33.0,2.0,0.0,,,,,,94.29, -2307823,2022-02-27,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2307824,2022-02-27,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,18.0,18.0,16.0,2.0,0.0,,,,,,88.89, -2307825,2022-02-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2307826,2022-02-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307827,2022-02-27,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307828,2022-02-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307829,2022-02-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2307830,2022-02-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307831,2022-02-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2307832,2022-02-27,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307833,2022-02-27,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307834,2022-02-27,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307835,2022-02-27,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307836,2022-02-27,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2307837,2022-02-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307838,2022-02-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2307839,2022-02-27,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2307840,2022-02-27,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307841,2022-02-27,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307842,2022-02-27,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2307843,2022-02-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307844,2022-02-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307845,2022-02-27,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2307846,2022-02-27,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,74.0,73.0,72.0,2.0,0.0,,97.3 -2307847,2022-02-27,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307848,2022-02-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,130.0,131.0,129.0,1.0,1.0,,99.23 -2307849,2022-02-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2307850,2022-02-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307851,2022-02-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2307852,2022-02-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307853,2022-02-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2307854,2022-02-27,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,,,,,,,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2307855,2022-02-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307856,2022-02-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307857,2022-02-27,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307858,2022-02-27,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2307859,2022-02-27,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307860,2022-02-27,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2307861,2022-02-27,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307862,2022-02-27,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2307863,2022-02-27,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307864,2022-02-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2307865,2022-02-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307866,2022-02-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307867,2022-02-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307868,2022-02-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307869,2022-02-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2307870,2022-02-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2307871,2022-02-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307872,2022-02-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2307873,2022-02-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2307874,2022-02-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,417,Room Based Capacity,,,,,,126.0,107.0,126.0,0.0,0.0,,100.0 -2307875,2022-02-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2307876,2022-02-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,151.0,155.0,151.0,0.0,4.0,,100.0 -2307877,2022-02-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2307878,2022-02-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2307879,2022-02-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307880,2022-02-28,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2307881,2022-02-28,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2307882,2022-02-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,82.0,83.0,75.0,7.0,1.0,,91.46 -2307883,2022-02-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2307884,2022-02-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2307885,2022-02-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2307886,2022-02-28,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2307887,2022-02-28,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2307888,2022-02-28,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2307889,2022-02-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,42.0,43.0,41.0,1.0,1.0,,97.62 -2307890,2022-02-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2307891,2022-02-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2307892,2022-02-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2307893,2022-02-28,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2307894,2022-02-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2307895,2022-02-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2307896,2022-02-28,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2307897,2022-02-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2307898,2022-02-28,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2307899,2022-02-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,13.0,30.0,1.0,12.0,17.0,,7.69 -2307900,2022-02-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,65.0,30.0,7.0,58.0,0.0,,10.77 -2307901,2022-02-28,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2307902,2022-02-28,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,82,Bed Based Capacity,87.0,88.0,82.0,5.0,1.0,,,,,,94.25, -2307903,2022-02-28,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307904,2022-02-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,51.0,47.0,3.0,1.0,,,,,,94.0, -2307905,2022-02-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307906,2022-02-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2307907,2022-02-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2307908,2022-02-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2307909,2022-02-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307910,2022-02-28,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2307911,2022-02-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2307912,2022-02-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2307913,2022-02-28,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2307914,2022-02-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2307915,2022-02-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2307916,2022-02-28,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2307917,2022-02-28,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,40.0,44.0,40.0,0.0,4.0,,100.0 -2307918,2022-02-28,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2307919,2022-02-28,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2307920,2022-02-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,52.0,53.0,51.0,1.0,1.0,,,,,,98.08, -2307921,2022-02-28,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307922,2022-02-28,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307923,2022-02-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307924,2022-02-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,229.0,245.0,228.0,1.0,16.0,,99.56 -2307925,2022-02-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2307926,2022-02-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2307927,2022-02-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2307928,2022-02-28,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2307929,2022-02-28,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2307930,2022-02-28,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307931,2022-02-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2307932,2022-02-28,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307933,2022-02-28,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2307934,2022-02-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2307935,2022-02-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2307936,2022-02-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2307937,2022-02-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2307938,2022-02-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2307939,2022-02-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2307940,2022-02-28,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2307941,2022-02-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2307942,2022-02-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2307943,2022-02-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2307944,2022-02-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307945,2022-02-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2307946,2022-02-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2307947,2022-02-28,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2307948,2022-02-28,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2307949,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,60.0,70.0,59.0,1.0,10.0,,,,,,98.33, -2307950,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307951,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2307952,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2307953,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2307954,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2307955,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2307956,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2307957,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2307958,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,182,Bed Based Capacity,184.0,184.0,182.0,2.0,0.0,,,,,,98.91, -2307959,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2307960,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2307961,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2307962,2022-02-28,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2307963,2022-02-28,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2307964,2022-02-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2307965,2022-02-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307966,2022-02-28,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2307967,2022-02-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2307968,2022-02-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2307969,2022-02-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2307970,2022-02-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2307971,2022-02-28,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307972,2022-02-28,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2307973,2022-02-28,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2307974,2022-02-28,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2307975,2022-02-28,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2307976,2022-02-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2307977,2022-02-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2307978,2022-02-28,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2307979,2022-02-28,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2307980,2022-02-28,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2307981,2022-02-28,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2307982,2022-02-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2307983,2022-02-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2307984,2022-02-28,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2307985,2022-02-28,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2307986,2022-02-28,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2307987,2022-02-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,130.0,131.0,128.0,2.0,1.0,,98.46 -2307988,2022-02-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2307989,2022-02-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307990,2022-02-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2307991,2022-02-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2307992,2022-02-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2307993,2022-02-28,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2307994,2022-02-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2307995,2022-02-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2307996,2022-02-28,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2307997,2022-02-28,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2307998,2022-02-28,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2307999,2022-02-28,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,26.0,27.0,24.0,2.0,1.0,,92.31 -2308000,2022-02-28,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308001,2022-02-28,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2308002,2022-02-28,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2308003,2022-02-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2308004,2022-02-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308005,2022-02-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2308006,2022-02-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308007,2022-02-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308008,2022-02-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2308009,2022-02-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2308010,2022-02-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308011,2022-03-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308012,2022-03-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,87.0,113.0,86.0,1.0,26.0,,98.85 -2308013,2022-03-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,417,Room Based Capacity,,,,,,126.0,107.0,126.0,0.0,0.0,,100.0 -2308014,2022-03-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,13.0,13.0,12.0,1.0,0.0,,92.31 -2308015,2022-03-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2308016,2022-03-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2308017,2022-03-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2308018,2022-03-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308019,2022-03-01,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,18.0,30.0,18.0,0.0,12.0,,100.0 -2308020,2022-03-01,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2308021,2022-03-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,80.0,83.0,78.0,2.0,3.0,,97.5 -2308022,2022-03-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2308023,2022-03-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308024,2022-03-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,76.0,77.0,75.0,1.0,1.0,,98.68 -2308025,2022-03-01,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308026,2022-03-01,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2308027,2022-03-01,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2308028,2022-03-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2308029,2022-03-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2308030,2022-03-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2308031,2022-03-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2308032,2022-03-01,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2308033,2022-03-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2308034,2022-03-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2308035,2022-03-01,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2308036,2022-03-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2308037,2022-03-01,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2308038,2022-03-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,8,Room Based Capacity,,,,,,65.0,30.0,8.0,57.0,0.0,,12.31 -2308039,2022-03-01,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2308040,2022-03-01,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,87.0,88.0,81.0,6.0,1.0,,,,,,93.1, -2308041,2022-03-01,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308042,2022-03-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,51.0,47.0,3.0,1.0,,,,,,94.0, -2308043,2022-03-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308044,2022-03-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2308045,2022-03-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2308046,2022-03-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2308047,2022-03-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308048,2022-03-01,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2308049,2022-03-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308050,2022-03-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2308051,2022-03-01,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2308052,2022-03-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2308053,2022-03-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2308054,2022-03-01,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2308055,2022-03-01,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,39.0,44.0,39.0,0.0,5.0,,100.0 -2308056,2022-03-01,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2308057,2022-03-01,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2308058,2022-03-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2308059,2022-03-01,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308060,2022-03-01,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308061,2022-03-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308062,2022-03-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,230.0,245.0,230.0,0.0,15.0,,100.0 -2308063,2022-03-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308064,2022-03-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2308065,2022-03-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2308066,2022-03-01,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2308067,2022-03-01,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2308068,2022-03-01,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308069,2022-03-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2308070,2022-03-01,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308071,2022-03-01,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2308072,2022-03-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2308073,2022-03-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2308074,2022-03-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,38,Bed Based Capacity,44.0,44.0,38.0,6.0,0.0,,,,,,86.36, -2308075,2022-03-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308076,2022-03-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308077,2022-03-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,265.0,1.0,5.0,,99.62 -2308078,2022-03-01,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2308079,2022-03-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308080,2022-03-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2308081,2022-03-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2308082,2022-03-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2308083,2022-03-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2308084,2022-03-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2308085,2022-03-01,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2308086,2022-03-01,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2308087,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,60.0,70.0,56.0,4.0,10.0,,,,,,93.33, -2308088,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308089,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2308090,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2308091,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2308092,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2308093,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2308094,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2308095,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,71,Bed Based Capacity,71.0,71.0,71.0,0.0,0.0,,,,,,100.0, -2308096,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2308097,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2308098,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2308099,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2308100,2022-03-01,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308101,2022-03-01,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2308102,2022-03-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2308103,2022-03-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308104,2022-03-01,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308105,2022-03-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308106,2022-03-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2308107,2022-03-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2308108,2022-03-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2308109,2022-03-01,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2308110,2022-03-01,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308111,2022-03-01,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308112,2022-03-01,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308113,2022-03-01,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2308114,2022-03-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308115,2022-03-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2308116,2022-03-01,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2308117,2022-03-01,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308118,2022-03-01,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2308119,2022-03-01,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2308120,2022-03-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2308121,2022-03-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2308122,2022-03-01,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,53.0,48.0,1.0,4.0,,,,,,97.96, -2308123,2022-03-01,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2308124,2022-03-01,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308125,2022-03-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2308126,2022-03-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2308127,2022-03-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,39.0,38.0,0.0,1.0,,,,,,100.0, -2308128,2022-03-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2308129,2022-03-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2308130,2022-03-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2308131,2022-03-01,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2308132,2022-03-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2308133,2022-03-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2308134,2022-03-01,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308135,2022-03-01,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2308136,2022-03-01,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308137,2022-03-01,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,26.0,27.0,22.0,4.0,1.0,,84.62 -2308138,2022-03-01,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308139,2022-03-01,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2308140,2022-03-01,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2308141,2022-03-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2308142,2022-03-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308143,2022-03-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308144,2022-03-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308145,2022-03-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308146,2022-03-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2308147,2022-03-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2308148,2022-03-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308149,2022-03-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308150,2022-03-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2308151,2022-03-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,124.0,107.0,124.0,0.0,0.0,,100.0 -2308152,2022-03-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2308153,2022-03-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2308154,2022-03-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2308155,2022-03-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2308156,2022-03-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308157,2022-03-02,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,30.0,18.0,2.0,10.0,,90.0 -2308158,2022-03-02,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2308159,2022-03-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2308160,2022-03-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2308161,2022-03-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308162,2022-03-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2308163,2022-03-02,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308164,2022-03-02,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2308165,2022-03-02,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2308166,2022-03-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2308167,2022-03-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2308168,2022-03-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2308169,2022-03-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2308170,2022-03-02,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2308171,2022-03-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2308172,2022-03-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2308173,2022-03-02,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2308174,2022-03-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2308175,2022-03-02,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2308176,2022-03-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,65.0,30.0,7.0,58.0,0.0,,10.77 -2308177,2022-03-02,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2308178,2022-03-02,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,87.0,88.0,81.0,6.0,1.0,,,,,,93.1, -2308179,2022-03-02,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308180,2022-03-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2308181,2022-03-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2308182,2022-03-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2308183,2022-03-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2308184,2022-03-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2308185,2022-03-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2308186,2022-03-02,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2308187,2022-03-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308188,2022-03-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2308189,2022-03-02,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2308190,2022-03-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2308191,2022-03-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2308192,2022-03-02,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2308193,2022-03-02,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,39.0,44.0,39.0,0.0,5.0,,100.0 -2308194,2022-03-02,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2308195,2022-03-02,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2308196,2022-03-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2308197,2022-03-02,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308198,2022-03-02,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308199,2022-03-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308200,2022-03-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,230.0,245.0,230.0,0.0,15.0,,100.0 -2308201,2022-03-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308202,2022-03-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2308203,2022-03-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2308204,2022-03-02,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2308205,2022-03-02,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2308206,2022-03-02,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308207,2022-03-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,36.0,41.0,35.0,1.0,5.0,,97.22 -2308208,2022-03-02,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308209,2022-03-02,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2308210,2022-03-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2308211,2022-03-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2308212,2022-03-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,37,Bed Based Capacity,44.0,44.0,37.0,7.0,0.0,,,,,,84.09, -2308213,2022-03-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308214,2022-03-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308215,2022-03-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2308216,2022-03-02,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2308217,2022-03-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308218,2022-03-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2308219,2022-03-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2308220,2022-03-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2308221,2022-03-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2308222,2022-03-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2308223,2022-03-02,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2308224,2022-03-02,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2308225,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,60,Bed Based Capacity,60.0,70.0,60.0,0.0,10.0,,,,,,100.0, -2308226,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308227,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308228,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2308229,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2308230,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2308231,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2308232,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2308233,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2308234,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,184,Bed Based Capacity,184.0,184.0,184.0,0.0,0.0,,,,,,100.0, -2308235,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2308236,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2308237,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2308238,2022-03-02,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308239,2022-03-02,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2308240,2022-03-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2308241,2022-03-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308242,2022-03-02,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308243,2022-03-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308244,2022-03-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2308245,2022-03-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2308246,2022-03-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2308247,2022-03-02,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2308248,2022-03-02,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308249,2022-03-02,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308250,2022-03-02,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308251,2022-03-02,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2308252,2022-03-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308253,2022-03-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2308254,2022-03-02,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2308255,2022-03-02,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2308256,2022-03-02,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2308257,2022-03-02,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2308258,2022-03-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2308259,2022-03-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2308260,2022-03-02,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2308261,2022-03-02,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2308262,2022-03-02,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308263,2022-03-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,131.0,131.0,130.0,1.0,0.0,,99.24 -2308264,2022-03-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2308265,2022-03-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2308266,2022-03-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2308267,2022-03-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2308268,2022-03-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2308269,2022-03-02,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2308270,2022-03-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2308271,2022-03-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2308272,2022-03-02,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308273,2022-03-02,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2308274,2022-03-02,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308275,2022-03-02,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,23.0,27.0,23.0,0.0,4.0,,100.0 -2308276,2022-03-02,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308277,2022-03-02,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2308278,2022-03-02,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2308279,2022-03-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2308280,2022-03-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308281,2022-03-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308282,2022-03-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308283,2022-03-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308284,2022-03-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2308285,2022-03-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2308286,2022-03-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308287,2022-03-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308288,2022-03-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,86.0,113.0,85.0,1.0,27.0,,98.84 -2308289,2022-03-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,408,Room Based Capacity,,,,,,124.0,107.0,124.0,0.0,0.0,,100.0 -2308290,2022-03-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2308291,2022-03-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2308292,2022-03-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2308293,2022-03-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2308294,2022-03-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308295,2022-03-03,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,21.0,30.0,19.0,2.0,9.0,,90.48 -2308296,2022-03-03,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2308297,2022-03-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,81.0,83.0,77.0,4.0,2.0,,95.06 -2308298,2022-03-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2308299,2022-03-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308300,2022-03-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2308301,2022-03-03,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308302,2022-03-03,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2308303,2022-03-03,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2308304,2022-03-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2308305,2022-03-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2308306,2022-03-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2308307,2022-03-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2308308,2022-03-03,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2308309,2022-03-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2308310,2022-03-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2308311,2022-03-03,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2308312,2022-03-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2308313,2022-03-03,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2308314,2022-03-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,65.0,30.0,7.0,58.0,0.0,,10.77 -2308315,2022-03-03,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2308316,2022-03-03,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,83,Bed Based Capacity,88.0,88.0,83.0,5.0,0.0,,,,,,94.32, -2308317,2022-03-03,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308318,2022-03-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308319,2022-03-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308320,2022-03-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2308321,2022-03-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2308322,2022-03-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2308323,2022-03-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308324,2022-03-03,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2308325,2022-03-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308326,2022-03-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2308327,2022-03-03,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,64.0,0.0,7.0,,100.0 -2308328,2022-03-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2308329,2022-03-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2308330,2022-03-03,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2308331,2022-03-03,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,39.0,44.0,39.0,0.0,5.0,,100.0 -2308332,2022-03-03,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2308333,2022-03-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2308334,2022-03-03,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2308335,2022-03-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2308336,2022-03-03,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308337,2022-03-03,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308338,2022-03-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2308339,2022-03-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,231.0,245.0,230.0,1.0,14.0,,99.57 -2308340,2022-03-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308341,2022-03-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2308342,2022-03-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2308343,2022-03-03,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2308344,2022-03-03,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2308345,2022-03-03,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308346,2022-03-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,38.0,41.0,37.0,1.0,3.0,,97.37 -2308347,2022-03-03,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308348,2022-03-03,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2308349,2022-03-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2308350,2022-03-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308351,2022-03-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2308352,2022-03-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308353,2022-03-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308354,2022-03-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,269,Room Based Capacity,,,,,,262.0,271.0,261.0,1.0,9.0,,99.62 -2308355,2022-03-03,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2308356,2022-03-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308357,2022-03-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2308358,2022-03-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2308359,2022-03-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2308360,2022-03-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2308361,2022-03-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2308362,2022-03-03,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2308363,2022-03-03,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2308364,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,60.0,70.0,58.0,2.0,10.0,,,,,,96.67, -2308365,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308366,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308367,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2308368,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2308369,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,217.0,235.0,217.0,0.0,18.0,,100.0 -2308370,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2308371,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2308372,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2308373,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,182,Bed Based Capacity,184.0,184.0,182.0,2.0,0.0,,,,,,98.91, -2308374,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2308375,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2308376,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2308377,2022-03-03,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308378,2022-03-03,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2308379,2022-03-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2308380,2022-03-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308381,2022-03-03,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308382,2022-03-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308383,2022-03-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2308384,2022-03-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2308385,2022-03-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2308386,2022-03-03,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308387,2022-03-03,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308388,2022-03-03,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308389,2022-03-03,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308390,2022-03-03,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2308391,2022-03-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308392,2022-03-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2308393,2022-03-03,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2308394,2022-03-03,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308395,2022-03-03,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2308396,2022-03-03,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2308397,2022-03-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2308398,2022-03-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2308399,2022-03-03,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2308400,2022-03-03,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,74.0,73.0,73.0,1.0,0.0,,98.65 -2308401,2022-03-03,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308402,2022-03-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2308403,2022-03-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2308404,2022-03-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2308405,2022-03-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2308406,2022-03-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2308407,2022-03-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2308408,2022-03-03,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2308409,2022-03-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2308410,2022-03-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2308411,2022-03-03,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308412,2022-03-03,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2308413,2022-03-03,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308414,2022-03-03,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,24.0,27.0,24.0,0.0,3.0,,100.0 -2308415,2022-03-03,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308416,2022-03-03,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2308417,2022-03-03,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2308418,2022-03-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2308419,2022-03-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,24.0,22.0,1.0,1.0,,,,,,95.65, -2308420,2022-03-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308421,2022-03-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308422,2022-03-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308423,2022-03-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,14.0,14.0,11.0,3.0,0.0,,,,,,78.57, -2308424,2022-03-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2308425,2022-03-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2308426,2022-03-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308427,2022-03-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2308428,2022-03-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,126.0,107.0,125.0,1.0,0.0,,99.21 -2308429,2022-03-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2308430,2022-03-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2308431,2022-03-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,39.0,40.0,38.0,1.0,1.0,,97.44 -2308432,2022-03-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2308433,2022-03-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308434,2022-03-04,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,23.0,30.0,19.0,4.0,7.0,,82.61 -2308435,2022-03-04,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2308436,2022-03-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,81.0,83.0,78.0,3.0,2.0,,96.3 -2308437,2022-03-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2308438,2022-03-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308439,2022-03-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2308440,2022-03-04,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308441,2022-03-04,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2308442,2022-03-04,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2308443,2022-03-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2308444,2022-03-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2308445,2022-03-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,72,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2308446,2022-03-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2308447,2022-03-04,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2308448,2022-03-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2308449,2022-03-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2308450,2022-03-04,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2308451,2022-03-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2308452,2022-03-04,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2308453,2022-03-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,13.0,30.0,1.0,12.0,17.0,,7.69 -2308454,2022-03-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,65.0,30.0,6.0,59.0,0.0,,9.23 -2308455,2022-03-04,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2308456,2022-03-04,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,85,Bed Based Capacity,88.0,88.0,85.0,3.0,0.0,,,,,,96.59, -2308457,2022-03-04,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308458,2022-03-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308459,2022-03-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308460,2022-03-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,71.0,81.0,70.0,1.0,10.0,,,,,,98.59, -2308461,2022-03-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2308462,2022-03-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2308463,2022-03-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308464,2022-03-04,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2308465,2022-03-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,19.0,19.0,14.0,5.0,0.0,,,,,,73.68, -2308466,2022-03-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2308467,2022-03-04,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2308468,2022-03-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2308469,2022-03-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2308470,2022-03-04,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2308471,2022-03-04,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2308472,2022-03-04,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2308473,2022-03-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2308474,2022-03-04,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2308475,2022-03-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,53.0,52.0,0.0,1.0,,,,,,100.0, -2308476,2022-03-04,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308477,2022-03-04,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308478,2022-03-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308479,2022-03-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,230.0,245.0,228.0,2.0,15.0,,99.13 -2308480,2022-03-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308481,2022-03-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2308482,2022-03-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2308483,2022-03-04,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2308484,2022-03-04,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2308485,2022-03-04,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308486,2022-03-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,38.0,41.0,37.0,1.0,3.0,,97.37 -2308487,2022-03-04,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308488,2022-03-04,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2308489,2022-03-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2308490,2022-03-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308491,2022-03-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2308492,2022-03-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308493,2022-03-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308494,2022-03-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2308495,2022-03-04,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2308496,2022-03-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308497,2022-03-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2308498,2022-03-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2308499,2022-03-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2308500,2022-03-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2308501,2022-03-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2308502,2022-03-04,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308503,2022-03-04,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2308504,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,59.0,70.0,57.0,2.0,11.0,,,,,,96.61, -2308505,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308506,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308507,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2308508,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2308509,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2308510,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2308511,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2308512,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,68,Bed Based Capacity,71.0,71.0,68.0,3.0,0.0,,,,,,95.77, -2308513,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,180,Bed Based Capacity,183.0,184.0,180.0,3.0,1.0,,,,,,98.36, -2308514,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2308515,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2308516,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2308517,2022-03-04,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308518,2022-03-04,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2308519,2022-03-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2308520,2022-03-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308521,2022-03-04,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308522,2022-03-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2308523,2022-03-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2308524,2022-03-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2308525,2022-03-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2308526,2022-03-04,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2308527,2022-03-04,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308528,2022-03-04,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308529,2022-03-04,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308530,2022-03-04,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2308531,2022-03-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308532,2022-03-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2308533,2022-03-04,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2308534,2022-03-04,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308535,2022-03-04,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2308536,2022-03-04,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2308537,2022-03-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2308538,2022-03-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2308539,2022-03-04,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2308540,2022-03-04,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2308541,2022-03-04,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308542,2022-03-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2308543,2022-03-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2308544,2022-03-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2308545,2022-03-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2308546,2022-03-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2308547,2022-03-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2308548,2022-03-04,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308549,2022-03-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2308550,2022-03-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2308551,2022-03-04,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308552,2022-03-04,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2308553,2022-03-04,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308554,2022-03-04,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2308555,2022-03-04,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308556,2022-03-04,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2308557,2022-03-04,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2308558,2022-03-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2308559,2022-03-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,24.0,23.0,0.0,1.0,,,,,,100.0, -2308560,2022-03-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308561,2022-03-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308562,2022-03-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308563,2022-03-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2308564,2022-03-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2308565,2022-03-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308566,2022-03-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308567,2022-03-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,86.0,113.0,85.0,1.0,27.0,,98.84 -2308568,2022-03-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,125.0,107.0,125.0,0.0,0.0,,100.0 -2308569,2022-03-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2308570,2022-03-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2308571,2022-03-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2308572,2022-03-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2308573,2022-03-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308574,2022-03-05,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,23.0,30.0,19.0,4.0,7.0,,82.61 -2308575,2022-03-05,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2308576,2022-03-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,80.0,83.0,76.0,4.0,3.0,,95.0 -2308577,2022-03-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2308578,2022-03-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308579,2022-03-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2308580,2022-03-05,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308581,2022-03-05,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2308582,2022-03-05,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2308583,2022-03-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2308584,2022-03-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2308585,2022-03-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2308586,2022-03-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2308587,2022-03-05,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2308588,2022-03-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2308589,2022-03-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2308590,2022-03-05,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2308591,2022-03-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2308592,2022-03-05,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2308593,2022-03-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,8,Room Based Capacity,,,,,,62.0,30.0,7.0,55.0,0.0,,11.29 -2308594,2022-03-05,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2308595,2022-03-05,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,85,Bed Based Capacity,88.0,88.0,85.0,3.0,0.0,,,,,,96.59, -2308596,2022-03-05,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308597,2022-03-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308598,2022-03-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308599,2022-03-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2308600,2022-03-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2308601,2022-03-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2308602,2022-03-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308603,2022-03-05,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2308604,2022-03-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2308605,2022-03-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2308606,2022-03-05,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2308607,2022-03-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2308608,2022-03-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2308609,2022-03-05,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2308610,2022-03-05,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2308611,2022-03-05,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2308612,2022-03-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2308613,2022-03-05,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2308614,2022-03-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2308615,2022-03-05,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308616,2022-03-05,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308617,2022-03-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308618,2022-03-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,230.0,245.0,228.0,2.0,15.0,,99.13 -2308619,2022-03-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308620,2022-03-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2308621,2022-03-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2308622,2022-03-05,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2308623,2022-03-05,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2308624,2022-03-05,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308625,2022-03-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2308626,2022-03-05,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308627,2022-03-05,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2308628,2022-03-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2308629,2022-03-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308630,2022-03-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2308631,2022-03-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308632,2022-03-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308633,2022-03-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2308634,2022-03-05,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2308635,2022-03-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308636,2022-03-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2308637,2022-03-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2308638,2022-03-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2308639,2022-03-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2308640,2022-03-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2308641,2022-03-05,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308642,2022-03-05,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,91.0,1.0,2.0,,98.91 -2308643,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,58.0,70.0,57.0,1.0,12.0,,,,,,98.28, -2308644,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308645,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308646,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2308647,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2308648,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2308649,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2308650,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2308651,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,71.0,71.0,70.0,1.0,0.0,,,,,,98.59, -2308652,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,180,Bed Based Capacity,180.0,184.0,180.0,0.0,4.0,,,,,,100.0, -2308653,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2308654,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2308655,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2308656,2022-03-05,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2308657,2022-03-05,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2308658,2022-03-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2308659,2022-03-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308660,2022-03-05,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308661,2022-03-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2308662,2022-03-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2308663,2022-03-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2308664,2022-03-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2308665,2022-03-05,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308666,2022-03-05,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308667,2022-03-05,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308668,2022-03-05,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308669,2022-03-05,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2308670,2022-03-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308671,2022-03-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2308672,2022-03-05,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2308673,2022-03-05,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2308674,2022-03-05,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2308675,2022-03-05,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2308676,2022-03-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2308677,2022-03-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2308678,2022-03-05,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2308679,2022-03-05,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2308680,2022-03-05,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308681,2022-03-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2308682,2022-03-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2308683,2022-03-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,39.0,35.0,1.0,3.0,,,,,,97.22, -2308684,2022-03-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2308685,2022-03-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2308686,2022-03-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2308687,2022-03-05,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308688,2022-03-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2308689,2022-03-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2308690,2022-03-05,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308691,2022-03-05,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2308692,2022-03-05,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308693,2022-03-05,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,25.0,27.0,24.0,1.0,2.0,,96.0 -2308694,2022-03-05,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308695,2022-03-05,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2308696,2022-03-05,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2308697,2022-03-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2308698,2022-03-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,24.0,23.0,0.0,1.0,,,,,,100.0, -2308699,2022-03-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308700,2022-03-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,20.0,18.0,2.0,0.0,,,,,,90.0, -2308701,2022-03-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308702,2022-03-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,14.0,14.0,11.0,3.0,0.0,,,,,,78.57, -2308703,2022-03-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2308704,2022-03-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308705,2022-03-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308706,2022-03-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,86.0,113.0,84.0,2.0,27.0,,97.67 -2308707,2022-03-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,125.0,107.0,125.0,0.0,0.0,,100.0 -2308708,2022-03-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2308709,2022-03-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2308710,2022-03-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2308711,2022-03-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2308712,2022-03-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308713,2022-03-06,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,23.0,30.0,19.0,4.0,7.0,,82.61 -2308714,2022-03-06,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2308715,2022-03-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,78.0,83.0,75.0,3.0,5.0,,96.15 -2308716,2022-03-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2308717,2022-03-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,25,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308718,2022-03-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2308719,2022-03-06,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308720,2022-03-06,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2308721,2022-03-06,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2308722,2022-03-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,154,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2308723,2022-03-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2308724,2022-03-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2308725,2022-03-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2308726,2022-03-06,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2308727,2022-03-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2308728,2022-03-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2308729,2022-03-06,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2308730,2022-03-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2308731,2022-03-06,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,34.0,37.0,33.0,1.0,3.0,,97.06 -2308732,2022-03-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,62.0,30.0,6.0,56.0,0.0,,9.68 -2308733,2022-03-06,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2308734,2022-03-06,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,88.0,86.0,2.0,0.0,,,,,,97.73, -2308735,2022-03-06,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308736,2022-03-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308737,2022-03-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308738,2022-03-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2308739,2022-03-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2308740,2022-03-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2308741,2022-03-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2308742,2022-03-06,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2308743,2022-03-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2308744,2022-03-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2308745,2022-03-06,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2308746,2022-03-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2308747,2022-03-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2308748,2022-03-06,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2308749,2022-03-06,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2308750,2022-03-06,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2308751,2022-03-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2308752,2022-03-06,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2308753,2022-03-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,53.0,51.0,2.0,0.0,,,,,,96.23, -2308754,2022-03-06,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308755,2022-03-06,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2308756,2022-03-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308757,2022-03-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,230.0,245.0,228.0,2.0,15.0,,99.13 -2308758,2022-03-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308759,2022-03-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2308760,2022-03-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2308761,2022-03-06,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2308762,2022-03-06,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2308763,2022-03-06,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308764,2022-03-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2308765,2022-03-06,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308766,2022-03-06,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2308767,2022-03-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2308768,2022-03-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308769,2022-03-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2308770,2022-03-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308771,2022-03-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308772,2022-03-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2308773,2022-03-06,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2308774,2022-03-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308775,2022-03-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2308776,2022-03-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2308777,2022-03-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2308778,2022-03-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2308779,2022-03-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2308780,2022-03-06,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308781,2022-03-06,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2308782,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,58.0,70.0,57.0,1.0,12.0,,,,,,98.28, -2308783,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308784,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308785,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2308786,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2308787,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,218.0,235.0,218.0,0.0,17.0,,100.0 -2308788,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2308789,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2308790,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,61,Bed Based Capacity,61.0,71.0,61.0,0.0,10.0,,,,,,100.0, -2308791,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,180,Bed Based Capacity,180.0,184.0,180.0,0.0,4.0,,,,,,100.0, -2308792,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2308793,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2308794,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2308795,2022-03-06,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308796,2022-03-06,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2308797,2022-03-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2308798,2022-03-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308799,2022-03-06,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308800,2022-03-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308801,2022-03-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2308802,2022-03-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2308803,2022-03-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2308804,2022-03-06,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308805,2022-03-06,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308806,2022-03-06,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308807,2022-03-06,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308808,2022-03-06,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2308809,2022-03-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308810,2022-03-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2308811,2022-03-06,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2308812,2022-03-06,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308813,2022-03-06,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2308814,2022-03-06,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,75.0,65.0,0.0,10.0,,100.0 -2308815,2022-03-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2308816,2022-03-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,63,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2308817,2022-03-06,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2308818,2022-03-06,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2308819,2022-03-06,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308820,2022-03-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2308821,2022-03-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2308822,2022-03-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2308823,2022-03-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,78.0,76.0,1.0,1.0,,98.7 -2308824,2022-03-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2308825,2022-03-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2308826,2022-03-06,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308827,2022-03-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2308828,2022-03-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2308829,2022-03-06,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308830,2022-03-06,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2308831,2022-03-06,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308832,2022-03-06,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2308833,2022-03-06,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2308834,2022-03-06,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2308835,2022-03-06,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2308836,2022-03-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2308837,2022-03-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,24.0,23.0,0.0,1.0,,,,,,100.0, -2308838,2022-03-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308839,2022-03-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2308840,2022-03-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308841,2022-03-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,14.0,14.0,11.0,3.0,0.0,,,,,,78.57, -2308842,2022-03-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2308843,2022-03-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308844,2022-03-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,9,Room Based Capacity,,,,,,2.0,80.0,2.0,0.0,78.0,,100.0 -2308845,2022-03-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308846,2022-03-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,83.0,113.0,83.0,0.0,30.0,,100.0 -2308847,2022-03-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,402,Room Based Capacity,,,,,,122.0,107.0,121.0,1.0,0.0,,99.18 -2308848,2022-03-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2308849,2022-03-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2308850,2022-03-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2308851,2022-03-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2308852,2022-03-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308853,2022-03-07,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2308854,2022-03-07,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2308855,2022-03-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,81.0,83.0,75.0,6.0,2.0,,92.59 -2308856,2022-03-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2308857,2022-03-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308858,2022-03-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2308859,2022-03-07,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308860,2022-03-07,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2308861,2022-03-07,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2308862,2022-03-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2308863,2022-03-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2308864,2022-03-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2308865,2022-03-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2308866,2022-03-07,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,20.0,20.0,19.0,1.0,0.0,,95.0 -2308867,2022-03-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,15.0,1.0,0.0,14.0,,,,,,100.0, -2308868,2022-03-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2308869,2022-03-07,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2308870,2022-03-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2308871,2022-03-07,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,34.0,1.0,2.0,,97.14 -2308872,2022-03-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,62.0,30.0,5.0,57.0,0.0,,8.06 -2308873,2022-03-07,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2308874,2022-03-07,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,90.0,86.0,2.0,2.0,,,,,,97.73, -2308875,2022-03-07,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308876,2022-03-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308877,2022-03-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2308878,2022-03-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2308879,2022-03-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2308880,2022-03-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308881,2022-03-07,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2308882,2022-03-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2308883,2022-03-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2308884,2022-03-07,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2308885,2022-03-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,9.0,5.0,0.0,4.0,,,,,,100.0, -2308886,2022-03-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2308887,2022-03-07,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2308888,2022-03-07,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2308889,2022-03-07,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2308890,2022-03-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2308891,2022-03-07,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2308892,2022-03-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2308893,2022-03-07,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308894,2022-03-07,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308895,2022-03-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308896,2022-03-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,233.0,245.0,229.0,4.0,12.0,,98.28 -2308897,2022-03-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308898,2022-03-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2308899,2022-03-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2308900,2022-03-07,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2308901,2022-03-07,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2308902,2022-03-07,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308903,2022-03-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,41.0,41.0,38.0,3.0,0.0,,92.68 -2308904,2022-03-07,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308905,2022-03-07,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2308906,2022-03-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2308907,2022-03-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2308908,2022-03-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2308909,2022-03-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308910,2022-03-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308911,2022-03-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2308912,2022-03-07,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2308913,2022-03-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2308914,2022-03-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2308915,2022-03-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2308916,2022-03-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2308917,2022-03-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2308918,2022-03-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2308919,2022-03-07,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2308920,2022-03-07,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2308921,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2308922,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308923,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308924,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2308925,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2308926,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2308927,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2308928,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,36,Bed Based Capacity,60.0,60.0,36.0,24.0,0.0,,,,,,60.0, -2308929,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,63,Bed Based Capacity,63.0,71.0,63.0,0.0,8.0,,,,,,100.0, -2308930,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,167,Bed Based Capacity,167.0,184.0,167.0,0.0,17.0,,,,,,100.0, -2308931,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2308932,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2308933,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2308934,2022-03-07,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2308935,2022-03-07,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2308936,2022-03-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2308937,2022-03-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308938,2022-03-07,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308939,2022-03-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2308940,2022-03-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2308941,2022-03-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2308942,2022-03-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2308943,2022-03-07,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308944,2022-03-07,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308945,2022-03-07,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2308946,2022-03-07,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2308947,2022-03-07,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2308948,2022-03-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308949,2022-03-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2308950,2022-03-07,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2308951,2022-03-07,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2308952,2022-03-07,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2308953,2022-03-07,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2308954,2022-03-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2308955,2022-03-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2308956,2022-03-07,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2308957,2022-03-07,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2308958,2022-03-07,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2308959,2022-03-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2308960,2022-03-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2308961,2022-03-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2308962,2022-03-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2308963,2022-03-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2308964,2022-03-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2308965,2022-03-07,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2308966,2022-03-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2308967,2022-03-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2308968,2022-03-07,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2308969,2022-03-07,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2308970,2022-03-07,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2308971,2022-03-07,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,25.0,27.0,25.0,0.0,2.0,,100.0 -2308972,2022-03-07,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308973,2022-03-07,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,28.0,28.0,26.0,2.0,0.0,,92.86 -2308974,2022-03-07,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2308975,2022-03-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2308976,2022-03-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,24.0,23.0,0.0,1.0,,,,,,100.0, -2308977,2022-03-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2308978,2022-03-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2308979,2022-03-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2308980,2022-03-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2308981,2022-03-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2308982,2022-03-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2308983,2022-03-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,30,Room Based Capacity,,,,,,6.0,80.0,6.0,0.0,74.0,,100.0 -2308984,2022-03-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2308985,2022-03-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,83.0,113.0,83.0,0.0,30.0,,100.0 -2308986,2022-03-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,117.0,107.0,117.0,0.0,0.0,,100.0 -2308987,2022-03-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2308988,2022-03-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2308989,2022-03-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2308990,2022-03-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2308991,2022-03-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2308992,2022-03-08,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2308993,2022-03-08,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2308994,2022-03-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2308995,2022-03-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2308996,2022-03-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2308997,2022-03-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2308998,2022-03-08,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2308999,2022-03-08,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2309000,2022-03-08,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2309001,2022-03-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2309002,2022-03-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2309003,2022-03-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2309004,2022-03-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309005,2022-03-08,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,20.0,20.0,19.0,1.0,0.0,,95.0 -2309006,2022-03-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,15.0,1.0,0.0,14.0,,,,,,100.0, -2309007,2022-03-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2309008,2022-03-08,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2309009,2022-03-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309010,2022-03-08,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2309011,2022-03-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,62.0,30.0,5.0,57.0,0.0,,8.06 -2309012,2022-03-08,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309013,2022-03-08,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,88.0,90.0,86.0,2.0,2.0,,,,,,97.73, -2309014,2022-03-08,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309015,2022-03-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309016,2022-03-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2309017,2022-03-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2309018,2022-03-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309019,2022-03-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309020,2022-03-08,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,46,Bed Based Capacity,46.0,55.0,46.0,0.0,9.0,,,,,,100.0, -2309021,2022-03-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2309022,2022-03-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,13.0,27.0,11.0,2.0,14.0,,,,,,84.62, -2309023,2022-03-08,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2309024,2022-03-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2309025,2022-03-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2309026,2022-03-08,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2309027,2022-03-08,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2309028,2022-03-08,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2309029,2022-03-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2309030,2022-03-08,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2309031,2022-03-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2309032,2022-03-08,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309033,2022-03-08,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309034,2022-03-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2309035,2022-03-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,233.0,245.0,230.0,3.0,12.0,,98.71 -2309036,2022-03-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2309037,2022-03-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2309038,2022-03-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2309039,2022-03-08,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2309040,2022-03-08,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2309041,2022-03-08,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309042,2022-03-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2309043,2022-03-08,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309044,2022-03-08,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2309045,2022-03-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2309046,2022-03-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309047,2022-03-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2309048,2022-03-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309049,2022-03-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309050,2022-03-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2309051,2022-03-08,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2309052,2022-03-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309053,2022-03-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2309054,2022-03-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2309055,2022-03-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2309056,2022-03-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309057,2022-03-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2309058,2022-03-08,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309059,2022-03-08,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2309060,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2309061,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309062,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309063,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2309064,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2309065,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2309066,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2309067,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,62,Bed Based Capacity,62.0,71.0,62.0,0.0,9.0,,,,,,100.0, -2309068,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,139,Bed Based Capacity,139.0,184.0,139.0,0.0,45.0,,,,,,100.0, -2309069,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309070,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2309071,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2309072,2022-03-08,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309073,2022-03-08,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2309074,2022-03-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2309075,2022-03-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2309076,2022-03-08,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309077,2022-03-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309078,2022-03-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2309079,2022-03-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2309080,2022-03-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2309081,2022-03-08,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309082,2022-03-08,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309083,2022-03-08,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309084,2022-03-08,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309085,2022-03-08,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2309086,2022-03-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309087,2022-03-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2309088,2022-03-08,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2309089,2022-03-08,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309090,2022-03-08,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2309091,2022-03-08,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,66.0,75.0,65.0,1.0,9.0,,98.48 -2309092,2022-03-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2309093,2022-03-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2309094,2022-03-08,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2309095,2022-03-08,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2309096,2022-03-08,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309097,2022-03-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2309098,2022-03-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2309099,2022-03-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2309100,2022-03-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2309101,2022-03-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309102,2022-03-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2309103,2022-03-08,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2309104,2022-03-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2309105,2022-03-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2309106,2022-03-08,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309107,2022-03-08,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2309108,2022-03-08,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309109,2022-03-08,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2309110,2022-03-08,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309111,2022-03-08,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2309112,2022-03-08,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2309113,2022-03-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309114,2022-03-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309115,2022-03-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309116,2022-03-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,20.0,20.0,17.0,3.0,0.0,,,,,,85.0, -2309117,2022-03-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2309118,2022-03-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2309119,2022-03-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2309120,2022-03-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309121,2022-03-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,41,Room Based Capacity,,,,,,9.0,80.0,9.0,0.0,71.0,,100.0 -2309122,2022-03-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2309123,2022-03-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,84.0,113.0,83.0,1.0,29.0,,98.81 -2309124,2022-03-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,115.0,107.0,115.0,0.0,0.0,,100.0 -2309125,2022-03-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2309126,2022-03-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2309127,2022-03-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2309128,2022-03-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2309129,2022-03-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309130,2022-03-09,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,24.0,30.0,23.0,1.0,6.0,,95.83 -2309131,2022-03-09,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2309132,2022-03-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2309133,2022-03-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2309134,2022-03-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2309135,2022-03-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2309136,2022-03-09,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2309137,2022-03-09,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2309138,2022-03-09,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2309139,2022-03-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,40.0,1.0,2.0,,97.56 -2309140,2022-03-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,3,Bed Based Capacity,3.0,8.0,3.0,0.0,5.0,,,,,,100.0, -2309141,2022-03-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2309142,2022-03-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309143,2022-03-09,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,20.0,20.0,19.0,1.0,0.0,,95.0 -2309144,2022-03-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,15.0,1.0,0.0,14.0,,,,,,100.0, -2309145,2022-03-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2309146,2022-03-09,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2309147,2022-03-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309148,2022-03-09,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2309149,2022-03-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,62.0,30.0,5.0,57.0,0.0,,8.06 -2309150,2022-03-09,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309151,2022-03-09,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,89.0,90.0,88.0,1.0,1.0,,,,,,98.88, -2309152,2022-03-09,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309153,2022-03-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309154,2022-03-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,71.0,81.0,71.0,0.0,10.0,,,,,,100.0, -2309155,2022-03-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2309156,2022-03-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309157,2022-03-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309158,2022-03-09,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,49,Bed Based Capacity,50.0,55.0,49.0,1.0,5.0,,,,,,98.0, -2309159,2022-03-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,11,Bed Based Capacity,15.0,19.0,11.0,4.0,4.0,,,,,,73.33, -2309160,2022-03-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2309161,2022-03-09,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2309162,2022-03-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2309163,2022-03-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2309164,2022-03-09,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2309165,2022-03-09,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2309166,2022-03-09,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2309167,2022-03-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2309168,2022-03-09,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2309169,2022-03-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,53.0,51.0,2.0,0.0,,,,,,96.23, -2309170,2022-03-09,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309171,2022-03-09,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2309172,2022-03-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2309173,2022-03-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,233.0,245.0,229.0,4.0,12.0,,98.28 -2309174,2022-03-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2309175,2022-03-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2309176,2022-03-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2309177,2022-03-09,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2309178,2022-03-09,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2309179,2022-03-09,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2309180,2022-03-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2309181,2022-03-09,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309182,2022-03-09,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2309183,2022-03-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2309184,2022-03-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309185,2022-03-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2309186,2022-03-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309187,2022-03-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2309188,2022-03-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2309189,2022-03-09,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2309190,2022-03-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309191,2022-03-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2309192,2022-03-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309193,2022-03-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2309194,2022-03-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309195,2022-03-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2309196,2022-03-09,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309197,2022-03-09,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2309198,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2309199,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309200,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309201,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2309202,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2309203,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,225.0,235.0,225.0,0.0,10.0,,100.0 -2309204,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2309205,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,31,Bed Based Capacity,60.0,60.0,31.0,29.0,0.0,,,,,,51.67, -2309206,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,62.0,71.0,60.0,2.0,9.0,,,,,,96.77, -2309207,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,127,Bed Based Capacity,127.0,184.0,127.0,0.0,57.0,,,,,,100.0, -2309208,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309209,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,114,Bed Based Capacity,115.0,130.0,114.0,1.0,15.0,,,,,,99.13, -2309210,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2309211,2022-03-09,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309212,2022-03-09,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2309213,2022-03-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2309214,2022-03-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2309215,2022-03-09,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309216,2022-03-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309217,2022-03-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2309218,2022-03-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2309219,2022-03-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2309220,2022-03-09,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309221,2022-03-09,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309222,2022-03-09,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309223,2022-03-09,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309224,2022-03-09,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2309225,2022-03-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309226,2022-03-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2309227,2022-03-09,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2309228,2022-03-09,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309229,2022-03-09,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2309230,2022-03-09,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2309231,2022-03-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2309232,2022-03-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2309233,2022-03-09,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2309234,2022-03-09,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2309235,2022-03-09,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309236,2022-03-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2309237,2022-03-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2309238,2022-03-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2309239,2022-03-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2309240,2022-03-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309241,2022-03-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2309242,2022-03-09,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,50.0,40.0,0.0,10.0,,,,,,100.0, -2309243,2022-03-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2309244,2022-03-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2309245,2022-03-09,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309246,2022-03-09,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2309247,2022-03-09,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309248,2022-03-09,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2309249,2022-03-09,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309250,2022-03-09,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2309251,2022-03-09,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2309252,2022-03-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2309253,2022-03-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309254,2022-03-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309255,2022-03-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,20.0,20.0,17.0,3.0,0.0,,,,,,85.0, -2309256,2022-03-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309257,2022-03-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2309258,2022-03-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2309259,2022-03-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309260,2022-03-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,61,Room Based Capacity,,,,,,12.0,80.0,12.0,0.0,68.0,,100.0 -2309261,2022-03-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2309262,2022-03-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,84.0,113.0,83.0,1.0,29.0,,98.81 -2309263,2022-03-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,115.0,107.0,115.0,0.0,0.0,,100.0 -2309264,2022-03-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2309265,2022-03-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2309266,2022-03-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2309267,2022-03-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2309268,2022-03-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309269,2022-03-10,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2309270,2022-03-10,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2309271,2022-03-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2309272,2022-03-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,11.0,12.0,9.0,2.0,1.0,,81.82 -2309273,2022-03-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2309274,2022-03-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2309275,2022-03-10,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2309276,2022-03-10,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2309277,2022-03-10,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2309278,2022-03-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2309279,2022-03-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2309280,2022-03-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2309281,2022-03-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309282,2022-03-10,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2309283,2022-03-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2309284,2022-03-10,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2309285,2022-03-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309286,2022-03-10,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2309287,2022-03-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,62.0,30.0,5.0,57.0,0.0,,8.06 -2309288,2022-03-10,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309289,2022-03-10,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,89.0,90.0,88.0,1.0,1.0,,,,,,98.88, -2309290,2022-03-10,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309291,2022-03-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309292,2022-03-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,73.0,81.0,71.0,2.0,8.0,,,,,,97.26, -2309293,2022-03-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2309294,2022-03-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309295,2022-03-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309296,2022-03-10,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,50,Bed Based Capacity,50.0,55.0,50.0,0.0,5.0,,,,,,100.0, -2309297,2022-03-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,13,Bed Based Capacity,14.0,19.0,13.0,1.0,5.0,,,,,,92.86, -2309298,2022-03-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2309299,2022-03-10,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2309300,2022-03-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2309301,2022-03-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,72.0,74.0,72.0,0.0,2.0,,,,,,100.0, -2309302,2022-03-10,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2309303,2022-03-10,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2309304,2022-03-10,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2309305,2022-03-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2309306,2022-03-10,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2309307,2022-03-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2309308,2022-03-10,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309309,2022-03-10,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309310,2022-03-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2309311,2022-03-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,233.0,245.0,226.0,7.0,12.0,,97.0 -2309312,2022-03-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2309313,2022-03-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2309314,2022-03-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2309315,2022-03-10,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2309316,2022-03-10,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2309317,2022-03-10,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309318,2022-03-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2309319,2022-03-10,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309320,2022-03-10,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2309321,2022-03-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2309322,2022-03-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309323,2022-03-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2309324,2022-03-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309325,2022-03-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2309326,2022-03-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,269.0,271.0,269.0,0.0,2.0,,100.0 -2309327,2022-03-10,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2309328,2022-03-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309329,2022-03-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2309330,2022-03-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309331,2022-03-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2309332,2022-03-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309333,2022-03-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2309334,2022-03-10,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309335,2022-03-10,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2309336,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2309337,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309338,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309339,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2309340,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2309341,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,226.0,235.0,226.0,0.0,9.0,,100.0 -2309342,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2309343,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,60.0,60.0,58.0,2.0,0.0,,,,,,96.67, -2309344,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,64.0,71.0,64.0,0.0,7.0,,,,,,100.0, -2309345,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,116,Bed Based Capacity,116.0,184.0,116.0,0.0,68.0,,,,,,100.0, -2309346,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309347,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,115,Bed Based Capacity,115.0,130.0,115.0,0.0,15.0,,,,,,100.0, -2309348,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2309349,2022-03-10,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309350,2022-03-10,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2309351,2022-03-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2309352,2022-03-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2309353,2022-03-10,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309354,2022-03-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309355,2022-03-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2309356,2022-03-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2309357,2022-03-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2309358,2022-03-10,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309359,2022-03-10,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309360,2022-03-10,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309361,2022-03-10,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309362,2022-03-10,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2309363,2022-03-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309364,2022-03-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2309365,2022-03-10,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2309366,2022-03-10,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309367,2022-03-10,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2309368,2022-03-10,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,66.0,75.0,63.0,3.0,9.0,,95.45 -2309369,2022-03-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2309370,2022-03-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2309371,2022-03-10,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2309372,2022-03-10,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2309373,2022-03-10,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309374,2022-03-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2309375,2022-03-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2309376,2022-03-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2309377,2022-03-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2309378,2022-03-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309379,2022-03-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2309380,2022-03-10,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,50.0,42.0,0.0,8.0,,,,,,100.0, -2309381,2022-03-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2309382,2022-03-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2309383,2022-03-10,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309384,2022-03-10,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2309385,2022-03-10,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309386,2022-03-10,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2309387,2022-03-10,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309388,2022-03-10,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2309389,2022-03-10,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2309390,2022-03-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2309391,2022-03-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309392,2022-03-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309393,2022-03-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309394,2022-03-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309395,2022-03-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2309396,2022-03-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2309397,2022-03-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309398,2022-03-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,73,Room Based Capacity,,,,,,15.0,80.0,15.0,0.0,65.0,,100.0 -2309399,2022-03-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2309400,2022-03-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,84.0,113.0,83.0,1.0,29.0,,98.81 -2309401,2022-03-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,115.0,107.0,115.0,0.0,0.0,,100.0 -2309402,2022-03-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2309403,2022-03-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2309404,2022-03-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2309405,2022-03-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2309406,2022-03-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309407,2022-03-11,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2309408,2022-03-11,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2309409,2022-03-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2309410,2022-03-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2309411,2022-03-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2309412,2022-03-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2309413,2022-03-11,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2309414,2022-03-11,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2309415,2022-03-11,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2309416,2022-03-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2309417,2022-03-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2309418,2022-03-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2309419,2022-03-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309420,2022-03-11,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2309421,2022-03-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2309422,2022-03-11,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2309423,2022-03-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309424,2022-03-11,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2309425,2022-03-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,9,Room Based Capacity,,,,,,62.0,30.0,7.0,55.0,0.0,,11.29 -2309426,2022-03-11,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309427,2022-03-11,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,91.0,90.0,0.0,1.0,,,,,,100.0, -2309428,2022-03-11,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309429,2022-03-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2309430,2022-03-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,10.0,10.0,4.0,6.0,0.0,,,,,,40.0, -2309431,2022-03-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,78,Bed Based Capacity,81.0,81.0,78.0,3.0,0.0,,,,,,96.3, -2309432,2022-03-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2309433,2022-03-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309434,2022-03-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309435,2022-03-11,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2309436,2022-03-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,8,Bed Based Capacity,14.0,19.0,8.0,6.0,5.0,,,,,,57.14, -2309437,2022-03-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2309438,2022-03-11,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2309439,2022-03-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,9.0,9.0,3.0,6.0,0.0,,,,,,33.33, -2309440,2022-03-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2309441,2022-03-11,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2309442,2022-03-11,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2309443,2022-03-11,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2309444,2022-03-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2309445,2022-03-11,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2309446,2022-03-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2309447,2022-03-11,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309448,2022-03-11,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2309449,2022-03-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2309450,2022-03-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,235.0,245.0,230.0,5.0,10.0,,97.87 -2309451,2022-03-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2309452,2022-03-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2309453,2022-03-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,50,Room Based Capacity,,,,,,47.0,52.0,47.0,0.0,5.0,,100.0 -2309454,2022-03-11,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2309455,2022-03-11,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2309456,2022-03-11,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2309457,2022-03-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,41.0,36.0,0.0,5.0,,100.0 -2309458,2022-03-11,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309459,2022-03-11,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2309460,2022-03-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309461,2022-03-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309462,2022-03-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2309463,2022-03-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309464,2022-03-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,54.0,52.0,1.0,1.0,,,,,,98.11, -2309465,2022-03-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,269.0,271.0,269.0,0.0,2.0,,100.0 -2309466,2022-03-11,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2309467,2022-03-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309468,2022-03-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2309469,2022-03-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309470,2022-03-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309471,2022-03-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309472,2022-03-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2309473,2022-03-11,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309474,2022-03-11,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2309475,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2309476,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309477,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309478,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2309479,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,81.0,86.0,81.0,0.0,5.0,,100.0 -2309480,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,226.0,235.0,226.0,0.0,9.0,,100.0 -2309481,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2309482,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2309483,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,62,Bed Based Capacity,64.0,71.0,62.0,2.0,7.0,,,,,,96.88, -2309484,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,109,Bed Based Capacity,109.0,184.0,109.0,0.0,75.0,,,,,,100.0, -2309485,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309486,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,119,Bed Based Capacity,130.0,130.0,119.0,11.0,0.0,,,,,,91.54, -2309487,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2309488,2022-03-11,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309489,2022-03-11,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2309490,2022-03-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2309491,2022-03-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2309492,2022-03-11,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309493,2022-03-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309494,2022-03-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2309495,2022-03-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2309496,2022-03-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2309497,2022-03-11,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309498,2022-03-11,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309499,2022-03-11,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309500,2022-03-11,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309501,2022-03-11,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2309502,2022-03-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309503,2022-03-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2309504,2022-03-11,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2309505,2022-03-11,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2309506,2022-03-11,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2309507,2022-03-11,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2309508,2022-03-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2309509,2022-03-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2309510,2022-03-11,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2309511,2022-03-11,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2309512,2022-03-11,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309513,2022-03-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2309514,2022-03-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,198,Bed Based Capacity,224.0,225.0,198.0,26.0,1.0,,,,,,88.39, -2309515,2022-03-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2309516,2022-03-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,77.0,78.0,75.0,2.0,1.0,,97.4 -2309517,2022-03-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309518,2022-03-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2309519,2022-03-11,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,50.0,42.0,0.0,8.0,,,,,,100.0, -2309520,2022-03-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2309521,2022-03-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2309522,2022-03-11,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309523,2022-03-11,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2309524,2022-03-11,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309525,2022-03-11,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,26.0,27.0,23.0,3.0,1.0,,88.46 -2309526,2022-03-11,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309527,2022-03-11,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2309528,2022-03-11,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2309529,2022-03-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2309530,2022-03-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309531,2022-03-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2309532,2022-03-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309533,2022-03-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309534,2022-03-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2309535,2022-03-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2309536,2022-03-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309537,2022-03-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,71,Room Based Capacity,,,,,,15.0,80.0,14.0,1.0,65.0,,93.33 -2309538,2022-03-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2309539,2022-03-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,84.0,113.0,84.0,0.0,29.0,,100.0 -2309540,2022-03-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,115.0,107.0,115.0,0.0,0.0,,100.0 -2309541,2022-03-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2309542,2022-03-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2309543,2022-03-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2309544,2022-03-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2309545,2022-03-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309546,2022-03-12,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2309547,2022-03-12,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2309548,2022-03-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,83.0,83.0,79.0,4.0,0.0,,95.18 -2309549,2022-03-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,12.0,12.0,9.0,3.0,0.0,,75.0 -2309550,2022-03-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2309551,2022-03-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2309552,2022-03-12,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2309553,2022-03-12,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2309554,2022-03-12,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2309555,2022-03-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2309556,2022-03-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2309557,2022-03-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2309558,2022-03-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309559,2022-03-12,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2309560,2022-03-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2309561,2022-03-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2309562,2022-03-12,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2309563,2022-03-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309564,2022-03-12,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2309565,2022-03-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,62.0,30.0,9.0,53.0,0.0,,14.52 -2309566,2022-03-12,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309567,2022-03-12,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,91.0,90.0,0.0,1.0,,,,,,100.0, -2309568,2022-03-12,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309569,2022-03-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2309570,2022-03-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,10.0,10.0,4.0,6.0,0.0,,,,,,40.0, -2309571,2022-03-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,78,Bed Based Capacity,81.0,81.0,78.0,3.0,0.0,,,,,,96.3, -2309572,2022-03-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2309573,2022-03-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309574,2022-03-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309575,2022-03-12,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2309576,2022-03-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,12,Bed Based Capacity,14.0,19.0,12.0,2.0,5.0,,,,,,85.71, -2309577,2022-03-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2309578,2022-03-12,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2309579,2022-03-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2309580,2022-03-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2309581,2022-03-12,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2309582,2022-03-12,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,38.0,44.0,38.0,0.0,6.0,,100.0 -2309583,2022-03-12,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2309584,2022-03-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2309585,2022-03-12,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2309586,2022-03-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2309587,2022-03-12,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309588,2022-03-12,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309589,2022-03-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2309590,2022-03-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,235.0,245.0,230.0,5.0,10.0,,97.87 -2309591,2022-03-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2309592,2022-03-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2309593,2022-03-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,46.0,52.0,46.0,0.0,6.0,,100.0 -2309594,2022-03-12,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2309595,2022-03-12,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2309596,2022-03-12,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2309597,2022-03-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,41.0,36.0,0.0,5.0,,100.0 -2309598,2022-03-12,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309599,2022-03-12,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2309600,2022-03-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309601,2022-03-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309602,2022-03-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2309603,2022-03-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309604,2022-03-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2309605,2022-03-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2309606,2022-03-12,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2309607,2022-03-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309608,2022-03-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2309609,2022-03-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309610,2022-03-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309611,2022-03-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309612,2022-03-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2309613,2022-03-12,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309614,2022-03-12,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2309615,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2309616,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309617,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309618,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2309619,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2309620,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,226.0,235.0,226.0,0.0,9.0,,100.0 -2309621,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2309622,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,60.0,60.0,58.0,2.0,0.0,,,,,,96.67, -2309623,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,64.0,71.0,64.0,0.0,7.0,,,,,,100.0, -2309624,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,109,Bed Based Capacity,109.0,184.0,109.0,0.0,75.0,,,,,,100.0, -2309625,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309626,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2309627,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2309628,2022-03-12,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309629,2022-03-12,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2309630,2022-03-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2309631,2022-03-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2309632,2022-03-12,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309633,2022-03-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309634,2022-03-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2309635,2022-03-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2309636,2022-03-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2309637,2022-03-12,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2309638,2022-03-12,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309639,2022-03-12,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309640,2022-03-12,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309641,2022-03-12,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2309642,2022-03-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309643,2022-03-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2309644,2022-03-12,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2309645,2022-03-12,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309646,2022-03-12,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2309647,2022-03-12,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2309648,2022-03-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2309649,2022-03-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2309650,2022-03-12,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2309651,2022-03-12,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2309652,2022-03-12,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309653,2022-03-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2309654,2022-03-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,224.0,225.0,222.0,2.0,1.0,,,,,,99.11, -2309655,2022-03-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309656,2022-03-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,78.0,78.0,0.0,0.0,,100.0 -2309657,2022-03-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309658,2022-03-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2309659,2022-03-12,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,42.0,50.0,41.0,1.0,8.0,,,,,,97.62, -2309660,2022-03-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2309661,2022-03-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2309662,2022-03-12,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309663,2022-03-12,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2309664,2022-03-12,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309665,2022-03-12,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,26.0,27.0,23.0,3.0,1.0,,88.46 -2309666,2022-03-12,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309667,2022-03-12,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2309668,2022-03-12,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2309669,2022-03-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2309670,2022-03-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309671,2022-03-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2309672,2022-03-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309673,2022-03-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309674,2022-03-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2309675,2022-03-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2309676,2022-03-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309677,2022-03-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,78,Room Based Capacity,,,,,,16.0,80.0,16.0,0.0,64.0,,100.0 -2309678,2022-03-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2309679,2022-03-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,84.0,113.0,84.0,0.0,29.0,,100.0 -2309680,2022-03-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,115.0,107.0,115.0,0.0,0.0,,100.0 -2309681,2022-03-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2309682,2022-03-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2309683,2022-03-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2309684,2022-03-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2309685,2022-03-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309686,2022-03-13,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2309687,2022-03-13,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2309688,2022-03-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2309689,2022-03-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,11.0,12.0,9.0,2.0,1.0,,81.82 -2309690,2022-03-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2309691,2022-03-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2309692,2022-03-13,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2309693,2022-03-13,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,139,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2309694,2022-03-13,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2309695,2022-03-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2309696,2022-03-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2309697,2022-03-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2309698,2022-03-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309699,2022-03-13,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2309700,2022-03-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2309701,2022-03-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2309702,2022-03-13,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2309703,2022-03-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309704,2022-03-13,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2309705,2022-03-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,62.0,30.0,9.0,53.0,0.0,,14.52 -2309706,2022-03-13,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309707,2022-03-13,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,90.0,91.0,90.0,0.0,1.0,,,,,,100.0, -2309708,2022-03-13,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309709,2022-03-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2309710,2022-03-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309711,2022-03-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2309712,2022-03-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2309713,2022-03-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309714,2022-03-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309715,2022-03-13,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2309716,2022-03-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,19.0,19.0,14.0,5.0,0.0,,,,,,73.68, -2309717,2022-03-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2309718,2022-03-13,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2309719,2022-03-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2309720,2022-03-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2309721,2022-03-13,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2309722,2022-03-13,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,37.0,44.0,37.0,0.0,7.0,,100.0 -2309723,2022-03-13,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2309724,2022-03-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2309725,2022-03-13,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2309726,2022-03-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,52.0,53.0,51.0,1.0,1.0,,,,,,98.08, -2309727,2022-03-13,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309728,2022-03-13,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309729,2022-03-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2309730,2022-03-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,235.0,245.0,230.0,5.0,10.0,,97.87 -2309731,2022-03-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2309732,2022-03-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2309733,2022-03-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,46.0,52.0,46.0,0.0,6.0,,100.0 -2309734,2022-03-13,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2309735,2022-03-13,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2309736,2022-03-13,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2309737,2022-03-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,36.0,41.0,36.0,0.0,5.0,,100.0 -2309738,2022-03-13,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309739,2022-03-13,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2309740,2022-03-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309741,2022-03-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309742,2022-03-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2309743,2022-03-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309744,2022-03-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2309745,2022-03-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2309746,2022-03-13,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2309747,2022-03-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309748,2022-03-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2309749,2022-03-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309750,2022-03-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2309751,2022-03-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309752,2022-03-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2309753,2022-03-13,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309754,2022-03-13,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2309755,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2309756,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2309757,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309758,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,55.0,52.0,1.0,2.0,,,,,,98.11, -2309759,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2309760,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,261,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2309761,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2309762,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2309763,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,64.0,71.0,64.0,0.0,7.0,,,,,,100.0, -2309764,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,109,Bed Based Capacity,109.0,184.0,109.0,0.0,75.0,,,,,,100.0, -2309765,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309766,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2309767,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2309768,2022-03-13,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309769,2022-03-13,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2309770,2022-03-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2309771,2022-03-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2309772,2022-03-13,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309773,2022-03-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2309774,2022-03-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2309775,2022-03-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2309776,2022-03-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2309777,2022-03-13,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2309778,2022-03-13,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309779,2022-03-13,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309780,2022-03-13,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309781,2022-03-13,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2309782,2022-03-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309783,2022-03-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2309784,2022-03-13,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2309785,2022-03-13,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309786,2022-03-13,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2309787,2022-03-13,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2309788,2022-03-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2309789,2022-03-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2309790,2022-03-13,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2309791,2022-03-13,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2309792,2022-03-13,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309793,2022-03-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2309794,2022-03-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2309795,2022-03-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2309796,2022-03-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,78.0,78.0,0.0,0.0,,100.0 -2309797,2022-03-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309798,2022-03-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2309799,2022-03-13,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,50.0,42.0,0.0,8.0,,,,,,100.0, -2309800,2022-03-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2309801,2022-03-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2309802,2022-03-13,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309803,2022-03-13,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2309804,2022-03-13,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309805,2022-03-13,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,26.0,27.0,23.0,3.0,1.0,,88.46 -2309806,2022-03-13,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309807,2022-03-13,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2309808,2022-03-13,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2309809,2022-03-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2309810,2022-03-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309811,2022-03-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309812,2022-03-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309813,2022-03-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309814,2022-03-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2309815,2022-03-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2309816,2022-03-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309817,2022-03-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,97,Room Based Capacity,,,,,,20.0,80.0,20.0,0.0,60.0,,100.0 -2309818,2022-03-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,2,Room Based Capacity,,,,,,1.0,25.0,1.0,0.0,24.0,,100.0 -2309819,2022-03-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2309820,2022-03-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,86.0,113.0,84.0,2.0,27.0,,97.67 -2309821,2022-03-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,115.0,107.0,115.0,0.0,0.0,,100.0 -2309822,2022-03-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2309823,2022-03-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2309824,2022-03-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2309825,2022-03-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2309826,2022-03-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309827,2022-03-14,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2309828,2022-03-14,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2309829,2022-03-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2309830,2022-03-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,11.0,12.0,9.0,2.0,1.0,,81.82 -2309831,2022-03-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2309832,2022-03-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2309833,2022-03-14,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2309834,2022-03-14,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2309835,2022-03-14,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,98.0,100.0,97.0,1.0,2.0,,98.98 -2309836,2022-03-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2309837,2022-03-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2309838,2022-03-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2309839,2022-03-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309840,2022-03-14,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2309841,2022-03-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,15.0,5.0,0.0,10.0,,,,,,100.0, -2309842,2022-03-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2309843,2022-03-14,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2309844,2022-03-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309845,2022-03-14,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2309846,2022-03-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,12.0,30.0,3.0,9.0,18.0,,25.0 -2309847,2022-03-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,9,Room Based Capacity,,,,,,62.0,30.0,7.0,55.0,0.0,,11.29 -2309848,2022-03-14,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309849,2022-03-14,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,91.0,91.0,91.0,0.0,0.0,,,,,,100.0, -2309850,2022-03-14,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309851,2022-03-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,51.0,51.0,48.0,3.0,0.0,,,,,,94.12, -2309852,2022-03-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309853,2022-03-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2309854,2022-03-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2309855,2022-03-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309856,2022-03-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2309857,2022-03-14,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2309858,2022-03-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2309859,2022-03-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2309860,2022-03-14,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2309861,2022-03-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2309862,2022-03-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2309863,2022-03-14,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2309864,2022-03-14,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2309865,2022-03-14,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2309866,2022-03-14,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2309867,2022-03-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,53.0,50.0,0.0,3.0,,,,,,100.0, -2309868,2022-03-14,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309869,2022-03-14,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2309870,2022-03-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2309871,2022-03-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,232.0,245.0,229.0,3.0,13.0,,98.71 -2309872,2022-03-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2309873,2022-03-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2309874,2022-03-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,45.0,52.0,45.0,0.0,7.0,,100.0 -2309875,2022-03-14,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2309876,2022-03-14,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2309877,2022-03-14,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,16.0,14.0,1.0,1.0,,,,,,93.33, -2309878,2022-03-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,34.0,41.0,33.0,1.0,7.0,,97.06 -2309879,2022-03-14,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2309880,2022-03-14,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2309881,2022-03-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309882,2022-03-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2309883,2022-03-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,39,Bed Based Capacity,44.0,44.0,39.0,5.0,0.0,,,,,,88.64, -2309884,2022-03-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309885,2022-03-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,54.0,52.0,1.0,1.0,,,,,,98.11, -2309886,2022-03-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2309887,2022-03-14,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2309888,2022-03-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309889,2022-03-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2309890,2022-03-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309891,2022-03-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309892,2022-03-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2309893,2022-03-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2309894,2022-03-14,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2309895,2022-03-14,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,94.0,94.0,93.0,1.0,0.0,,98.94 -2309896,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2309897,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309898,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309899,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2309900,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2309901,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,261,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2309902,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2309903,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2309904,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,64.0,71.0,64.0,0.0,7.0,,,,,,100.0, -2309905,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,96,Bed Based Capacity,96.0,184.0,96.0,0.0,88.0,,,,,,100.0, -2309906,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2309907,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2309908,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2309909,2022-03-14,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2309910,2022-03-14,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2309911,2022-03-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,45.0,40.0,43.0,2.0,0.0,,95.56 -2309912,2022-03-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2309913,2022-03-14,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309914,2022-03-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2309915,2022-03-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2309916,2022-03-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2309917,2022-03-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2309918,2022-03-14,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309919,2022-03-14,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309920,2022-03-14,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309921,2022-03-14,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2309922,2022-03-14,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2309923,2022-03-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309924,2022-03-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2309925,2022-03-14,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2309926,2022-03-14,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2309927,2022-03-14,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2309928,2022-03-14,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,66.0,75.0,63.0,3.0,9.0,,95.45 -2309929,2022-03-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2309930,2022-03-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2309931,2022-03-14,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,53.0,53.0,49.0,4.0,0.0,,,,,,92.45, -2309932,2022-03-14,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2309933,2022-03-14,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2309934,2022-03-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2309935,2022-03-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2309936,2022-03-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2309937,2022-03-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,78.0,78.0,0.0,0.0,,100.0 -2309938,2022-03-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2309939,2022-03-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2309940,2022-03-14,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2309941,2022-03-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2309942,2022-03-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,6.0,6.0,5.0,1.0,0.0,,,,,,83.33, -2309943,2022-03-14,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2309944,2022-03-14,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2309945,2022-03-14,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309946,2022-03-14,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2309947,2022-03-14,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309948,2022-03-14,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2309949,2022-03-14,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2309950,2022-03-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2309951,2022-03-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309952,2022-03-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2309953,2022-03-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2309954,2022-03-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2309955,2022-03-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2309956,2022-03-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2309957,2022-03-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2309958,2022-03-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,99,Room Based Capacity,,,,,,21.0,80.0,21.0,0.0,59.0,,100.0 -2309959,2022-03-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,5,Room Based Capacity,,,,,,3.0,25.0,3.0,0.0,22.0,,100.0 -2309960,2022-03-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2309961,2022-03-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,84.0,113.0,83.0,1.0,29.0,,98.81 -2309962,2022-03-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,116.0,107.0,116.0,0.0,0.0,,100.0 -2309963,2022-03-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2309964,2022-03-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2309965,2022-03-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2309966,2022-03-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2309967,2022-03-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2309968,2022-03-15,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2309969,2022-03-15,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2309970,2022-03-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,83.0,83.0,75.0,8.0,0.0,,90.36 -2309971,2022-03-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2309972,2022-03-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2309973,2022-03-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2309974,2022-03-15,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2309975,2022-03-15,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2309976,2022-03-15,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2309977,2022-03-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,146,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2309978,2022-03-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2309979,2022-03-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2309980,2022-03-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2309981,2022-03-15,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2309982,2022-03-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2309983,2022-03-15,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2309984,2022-03-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2309985,2022-03-15,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2309986,2022-03-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,12.0,30.0,3.0,9.0,18.0,,25.0 -2309987,2022-03-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,9,Room Based Capacity,,,,,,62.0,30.0,7.0,55.0,0.0,,11.29 -2309988,2022-03-15,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2309989,2022-03-15,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2309990,2022-03-15,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2309991,2022-03-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,51.0,51.0,48.0,3.0,0.0,,,,,,94.12, -2309992,2022-03-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,10.0,7.0,1.0,2.0,,,,,,87.5, -2309993,2022-03-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2309994,2022-03-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2309995,2022-03-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2309996,2022-03-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2309997,2022-03-15,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2309998,2022-03-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,14.0,19.0,14.0,0.0,5.0,,,,,,100.0, -2309999,2022-03-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,27.0,10.0,3.0,14.0,,,,,,76.92, -2310000,2022-03-15,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310001,2022-03-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310002,2022-03-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2310003,2022-03-15,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2310004,2022-03-15,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2310005,2022-03-15,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310006,2022-03-15,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2310007,2022-03-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310008,2022-03-15,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310009,2022-03-15,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310010,2022-03-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2310011,2022-03-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,232.0,245.0,230.0,2.0,13.0,,99.14 -2310012,2022-03-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2310013,2022-03-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310014,2022-03-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,45.0,52.0,45.0,0.0,7.0,,100.0 -2310015,2022-03-15,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310016,2022-03-15,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2310017,2022-03-15,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2310018,2022-03-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2310019,2022-03-15,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310020,2022-03-15,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310021,2022-03-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310022,2022-03-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310023,2022-03-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2310024,2022-03-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310025,2022-03-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310026,2022-03-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2310027,2022-03-15,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2310028,2022-03-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310029,2022-03-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2310030,2022-03-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2310031,2022-03-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310032,2022-03-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310033,2022-03-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2310034,2022-03-15,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310035,2022-03-15,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,94.0,94.0,93.0,1.0,0.0,,98.94 -2310036,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2310037,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2310038,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310039,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2310040,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2310041,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,225.0,235.0,225.0,0.0,10.0,,100.0 -2310042,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2310043,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2310044,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,63,Bed Based Capacity,63.0,71.0,63.0,0.0,8.0,,,,,,100.0, -2310045,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,96,Bed Based Capacity,96.0,184.0,96.0,0.0,88.0,,,,,,100.0, -2310046,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310047,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2310048,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2310049,2022-03-15,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2310050,2022-03-15,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2310051,2022-03-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2310052,2022-03-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2310053,2022-03-15,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310054,2022-03-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310055,2022-03-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2310056,2022-03-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2310057,2022-03-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2310058,2022-03-15,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310059,2022-03-15,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310060,2022-03-15,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310061,2022-03-15,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2310062,2022-03-15,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2310063,2022-03-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310064,2022-03-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2310065,2022-03-15,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2310066,2022-03-15,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310067,2022-03-15,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2310068,2022-03-15,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2310069,2022-03-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2310070,2022-03-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2310071,2022-03-15,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310072,2022-03-15,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2310073,2022-03-15,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310074,2022-03-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2310075,2022-03-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2310076,2022-03-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2310077,2022-03-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2310078,2022-03-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2310079,2022-03-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2310080,2022-03-15,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2310081,2022-03-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2310082,2022-03-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2310083,2022-03-15,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2310084,2022-03-15,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2310085,2022-03-15,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2310086,2022-03-15,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2310087,2022-03-15,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310088,2022-03-15,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2310089,2022-03-15,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2310090,2022-03-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2310091,2022-03-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310092,2022-03-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310093,2022-03-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310094,2022-03-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310095,2022-03-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2310096,2022-03-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2310097,2022-03-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310098,2022-03-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,115,Room Based Capacity,,,,,,26.0,80.0,25.0,1.0,54.0,,96.15 -2310099,2022-03-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,5,Room Based Capacity,,,,,,3.0,25.0,3.0,0.0,22.0,,100.0 -2310100,2022-03-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2310101,2022-03-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,84.0,113.0,84.0,0.0,29.0,,100.0 -2310102,2022-03-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,389,Room Based Capacity,,,,,,117.0,107.0,117.0,0.0,0.0,,100.0 -2310103,2022-03-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2310104,2022-03-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2310105,2022-03-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2310106,2022-03-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2310107,2022-03-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310108,2022-03-16,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2310109,2022-03-16,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2310110,2022-03-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,83.0,83.0,75.0,8.0,0.0,,90.36 -2310111,2022-03-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2310112,2022-03-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2310113,2022-03-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,76.0,77.0,74.0,2.0,1.0,,97.37 -2310114,2022-03-16,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2310115,2022-03-16,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2310116,2022-03-16,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,98.0,100.0,97.0,1.0,2.0,,98.98 -2310117,2022-03-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,146,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2310118,2022-03-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2310119,2022-03-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2310120,2022-03-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2310121,2022-03-16,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2310122,2022-03-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,5.0,15.0,1.0,4.0,10.0,,,,,,20.0, -2310123,2022-03-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2310124,2022-03-16,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2310125,2022-03-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310126,2022-03-16,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2310127,2022-03-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,12.0,30.0,3.0,9.0,18.0,,25.0 -2310128,2022-03-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,62.0,30.0,10.0,52.0,0.0,,16.13 -2310129,2022-03-16,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2310130,2022-03-16,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2310131,2022-03-16,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310132,2022-03-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,51.0,51.0,48.0,3.0,0.0,,,,,,94.12, -2310133,2022-03-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2310134,2022-03-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2310135,2022-03-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2310136,2022-03-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310137,2022-03-16,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310138,2022-03-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2310139,2022-03-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2310140,2022-03-16,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310141,2022-03-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310142,2022-03-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2310143,2022-03-16,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2310144,2022-03-16,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2310145,2022-03-16,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310146,2022-03-16,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2310147,2022-03-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310148,2022-03-16,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310149,2022-03-16,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310150,2022-03-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2310151,2022-03-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,232.0,245.0,229.0,3.0,13.0,,98.71 -2310152,2022-03-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2310153,2022-03-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310154,2022-03-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,45.0,52.0,45.0,0.0,7.0,,100.0 -2310155,2022-03-16,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310156,2022-03-16,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2310157,2022-03-16,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2310158,2022-03-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2310159,2022-03-16,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310160,2022-03-16,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310161,2022-03-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310162,2022-03-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310163,2022-03-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2310164,2022-03-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310165,2022-03-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310166,2022-03-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2310167,2022-03-16,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2310168,2022-03-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310169,2022-03-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2310170,2022-03-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2310171,2022-03-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310172,2022-03-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310173,2022-03-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2310174,2022-03-16,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2310175,2022-03-16,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2310176,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2310177,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310178,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310179,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2310180,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2310181,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,224.0,235.0,224.0,0.0,11.0,,100.0 -2310182,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2310183,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2310184,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,49,Bed Based Capacity,49.0,71.0,49.0,0.0,22.0,,,,,,100.0, -2310185,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,89,Bed Based Capacity,89.0,184.0,89.0,0.0,95.0,,,,,,100.0, -2310186,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310187,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,128,Bed Based Capacity,128.0,130.0,128.0,0.0,2.0,,,,,,100.0, -2310188,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2310189,2022-03-16,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2310190,2022-03-16,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2310191,2022-03-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2310192,2022-03-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2310193,2022-03-16,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2310194,2022-03-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310195,2022-03-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2310196,2022-03-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2310197,2022-03-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2310198,2022-03-16,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310199,2022-03-16,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310200,2022-03-16,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310201,2022-03-16,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310202,2022-03-16,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2310203,2022-03-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310204,2022-03-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2310205,2022-03-16,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2310206,2022-03-16,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310207,2022-03-16,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2310208,2022-03-16,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2310209,2022-03-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2310210,2022-03-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2310211,2022-03-16,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,53.0,51.0,2.0,0.0,,,,,,96.23, -2310212,2022-03-16,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2310213,2022-03-16,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310214,2022-03-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2310215,2022-03-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2310216,2022-03-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2310217,2022-03-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2310218,2022-03-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2310219,2022-03-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2310220,2022-03-16,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2310221,2022-03-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2310222,2022-03-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2310223,2022-03-16,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2310224,2022-03-16,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2310225,2022-03-16,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2310226,2022-03-16,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2310227,2022-03-16,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310228,2022-03-16,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,28.0,28.0,0.0,0.0,,100.0 -2310229,2022-03-16,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2310230,2022-03-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2310231,2022-03-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310232,2022-03-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310233,2022-03-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310234,2022-03-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310235,2022-03-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2310236,2022-03-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2310237,2022-03-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310238,2022-03-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,125,Room Based Capacity,,,,,,30.0,80.0,30.0,0.0,50.0,,100.0 -2310239,2022-03-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,5,Room Based Capacity,,,,,,3.0,25.0,3.0,0.0,22.0,,100.0 -2310240,2022-03-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2310241,2022-03-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,82.0,113.0,82.0,0.0,31.0,,100.0 -2310242,2022-03-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2310243,2022-03-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2310244,2022-03-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2310245,2022-03-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2310246,2022-03-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2310247,2022-03-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310248,2022-03-17,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2310249,2022-03-17,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2310250,2022-03-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,83.0,83.0,78.0,5.0,0.0,,93.98 -2310251,2022-03-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2310252,2022-03-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2310253,2022-03-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2310254,2022-03-17,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2310255,2022-03-17,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2310256,2022-03-17,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,97.0,100.0,96.0,1.0,3.0,,98.97 -2310257,2022-03-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,146,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2310258,2022-03-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2310259,2022-03-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,74,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2310260,2022-03-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2310261,2022-03-17,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2310262,2022-03-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2310263,2022-03-17,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2310264,2022-03-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310265,2022-03-17,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2310266,2022-03-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,12.0,30.0,3.0,9.0,18.0,,25.0 -2310267,2022-03-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,14,Room Based Capacity,,,,,,62.0,30.0,12.0,50.0,0.0,,19.35 -2310268,2022-03-17,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,22.0,1.0,0.0,,95.65 -2310269,2022-03-17,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2310270,2022-03-17,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310271,2022-03-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,51.0,51.0,47.0,4.0,0.0,,,,,,92.16, -2310272,2022-03-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2310273,2022-03-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,66.0,66.0,64.0,2.0,0.0,,,,,,96.97, -2310274,2022-03-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2310275,2022-03-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310276,2022-03-17,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310277,2022-03-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2310278,2022-03-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2310279,2022-03-17,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310280,2022-03-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310281,2022-03-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2310282,2022-03-17,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2310283,2022-03-17,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2310284,2022-03-17,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310285,2022-03-17,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2310286,2022-03-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,53.0,48.0,0.0,5.0,,,,,,100.0, -2310287,2022-03-17,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310288,2022-03-17,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310289,2022-03-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2310290,2022-03-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,232.0,245.0,228.0,4.0,13.0,,98.28 -2310291,2022-03-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2310292,2022-03-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310293,2022-03-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,45.0,52.0,45.0,0.0,7.0,,100.0 -2310294,2022-03-17,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310295,2022-03-17,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2310296,2022-03-17,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,16.0,14.0,1.0,1.0,,,,,,93.33, -2310297,2022-03-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2310298,2022-03-17,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310299,2022-03-17,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310300,2022-03-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2310301,2022-03-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310302,2022-03-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2310303,2022-03-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310304,2022-03-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310305,2022-03-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,267.0,271.0,266.0,1.0,4.0,,99.63 -2310306,2022-03-17,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2310307,2022-03-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310308,2022-03-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2310309,2022-03-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2310310,2022-03-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310311,2022-03-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310312,2022-03-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2310313,2022-03-17,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2310314,2022-03-17,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2310315,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2310316,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310317,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310318,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2310319,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2310320,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,224.0,235.0,224.0,0.0,11.0,,100.0 -2310321,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2310322,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2310323,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,40,Bed Based Capacity,41.0,71.0,40.0,1.0,30.0,,,,,,97.56, -2310324,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,82,Bed Based Capacity,82.0,184.0,82.0,0.0,102.0,,,,,,100.0, -2310325,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310326,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,127,Bed Based Capacity,127.0,130.0,127.0,0.0,3.0,,,,,,100.0, -2310327,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2310328,2022-03-17,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2310329,2022-03-17,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2310330,2022-03-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2310331,2022-03-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310332,2022-03-17,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310333,2022-03-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310334,2022-03-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2310335,2022-03-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2310336,2022-03-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2310337,2022-03-17,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310338,2022-03-17,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310339,2022-03-17,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2310340,2022-03-17,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310341,2022-03-17,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2310342,2022-03-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310343,2022-03-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2310344,2022-03-17,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2310345,2022-03-17,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2310346,2022-03-17,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2310347,2022-03-17,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2310348,2022-03-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2310349,2022-03-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2310350,2022-03-17,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310351,2022-03-17,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2310352,2022-03-17,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310353,2022-03-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2310354,2022-03-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2310355,2022-03-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2310356,2022-03-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2310357,2022-03-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2310358,2022-03-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2310359,2022-03-17,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2310360,2022-03-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2310361,2022-03-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2310362,2022-03-17,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2310363,2022-03-17,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2310364,2022-03-17,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2310365,2022-03-17,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2310366,2022-03-17,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310367,2022-03-17,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,42.0,28.0,0.0,14.0,,100.0 -2310368,2022-03-17,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2310369,2022-03-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2310370,2022-03-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2310371,2022-03-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2310372,2022-03-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2310373,2022-03-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310374,2022-03-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2310375,2022-03-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2310376,2022-03-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310377,2022-03-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,139,Room Based Capacity,,,,,,35.0,80.0,34.0,1.0,45.0,,97.14 -2310378,2022-03-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,6,Room Based Capacity,,,,,,3.0,25.0,3.0,0.0,22.0,,100.0 -2310379,2022-03-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2310380,2022-03-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,83.0,113.0,83.0,0.0,30.0,,100.0 -2310381,2022-03-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,389,Room Based Capacity,,,,,,117.0,107.0,117.0,0.0,0.0,,100.0 -2310382,2022-03-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2310383,2022-03-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2310384,2022-03-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2310385,2022-03-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2310386,2022-03-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310387,2022-03-18,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,22.0,30.0,21.0,1.0,8.0,,95.45 -2310388,2022-03-18,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2310389,2022-03-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,83.0,83.0,78.0,5.0,0.0,,93.98 -2310390,2022-03-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2310391,2022-03-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2310392,2022-03-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2310393,2022-03-18,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2310394,2022-03-18,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2310395,2022-03-18,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2310396,2022-03-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,146,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2310397,2022-03-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2310398,2022-03-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2310399,2022-03-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2310400,2022-03-18,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2310401,2022-03-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2310402,2022-03-18,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2310403,2022-03-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310404,2022-03-18,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2310405,2022-03-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,12.0,30.0,5.0,7.0,18.0,,41.67 -2310406,2022-03-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,62.0,30.0,11.0,51.0,0.0,,17.74 -2310407,2022-03-18,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2310408,2022-03-18,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,91.0,89.0,2.0,0.0,,,,,,97.8, -2310409,2022-03-18,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310410,2022-03-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2310411,2022-03-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2310412,2022-03-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2310413,2022-03-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2310414,2022-03-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310415,2022-03-18,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310416,2022-03-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2310417,2022-03-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,27.0,12.0,1.0,14.0,,,,,,92.31, -2310418,2022-03-18,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310419,2022-03-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310420,2022-03-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2310421,2022-03-18,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2310422,2022-03-18,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,36.0,42.0,36.0,0.0,6.0,,100.0 -2310423,2022-03-18,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310424,2022-03-18,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2310425,2022-03-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310426,2022-03-18,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310427,2022-03-18,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310428,2022-03-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2310429,2022-03-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,232.0,245.0,227.0,5.0,13.0,,97.84 -2310430,2022-03-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2310431,2022-03-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310432,2022-03-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,45.0,52.0,45.0,0.0,7.0,,100.0 -2310433,2022-03-18,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310434,2022-03-18,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2310435,2022-03-18,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2310436,2022-03-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2310437,2022-03-18,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310438,2022-03-18,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310439,2022-03-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2310440,2022-03-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310441,2022-03-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2310442,2022-03-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310443,2022-03-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310444,2022-03-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2310445,2022-03-18,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2310446,2022-03-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310447,2022-03-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2310448,2022-03-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2310449,2022-03-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310450,2022-03-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310451,2022-03-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2310452,2022-03-18,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2310453,2022-03-18,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2310454,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2310455,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310456,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310457,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2310458,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2310459,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,226.0,235.0,226.0,0.0,9.0,,100.0 -2310460,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2310461,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,58,Bed Based Capacity,60.0,60.0,58.0,2.0,0.0,,,,,,96.67, -2310462,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,36,Bed Based Capacity,38.0,71.0,36.0,2.0,33.0,,,,,,94.74, -2310463,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,75,Bed Based Capacity,75.0,184.0,75.0,0.0,109.0,,,,,,100.0, -2310464,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310465,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2310466,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2310467,2022-03-18,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2310468,2022-03-18,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2310469,2022-03-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2310470,2022-03-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310471,2022-03-18,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310472,2022-03-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310473,2022-03-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2310474,2022-03-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2310475,2022-03-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2310476,2022-03-18,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310477,2022-03-18,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310478,2022-03-18,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310479,2022-03-18,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310480,2022-03-18,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2310481,2022-03-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310482,2022-03-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2310483,2022-03-18,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2310484,2022-03-18,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310485,2022-03-18,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2310486,2022-03-18,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2310487,2022-03-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2310488,2022-03-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2310489,2022-03-18,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310490,2022-03-18,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2310491,2022-03-18,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310492,2022-03-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2310493,2022-03-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,220,Bed Based Capacity,225.0,225.0,220.0,5.0,0.0,,,,,,97.78, -2310494,2022-03-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2310495,2022-03-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2310496,2022-03-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2310497,2022-03-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2310498,2022-03-18,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2310499,2022-03-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2310500,2022-03-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2310501,2022-03-18,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2310502,2022-03-18,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2310503,2022-03-18,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2310504,2022-03-18,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2310505,2022-03-18,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310506,2022-03-18,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,42.0,28.0,0.0,14.0,,100.0 -2310507,2022-03-18,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2310508,2022-03-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2310509,2022-03-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2310510,2022-03-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310511,2022-03-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310512,2022-03-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310513,2022-03-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2310514,2022-03-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2310515,2022-03-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310516,2022-03-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,144,Room Based Capacity,,,,,,35.0,80.0,35.0,0.0,45.0,,100.0 -2310517,2022-03-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,6,Room Based Capacity,,,,,,3.0,25.0,3.0,0.0,22.0,,100.0 -2310518,2022-03-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2310519,2022-03-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,83.0,113.0,83.0,0.0,30.0,,100.0 -2310520,2022-03-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,117.0,107.0,116.0,1.0,0.0,,99.15 -2310521,2022-03-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2310522,2022-03-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2310523,2022-03-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2310524,2022-03-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2310525,2022-03-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310526,2022-03-19,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2310527,2022-03-19,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2310528,2022-03-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,83.0,83.0,78.0,5.0,0.0,,93.98 -2310529,2022-03-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2310530,2022-03-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,23,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2310531,2022-03-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2310532,2022-03-19,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2310533,2022-03-19,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2310534,2022-03-19,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2310535,2022-03-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2310536,2022-03-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2310537,2022-03-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2310538,2022-03-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2310539,2022-03-19,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2310540,2022-03-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2310541,2022-03-19,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2310542,2022-03-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310543,2022-03-19,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2310544,2022-03-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,12.0,30.0,5.0,7.0,18.0,,41.67 -2310545,2022-03-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,62.0,30.0,11.0,51.0,0.0,,17.74 -2310546,2022-03-19,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2310547,2022-03-19,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2310548,2022-03-19,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310549,2022-03-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2310550,2022-03-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2310551,2022-03-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2310552,2022-03-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2310553,2022-03-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310554,2022-03-19,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310555,2022-03-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,11,Bed Based Capacity,14.0,19.0,11.0,3.0,5.0,,,,,,78.57, -2310556,2022-03-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,15.0,27.0,12.0,3.0,12.0,,,,,,80.0, -2310557,2022-03-19,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310558,2022-03-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310559,2022-03-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2310560,2022-03-19,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2310561,2022-03-19,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,34.0,42.0,34.0,0.0,8.0,,100.0 -2310562,2022-03-19,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310563,2022-03-19,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2310564,2022-03-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310565,2022-03-19,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310566,2022-03-19,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310567,2022-03-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2310568,2022-03-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,232.0,245.0,227.0,5.0,13.0,,97.84 -2310569,2022-03-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2310570,2022-03-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310571,2022-03-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,45.0,52.0,45.0,0.0,7.0,,100.0 -2310572,2022-03-19,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310573,2022-03-19,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2310574,2022-03-19,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2310575,2022-03-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2310576,2022-03-19,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310577,2022-03-19,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310578,2022-03-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2310579,2022-03-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310580,2022-03-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2310581,2022-03-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310582,2022-03-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310583,2022-03-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2310584,2022-03-19,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2310585,2022-03-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310586,2022-03-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2310587,2022-03-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2310588,2022-03-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310589,2022-03-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310590,2022-03-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2310591,2022-03-19,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310592,2022-03-19,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2310593,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2310594,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310595,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310596,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2310597,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2310598,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,226.0,235.0,225.0,1.0,9.0,,99.56 -2310599,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2310600,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2310601,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,36,Bed Based Capacity,36.0,71.0,36.0,0.0,35.0,,,,,,100.0, -2310602,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,75,Bed Based Capacity,75.0,184.0,75.0,0.0,109.0,,,,,,100.0, -2310603,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310604,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2310605,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2310606,2022-03-19,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2310607,2022-03-19,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2310608,2022-03-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2310609,2022-03-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310610,2022-03-19,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310611,2022-03-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310612,2022-03-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2310613,2022-03-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2310614,2022-03-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2310615,2022-03-19,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310616,2022-03-19,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310617,2022-03-19,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310618,2022-03-19,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310619,2022-03-19,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2310620,2022-03-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310621,2022-03-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2310622,2022-03-19,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2310623,2022-03-19,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2310624,2022-03-19,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2310625,2022-03-19,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2310626,2022-03-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2310627,2022-03-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2310628,2022-03-19,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310629,2022-03-19,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2310630,2022-03-19,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310631,2022-03-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2310632,2022-03-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,221,Bed Based Capacity,225.0,225.0,221.0,4.0,0.0,,,,,,98.22, -2310633,2022-03-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2310634,2022-03-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2310635,2022-03-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2310636,2022-03-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2310637,2022-03-19,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2310638,2022-03-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2310639,2022-03-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2310640,2022-03-19,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2310641,2022-03-19,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,34.0,34.0,32.0,2.0,0.0,,,,,,94.12, -2310642,2022-03-19,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310643,2022-03-19,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2310644,2022-03-19,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310645,2022-03-19,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,42.0,28.0,0.0,14.0,,100.0 -2310646,2022-03-19,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2310647,2022-03-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2310648,2022-03-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2310649,2022-03-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310650,2022-03-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310651,2022-03-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310652,2022-03-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2310653,2022-03-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2310654,2022-03-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310655,2022-03-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,144,Room Based Capacity,,,,,,37.0,80.0,35.0,2.0,43.0,,94.59 -2310656,2022-03-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,6,Room Based Capacity,,,,,,3.0,25.0,3.0,0.0,22.0,,100.0 -2310657,2022-03-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2310658,2022-03-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2310659,2022-03-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,117.0,107.0,116.0,1.0,0.0,,99.15 -2310660,2022-03-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2310661,2022-03-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2310662,2022-03-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2310663,2022-03-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2310664,2022-03-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310665,2022-03-20,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2310666,2022-03-20,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2310667,2022-03-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,83.0,83.0,78.0,5.0,0.0,,93.98 -2310668,2022-03-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2310669,2022-03-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,14.0,11.0,0.0,3.0,,100.0 -2310670,2022-03-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2310671,2022-03-20,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2310672,2022-03-20,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2310673,2022-03-20,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2310674,2022-03-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2310675,2022-03-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2310676,2022-03-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2310677,2022-03-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2310678,2022-03-20,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2310679,2022-03-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2310680,2022-03-20,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2310681,2022-03-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310682,2022-03-20,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2310683,2022-03-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,12.0,30.0,5.0,7.0,18.0,,41.67 -2310684,2022-03-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,62.0,30.0,11.0,51.0,0.0,,17.74 -2310685,2022-03-20,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2310686,2022-03-20,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2310687,2022-03-20,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310688,2022-03-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2310689,2022-03-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2310690,2022-03-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2310691,2022-03-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2310692,2022-03-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310693,2022-03-20,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310694,2022-03-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,14.0,19.0,14.0,0.0,5.0,,,,,,100.0, -2310695,2022-03-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,15.0,27.0,12.0,3.0,12.0,,,,,,80.0, -2310696,2022-03-20,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310697,2022-03-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310698,2022-03-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2310699,2022-03-20,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2310700,2022-03-20,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,34.0,42.0,34.0,0.0,8.0,,100.0 -2310701,2022-03-20,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310702,2022-03-20,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2310703,2022-03-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310704,2022-03-20,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310705,2022-03-20,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310706,2022-03-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2310707,2022-03-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,232.0,245.0,227.0,5.0,13.0,,97.84 -2310708,2022-03-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2310709,2022-03-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310710,2022-03-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,45.0,52.0,45.0,0.0,7.0,,100.0 -2310711,2022-03-20,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310712,2022-03-20,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2310713,2022-03-20,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2310714,2022-03-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2310715,2022-03-20,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310716,2022-03-20,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310717,2022-03-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2310718,2022-03-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310719,2022-03-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2310720,2022-03-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310721,2022-03-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310722,2022-03-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2310723,2022-03-20,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2310724,2022-03-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310725,2022-03-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2310726,2022-03-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2310727,2022-03-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310728,2022-03-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310729,2022-03-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2310730,2022-03-20,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310731,2022-03-20,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2310732,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2310733,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310734,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310735,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,55.0,53.0,1.0,1.0,,,,,,98.15, -2310736,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2310737,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,224.0,235.0,224.0,0.0,11.0,,100.0 -2310738,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2310739,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2310740,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,35,Bed Based Capacity,36.0,71.0,35.0,1.0,35.0,,,,,,97.22, -2310741,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,74,Bed Based Capacity,74.0,184.0,74.0,0.0,110.0,,,,,,100.0, -2310742,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310743,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2310744,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2310745,2022-03-20,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2310746,2022-03-20,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2310747,2022-03-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2310748,2022-03-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310749,2022-03-20,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310750,2022-03-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310751,2022-03-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2310752,2022-03-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2310753,2022-03-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2310754,2022-03-20,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310755,2022-03-20,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310756,2022-03-20,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310757,2022-03-20,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310758,2022-03-20,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2310759,2022-03-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310760,2022-03-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2310761,2022-03-20,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2310762,2022-03-20,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2310763,2022-03-20,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2310764,2022-03-20,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2310765,2022-03-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2310766,2022-03-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2310767,2022-03-20,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310768,2022-03-20,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2310769,2022-03-20,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310770,2022-03-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2310771,2022-03-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,219,Bed Based Capacity,225.0,225.0,219.0,6.0,0.0,,,,,,97.33, -2310772,2022-03-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2310773,2022-03-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2310774,2022-03-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2310775,2022-03-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2310776,2022-03-20,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2310777,2022-03-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2310778,2022-03-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2310779,2022-03-20,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2310780,2022-03-20,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2310781,2022-03-20,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310782,2022-03-20,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2310783,2022-03-20,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310784,2022-03-20,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,42.0,28.0,0.0,14.0,,100.0 -2310785,2022-03-20,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2310786,2022-03-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2310787,2022-03-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2310788,2022-03-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2310789,2022-03-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310790,2022-03-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2310791,2022-03-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2310792,2022-03-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2310793,2022-03-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310794,2022-03-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,162,Room Based Capacity,,,,,,42.0,80.0,42.0,0.0,38.0,,100.0 -2310795,2022-03-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,8,Room Based Capacity,,,,,,5.0,25.0,5.0,0.0,20.0,,100.0 -2310796,2022-03-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2310797,2022-03-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2310798,2022-03-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,116.0,107.0,116.0,0.0,0.0,,100.0 -2310799,2022-03-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2310800,2022-03-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2310801,2022-03-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2310802,2022-03-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2310803,2022-03-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310804,2022-03-21,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2310805,2022-03-21,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2310806,2022-03-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,83.0,78.0,0.0,5.0,,100.0 -2310807,2022-03-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2310808,2022-03-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,14.0,11.0,0.0,3.0,,100.0 -2310809,2022-03-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2310810,2022-03-21,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2310811,2022-03-21,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2310812,2022-03-21,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2310813,2022-03-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2310814,2022-03-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2310815,2022-03-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2310816,2022-03-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2310817,2022-03-21,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2310818,2022-03-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,5.0,5.0,1.0,4.0,0.0,,,,,,20.0, -2310819,2022-03-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2310820,2022-03-21,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2310821,2022-03-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310822,2022-03-21,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2310823,2022-03-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,12.0,30.0,4.0,8.0,18.0,,33.33 -2310824,2022-03-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,62.0,30.0,11.0,51.0,0.0,,17.74 -2310825,2022-03-21,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2310826,2022-03-21,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2310827,2022-03-21,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310828,2022-03-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2310829,2022-03-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2310830,2022-03-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2310831,2022-03-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2310832,2022-03-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310833,2022-03-21,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310834,2022-03-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,10,Bed Based Capacity,14.0,19.0,10.0,4.0,5.0,,,,,,71.43, -2310835,2022-03-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,15.0,27.0,12.0,3.0,12.0,,,,,,80.0, -2310836,2022-03-21,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310837,2022-03-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310838,2022-03-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2310839,2022-03-21,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2310840,2022-03-21,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,34.0,42.0,34.0,0.0,8.0,,100.0 -2310841,2022-03-21,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310842,2022-03-21,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2310843,2022-03-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310844,2022-03-21,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2310845,2022-03-21,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2310846,2022-03-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2310847,2022-03-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,231.0,245.0,227.0,4.0,14.0,,98.27 -2310848,2022-03-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2310849,2022-03-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310850,2022-03-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,46.0,52.0,46.0,0.0,6.0,,100.0 -2310851,2022-03-21,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310852,2022-03-21,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2310853,2022-03-21,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2310854,2022-03-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,39.0,41.0,38.0,1.0,2.0,,97.44 -2310855,2022-03-21,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310856,2022-03-21,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310857,2022-03-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2310858,2022-03-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310859,2022-03-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2310860,2022-03-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310861,2022-03-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310862,2022-03-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2310863,2022-03-21,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2310864,2022-03-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310865,2022-03-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2310866,2022-03-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2310867,2022-03-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310868,2022-03-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2310869,2022-03-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2310870,2022-03-21,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2310871,2022-03-21,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2310872,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2310873,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310874,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,31.0,29.0,1.0,1.0,,,,,,96.67, -2310875,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,55.0,53.0,1.0,1.0,,,,,,98.15, -2310876,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2310877,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,224.0,235.0,224.0,0.0,11.0,,100.0 -2310878,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2310879,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2310880,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,35,Bed Based Capacity,35.0,71.0,35.0,0.0,36.0,,,,,,100.0, -2310881,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,69,Bed Based Capacity,69.0,184.0,69.0,0.0,115.0,,,,,,100.0, -2310882,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2310883,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2310884,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2310885,2022-03-21,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2310886,2022-03-21,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2310887,2022-03-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2310888,2022-03-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2310889,2022-03-21,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310890,2022-03-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310891,2022-03-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2310892,2022-03-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2310893,2022-03-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2310894,2022-03-21,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310895,2022-03-21,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2310896,2022-03-21,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310897,2022-03-21,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2310898,2022-03-21,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2310899,2022-03-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310900,2022-03-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2310901,2022-03-21,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2310902,2022-03-21,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2310903,2022-03-21,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2310904,2022-03-21,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2310905,2022-03-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2310906,2022-03-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2310907,2022-03-21,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2310908,2022-03-21,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2310909,2022-03-21,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2310910,2022-03-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2310911,2022-03-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2310912,2022-03-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2310913,2022-03-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2310914,2022-03-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2310915,2022-03-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2310916,2022-03-21,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2310917,2022-03-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2310918,2022-03-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2310919,2022-03-21,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2310920,2022-03-21,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2310921,2022-03-21,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310922,2022-03-21,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2310923,2022-03-21,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310924,2022-03-21,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,35,Room Based Capacity,,,,,,42.0,42.0,35.0,7.0,0.0,,83.33 -2310925,2022-03-21,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2310926,2022-03-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2310927,2022-03-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2310928,2022-03-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2310929,2022-03-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2310930,2022-03-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2310931,2022-03-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2310932,2022-03-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2310933,2022-03-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2310934,2022-03-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,170,Room Based Capacity,,,,,,43.0,80.0,43.0,0.0,37.0,,100.0 -2310935,2022-03-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,11,Room Based Capacity,,,,,,6.0,25.0,6.0,0.0,19.0,,100.0 -2310936,2022-03-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2310937,2022-03-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2310938,2022-03-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,389,Room Based Capacity,,,,,,117.0,107.0,117.0,0.0,0.0,,100.0 -2310939,2022-03-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2310940,2022-03-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2310941,2022-03-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2310942,2022-03-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2310943,2022-03-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2310944,2022-03-22,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,24.0,30.0,22.0,2.0,6.0,,91.67 -2310945,2022-03-22,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2310946,2022-03-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,83.0,76.0,0.0,7.0,,100.0 -2310947,2022-03-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2310948,2022-03-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2310949,2022-03-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2310950,2022-03-22,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2310951,2022-03-22,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2310952,2022-03-22,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2310953,2022-03-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,161,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2310954,2022-03-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2310955,2022-03-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2310956,2022-03-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2310957,2022-03-22,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,19.0,20.0,18.0,1.0,1.0,,94.74 -2310958,2022-03-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2310959,2022-03-22,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2310960,2022-03-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2310961,2022-03-22,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2310962,2022-03-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,12.0,30.0,4.0,8.0,18.0,,33.33 -2310963,2022-03-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,62.0,30.0,10.0,52.0,0.0,,16.13 -2310964,2022-03-22,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2310965,2022-03-22,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2310966,2022-03-22,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2310967,2022-03-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2310968,2022-03-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2310969,2022-03-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2310970,2022-03-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2310971,2022-03-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2310972,2022-03-22,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2310973,2022-03-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,14.0,19.0,14.0,0.0,5.0,,,,,,100.0, -2310974,2022-03-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,15.0,27.0,13.0,2.0,12.0,,,,,,86.67, -2310975,2022-03-22,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2310976,2022-03-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2310977,2022-03-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2310978,2022-03-22,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2310979,2022-03-22,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,34.0,40.0,34.0,0.0,6.0,,100.0 -2310980,2022-03-22,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2310981,2022-03-22,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,42.0,40.0,1.0,1.0,,97.56 -2310982,2022-03-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,53.0,48.0,1.0,4.0,,,,,,97.96, -2310983,2022-03-22,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2310984,2022-03-22,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2310985,2022-03-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2310986,2022-03-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,231.0,245.0,226.0,5.0,14.0,,97.84 -2310987,2022-03-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2310988,2022-03-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2310989,2022-03-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,48.0,52.0,48.0,0.0,4.0,,100.0 -2310990,2022-03-22,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2310991,2022-03-22,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2310992,2022-03-22,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2310993,2022-03-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,41.0,41.0,38.0,3.0,0.0,,92.68 -2310994,2022-03-22,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2310995,2022-03-22,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2310996,2022-03-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2310997,2022-03-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2310998,2022-03-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2310999,2022-03-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311000,2022-03-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311001,2022-03-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2311002,2022-03-22,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2311003,2022-03-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311004,2022-03-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311005,2022-03-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2311006,2022-03-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311007,2022-03-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311008,2022-03-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2311009,2022-03-22,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311010,2022-03-22,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2311011,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2311012,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311013,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311014,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2311015,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2311016,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,222.0,235.0,222.0,0.0,13.0,,100.0 -2311017,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2311018,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2311019,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,32,Bed Based Capacity,32.0,71.0,32.0,0.0,39.0,,,,,,100.0, -2311020,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,60,Bed Based Capacity,60.0,184.0,60.0,0.0,124.0,,,,,,100.0, -2311021,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2311022,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,127,Bed Based Capacity,130.0,130.0,127.0,3.0,0.0,,,,,,97.69, -2311023,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2311024,2022-03-22,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2311025,2022-03-22,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2311026,2022-03-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2311027,2022-03-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311028,2022-03-22,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311029,2022-03-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311030,2022-03-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2311031,2022-03-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2311032,2022-03-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2311033,2022-03-22,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311034,2022-03-22,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2311035,2022-03-22,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311036,2022-03-22,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2311037,2022-03-22,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2311038,2022-03-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311039,2022-03-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2311040,2022-03-22,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2311041,2022-03-22,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2311042,2022-03-22,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2311043,2022-03-22,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2311044,2022-03-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2311045,2022-03-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2311046,2022-03-22,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311047,2022-03-22,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2311048,2022-03-22,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311049,2022-03-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2311050,2022-03-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2311051,2022-03-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2311052,2022-03-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2311053,2022-03-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2311054,2022-03-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2311055,2022-03-22,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311056,2022-03-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2311057,2022-03-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2311058,2022-03-22,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311059,2022-03-22,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2311060,2022-03-22,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311061,2022-03-22,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2311062,2022-03-22,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311063,2022-03-22,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,42.0,42.0,38.0,4.0,0.0,,90.48 -2311064,2022-03-22,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2311065,2022-03-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2311066,2022-03-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2311067,2022-03-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311068,2022-03-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311069,2022-03-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311070,2022-03-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2311071,2022-03-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2311072,2022-03-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311073,2022-03-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,183,Room Based Capacity,,,,,,46.0,80.0,46.0,0.0,34.0,,100.0 -2311074,2022-03-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,7.0,25.0,7.0,0.0,18.0,,100.0 -2311075,2022-03-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2311076,2022-03-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,85.0,113.0,85.0,0.0,28.0,,100.0 -2311077,2022-03-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,391,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2311078,2022-03-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2311079,2022-03-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2311080,2022-03-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,39.0,40.0,38.0,1.0,1.0,,97.44 -2311081,2022-03-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2311082,2022-03-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311083,2022-03-23,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,24.0,30.0,22.0,2.0,6.0,,91.67 -2311084,2022-03-23,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2311085,2022-03-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,83.0,83.0,79.0,4.0,0.0,,95.18 -2311086,2022-03-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2311087,2022-03-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2311088,2022-03-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2311089,2022-03-23,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2311090,2022-03-23,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2311091,2022-03-23,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2311092,2022-03-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,161,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2311093,2022-03-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2311094,2022-03-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2311095,2022-03-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2311096,2022-03-23,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,43,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2311097,2022-03-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2311098,2022-03-23,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2311099,2022-03-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311100,2022-03-23,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2311101,2022-03-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,12.0,30.0,1.0,11.0,18.0,,8.33 -2311102,2022-03-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,62.0,30.0,6.0,56.0,0.0,,9.68 -2311103,2022-03-23,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2311104,2022-03-23,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2311105,2022-03-23,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311106,2022-03-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2311107,2022-03-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2311108,2022-03-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2311109,2022-03-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2311110,2022-03-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311111,2022-03-23,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311112,2022-03-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,16,Bed Based Capacity,16.0,19.0,16.0,0.0,3.0,,,,,,100.0, -2311113,2022-03-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,15.0,27.0,12.0,3.0,12.0,,,,,,80.0, -2311114,2022-03-23,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2311115,2022-03-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2311116,2022-03-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2311117,2022-03-23,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2311118,2022-03-23,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,34.0,40.0,34.0,0.0,6.0,,100.0 -2311119,2022-03-23,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2311120,2022-03-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2311121,2022-03-23,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2311122,2022-03-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311123,2022-03-23,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2311124,2022-03-23,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311125,2022-03-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311126,2022-03-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,231.0,245.0,224.0,7.0,14.0,,96.97 -2311127,2022-03-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2311128,2022-03-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2311129,2022-03-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,48.0,52.0,48.0,0.0,4.0,,100.0 -2311130,2022-03-23,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2311131,2022-03-23,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2311132,2022-03-23,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2311133,2022-03-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2311134,2022-03-23,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311135,2022-03-23,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2311136,2022-03-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311137,2022-03-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2311138,2022-03-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2311139,2022-03-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311140,2022-03-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2311141,2022-03-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2311142,2022-03-23,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2311143,2022-03-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311144,2022-03-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311145,2022-03-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2311146,2022-03-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311147,2022-03-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311148,2022-03-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2311149,2022-03-23,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311150,2022-03-23,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2311151,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2311152,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2311153,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311154,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2311155,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2311156,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,222.0,235.0,222.0,0.0,13.0,,100.0 -2311157,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2311158,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2311159,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,32,Bed Based Capacity,32.0,71.0,32.0,0.0,39.0,,,,,,100.0, -2311160,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,56,Bed Based Capacity,56.0,184.0,56.0,0.0,128.0,,,,,,100.0, -2311161,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2311162,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2311163,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2311164,2022-03-23,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2311165,2022-03-23,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2311166,2022-03-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2311167,2022-03-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311168,2022-03-23,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311169,2022-03-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2311170,2022-03-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2311171,2022-03-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2311172,2022-03-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2311173,2022-03-23,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311174,2022-03-23,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311175,2022-03-23,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311176,2022-03-23,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311177,2022-03-23,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2311178,2022-03-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311179,2022-03-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2311180,2022-03-23,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2311181,2022-03-23,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2311182,2022-03-23,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2311183,2022-03-23,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,66.0,75.0,65.0,1.0,9.0,,98.48 -2311184,2022-03-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2311185,2022-03-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2311186,2022-03-23,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,53.0,48.0,1.0,4.0,,,,,,97.96, -2311187,2022-03-23,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2311188,2022-03-23,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311189,2022-03-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2311190,2022-03-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2311191,2022-03-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2311192,2022-03-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2311193,2022-03-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2311194,2022-03-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2311195,2022-03-23,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311196,2022-03-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2311197,2022-03-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2311198,2022-03-23,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311199,2022-03-23,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2311200,2022-03-23,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311201,2022-03-23,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2311202,2022-03-23,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311203,2022-03-23,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2311204,2022-03-23,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2311205,2022-03-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2311206,2022-03-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2311207,2022-03-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311208,2022-03-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311209,2022-03-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,23.0,23.0,21.0,2.0,0.0,,,,,,91.3, -2311210,2022-03-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2311211,2022-03-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2311212,2022-03-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311213,2022-03-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,183,Room Based Capacity,,,,,,46.0,80.0,46.0,0.0,34.0,,100.0 -2311214,2022-03-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,14,Room Based Capacity,,,,,,8.0,25.0,8.0,0.0,17.0,,100.0 -2311215,2022-03-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2311216,2022-03-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2311217,2022-03-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,392,Room Based Capacity,,,,,,119.0,107.0,119.0,0.0,0.0,,100.0 -2311218,2022-03-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2311219,2022-03-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2311220,2022-03-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2311221,2022-03-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2311222,2022-03-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311223,2022-03-24,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,24.0,30.0,22.0,2.0,6.0,,91.67 -2311224,2022-03-24,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2311225,2022-03-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,83.0,83.0,78.0,5.0,0.0,,93.98 -2311226,2022-03-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2311227,2022-03-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2311228,2022-03-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2311229,2022-03-24,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2311230,2022-03-24,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,71.0,86.0,70.0,1.0,15.0,,98.59 -2311231,2022-03-24,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2311232,2022-03-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,163,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2311233,2022-03-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2311234,2022-03-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2311235,2022-03-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2311236,2022-03-24,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2311237,2022-03-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2311238,2022-03-24,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2311239,2022-03-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311240,2022-03-24,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,37.0,37.0,35.0,2.0,0.0,,94.59 -2311241,2022-03-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,12.0,30.0,1.0,11.0,18.0,,8.33 -2311242,2022-03-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,62.0,30.0,6.0,56.0,0.0,,9.68 -2311243,2022-03-24,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2311244,2022-03-24,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,90.0,91.0,89.0,1.0,1.0,,,,,,98.89, -2311245,2022-03-24,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311246,2022-03-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2311247,2022-03-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2311248,2022-03-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2311249,2022-03-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2311250,2022-03-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311251,2022-03-24,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311252,2022-03-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,12,Bed Based Capacity,16.0,19.0,12.0,4.0,3.0,,,,,,75.0, -2311253,2022-03-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,15.0,27.0,12.0,3.0,12.0,,,,,,80.0, -2311254,2022-03-24,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2311255,2022-03-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2311256,2022-03-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2311257,2022-03-24,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2311258,2022-03-24,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,34.0,40.0,34.0,0.0,6.0,,100.0 -2311259,2022-03-24,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2311260,2022-03-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2311261,2022-03-24,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2311262,2022-03-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311263,2022-03-24,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2311264,2022-03-24,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311265,2022-03-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311266,2022-03-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,230.0,245.0,225.0,5.0,15.0,,97.83 -2311267,2022-03-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2311268,2022-03-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2311269,2022-03-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2311270,2022-03-24,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2311271,2022-03-24,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2311272,2022-03-24,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311273,2022-03-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2311274,2022-03-24,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311275,2022-03-24,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2311276,2022-03-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311277,2022-03-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2311278,2022-03-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2311279,2022-03-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311280,2022-03-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311281,2022-03-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,278,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2311282,2022-03-24,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2311283,2022-03-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311284,2022-03-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311285,2022-03-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2311286,2022-03-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311287,2022-03-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311288,2022-03-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2311289,2022-03-24,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311290,2022-03-24,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2311291,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,60,Bed Based Capacity,60.0,70.0,60.0,0.0,10.0,,,,,,100.0, -2311292,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311293,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311294,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2311295,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2311296,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,222.0,235.0,222.0,0.0,13.0,,100.0 -2311297,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,311,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2311298,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2311299,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,27,Bed Based Capacity,27.0,71.0,27.0,0.0,44.0,,,,,,100.0, -2311300,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,51,Bed Based Capacity,52.0,184.0,51.0,1.0,132.0,,,,,,98.08, -2311301,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2311302,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2311303,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2311304,2022-03-24,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2311305,2022-03-24,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2311306,2022-03-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2311307,2022-03-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311308,2022-03-24,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311309,2022-03-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2311310,2022-03-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2311311,2022-03-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,9.0,9.0,5.0,4.0,0.0,,,,,,55.56, -2311312,2022-03-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2311313,2022-03-24,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311314,2022-03-24,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311315,2022-03-24,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311316,2022-03-24,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311317,2022-03-24,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2311318,2022-03-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311319,2022-03-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2311320,2022-03-24,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2311321,2022-03-24,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2311322,2022-03-24,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2311323,2022-03-24,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,66.0,75.0,65.0,1.0,9.0,,98.48 -2311324,2022-03-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2311325,2022-03-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2311326,2022-03-24,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311327,2022-03-24,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2311328,2022-03-24,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311329,2022-03-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2311330,2022-03-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2311331,2022-03-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2311332,2022-03-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2311333,2022-03-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2311334,2022-03-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2311335,2022-03-24,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311336,2022-03-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2311337,2022-03-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2311338,2022-03-24,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311339,2022-03-24,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2311340,2022-03-24,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311341,2022-03-24,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2311342,2022-03-24,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311343,2022-03-24,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2311344,2022-03-24,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2311345,2022-03-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2311346,2022-03-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2311347,2022-03-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2311348,2022-03-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311349,2022-03-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311350,2022-03-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2311351,2022-03-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2311352,2022-03-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311353,2022-03-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,191,Room Based Capacity,,,,,,48.0,80.0,48.0,0.0,32.0,,100.0 -2311354,2022-03-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,14,Room Based Capacity,,,,,,8.0,25.0,8.0,0.0,17.0,,100.0 -2311355,2022-03-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2311356,2022-03-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2311357,2022-03-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2311358,2022-03-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2311359,2022-03-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2311360,2022-03-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2311361,2022-03-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2311362,2022-03-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311363,2022-03-25,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,23.0,30.0,21.0,2.0,7.0,,91.3 -2311364,2022-03-25,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2311365,2022-03-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2311366,2022-03-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2311367,2022-03-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2311368,2022-03-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2311369,2022-03-25,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2311370,2022-03-25,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,70.0,86.0,69.0,1.0,16.0,,98.57 -2311371,2022-03-25,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2311372,2022-03-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,163,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2311373,2022-03-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2311374,2022-03-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2311375,2022-03-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2311376,2022-03-25,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2311377,2022-03-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311378,2022-03-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2311379,2022-03-25,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2311380,2022-03-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311381,2022-03-25,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2311382,2022-03-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,12.0,30.0,1.0,11.0,18.0,,8.33 -2311383,2022-03-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,62.0,30.0,6.0,56.0,0.0,,9.68 -2311384,2022-03-25,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2311385,2022-03-25,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,90.0,91.0,89.0,1.0,1.0,,,,,,98.89, -2311386,2022-03-25,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311387,2022-03-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2311388,2022-03-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2311389,2022-03-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2311390,2022-03-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2311391,2022-03-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2311392,2022-03-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311393,2022-03-25,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311394,2022-03-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,16.0,19.0,15.0,1.0,3.0,,,,,,93.75, -2311395,2022-03-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,15.0,27.0,12.0,3.0,12.0,,,,,,80.0, -2311396,2022-03-25,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2311397,2022-03-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2311398,2022-03-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2311399,2022-03-25,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2311400,2022-03-25,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,40.0,33.0,0.0,7.0,,100.0 -2311401,2022-03-25,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2311402,2022-03-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2311403,2022-03-25,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2311404,2022-03-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311405,2022-03-25,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2311406,2022-03-25,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311407,2022-03-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311408,2022-03-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,230.0,245.0,224.0,6.0,15.0,,97.39 -2311409,2022-03-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2311410,2022-03-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2311411,2022-03-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2311412,2022-03-25,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2311413,2022-03-25,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2311414,2022-03-25,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311415,2022-03-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2311416,2022-03-25,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311417,2022-03-25,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2311418,2022-03-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311419,2022-03-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2311420,2022-03-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2311421,2022-03-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311422,2022-03-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311423,2022-03-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,278,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2311424,2022-03-25,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2311425,2022-03-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311426,2022-03-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311427,2022-03-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2311428,2022-03-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,27.0,24.0,1.0,2.0,,,,,,96.0, -2311429,2022-03-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311430,2022-03-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2311431,2022-03-25,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311432,2022-03-25,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2311433,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,59.0,70.0,58.0,1.0,11.0,,,,,,98.31, -2311434,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311435,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311436,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,51.0,55.0,49.0,2.0,4.0,,,,,,96.08, -2311437,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2311438,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2311439,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,312,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2311440,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2311441,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,29,Bed Based Capacity,29.0,71.0,29.0,0.0,42.0,,,,,,100.0, -2311442,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,42,Bed Based Capacity,43.0,184.0,42.0,1.0,141.0,,,,,,97.67, -2311443,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2311444,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2311445,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,35.0,34.0,1.0,0.0,,,,,,97.14, -2311446,2022-03-25,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2311447,2022-03-25,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2311448,2022-03-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2311449,2022-03-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311450,2022-03-25,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311451,2022-03-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311452,2022-03-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2311453,2022-03-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2311454,2022-03-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2311455,2022-03-25,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311456,2022-03-25,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311457,2022-03-25,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311458,2022-03-25,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311459,2022-03-25,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2311460,2022-03-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311461,2022-03-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2311462,2022-03-25,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2311463,2022-03-25,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2311464,2022-03-25,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2311465,2022-03-25,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,66.0,75.0,65.0,1.0,9.0,,98.48 -2311466,2022-03-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2311467,2022-03-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2311468,2022-03-25,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2311469,2022-03-25,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2311470,2022-03-25,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311471,2022-03-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2311472,2022-03-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2311473,2022-03-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2311474,2022-03-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2311475,2022-03-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2311476,2022-03-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2311477,2022-03-25,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311478,2022-03-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2311479,2022-03-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2311480,2022-03-25,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311481,2022-03-25,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,38.0,34.0,0.0,4.0,,,,,,100.0, -2311482,2022-03-25,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311483,2022-03-25,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2311484,2022-03-25,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311485,2022-03-25,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2311486,2022-03-25,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2311487,2022-03-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2311488,2022-03-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2311489,2022-03-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2311490,2022-03-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2311491,2022-03-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311492,2022-03-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2311493,2022-03-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2311494,2022-03-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311495,2022-03-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,194,Room Based Capacity,,,,,,49.0,80.0,49.0,0.0,31.0,,100.0 -2311496,2022-03-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,14,Room Based Capacity,,,,,,8.0,25.0,8.0,0.0,17.0,,100.0 -2311497,2022-03-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2311498,2022-03-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,86.0,113.0,85.0,1.0,27.0,,98.84 -2311499,2022-03-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2311500,2022-03-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2311501,2022-03-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2311502,2022-03-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2311503,2022-03-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2311504,2022-03-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311505,2022-03-26,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,23.0,30.0,21.0,2.0,7.0,,91.3 -2311506,2022-03-26,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2311507,2022-03-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2311508,2022-03-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2311509,2022-03-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,14.0,12.0,0.0,2.0,,100.0 -2311510,2022-03-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2311511,2022-03-26,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2311512,2022-03-26,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2311513,2022-03-26,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2311514,2022-03-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,163,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2311515,2022-03-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,16232,Family Residence - Main Site - Winter Program,Families,Emergency,Shelter,COVID-19 Response,1,Bed Based Capacity,2.0,8.0,1.0,1.0,6.0,,,,,,50.0, -2311516,2022-03-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2311517,2022-03-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2311518,2022-03-26,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,20.0,20.0,19.0,1.0,0.0,,95.0 -2311519,2022-03-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311520,2022-03-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2311521,2022-03-26,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2311522,2022-03-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311523,2022-03-26,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,37.0,35.0,1.0,1.0,,97.22 -2311524,2022-03-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,12.0,30.0,1.0,11.0,18.0,,8.33 -2311525,2022-03-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,62.0,30.0,4.0,58.0,0.0,,6.45 -2311526,2022-03-26,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2311527,2022-03-26,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,90.0,91.0,89.0,1.0,1.0,,,,,,98.89, -2311528,2022-03-26,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311529,2022-03-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2311530,2022-03-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311531,2022-03-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2311532,2022-03-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2311533,2022-03-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2311534,2022-03-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311535,2022-03-26,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311536,2022-03-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,12,Bed Based Capacity,16.0,19.0,12.0,4.0,3.0,,,,,,75.0, -2311537,2022-03-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,15.0,27.0,12.0,3.0,12.0,,,,,,80.0, -2311538,2022-03-26,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2311539,2022-03-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2311540,2022-03-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,73.0,74.0,72.0,1.0,1.0,,,,,,98.63, -2311541,2022-03-26,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2311542,2022-03-26,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,40.0,33.0,0.0,7.0,,100.0 -2311543,2022-03-26,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2311544,2022-03-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2311545,2022-03-26,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2311546,2022-03-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311547,2022-03-26,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2311548,2022-03-26,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311549,2022-03-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311550,2022-03-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,230.0,245.0,224.0,6.0,15.0,,97.39 -2311551,2022-03-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2311552,2022-03-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2311553,2022-03-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,48.0,1.0,3.0,,97.96 -2311554,2022-03-26,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2311555,2022-03-26,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2311556,2022-03-26,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311557,2022-03-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2311558,2022-03-26,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311559,2022-03-26,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2311560,2022-03-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311561,2022-03-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2311562,2022-03-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2311563,2022-03-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311564,2022-03-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311565,2022-03-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,278,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2311566,2022-03-26,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2311567,2022-03-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311568,2022-03-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311569,2022-03-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2311570,2022-03-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2311571,2022-03-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311572,2022-03-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2311573,2022-03-26,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311574,2022-03-26,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2311575,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2311576,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311577,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311578,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,55.0,50.0,1.0,4.0,,,,,,98.04, -2311579,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2311580,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2311581,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,310,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2311582,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2311583,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,29,Bed Based Capacity,29.0,71.0,29.0,0.0,42.0,,,,,,100.0, -2311584,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,42,Bed Based Capacity,42.0,184.0,42.0,0.0,142.0,,,,,,100.0, -2311585,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2311586,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,128,Bed Based Capacity,128.0,130.0,128.0,0.0,2.0,,,,,,100.0, -2311587,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2311588,2022-03-26,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,51.0,49.0,1.0,1.0,,,,,,98.0, -2311589,2022-03-26,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2311590,2022-03-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2311591,2022-03-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311592,2022-03-26,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2311593,2022-03-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311594,2022-03-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2311595,2022-03-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2311596,2022-03-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2311597,2022-03-26,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311598,2022-03-26,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311599,2022-03-26,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311600,2022-03-26,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311601,2022-03-26,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2311602,2022-03-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311603,2022-03-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2311604,2022-03-26,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2311605,2022-03-26,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2311606,2022-03-26,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2311607,2022-03-26,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,66.0,75.0,65.0,1.0,9.0,,98.48 -2311608,2022-03-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2311609,2022-03-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2311610,2022-03-26,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2311611,2022-03-26,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2311612,2022-03-26,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311613,2022-03-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2311614,2022-03-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2311615,2022-03-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2311616,2022-03-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2311617,2022-03-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2311618,2022-03-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2311619,2022-03-26,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311620,2022-03-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2311621,2022-03-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2311622,2022-03-26,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311623,2022-03-26,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,38.0,34.0,0.0,4.0,,,,,,100.0, -2311624,2022-03-26,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311625,2022-03-26,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2311626,2022-03-26,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311627,2022-03-26,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2311628,2022-03-26,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2311629,2022-03-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2311630,2022-03-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311631,2022-03-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2311632,2022-03-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2311633,2022-03-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311634,2022-03-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2311635,2022-03-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2311636,2022-03-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311637,2022-03-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,195,Room Based Capacity,,,,,,49.0,80.0,49.0,0.0,31.0,,100.0 -2311638,2022-03-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,14,Room Based Capacity,,,,,,8.0,25.0,8.0,0.0,17.0,,100.0 -2311639,2022-03-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,8.0,7.0,1.0,0.0,,,,,,87.5, -2311640,2022-03-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2311641,2022-03-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2311642,2022-03-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2311643,2022-03-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2311644,2022-03-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2311645,2022-03-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2311646,2022-03-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311647,2022-03-27,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,23.0,30.0,21.0,2.0,7.0,,91.3 -2311648,2022-03-27,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2311649,2022-03-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2311650,2022-03-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2311651,2022-03-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2311652,2022-03-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2311653,2022-03-27,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2311654,2022-03-27,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2311655,2022-03-27,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2311656,2022-03-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,163,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2311657,2022-03-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2311658,2022-03-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2311659,2022-03-27,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2311660,2022-03-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311661,2022-03-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2311662,2022-03-27,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2311663,2022-03-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311664,2022-03-27,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,37.0,35.0,1.0,1.0,,97.22 -2311665,2022-03-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,12.0,30.0,1.0,11.0,18.0,,8.33 -2311666,2022-03-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,62.0,30.0,1.0,61.0,0.0,,1.61 -2311667,2022-03-27,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2311668,2022-03-27,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,90.0,91.0,89.0,1.0,1.0,,,,,,98.89, -2311669,2022-03-27,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311670,2022-03-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2311671,2022-03-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311672,2022-03-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2311673,2022-03-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2311674,2022-03-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2311675,2022-03-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2311676,2022-03-27,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311677,2022-03-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,9,Bed Based Capacity,16.0,19.0,9.0,7.0,3.0,,,,,,56.25, -2311678,2022-03-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,27.0,13.0,0.0,14.0,,,,,,100.0, -2311679,2022-03-27,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,65.0,71.0,63.0,2.0,6.0,,96.92 -2311680,2022-03-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2311681,2022-03-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,73.0,74.0,72.0,1.0,1.0,,,,,,98.63, -2311682,2022-03-27,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2311683,2022-03-27,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,40.0,33.0,0.0,7.0,,100.0 -2311684,2022-03-27,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2311685,2022-03-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2311686,2022-03-27,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,42.0,41.0,0.0,1.0,,100.0 -2311687,2022-03-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,53.0,48.0,1.0,4.0,,,,,,97.96, -2311688,2022-03-27,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2311689,2022-03-27,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311690,2022-03-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311691,2022-03-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,230.0,245.0,222.0,8.0,15.0,,96.52 -2311692,2022-03-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2311693,2022-03-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2311694,2022-03-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,48.0,1.0,3.0,,97.96 -2311695,2022-03-27,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2311696,2022-03-27,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2311697,2022-03-27,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311698,2022-03-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2311699,2022-03-27,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311700,2022-03-27,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2311701,2022-03-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311702,2022-03-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2311703,2022-03-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2311704,2022-03-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311705,2022-03-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311706,2022-03-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,278,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2311707,2022-03-27,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2311708,2022-03-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311709,2022-03-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311710,2022-03-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2311711,2022-03-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2311712,2022-03-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311713,2022-03-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2311714,2022-03-27,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311715,2022-03-27,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2311716,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2311717,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2311718,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2311719,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,55.0,51.0,0.0,4.0,,,,,,100.0, -2311720,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2311721,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2311722,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2311723,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2311724,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,29,Bed Based Capacity,29.0,71.0,29.0,0.0,42.0,,,,,,100.0, -2311725,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,40,Bed Based Capacity,40.0,184.0,40.0,0.0,144.0,,,,,,100.0, -2311726,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2311727,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,128,Bed Based Capacity,128.0,130.0,128.0,0.0,2.0,,,,,,100.0, -2311728,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2311729,2022-03-27,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2311730,2022-03-27,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2311731,2022-03-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2311732,2022-03-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311733,2022-03-27,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311734,2022-03-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311735,2022-03-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2311736,2022-03-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2311737,2022-03-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2311738,2022-03-27,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311739,2022-03-27,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311740,2022-03-27,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311741,2022-03-27,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311742,2022-03-27,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2311743,2022-03-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311744,2022-03-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2311745,2022-03-27,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2311746,2022-03-27,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2311747,2022-03-27,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2311748,2022-03-27,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,66.0,75.0,65.0,1.0,9.0,,98.48 -2311749,2022-03-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2311750,2022-03-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2311751,2022-03-27,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311752,2022-03-27,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,74.0,73.0,73.0,1.0,0.0,,98.65 -2311753,2022-03-27,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311754,2022-03-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2311755,2022-03-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2311756,2022-03-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2311757,2022-03-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2311758,2022-03-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2311759,2022-03-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2311760,2022-03-27,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311761,2022-03-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2311762,2022-03-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2311763,2022-03-27,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311764,2022-03-27,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,38.0,34.0,0.0,4.0,,,,,,100.0, -2311765,2022-03-27,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311766,2022-03-27,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2311767,2022-03-27,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311768,2022-03-27,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2311769,2022-03-27,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2311770,2022-03-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2311771,2022-03-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311772,2022-03-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2311773,2022-03-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311774,2022-03-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2311775,2022-03-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2311776,2022-03-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2311777,2022-03-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311778,2022-03-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,195,Room Based Capacity,,,,,,49.0,80.0,49.0,0.0,31.0,,100.0 -2311779,2022-03-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,21,Room Based Capacity,,,,,,11.0,25.0,11.0,0.0,14.0,,100.0 -2311780,2022-03-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2311781,2022-03-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,87.0,113.0,87.0,0.0,26.0,,100.0 -2311782,2022-03-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2311783,2022-03-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2311784,2022-03-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2311785,2022-03-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2311786,2022-03-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2311787,2022-03-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311788,2022-03-28,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2311789,2022-03-28,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,218,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2311790,2022-03-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2311791,2022-03-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2311792,2022-03-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2311793,2022-03-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2311794,2022-03-28,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2311795,2022-03-28,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2311796,2022-03-28,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2311797,2022-03-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,163,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2311798,2022-03-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2311799,2022-03-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2311800,2022-03-28,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2311801,2022-03-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311802,2022-03-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2311803,2022-03-28,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2311804,2022-03-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311805,2022-03-28,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,34.0,1.0,2.0,,97.14 -2311806,2022-03-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,12.0,30.0,1.0,11.0,18.0,,8.33 -2311807,2022-03-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,62.0,30.0,4.0,58.0,0.0,,6.45 -2311808,2022-03-28,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2311809,2022-03-28,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,90.0,91.0,89.0,1.0,1.0,,,,,,98.89, -2311810,2022-03-28,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311811,2022-03-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2311812,2022-03-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311813,2022-03-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2311814,2022-03-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2311815,2022-03-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2311816,2022-03-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311817,2022-03-28,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311818,2022-03-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,16.0,19.0,15.0,1.0,3.0,,,,,,93.75, -2311819,2022-03-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,27.0,12.0,0.0,15.0,,,,,,100.0, -2311820,2022-03-28,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,62.0,71.0,62.0,0.0,9.0,,100.0 -2311821,2022-03-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2311822,2022-03-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2311823,2022-03-28,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2311824,2022-03-28,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2311825,2022-03-28,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2311826,2022-03-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2311827,2022-03-28,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2311828,2022-03-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311829,2022-03-28,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2311830,2022-03-28,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311831,2022-03-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311832,2022-03-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,230.0,245.0,224.0,6.0,15.0,,97.39 -2311833,2022-03-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2311834,2022-03-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2311835,2022-03-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,48.0,1.0,3.0,,97.96 -2311836,2022-03-28,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2311837,2022-03-28,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2311838,2022-03-28,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311839,2022-03-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2311840,2022-03-28,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311841,2022-03-28,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2311842,2022-03-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311843,2022-03-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311844,2022-03-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2311845,2022-03-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311846,2022-03-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311847,2022-03-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,278,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2311848,2022-03-28,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2311849,2022-03-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311850,2022-03-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311851,2022-03-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2311852,2022-03-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2311853,2022-03-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311854,2022-03-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2311855,2022-03-28,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2311856,2022-03-28,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2311857,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,70.0,53.0,0.0,17.0,,,,,,100.0, -2311858,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2311859,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,31.0,28.0,0.0,3.0,,,,,,100.0, -2311860,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2311861,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2311862,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2311863,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2311864,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2311865,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,29,Bed Based Capacity,29.0,71.0,29.0,0.0,42.0,,,,,,100.0, -2311866,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,36,Bed Based Capacity,36.0,184.0,36.0,0.0,148.0,,,,,,100.0, -2311867,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311868,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2311869,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2311870,2022-03-28,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,51.0,48.0,1.0,2.0,,,,,,97.96, -2311871,2022-03-28,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2311872,2022-03-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,45.0,40.0,43.0,2.0,0.0,,95.56 -2311873,2022-03-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2311874,2022-03-28,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311875,2022-03-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311876,2022-03-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2311877,2022-03-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2311878,2022-03-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2311879,2022-03-28,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311880,2022-03-28,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311881,2022-03-28,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311882,2022-03-28,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2311883,2022-03-28,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2311884,2022-03-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311885,2022-03-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2311886,2022-03-28,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2311887,2022-03-28,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2311888,2022-03-28,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2311889,2022-03-28,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2311890,2022-03-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2311891,2022-03-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2311892,2022-03-28,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311893,2022-03-28,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2311894,2022-03-28,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2311895,2022-03-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2311896,2022-03-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2311897,2022-03-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2311898,2022-03-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2311899,2022-03-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2311900,2022-03-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2311901,2022-03-28,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311902,2022-03-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2311903,2022-03-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2311904,2022-03-28,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311905,2022-03-28,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,38.0,34.0,0.0,4.0,,,,,,100.0, -2311906,2022-03-28,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311907,2022-03-28,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2311908,2022-03-28,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2311909,2022-03-28,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2311910,2022-03-28,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2311911,2022-03-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2311912,2022-03-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2311913,2022-03-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311914,2022-03-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2311915,2022-03-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311916,2022-03-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2311917,2022-03-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2311918,2022-03-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2311919,2022-03-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,208,Room Based Capacity,,,,,,53.0,80.0,52.0,1.0,27.0,,98.11 -2311920,2022-03-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,26,Room Based Capacity,,,,,,14.0,25.0,14.0,0.0,11.0,,100.0 -2311921,2022-03-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2311922,2022-03-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2311923,2022-03-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2311924,2022-03-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2311925,2022-03-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2311926,2022-03-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2311927,2022-03-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2311928,2022-03-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2311929,2022-03-29,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2311930,2022-03-29,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2311931,2022-03-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,83.0,83.0,82.0,1.0,0.0,,98.8 -2311932,2022-03-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2311933,2022-03-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,25,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2311934,2022-03-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2311935,2022-03-29,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2311936,2022-03-29,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2311937,2022-03-29,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2311938,2022-03-29,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,163,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2311939,2022-03-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2311940,2022-03-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2311941,2022-03-29,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2311942,2022-03-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311943,2022-03-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2311944,2022-03-29,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2311945,2022-03-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311946,2022-03-29,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2311947,2022-03-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,62.0,30.0,4.0,58.0,0.0,,6.45 -2311948,2022-03-29,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2311949,2022-03-29,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,91.0,89.0,2.0,0.0,,,,,,97.8, -2311950,2022-03-29,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2311951,2022-03-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2311952,2022-03-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311953,2022-03-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2311954,2022-03-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2311955,2022-03-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2311956,2022-03-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2311957,2022-03-29,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2311958,2022-03-29,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2311959,2022-03-29,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2311960,2022-03-29,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,63.0,71.0,63.0,0.0,8.0,,100.0 -2311961,2022-03-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2311962,2022-03-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2311963,2022-03-29,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2311964,2022-03-29,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2311965,2022-03-29,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2311966,2022-03-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2311967,2022-03-29,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2311968,2022-03-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2311969,2022-03-29,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2311970,2022-03-29,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2311971,2022-03-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2311972,2022-03-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,230.0,245.0,225.0,5.0,15.0,,97.83 -2311973,2022-03-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2311974,2022-03-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2311975,2022-03-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2311976,2022-03-29,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2311977,2022-03-29,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,50.0,44.0,6.0,0.0,,,,,,88.0, -2311978,2022-03-29,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2311979,2022-03-29,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2311980,2022-03-29,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2311981,2022-03-29,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2311982,2022-03-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2311983,2022-03-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2311984,2022-03-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2311985,2022-03-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2311986,2022-03-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2311987,2022-03-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,279,Room Based Capacity,,,,,,269.0,271.0,269.0,0.0,2.0,,100.0 -2311988,2022-03-29,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2311989,2022-03-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311990,2022-03-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2311991,2022-03-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2311992,2022-03-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2311993,2022-03-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2311994,2022-03-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2311995,2022-03-29,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,47.0,50.0,45.0,2.0,3.0,,,,,,95.74, -2311996,2022-03-29,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,93.0,94.0,92.0,1.0,1.0,,98.92 -2311997,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,70.0,47.0,1.0,22.0,,,,,,97.92, -2311998,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2311999,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,31.0,27.0,0.0,4.0,,,,,,100.0, -2312000,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2312001,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312002,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2312003,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2312004,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2312005,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,25,Bed Based Capacity,25.0,71.0,25.0,0.0,46.0,,,,,,100.0, -2312006,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,34,Bed Based Capacity,34.0,184.0,34.0,0.0,150.0,,,,,,100.0, -2312007,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312008,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2312009,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2312010,2022-03-29,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2312011,2022-03-29,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312012,2022-03-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2312013,2022-03-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312014,2022-03-29,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312015,2022-03-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312016,2022-03-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2312017,2022-03-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312018,2022-03-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312019,2022-03-29,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312020,2022-03-29,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312021,2022-03-29,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312022,2022-03-29,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312023,2022-03-29,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312024,2022-03-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312025,2022-03-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2312026,2022-03-29,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312027,2022-03-29,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2312028,2022-03-29,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312029,2022-03-29,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2312030,2022-03-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312031,2022-03-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2312032,2022-03-29,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312033,2022-03-29,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2312034,2022-03-29,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2312035,2022-03-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2312036,2022-03-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2312037,2022-03-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2312038,2022-03-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2312039,2022-03-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2312040,2022-03-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2312041,2022-03-29,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2312042,2022-03-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2312043,2022-03-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2312044,2022-03-29,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312045,2022-03-29,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,38.0,38.0,0.0,0.0,,,,,,100.0, -2312046,2022-03-29,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312047,2022-03-29,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2312048,2022-03-29,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2312049,2022-03-29,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312050,2022-03-29,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2312051,2022-03-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312052,2022-03-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312053,2022-03-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312054,2022-03-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312055,2022-03-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312056,2022-03-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2312057,2022-03-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2312058,2022-03-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312059,2022-03-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,217,Room Based Capacity,,,,,,54.0,80.0,54.0,0.0,26.0,,100.0 -2312060,2022-03-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,29,Room Based Capacity,,,,,,15.0,25.0,15.0,0.0,10.0,,100.0 -2312061,2022-03-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2312062,2022-03-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2312063,2022-03-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2312064,2022-03-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2312065,2022-03-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2312066,2022-03-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2312067,2022-03-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2312068,2022-03-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312069,2022-03-30,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2312070,2022-03-30,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2312071,2022-03-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,83.0,83.0,81.0,2.0,0.0,,97.59 -2312072,2022-03-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2312073,2022-03-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2312074,2022-03-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2312075,2022-03-30,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2312076,2022-03-30,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2312077,2022-03-30,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2312078,2022-03-30,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,163,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2312079,2022-03-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2312080,2022-03-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2312081,2022-03-30,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2312082,2022-03-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,1.0,5.0,1.0,0.0,4.0,,,,,,100.0, -2312083,2022-03-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2312084,2022-03-30,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2312085,2022-03-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312086,2022-03-30,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,36.0,37.0,35.0,1.0,1.0,,97.22 -2312087,2022-03-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,62.0,30.0,4.0,58.0,0.0,,6.45 -2312088,2022-03-30,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2312089,2022-03-30,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2312090,2022-03-30,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312091,2022-03-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2312092,2022-03-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2312093,2022-03-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2312094,2022-03-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2312095,2022-03-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312096,2022-03-30,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2312097,2022-03-30,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2312098,2022-03-30,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2312099,2022-03-30,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,63.0,71.0,63.0,0.0,8.0,,100.0 -2312100,2022-03-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,9.0,9.0,4.0,5.0,0.0,,,,,,44.44, -2312101,2022-03-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2312102,2022-03-30,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2312103,2022-03-30,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2312104,2022-03-30,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2312105,2022-03-30,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312106,2022-03-30,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312107,2022-03-30,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2312108,2022-03-30,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312109,2022-03-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312110,2022-03-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,230.0,245.0,224.0,6.0,15.0,,97.39 -2312111,2022-03-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2312112,2022-03-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2312113,2022-03-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,49.0,52.0,49.0,0.0,3.0,,100.0 -2312114,2022-03-30,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2312115,2022-03-30,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,50.0,44.0,6.0,0.0,,,,,,88.0, -2312116,2022-03-30,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312117,2022-03-30,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2312118,2022-03-30,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2312119,2022-03-30,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2312120,2022-03-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312121,2022-03-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312122,2022-03-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2312123,2022-03-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312124,2022-03-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2312125,2022-03-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2312126,2022-03-30,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2312127,2022-03-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312128,2022-03-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2312129,2022-03-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2312130,2022-03-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2312131,2022-03-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312132,2022-03-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2312133,2022-03-30,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312134,2022-03-30,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2312135,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,70.0,46.0,4.0,20.0,,,,,,92.0, -2312136,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312137,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2312138,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2312139,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312140,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,216.0,235.0,215.0,1.0,19.0,,99.54 -2312141,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2312142,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2312143,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,22,Bed Based Capacity,22.0,71.0,22.0,0.0,49.0,,,,,,100.0, -2312144,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,30,Bed Based Capacity,30.0,184.0,30.0,0.0,154.0,,,,,,100.0, -2312145,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312146,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2312147,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2312148,2022-03-30,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2312149,2022-03-30,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312150,2022-03-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2312151,2022-03-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312152,2022-03-30,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312153,2022-03-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312154,2022-03-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2312155,2022-03-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312156,2022-03-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312157,2022-03-30,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312158,2022-03-30,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312159,2022-03-30,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312160,2022-03-30,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312161,2022-03-30,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312162,2022-03-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312163,2022-03-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2312164,2022-03-30,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312165,2022-03-30,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2312166,2022-03-30,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312167,2022-03-30,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2312168,2022-03-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312169,2022-03-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2312170,2022-03-30,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312171,2022-03-30,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2312172,2022-03-30,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2312173,2022-03-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2312174,2022-03-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2312175,2022-03-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2312176,2022-03-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2312177,2022-03-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2312178,2022-03-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2312179,2022-03-30,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312180,2022-03-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2312181,2022-03-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2312182,2022-03-30,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312183,2022-03-30,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,38.0,38.0,0.0,0.0,,,,,,100.0, -2312184,2022-03-30,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312185,2022-03-30,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2312186,2022-03-30,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2312187,2022-03-30,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312188,2022-03-30,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2312189,2022-03-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312190,2022-03-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312191,2022-03-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312192,2022-03-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2312193,2022-03-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312194,2022-03-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2312195,2022-03-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2312196,2022-03-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312197,2022-03-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,217,Room Based Capacity,,,,,,54.0,80.0,54.0,0.0,26.0,,100.0 -2312198,2022-03-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,38,Room Based Capacity,,,,,,20.0,25.0,20.0,0.0,5.0,,100.0 -2312199,2022-03-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2312200,2022-03-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2312201,2022-03-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,118.0,107.0,118.0,0.0,0.0,,100.0 -2312202,2022-03-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2312203,2022-03-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2312204,2022-03-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2312205,2022-03-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2312206,2022-03-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312207,2022-03-31,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2312208,2022-03-31,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2312209,2022-03-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2312210,2022-03-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2312211,2022-03-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2312212,2022-03-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2312213,2022-03-31,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2312214,2022-03-31,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2312215,2022-03-31,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2312216,2022-03-31,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,157,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2312217,2022-03-31,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,25.0,40.0,25.0,0.0,15.0,,100.0 -2312218,2022-03-31,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2312219,2022-03-31,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2312220,2022-03-31,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2312221,2022-03-31,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2312222,2022-03-31,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312223,2022-03-31,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,36.0,37.0,35.0,1.0,1.0,,97.22 -2312224,2022-03-31,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,62.0,30.0,4.0,58.0,0.0,,6.45 -2312225,2022-03-31,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2312226,2022-03-31,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,91.0,91.0,91.0,0.0,0.0,,,,,,100.0, -2312227,2022-03-31,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312228,2022-03-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2312229,2022-03-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2312230,2022-03-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2312231,2022-03-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2312232,2022-03-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312233,2022-03-31,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2312234,2022-03-31,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,15.0,19.0,15.0,0.0,4.0,,,,,,100.0, -2312235,2022-03-31,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2312236,2022-03-31,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,63.0,71.0,62.0,1.0,8.0,,98.41 -2312237,2022-03-31,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,9.0,9.0,4.0,5.0,0.0,,,,,,44.44, -2312238,2022-03-31,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2312239,2022-03-31,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2312240,2022-03-31,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2312241,2022-03-31,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2312242,2022-03-31,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312243,2022-03-31,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,53.0,48.0,1.0,4.0,,,,,,97.96, -2312244,2022-03-31,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2312245,2022-03-31,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312246,2022-03-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312247,2022-03-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,230.0,245.0,221.0,9.0,15.0,,96.09 -2312248,2022-03-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2312249,2022-03-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2312250,2022-03-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2312251,2022-03-31,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2312252,2022-03-31,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,50.0,44.0,6.0,0.0,,,,,,88.0, -2312253,2022-03-31,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2312254,2022-03-31,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2312255,2022-03-31,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2312256,2022-03-31,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2312257,2022-03-31,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312258,2022-03-31,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2312259,2022-03-31,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2312260,2022-03-31,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312261,2022-03-31,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2312262,2022-03-31,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2312263,2022-03-31,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2312264,2022-03-31,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312265,2022-03-31,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2312266,2022-03-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2312267,2022-03-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2312268,2022-03-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312269,2022-03-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2312270,2022-03-31,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312271,2022-03-31,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2312272,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,70.0,46.0,4.0,20.0,,,,,,92.0, -2312273,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312274,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312275,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2312276,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312277,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2312278,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2312279,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2312280,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16131,Homes First Society - Better Living Centre - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,10,Bed Based Capacity,10.0,71.0,10.0,0.0,61.0,,,,,,100.0, -2312281,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,23,Bed Based Capacity,23.0,184.0,23.0,0.0,161.0,,,,,,100.0, -2312282,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312283,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,128,Bed Based Capacity,129.0,130.0,128.0,1.0,1.0,,,,,,99.22, -2312284,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,35.0,35.0,0.0,0.0,,,,,,100.0, -2312285,2022-03-31,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2312286,2022-03-31,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312287,2022-03-31,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2312288,2022-03-31,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312289,2022-03-31,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312290,2022-03-31,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312291,2022-03-31,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2312292,2022-03-31,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312293,2022-03-31,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312294,2022-03-31,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312295,2022-03-31,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312296,2022-03-31,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312297,2022-03-31,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312298,2022-03-31,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312299,2022-03-31,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312300,2022-03-31,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2312301,2022-03-31,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312302,2022-03-31,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2312303,2022-03-31,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312304,2022-03-31,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2312305,2022-03-31,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312306,2022-03-31,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2312307,2022-03-31,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312308,2022-03-31,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2312309,2022-03-31,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2312310,2022-03-31,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2312311,2022-03-31,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2312312,2022-03-31,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2312313,2022-03-31,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,78.0,76.0,1.0,1.0,,98.7 -2312314,2022-03-31,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2312315,2022-03-31,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2312316,2022-03-31,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312317,2022-03-31,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2312318,2022-03-31,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2312319,2022-03-31,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312320,2022-03-31,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,38.0,38.0,0.0,0.0,,,,,,100.0, -2312321,2022-03-31,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312322,2022-03-31,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2312323,2022-03-31,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312324,2022-03-31,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312325,2022-03-31,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2312326,2022-03-31,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312327,2022-03-31,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312328,2022-03-31,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312329,2022-03-31,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312330,2022-03-31,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312331,2022-03-31,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2312332,2022-03-31,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2312333,2022-03-31,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312334,2022-04-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,226,Room Based Capacity,,,,,,56.0,80.0,56.0,0.0,24.0,,100.0 -2312335,2022-04-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,44,Room Based Capacity,,,,,,22.0,25.0,22.0,0.0,3.0,,100.0 -2312336,2022-04-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2312337,2022-04-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2312338,2022-04-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,386,Room Based Capacity,,,,,,117.0,107.0,117.0,0.0,0.0,,100.0 -2312339,2022-04-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2312340,2022-04-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2312341,2022-04-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2312342,2022-04-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2312343,2022-04-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312344,2022-04-01,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,54,Room Based Capacity,,,,,,23.0,30.0,21.0,2.0,7.0,,91.3 -2312345,2022-04-01,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,216,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2312346,2022-04-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,83.0,83.0,81.0,2.0,0.0,,97.59 -2312347,2022-04-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,23,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2312348,2022-04-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2312349,2022-04-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2312350,2022-04-01,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2312351,2022-04-01,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2312352,2022-04-01,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2312353,2022-04-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,157,Room Based Capacity,,,,,,42.0,43.0,41.0,1.0,1.0,,97.62 -2312354,2022-04-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,68,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2312355,2022-04-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2312356,2022-04-01,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2312357,2022-04-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2312358,2022-04-01,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2312359,2022-04-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312360,2022-04-01,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2312361,2022-04-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,76.0,30.0,5.0,71.0,0.0,,6.58 -2312362,2022-04-01,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2312363,2022-04-01,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,91.0,91.0,91.0,0.0,0.0,,,,,,100.0, -2312364,2022-04-01,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312365,2022-04-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2312366,2022-04-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2312367,2022-04-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2312368,2022-04-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2312369,2022-04-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312370,2022-04-01,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2312371,2022-04-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,15,Bed Based Capacity,16.0,19.0,15.0,1.0,3.0,,,,,,93.75, -2312372,2022-04-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,27.0,12.0,0.0,15.0,,,,,,100.0, -2312373,2022-04-01,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,63.0,71.0,62.0,1.0,8.0,,98.41 -2312374,2022-04-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2312375,2022-04-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2312376,2022-04-01,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2312377,2022-04-01,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2312378,2022-04-01,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2312379,2022-04-01,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312380,2022-04-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312381,2022-04-01,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2312382,2022-04-01,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312383,2022-04-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312384,2022-04-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,229.0,245.0,221.0,8.0,16.0,,96.51 -2312385,2022-04-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2312386,2022-04-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2312387,2022-04-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2312388,2022-04-01,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2312389,2022-04-01,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,50.0,45.0,5.0,0.0,,,,,,90.0, -2312390,2022-04-01,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2312391,2022-04-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2312392,2022-04-01,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2312393,2022-04-01,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2312394,2022-04-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312395,2022-04-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2312396,2022-04-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312397,2022-04-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312398,2022-04-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2312399,2022-04-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2312400,2022-04-01,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2312401,2022-04-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312402,2022-04-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2312403,2022-04-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2312404,2022-04-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2312405,2022-04-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312406,2022-04-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2312407,2022-04-01,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312408,2022-04-01,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2312409,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2312410,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312411,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312412,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2312413,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312414,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2312415,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2312416,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2312417,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,17,Bed Based Capacity,17.0,184.0,17.0,0.0,167.0,,,,,,100.0, -2312418,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312419,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2312420,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,35.0,33.0,2.0,0.0,,,,,,94.29, -2312421,2022-04-01,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2312422,2022-04-01,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312423,2022-04-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2312424,2022-04-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312425,2022-04-01,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312426,2022-04-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312427,2022-04-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2312428,2022-04-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312429,2022-04-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312430,2022-04-01,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312431,2022-04-01,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312432,2022-04-01,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312433,2022-04-01,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312434,2022-04-01,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312435,2022-04-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312436,2022-04-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2312437,2022-04-01,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312438,2022-04-01,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2312439,2022-04-01,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312440,2022-04-01,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2312441,2022-04-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312442,2022-04-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2312443,2022-04-01,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,53.0,48.0,1.0,4.0,,,,,,97.96, -2312444,2022-04-01,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2312445,2022-04-01,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2312446,2022-04-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2312447,2022-04-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,221,Bed Based Capacity,225.0,225.0,221.0,4.0,0.0,,,,,,98.22, -2312448,2022-04-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2312449,2022-04-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,78.0,76.0,1.0,1.0,,98.7 -2312450,2022-04-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2312451,2022-04-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2312452,2022-04-01,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312453,2022-04-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2312454,2022-04-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2312455,2022-04-01,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312456,2022-04-01,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,38.0,38.0,0.0,0.0,,,,,,100.0, -2312457,2022-04-01,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312458,2022-04-01,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2312459,2022-04-01,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2312460,2022-04-01,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312461,2022-04-01,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2312462,2022-04-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312463,2022-04-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312464,2022-04-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312465,2022-04-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2312466,2022-04-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312467,2022-04-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2312468,2022-04-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2312469,2022-04-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312470,2022-04-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,232,Room Based Capacity,,,,,,58.0,80.0,58.0,0.0,22.0,,100.0 -2312471,2022-04-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,44,Room Based Capacity,,,,,,22.0,25.0,22.0,0.0,3.0,,100.0 -2312472,2022-04-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2312473,2022-04-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2312474,2022-04-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,386,Room Based Capacity,,,,,,117.0,107.0,117.0,0.0,0.0,,100.0 -2312475,2022-04-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2312476,2022-04-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2312477,2022-04-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2312478,2022-04-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2312479,2022-04-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312480,2022-04-02,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2312481,2022-04-02,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2312482,2022-04-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2312483,2022-04-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,23,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2312484,2022-04-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2312485,2022-04-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2312486,2022-04-02,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2312487,2022-04-02,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2312488,2022-04-02,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2312489,2022-04-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,40.0,43.0,39.0,1.0,3.0,,97.5 -2312490,2022-04-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,73,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2312491,2022-04-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2312492,2022-04-02,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2312493,2022-04-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,5.0,3.0,2.0,0.0,,,,,,60.0, -2312494,2022-04-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2312495,2022-04-02,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2312496,2022-04-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312497,2022-04-02,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2312498,2022-04-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,17,Room Based Capacity,,,,,,78.0,30.0,14.0,64.0,0.0,,17.95 -2312499,2022-04-02,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2312500,2022-04-02,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,91.0,91.0,91.0,0.0,0.0,,,,,,100.0, -2312501,2022-04-02,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312502,2022-04-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2312503,2022-04-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2312504,2022-04-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2312505,2022-04-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2312506,2022-04-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2312507,2022-04-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312508,2022-04-02,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2312509,2022-04-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,13,Bed Based Capacity,17.0,19.0,13.0,4.0,2.0,,,,,,76.47, -2312510,2022-04-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,27.0,8.0,4.0,15.0,,,,,,66.67, -2312511,2022-04-02,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,63.0,71.0,61.0,2.0,8.0,,96.83 -2312512,2022-04-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2312513,2022-04-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2312514,2022-04-02,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2312515,2022-04-02,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2312516,2022-04-02,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,21.0,19.0,1.0,1.0,,,,,,95.0, -2312517,2022-04-02,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312518,2022-04-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312519,2022-04-02,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2312520,2022-04-02,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312521,2022-04-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,47,Bed Based Capacity,49.0,50.0,47.0,2.0,1.0,,,,,,95.92, -2312522,2022-04-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,229.0,245.0,221.0,8.0,16.0,,96.51 -2312523,2022-04-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2312524,2022-04-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2312525,2022-04-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2312526,2022-04-02,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2312527,2022-04-02,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2312528,2022-04-02,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312529,2022-04-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2312530,2022-04-02,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2312531,2022-04-02,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2312532,2022-04-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312533,2022-04-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2312534,2022-04-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312535,2022-04-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312536,2022-04-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,54.0,54.0,51.0,3.0,0.0,,,,,,94.44, -2312537,2022-04-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2312538,2022-04-02,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2312539,2022-04-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312540,2022-04-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2312541,2022-04-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312542,2022-04-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2312543,2022-04-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312544,2022-04-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2312545,2022-04-02,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312546,2022-04-02,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2312547,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2312548,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2312549,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2312550,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2312551,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312552,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,218.0,235.0,218.0,0.0,17.0,,100.0 -2312553,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2312554,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,60.0,60.0,0.0,0.0,,,,,,100.0, -2312555,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,16,Bed Based Capacity,16.0,184.0,16.0,0.0,168.0,,,,,,100.0, -2312556,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312557,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2312558,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,35.0,33.0,2.0,0.0,,,,,,94.29, -2312559,2022-04-02,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2312560,2022-04-02,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312561,2022-04-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2312562,2022-04-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312563,2022-04-02,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2312564,2022-04-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312565,2022-04-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2312566,2022-04-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312567,2022-04-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312568,2022-04-02,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312569,2022-04-02,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312570,2022-04-02,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312571,2022-04-02,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312572,2022-04-02,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312573,2022-04-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312574,2022-04-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2312575,2022-04-02,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312576,2022-04-02,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2312577,2022-04-02,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312578,2022-04-02,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2312579,2022-04-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312580,2022-04-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2312581,2022-04-02,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312582,2022-04-02,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,73.0,74.0,0.0,0.0,,100.0 -2312583,2022-04-02,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2312584,2022-04-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2312585,2022-04-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2312586,2022-04-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2312587,2022-04-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2312588,2022-04-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2312589,2022-04-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2312590,2022-04-02,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312591,2022-04-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2312592,2022-04-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2312593,2022-04-02,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312594,2022-04-02,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,38.0,38.0,0.0,0.0,,,,,,100.0, -2312595,2022-04-02,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312596,2022-04-02,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2312597,2022-04-02,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312598,2022-04-02,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312599,2022-04-02,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2312600,2022-04-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312601,2022-04-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312602,2022-04-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312603,2022-04-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2312604,2022-04-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2312605,2022-04-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2312606,2022-04-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2312607,2022-04-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312608,2022-04-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,239,Room Based Capacity,,,,,,60.0,80.0,60.0,0.0,20.0,,100.0 -2312609,2022-04-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,44,Room Based Capacity,,,,,,22.0,25.0,22.0,0.0,3.0,,100.0 -2312610,2022-04-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2312611,2022-04-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,86.0,113.0,86.0,0.0,27.0,,100.0 -2312612,2022-04-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,386,Room Based Capacity,,,,,,117.0,107.0,117.0,0.0,0.0,,100.0 -2312613,2022-04-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2312614,2022-04-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2312615,2022-04-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2312616,2022-04-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2312617,2022-04-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312618,2022-04-03,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2312619,2022-04-03,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2312620,2022-04-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2312621,2022-04-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2312622,2022-04-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2312623,2022-04-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,74.0,77.0,73.0,1.0,3.0,,98.65 -2312624,2022-04-03,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2312625,2022-04-03,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2312626,2022-04-03,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2312627,2022-04-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2312628,2022-04-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,73,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2312629,2022-04-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2312630,2022-04-03,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2312631,2022-04-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312632,2022-04-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2312633,2022-04-03,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2312634,2022-04-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312635,2022-04-03,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2312636,2022-04-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,19,Room Based Capacity,,,,,,79.0,30.0,16.0,63.0,0.0,,20.25 -2312637,2022-04-03,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2312638,2022-04-03,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2312639,2022-04-03,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312640,2022-04-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2312641,2022-04-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312642,2022-04-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2312643,2022-04-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2312644,2022-04-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2312645,2022-04-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312646,2022-04-03,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2312647,2022-04-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,17.0,19.0,17.0,0.0,2.0,,,,,,100.0, -2312648,2022-04-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,27.0,8.0,4.0,15.0,,,,,,66.67, -2312649,2022-04-03,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,63.0,71.0,61.0,2.0,8.0,,96.83 -2312650,2022-04-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2312651,2022-04-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2312652,2022-04-03,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2312653,2022-04-03,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2312654,2022-04-03,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2312655,2022-04-03,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312656,2022-04-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312657,2022-04-03,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2312658,2022-04-03,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312659,2022-04-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312660,2022-04-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,229.0,245.0,221.0,8.0,16.0,,96.51 -2312661,2022-04-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2312662,2022-04-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2312663,2022-04-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2312664,2022-04-03,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2312665,2022-04-03,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2312666,2022-04-03,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312667,2022-04-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2312668,2022-04-03,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2312669,2022-04-03,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2312670,2022-04-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312671,2022-04-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2312672,2022-04-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312673,2022-04-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312674,2022-04-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2312675,2022-04-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,265.0,271.0,264.0,1.0,6.0,,99.62 -2312676,2022-04-03,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2312677,2022-04-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312678,2022-04-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2312679,2022-04-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312680,2022-04-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2312681,2022-04-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312682,2022-04-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2312683,2022-04-03,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312684,2022-04-03,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2312685,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,70.0,46.0,4.0,20.0,,,,,,92.0, -2312686,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312687,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312688,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,55.0,52.0,0.0,3.0,,,,,,100.0, -2312689,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312690,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,218.0,235.0,218.0,0.0,17.0,,100.0 -2312691,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2312692,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,59,Bed Based Capacity,60.0,60.0,59.0,1.0,0.0,,,,,,98.33, -2312693,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,13,Bed Based Capacity,13.0,184.0,13.0,0.0,171.0,,,,,,100.0, -2312694,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312695,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2312696,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,35.0,35.0,33.0,2.0,0.0,,,,,,94.29, -2312697,2022-04-03,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,51.0,46.0,0.0,5.0,,,,,,100.0, -2312698,2022-04-03,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312699,2022-04-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2312700,2022-04-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312701,2022-04-03,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312702,2022-04-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312703,2022-04-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2312704,2022-04-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312705,2022-04-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312706,2022-04-03,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312707,2022-04-03,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312708,2022-04-03,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312709,2022-04-03,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312710,2022-04-03,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312711,2022-04-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312712,2022-04-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2312713,2022-04-03,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312714,2022-04-03,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2312715,2022-04-03,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312716,2022-04-03,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2312717,2022-04-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312718,2022-04-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2312719,2022-04-03,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312720,2022-04-03,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2312721,2022-04-03,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2312722,2022-04-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2312723,2022-04-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2312724,2022-04-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2312725,2022-04-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,77.0,78.0,75.0,2.0,1.0,,97.4 -2312726,2022-04-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2312727,2022-04-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2312728,2022-04-03,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312729,2022-04-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2312730,2022-04-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2312731,2022-04-03,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312732,2022-04-03,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,37,Bed Based Capacity,38.0,38.0,37.0,1.0,0.0,,,,,,97.37, -2312733,2022-04-03,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312734,2022-04-03,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2312735,2022-04-03,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312736,2022-04-03,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2312737,2022-04-03,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2312738,2022-04-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312739,2022-04-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312740,2022-04-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312741,2022-04-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312742,2022-04-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312743,2022-04-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2312744,2022-04-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2312745,2022-04-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312746,2022-04-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,249,Room Based Capacity,,,,,,63.0,80.0,63.0,0.0,17.0,,100.0 -2312747,2022-04-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,47,Room Based Capacity,,,,,,24.0,25.0,24.0,0.0,1.0,,100.0 -2312748,2022-04-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,8.0,8.0,6.0,2.0,0.0,,,,,,75.0, -2312749,2022-04-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,88.0,100.0,86.0,2.0,12.0,,97.73 -2312750,2022-04-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,121.0,118.0,116.0,5.0,0.0,,95.87 -2312751,2022-04-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2312752,2022-04-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2312753,2022-04-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2312754,2022-04-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2312755,2022-04-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312756,2022-04-04,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2312757,2022-04-04,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2312758,2022-04-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,82.0,83.0,81.0,1.0,1.0,,98.78 -2312759,2022-04-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2312760,2022-04-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2312761,2022-04-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,75.0,77.0,74.0,1.0,2.0,,98.67 -2312762,2022-04-04,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2312763,2022-04-04,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2312764,2022-04-04,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2312765,2022-04-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2312766,2022-04-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,73,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2312767,2022-04-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2312768,2022-04-04,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2312769,2022-04-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2312770,2022-04-04,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2312771,2022-04-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2312772,2022-04-04,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2312773,2022-04-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,63.0,118.0,11.0,52.0,55.0,,17.46 -2312774,2022-04-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,8,Room Based Capacity,,,,,,62.0,30.0,6.0,56.0,0.0,,9.68 -2312775,2022-04-04,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2312776,2022-04-04,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2312777,2022-04-04,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312778,2022-04-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2312779,2022-04-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2312780,2022-04-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2312781,2022-04-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2312782,2022-04-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2312783,2022-04-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312784,2022-04-04,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2312785,2022-04-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,17.0,19.0,17.0,0.0,2.0,,,,,,100.0, -2312786,2022-04-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,27.0,12.0,0.0,15.0,,,,,,100.0, -2312787,2022-04-04,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2312788,2022-04-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2312789,2022-04-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2312790,2022-04-04,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2312791,2022-04-04,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,33.0,39.0,33.0,0.0,6.0,,100.0 -2312792,2022-04-04,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,21.0,20.0,0.0,1.0,,,,,,100.0, -2312793,2022-04-04,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2312794,2022-04-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,53.0,48.0,0.0,5.0,,,,,,100.0, -2312795,2022-04-04,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2312796,2022-04-04,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2312797,2022-04-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312798,2022-04-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,220.0,245.0,219.0,1.0,25.0,,99.55 -2312799,2022-04-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2312800,2022-04-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2312801,2022-04-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2312802,2022-04-04,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2312803,2022-04-04,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2312804,2022-04-04,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2312805,2022-04-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2312806,2022-04-04,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2312807,2022-04-04,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2312808,2022-04-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312809,2022-04-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2312810,2022-04-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2312811,2022-04-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312812,2022-04-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2312813,2022-04-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2312814,2022-04-04,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2312815,2022-04-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312816,2022-04-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2312817,2022-04-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312818,2022-04-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2312819,2022-04-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312820,2022-04-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2312821,2022-04-04,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2312822,2022-04-04,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2312823,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,51.0,70.0,49.0,2.0,19.0,,,,,,96.08, -2312824,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312825,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312826,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,55.0,51.0,0.0,4.0,,,,,,100.0, -2312827,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312828,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2312829,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,271.0,287.0,270.0,1.0,16.0,,99.63 -2312830,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,60.0,70.0,60.0,0.0,10.0,,,,,,100.0, -2312831,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,10,Bed Based Capacity,10.0,184.0,10.0,0.0,174.0,,,,,,100.0, -2312832,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312833,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2312834,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,40.0,38.0,1.0,1.0,,,,,,97.44, -2312835,2022-04-04,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,49.0,51.0,46.0,3.0,2.0,,,,,,93.88, -2312836,2022-04-04,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312837,2022-04-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2312838,2022-04-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312839,2022-04-04,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312840,2022-04-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312841,2022-04-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2312842,2022-04-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312843,2022-04-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312844,2022-04-04,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312845,2022-04-04,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312846,2022-04-04,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312847,2022-04-04,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312848,2022-04-04,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312849,2022-04-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312850,2022-04-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,43.0,43.0,41.0,2.0,0.0,,,,,,95.35, -2312851,2022-04-04,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312852,2022-04-04,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2312853,2022-04-04,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312854,2022-04-04,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,217,Room Based Capacity,,,,,,66.0,75.0,64.0,2.0,9.0,,96.97 -2312855,2022-04-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312856,2022-04-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2312857,2022-04-04,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312858,2022-04-04,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2312859,2022-04-04,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2312860,2022-04-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2312861,2022-04-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2312862,2022-04-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2312863,2022-04-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2312864,2022-04-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2312865,2022-04-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2312866,2022-04-04,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312867,2022-04-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2312868,2022-04-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2312869,2022-04-04,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2312870,2022-04-04,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,35,Bed Based Capacity,38.0,38.0,35.0,3.0,0.0,,,,,,92.11, -2312871,2022-04-04,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312872,2022-04-04,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2312873,2022-04-04,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312874,2022-04-04,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2312875,2022-04-04,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2312876,2022-04-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2312877,2022-04-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2312878,2022-04-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2312879,2022-04-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312880,2022-04-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312881,2022-04-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2312882,2022-04-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2312883,2022-04-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312884,2022-04-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,249,Room Based Capacity,,,,,,63.0,80.0,63.0,0.0,17.0,,100.0 -2312885,2022-04-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2312886,2022-04-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,8.0,8.0,6.0,2.0,0.0,,,,,,75.0, -2312887,2022-04-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,89.0,100.0,88.0,1.0,11.0,,98.88 -2312888,2022-04-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,382,Room Based Capacity,,,,,,118.0,118.0,118.0,0.0,0.0,,100.0 -2312889,2022-04-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2312890,2022-04-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2312891,2022-04-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2312892,2022-04-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2312893,2022-04-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312894,2022-04-05,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2312895,2022-04-05,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2312896,2022-04-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2312897,2022-04-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2312898,2022-04-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2312899,2022-04-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2312900,2022-04-05,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2312901,2022-04-05,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2312902,2022-04-05,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2312903,2022-04-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,153,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2312904,2022-04-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2312905,2022-04-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2312906,2022-04-05,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2312907,2022-04-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2312908,2022-04-05,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,68.0,51.0,66.0,2.0,0.0,,97.06 -2312909,2022-04-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2312910,2022-04-05,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,37.0,37.0,35.0,2.0,0.0,,94.59 -2312911,2022-04-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,17,Room Based Capacity,,,,,,111.0,118.0,14.0,97.0,7.0,,12.61 -2312912,2022-04-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,9,Room Based Capacity,,,,,,18.0,30.0,7.0,11.0,12.0,,38.89 -2312913,2022-04-05,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2312914,2022-04-05,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,91.0,91.0,87.0,4.0,0.0,,,,,,95.6, -2312915,2022-04-05,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2312916,2022-04-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2312917,2022-04-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,8.0,10.0,2.0,6.0,2.0,,,,,,25.0, -2312918,2022-04-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2312919,2022-04-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,66.0,66.0,61.0,5.0,0.0,,,,,,92.42, -2312920,2022-04-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2312921,2022-04-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2312922,2022-04-05,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2312923,2022-04-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,13,Bed Based Capacity,17.0,19.0,13.0,4.0,2.0,,,,,,76.47, -2312924,2022-04-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,27.0,8.0,4.0,15.0,,,,,,66.67, -2312925,2022-04-05,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2312926,2022-04-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2312927,2022-04-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2312928,2022-04-05,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2312929,2022-04-05,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,24.0,39.0,24.0,0.0,15.0,,100.0 -2312930,2022-04-05,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2312931,2022-04-05,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2312932,2022-04-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,53.0,48.0,0.0,5.0,,,,,,100.0, -2312933,2022-04-05,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2312934,2022-04-05,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2312935,2022-04-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2312936,2022-04-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,222.0,245.0,221.0,1.0,23.0,,99.55 -2312937,2022-04-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2312938,2022-04-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,90.0,92.0,89.0,1.0,2.0,,98.89 -2312939,2022-04-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2312940,2022-04-05,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2312941,2022-04-05,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2312942,2022-04-05,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2312943,2022-04-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2312944,2022-04-05,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2312945,2022-04-05,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2312946,2022-04-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2312947,2022-04-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2312948,2022-04-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2312949,2022-04-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2312950,2022-04-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,54.0,54.0,52.0,2.0,0.0,,,,,,96.3, -2312951,2022-04-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2312952,2022-04-05,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2312953,2022-04-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312954,2022-04-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2312955,2022-04-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2312956,2022-04-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2312957,2022-04-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2312958,2022-04-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2312959,2022-04-05,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2312960,2022-04-05,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,94.0,94.0,92.0,2.0,0.0,,97.87 -2312961,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,47.0,70.0,45.0,2.0,23.0,,,,,,95.74, -2312962,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312963,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2312964,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,55.0,52.0,1.0,2.0,,,,,,98.11, -2312965,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2312966,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2312967,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2312968,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,60,Bed Based Capacity,61.0,70.0,60.0,1.0,9.0,,,,,,98.36, -2312969,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1125.0,HFS 195 Princes' Blvd ,195 Princes' Blvd,M6K 3C3,Toronto,ON,16151,Homes First Society - Better Living Centre - Winter Program,Mixed Adult,Emergency,24-Hour Respite Site,COVID-19 Response,4,Bed Based Capacity,4.0,184.0,4.0,0.0,180.0,,,,,,100.0, -2312970,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2312971,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2312972,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2312973,2022-04-05,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2312974,2022-04-05,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2312975,2022-04-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2312976,2022-04-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312977,2022-04-05,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312978,2022-04-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2312979,2022-04-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2312980,2022-04-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2312981,2022-04-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2312982,2022-04-05,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312983,2022-04-05,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2312984,2022-04-05,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2312985,2022-04-05,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2312986,2022-04-05,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2312987,2022-04-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2312988,2022-04-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2312989,2022-04-05,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2312990,2022-04-05,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2312991,2022-04-05,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2312992,2022-04-05,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2312993,2022-04-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2312994,2022-04-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2312995,2022-04-05,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2312996,2022-04-05,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2312997,2022-04-05,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2312998,2022-04-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2312999,2022-04-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2313000,2022-04-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313001,2022-04-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2313002,2022-04-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313003,2022-04-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2313004,2022-04-05,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313005,2022-04-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313006,2022-04-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313007,2022-04-05,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2313008,2022-04-05,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,38.0,38.0,34.0,4.0,0.0,,,,,,89.47, -2313009,2022-04-05,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313010,2022-04-05,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2313011,2022-04-05,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313012,2022-04-05,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2313013,2022-04-05,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313014,2022-04-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2313015,2022-04-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313016,2022-04-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313017,2022-04-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313018,2022-04-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2313019,2022-04-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313020,2022-04-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313021,2022-04-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313022,2022-04-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,255,Room Based Capacity,,,,,,65.0,80.0,65.0,0.0,15.0,,100.0 -2313023,2022-04-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313024,2022-04-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,8.0,8.0,6.0,2.0,0.0,,,,,,75.0, -2313025,2022-04-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313026,2022-04-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,88.0,100.0,88.0,0.0,12.0,,100.0 -2313027,2022-04-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2313028,2022-04-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313029,2022-04-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2313030,2022-04-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2313031,2022-04-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2313032,2022-04-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313033,2022-04-06,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2313034,2022-04-06,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,215,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2313035,2022-04-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2313036,2022-04-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,21,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2313037,2022-04-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2313038,2022-04-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,76.0,77.0,75.0,1.0,1.0,,98.68 -2313039,2022-04-06,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2313040,2022-04-06,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2313041,2022-04-06,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2313042,2022-04-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,43.0,43.0,43.0,0.0,0.0,,100.0 -2313043,2022-04-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2313044,2022-04-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2313045,2022-04-06,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2313046,2022-04-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2313047,2022-04-06,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,68.0,51.0,66.0,2.0,0.0,,97.06 -2313048,2022-04-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313049,2022-04-06,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2313050,2022-04-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,111.0,118.0,24.0,87.0,7.0,,21.62 -2313051,2022-04-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,18.0,30.0,8.0,10.0,12.0,,44.44 -2313052,2022-04-06,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2313053,2022-04-06,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,91.0,91.0,86.0,5.0,0.0,,,,,,94.51, -2313054,2022-04-06,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313055,2022-04-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2313056,2022-04-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,10.0,7.0,1.0,2.0,,,,,,87.5, -2313057,2022-04-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2313058,2022-04-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,66.0,66.0,64.0,2.0,0.0,,,,,,96.97, -2313059,2022-04-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2313060,2022-04-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2313061,2022-04-06,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313062,2022-04-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,13,Bed Based Capacity,15.0,19.0,13.0,2.0,4.0,,,,,,86.67, -2313063,2022-04-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,27.0,10.0,2.0,15.0,,,,,,83.33, -2313064,2022-04-06,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2313065,2022-04-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2313066,2022-04-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2313067,2022-04-06,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,53,Bed Based Capacity,55.0,55.0,53.0,2.0,0.0,,,,,,96.36, -2313068,2022-04-06,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,17,Room Based Capacity,,,,,,15.0,18.0,14.0,1.0,3.0,,93.33 -2313069,2022-04-06,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2313070,2022-04-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2313071,2022-04-06,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2313072,2022-04-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,53.0,48.0,0.0,5.0,,,,,,100.0, -2313073,2022-04-06,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2313074,2022-04-06,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2313075,2022-04-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313076,2022-04-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,223.0,245.0,222.0,1.0,22.0,,99.55 -2313077,2022-04-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2313078,2022-04-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2313079,2022-04-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2313080,2022-04-06,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2313081,2022-04-06,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2313082,2022-04-06,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313083,2022-04-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2313084,2022-04-06,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2313085,2022-04-06,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2313086,2022-04-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2313087,2022-04-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2313088,2022-04-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2313089,2022-04-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313090,2022-04-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313091,2022-04-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2313092,2022-04-06,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2313093,2022-04-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313094,2022-04-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2313095,2022-04-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2313096,2022-04-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2313097,2022-04-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313098,2022-04-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2313099,2022-04-06,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313100,2022-04-06,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,93.0,94.0,92.0,1.0,1.0,,98.92 -2313101,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,47.0,70.0,45.0,2.0,23.0,,,,,,95.74, -2313102,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313103,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313104,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2313105,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2313106,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2313107,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2313108,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,68.0,70.0,64.0,4.0,2.0,,,,,,94.12, -2313109,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313110,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2313111,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2313112,2022-04-06,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2313113,2022-04-06,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2313114,2022-04-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2313115,2022-04-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313116,2022-04-06,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313117,2022-04-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313118,2022-04-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2313119,2022-04-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313120,2022-04-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2313121,2022-04-06,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313122,2022-04-06,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313123,2022-04-06,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313124,2022-04-06,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313125,2022-04-06,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2313126,2022-04-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313127,2022-04-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2313128,2022-04-06,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2313129,2022-04-06,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2313130,2022-04-06,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2313131,2022-04-06,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,66.0,75.0,66.0,0.0,9.0,,100.0 -2313132,2022-04-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2313133,2022-04-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2313134,2022-04-06,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2313135,2022-04-06,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2313136,2022-04-06,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2313137,2022-04-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2313138,2022-04-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2313139,2022-04-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313140,2022-04-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,78.0,75.0,0.0,3.0,,100.0 -2313141,2022-04-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313142,2022-04-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2313143,2022-04-06,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313144,2022-04-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313145,2022-04-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313146,2022-04-06,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313147,2022-04-06,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,38.0,35.0,0.0,3.0,,,,,,100.0, -2313148,2022-04-06,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313149,2022-04-06,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2313150,2022-04-06,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313151,2022-04-06,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2313152,2022-04-06,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313153,2022-04-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2313154,2022-04-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313155,2022-04-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2313156,2022-04-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313157,2022-04-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313158,2022-04-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313159,2022-04-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313160,2022-04-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313161,2022-04-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,259,Room Based Capacity,,,,,,70.0,80.0,66.0,4.0,10.0,,94.29 -2313162,2022-04-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313163,2022-04-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2313164,2022-04-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313165,2022-04-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,88.0,100.0,88.0,0.0,12.0,,100.0 -2313166,2022-04-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2313167,2022-04-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313168,2022-04-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2313169,2022-04-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2313170,2022-04-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2313171,2022-04-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313172,2022-04-07,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2313173,2022-04-07,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2313174,2022-04-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2313175,2022-04-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2313176,2022-04-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2313177,2022-04-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2313178,2022-04-07,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2313179,2022-04-07,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2313180,2022-04-07,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2313181,2022-04-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2313182,2022-04-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,71,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2313183,2022-04-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2313184,2022-04-07,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,46,Room Based Capacity,,,,,,20.0,20.0,19.0,1.0,0.0,,95.0 -2313185,2022-04-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2313186,2022-04-07,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,68.0,51.0,66.0,2.0,0.0,,97.06 -2313187,2022-04-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313188,2022-04-07,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2313189,2022-04-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,37,Room Based Capacity,,,,,,111.0,118.0,32.0,79.0,7.0,,28.83 -2313190,2022-04-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,18.0,30.0,11.0,7.0,12.0,,61.11 -2313191,2022-04-07,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2313192,2022-04-07,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2313193,2022-04-07,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313194,2022-04-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2313195,2022-04-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2313196,2022-04-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2313197,2022-04-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2313198,2022-04-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313199,2022-04-07,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313200,2022-04-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,16.0,19.0,14.0,2.0,3.0,,,,,,87.5, -2313201,2022-04-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,27.0,9.0,3.0,15.0,,,,,,75.0, -2313202,2022-04-07,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2313203,2022-04-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2313204,2022-04-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2313205,2022-04-07,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2313206,2022-04-07,1,City of Toronto,91,,1171.0,SSHA East End Hotel Program,1684 Queen St E,M4L 1G6,Toronto,ON,16771,SSHA Queen East Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,9,Room Based Capacity,,,,,,8.0,12.0,7.0,1.0,4.0,,87.5 -2313207,2022-04-07,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2313208,2022-04-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2313209,2022-04-07,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2313210,2022-04-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,53.0,48.0,0.0,5.0,,,,,,100.0, -2313211,2022-04-07,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2313212,2022-04-07,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,44.0,42.0,1.0,1.0,,,,,,97.67, -2313213,2022-04-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313214,2022-04-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,223.0,245.0,221.0,2.0,22.0,,99.1 -2313215,2022-04-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2313216,2022-04-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2313217,2022-04-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2313218,2022-04-07,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2313219,2022-04-07,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2313220,2022-04-07,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313221,2022-04-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2313222,2022-04-07,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2313223,2022-04-07,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2313224,2022-04-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2313225,2022-04-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2313226,2022-04-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313227,2022-04-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2313228,2022-04-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313229,2022-04-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,264.0,2.0,5.0,,99.25 -2313230,2022-04-07,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2313231,2022-04-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313232,2022-04-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2313233,2022-04-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2313234,2022-04-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2313235,2022-04-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313236,2022-04-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2313237,2022-04-07,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2313238,2022-04-07,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2313239,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2313240,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313241,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313242,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2313243,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2313244,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2313245,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2313246,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,68,Bed Based Capacity,70.0,70.0,68.0,2.0,0.0,,,,,,97.14, -2313247,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313248,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2313249,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2313250,2022-04-07,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2313251,2022-04-07,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2313252,2022-04-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2313253,2022-04-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313254,2022-04-07,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313255,2022-04-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313256,2022-04-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2313257,2022-04-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313258,2022-04-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2313259,2022-04-07,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313260,2022-04-07,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313261,2022-04-07,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2313262,2022-04-07,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313263,2022-04-07,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,30.0,25.0,2.0,3.0,,,,,,92.59, -2313264,2022-04-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313265,2022-04-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2313266,2022-04-07,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2313267,2022-04-07,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2313268,2022-04-07,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2313269,2022-04-07,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,67.0,75.0,66.0,1.0,8.0,,98.51 -2313270,2022-04-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2313271,2022-04-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2313272,2022-04-07,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2313273,2022-04-07,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2313274,2022-04-07,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2313275,2022-04-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2313276,2022-04-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2313277,2022-04-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313278,2022-04-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,78.0,75.0,0.0,3.0,,100.0 -2313279,2022-04-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313280,2022-04-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2313281,2022-04-07,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313282,2022-04-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313283,2022-04-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313284,2022-04-07,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313285,2022-04-07,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,38.0,35.0,0.0,3.0,,,,,,100.0, -2313286,2022-04-07,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2313287,2022-04-07,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2313288,2022-04-07,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313289,2022-04-07,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2313290,2022-04-07,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313291,2022-04-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313292,2022-04-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313293,2022-04-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2313294,2022-04-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313295,2022-04-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313296,2022-04-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313297,2022-04-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313298,2022-04-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313299,2022-04-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,259,Room Based Capacity,,,,,,70.0,80.0,66.0,4.0,10.0,,94.29 -2313300,2022-04-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313301,2022-04-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2313302,2022-04-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313303,2022-04-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,87.0,100.0,87.0,0.0,13.0,,100.0 -2313304,2022-04-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,382,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2313305,2022-04-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313306,2022-04-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2313307,2022-04-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2313308,2022-04-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2313309,2022-04-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313310,2022-04-08,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2313311,2022-04-08,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2313312,2022-04-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2313313,2022-04-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2313314,2022-04-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2313315,2022-04-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,76.0,77.0,75.0,1.0,1.0,,98.68 -2313316,2022-04-08,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2313317,2022-04-08,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2313318,2022-04-08,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2313319,2022-04-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2313320,2022-04-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,69,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2313321,2022-04-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2313322,2022-04-08,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2313323,2022-04-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2313324,2022-04-08,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,68.0,51.0,66.0,2.0,0.0,,97.06 -2313325,2022-04-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313326,2022-04-08,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2313327,2022-04-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,112.0,118.0,39.0,73.0,6.0,,34.82 -2313328,2022-04-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,15,Room Based Capacity,,,,,,18.0,30.0,12.0,6.0,12.0,,66.67 -2313329,2022-04-08,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2313330,2022-04-08,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2313331,2022-04-08,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313332,2022-04-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2313333,2022-04-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2313334,2022-04-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2313335,2022-04-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2313336,2022-04-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313337,2022-04-08,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313338,2022-04-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,14,Bed Based Capacity,16.0,19.0,14.0,2.0,3.0,,,,,,87.5, -2313339,2022-04-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,27.0,10.0,2.0,15.0,,,,,,83.33, -2313340,2022-04-08,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2313341,2022-04-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2313342,2022-04-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,74.0,74.0,71.0,3.0,0.0,,,,,,95.95, -2313343,2022-04-08,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,50,Bed Based Capacity,55.0,55.0,50.0,5.0,0.0,,,,,,90.91, -2313344,2022-04-08,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2313345,2022-04-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2313346,2022-04-08,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2313347,2022-04-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,53.0,51.0,2.0,0.0,,,,,,96.23, -2313348,2022-04-08,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2313349,2022-04-08,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313350,2022-04-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313351,2022-04-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,223.0,245.0,221.0,2.0,22.0,,99.1 -2313352,2022-04-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2313353,2022-04-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2313354,2022-04-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2313355,2022-04-08,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2313356,2022-04-08,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2313357,2022-04-08,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313358,2022-04-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2313359,2022-04-08,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2313360,2022-04-08,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2313361,2022-04-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2313362,2022-04-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2313363,2022-04-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2313364,2022-04-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2313365,2022-04-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313366,2022-04-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2313367,2022-04-08,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2313368,2022-04-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313369,2022-04-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2313370,2022-04-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313371,2022-04-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2313372,2022-04-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313373,2022-04-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2313374,2022-04-08,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313375,2022-04-08,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,92.0,94.0,91.0,1.0,2.0,,98.91 -2313376,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,70.0,49.0,1.0,20.0,,,,,,98.0, -2313377,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313378,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313379,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2313380,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2313381,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2313382,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2313383,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2313384,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313385,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2313386,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2313387,2022-04-08,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2313388,2022-04-08,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2313389,2022-04-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2313390,2022-04-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313391,2022-04-08,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313392,2022-04-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313393,2022-04-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2313394,2022-04-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313395,2022-04-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2313396,2022-04-08,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313397,2022-04-08,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313398,2022-04-08,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2313399,2022-04-08,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,27.0,25.0,1.0,1.0,,,,,,96.15, -2313400,2022-04-08,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2313401,2022-04-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313402,2022-04-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2313403,2022-04-08,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2313404,2022-04-08,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2313405,2022-04-08,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2313406,2022-04-08,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,67.0,75.0,66.0,1.0,8.0,,98.51 -2313407,2022-04-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2313408,2022-04-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2313409,2022-04-08,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2313410,2022-04-08,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2313411,2022-04-08,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313412,2022-04-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2313413,2022-04-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,221,Bed Based Capacity,225.0,225.0,221.0,4.0,0.0,,,,,,98.22, -2313414,2022-04-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313415,2022-04-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2313416,2022-04-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313417,2022-04-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2313418,2022-04-08,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313419,2022-04-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313420,2022-04-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313421,2022-04-08,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313422,2022-04-08,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,38.0,35.0,0.0,3.0,,,,,,100.0, -2313423,2022-04-08,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2313424,2022-04-08,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2313425,2022-04-08,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313426,2022-04-08,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2313427,2022-04-08,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313428,2022-04-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313429,2022-04-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313430,2022-04-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2313431,2022-04-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313432,2022-04-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2313433,2022-04-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313434,2022-04-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313435,2022-04-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313436,2022-04-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,273,Room Based Capacity,,,,,,74.0,80.0,69.0,5.0,6.0,,93.24 -2313437,2022-04-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313438,2022-04-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2313439,2022-04-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313440,2022-04-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,87.0,100.0,87.0,0.0,13.0,,100.0 -2313441,2022-04-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,382,Room Based Capacity,,,,,,119.0,118.0,117.0,2.0,0.0,,98.32 -2313442,2022-04-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313443,2022-04-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2313444,2022-04-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2313445,2022-04-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2313446,2022-04-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313447,2022-04-09,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2313448,2022-04-09,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2313449,2022-04-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2313450,2022-04-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,19,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2313451,2022-04-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2313452,2022-04-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2313453,2022-04-09,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2313454,2022-04-09,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,71.0,86.0,69.0,2.0,15.0,,97.18 -2313455,2022-04-09,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2313456,2022-04-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,157,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2313457,2022-04-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,69,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2313458,2022-04-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2313459,2022-04-09,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2313460,2022-04-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313461,2022-04-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2313462,2022-04-09,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,68.0,51.0,66.0,2.0,0.0,,97.06 -2313463,2022-04-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313464,2022-04-09,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2313465,2022-04-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,112.0,118.0,39.0,73.0,6.0,,34.82 -2313466,2022-04-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,18.0,30.0,10.0,8.0,12.0,,55.56 -2313467,2022-04-09,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2313468,2022-04-09,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2313469,2022-04-09,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313470,2022-04-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2313471,2022-04-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313472,2022-04-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2313473,2022-04-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2313474,2022-04-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2313475,2022-04-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313476,2022-04-09,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313477,2022-04-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,16,Bed Based Capacity,16.0,19.0,16.0,0.0,3.0,,,,,,100.0, -2313478,2022-04-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,27.0,10.0,2.0,15.0,,,,,,83.33, -2313479,2022-04-09,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2313480,2022-04-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313481,2022-04-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2313482,2022-04-09,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,46,Bed Based Capacity,55.0,55.0,46.0,9.0,0.0,,,,,,83.64, -2313483,2022-04-09,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2313484,2022-04-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2313485,2022-04-09,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2313486,2022-04-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2313487,2022-04-09,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2313488,2022-04-09,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313489,2022-04-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313490,2022-04-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,223.0,245.0,221.0,2.0,22.0,,99.1 -2313491,2022-04-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2313492,2022-04-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2313493,2022-04-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2313494,2022-04-09,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2313495,2022-04-09,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2313496,2022-04-09,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313497,2022-04-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2313498,2022-04-09,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2313499,2022-04-09,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2313500,2022-04-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2313501,2022-04-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2313502,2022-04-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2313503,2022-04-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2313504,2022-04-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313505,2022-04-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2313506,2022-04-09,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2313507,2022-04-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313508,2022-04-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2313509,2022-04-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313510,2022-04-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2313511,2022-04-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313512,2022-04-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2313513,2022-04-09,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313514,2022-04-09,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2313515,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2313516,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313517,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313518,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2313519,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2313520,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2313521,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2313522,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2313523,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313524,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2313525,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2313526,2022-04-09,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2313527,2022-04-09,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2313528,2022-04-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2313529,2022-04-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313530,2022-04-09,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2313531,2022-04-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313532,2022-04-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2313533,2022-04-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313534,2022-04-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2313535,2022-04-09,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313536,2022-04-09,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313537,2022-04-09,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2313538,2022-04-09,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,27.0,26.0,0.0,1.0,,,,,,100.0, -2313539,2022-04-09,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2313540,2022-04-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313541,2022-04-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2313542,2022-04-09,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2313543,2022-04-09,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2313544,2022-04-09,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2313545,2022-04-09,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,67.0,75.0,66.0,1.0,8.0,,98.51 -2313546,2022-04-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2313547,2022-04-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2313548,2022-04-09,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2313549,2022-04-09,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2313550,2022-04-09,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313551,2022-04-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2313552,2022-04-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2313553,2022-04-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313554,2022-04-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2313555,2022-04-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313556,2022-04-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2313557,2022-04-09,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313558,2022-04-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313559,2022-04-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313560,2022-04-09,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313561,2022-04-09,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,38.0,34.0,1.0,3.0,,,,,,97.14, -2313562,2022-04-09,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2313563,2022-04-09,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2313564,2022-04-09,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313565,2022-04-09,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2313566,2022-04-09,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313567,2022-04-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313568,2022-04-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313569,2022-04-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2313570,2022-04-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313571,2022-04-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313572,2022-04-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313573,2022-04-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313574,2022-04-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313575,2022-04-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,282,Room Based Capacity,,,,,,75.0,80.0,71.0,4.0,5.0,,94.67 -2313576,2022-04-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313577,2022-04-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2313578,2022-04-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313579,2022-04-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,87.0,100.0,86.0,1.0,13.0,,98.85 -2313580,2022-04-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,379,Room Based Capacity,,,,,,118.0,118.0,116.0,2.0,0.0,,98.31 -2313581,2022-04-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313582,2022-04-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2313583,2022-04-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2313584,2022-04-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2313585,2022-04-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313586,2022-04-10,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2313587,2022-04-10,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2313588,2022-04-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,83.0,83.0,79.0,4.0,0.0,,95.18 -2313589,2022-04-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,12.0,12.0,9.0,3.0,0.0,,75.0 -2313590,2022-04-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2313591,2022-04-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2313592,2022-04-10,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2313593,2022-04-10,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,71.0,86.0,70.0,1.0,15.0,,98.59 -2313594,2022-04-10,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,97.0,100.0,97.0,0.0,3.0,,100.0 -2313595,2022-04-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2313596,2022-04-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,69,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2313597,2022-04-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2313598,2022-04-10,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2313599,2022-04-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313600,2022-04-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2313601,2022-04-10,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,68.0,51.0,65.0,3.0,0.0,,95.59 -2313602,2022-04-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313603,2022-04-10,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2313604,2022-04-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,112.0,118.0,39.0,73.0,6.0,,34.82 -2313605,2022-04-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,30.0,1.0,0.0,29.0,,100.0 -2313606,2022-04-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,15,Room Based Capacity,,,,,,19.0,30.0,12.0,7.0,11.0,,63.16 -2313607,2022-04-10,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2313608,2022-04-10,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2313609,2022-04-10,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313610,2022-04-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2313611,2022-04-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313612,2022-04-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2313613,2022-04-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2313614,2022-04-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2313615,2022-04-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313616,2022-04-10,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313617,2022-04-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,16,Bed Based Capacity,17.0,19.0,16.0,1.0,2.0,,,,,,94.12, -2313618,2022-04-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,27.0,10.0,1.0,16.0,,,,,,90.91, -2313619,2022-04-10,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2313620,2022-04-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2313621,2022-04-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2313622,2022-04-10,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,44,Bed Based Capacity,55.0,55.0,44.0,11.0,0.0,,,,,,80.0, -2313623,2022-04-10,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2313624,2022-04-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2313625,2022-04-10,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2313626,2022-04-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2313627,2022-04-10,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2313628,2022-04-10,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313629,2022-04-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313630,2022-04-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,223.0,245.0,221.0,2.0,22.0,,99.1 -2313631,2022-04-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2313632,2022-04-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2313633,2022-04-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2313634,2022-04-10,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2313635,2022-04-10,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2313636,2022-04-10,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313637,2022-04-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,38.0,41.0,38.0,0.0,3.0,,100.0 -2313638,2022-04-10,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2313639,2022-04-10,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2313640,2022-04-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2313641,2022-04-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2313642,2022-04-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2313643,2022-04-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2313644,2022-04-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313645,2022-04-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2313646,2022-04-10,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2313647,2022-04-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313648,2022-04-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2313649,2022-04-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313650,2022-04-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2313651,2022-04-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313652,2022-04-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2313653,2022-04-10,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313654,2022-04-10,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,89.0,94.0,89.0,0.0,5.0,,100.0 -2313655,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2313656,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2313657,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313658,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2313659,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2313660,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2313661,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,300,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2313662,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2313663,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313664,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2313665,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2313666,2022-04-10,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2313667,2022-04-10,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2313668,2022-04-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2313669,2022-04-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313670,2022-04-10,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313671,2022-04-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313672,2022-04-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2313673,2022-04-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313674,2022-04-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2313675,2022-04-10,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313676,2022-04-10,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313677,2022-04-10,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2313678,2022-04-10,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,27.0,26.0,0.0,1.0,,,,,,100.0, -2313679,2022-04-10,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2313680,2022-04-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313681,2022-04-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2313682,2022-04-10,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2313683,2022-04-10,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2313684,2022-04-10,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2313685,2022-04-10,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,67.0,75.0,66.0,1.0,8.0,,98.51 -2313686,2022-04-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2313687,2022-04-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2313688,2022-04-10,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2313689,2022-04-10,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2313690,2022-04-10,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313691,2022-04-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2313692,2022-04-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2313693,2022-04-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313694,2022-04-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2313695,2022-04-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313696,2022-04-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2313697,2022-04-10,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313698,2022-04-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313699,2022-04-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313700,2022-04-10,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313701,2022-04-10,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,38.0,34.0,1.0,3.0,,,,,,97.14, -2313702,2022-04-10,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2313703,2022-04-10,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2313704,2022-04-10,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313705,2022-04-10,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2313706,2022-04-10,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313707,2022-04-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313708,2022-04-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313709,2022-04-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313710,2022-04-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313711,2022-04-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313712,2022-04-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313713,2022-04-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313714,2022-04-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313715,2022-04-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,301,Room Based Capacity,,,,,,80.0,80.0,76.0,4.0,0.0,,95.0 -2313716,2022-04-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313717,2022-04-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2313718,2022-04-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313719,2022-04-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,85.0,100.0,85.0,0.0,15.0,,100.0 -2313720,2022-04-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,379,Room Based Capacity,,,,,,118.0,118.0,116.0,2.0,0.0,,98.31 -2313721,2022-04-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313722,2022-04-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2313723,2022-04-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2313724,2022-04-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2313725,2022-04-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313726,2022-04-11,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2313727,2022-04-11,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2313728,2022-04-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,83.0,83.0,77.0,6.0,0.0,,92.77 -2313729,2022-04-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2313730,2022-04-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2313731,2022-04-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2313732,2022-04-11,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2313733,2022-04-11,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2313734,2022-04-11,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,97.0,100.0,97.0,0.0,3.0,,100.0 -2313735,2022-04-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,157,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2313736,2022-04-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2313737,2022-04-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2313738,2022-04-11,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2313739,2022-04-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2313740,2022-04-11,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2313741,2022-04-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313742,2022-04-11,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2313743,2022-04-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,112.0,118.0,40.0,72.0,6.0,,35.71 -2313744,2022-04-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,30.0,1.0,0.0,29.0,,100.0 -2313745,2022-04-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,16,Room Based Capacity,,,,,,25.0,30.0,13.0,12.0,5.0,,52.0 -2313746,2022-04-11,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2313747,2022-04-11,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,91.0,91.0,87.0,4.0,0.0,,,,,,95.6, -2313748,2022-04-11,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313749,2022-04-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2313750,2022-04-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2313751,2022-04-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2313752,2022-04-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2313753,2022-04-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313754,2022-04-11,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313755,2022-04-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2313756,2022-04-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,27.0,10.0,1.0,16.0,,,,,,90.91, -2313757,2022-04-11,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2313758,2022-04-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,9.0,9.0,4.0,5.0,0.0,,,,,,44.44, -2313759,2022-04-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2313760,2022-04-11,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,33,Bed Based Capacity,40.0,55.0,33.0,7.0,15.0,,,,,,82.5, -2313761,2022-04-11,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2313762,2022-04-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2313763,2022-04-11,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,42.0,42.0,39.0,3.0,0.0,,92.86 -2313764,2022-04-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,53.0,51.0,2.0,0.0,,,,,,96.23, -2313765,2022-04-11,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2313766,2022-04-11,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313767,2022-04-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313768,2022-04-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,222.0,245.0,219.0,3.0,23.0,,98.65 -2313769,2022-04-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2313770,2022-04-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2313771,2022-04-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2313772,2022-04-11,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2313773,2022-04-11,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2313774,2022-04-11,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313775,2022-04-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2313776,2022-04-11,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2313777,2022-04-11,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2313778,2022-04-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313779,2022-04-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2313780,2022-04-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2313781,2022-04-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313782,2022-04-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2313783,2022-04-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2313784,2022-04-11,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2313785,2022-04-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313786,2022-04-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2313787,2022-04-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2313788,2022-04-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2313789,2022-04-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313790,2022-04-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2313791,2022-04-11,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313792,2022-04-11,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,89.0,94.0,89.0,0.0,5.0,,100.0 -2313793,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,70.0,49.0,1.0,20.0,,,,,,98.0, -2313794,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313795,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2313796,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2313797,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2313798,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2313799,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2313800,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2313801,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313802,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2313803,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2313804,2022-04-11,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2313805,2022-04-11,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2313806,2022-04-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2313807,2022-04-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313808,2022-04-11,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313809,2022-04-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2313810,2022-04-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2313811,2022-04-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313812,2022-04-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2313813,2022-04-11,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313814,2022-04-11,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313815,2022-04-11,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2313816,2022-04-11,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,27.0,26.0,0.0,1.0,,,,,,100.0, -2313817,2022-04-11,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2313818,2022-04-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313819,2022-04-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2313820,2022-04-11,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2313821,2022-04-11,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2313822,2022-04-11,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2313823,2022-04-11,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,67.0,75.0,67.0,0.0,8.0,,100.0 -2313824,2022-04-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2313825,2022-04-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2313826,2022-04-11,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2313827,2022-04-11,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2313828,2022-04-11,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2313829,2022-04-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2313830,2022-04-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2313831,2022-04-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313832,2022-04-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2313833,2022-04-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313834,2022-04-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2313835,2022-04-11,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313836,2022-04-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313837,2022-04-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313838,2022-04-11,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313839,2022-04-11,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,38.0,34.0,0.0,4.0,,,,,,100.0, -2313840,2022-04-11,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2313841,2022-04-11,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2313842,2022-04-11,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313843,2022-04-11,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2313844,2022-04-11,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313845,2022-04-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313846,2022-04-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313847,2022-04-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313848,2022-04-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2313849,2022-04-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313850,2022-04-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313851,2022-04-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313852,2022-04-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313853,2022-04-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,312,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2313854,2022-04-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313855,2022-04-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2313856,2022-04-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313857,2022-04-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,85.0,100.0,85.0,0.0,15.0,,100.0 -2313858,2022-04-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,385,Room Based Capacity,,,,,,118.0,118.0,117.0,1.0,0.0,,99.15 -2313859,2022-04-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313860,2022-04-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2313861,2022-04-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2313862,2022-04-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2313863,2022-04-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313864,2022-04-12,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,21.0,30.0,21.0,0.0,9.0,,100.0 -2313865,2022-04-12,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2313866,2022-04-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,83.0,83.0,77.0,6.0,0.0,,92.77 -2313867,2022-04-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,12.0,12.0,9.0,3.0,0.0,,75.0 -2313868,2022-04-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2313869,2022-04-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2313870,2022-04-12,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2313871,2022-04-12,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2313872,2022-04-12,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,97.0,100.0,96.0,1.0,3.0,,98.97 -2313873,2022-04-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2313874,2022-04-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2313875,2022-04-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2313876,2022-04-12,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2313877,2022-04-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2313878,2022-04-12,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2313879,2022-04-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2313880,2022-04-12,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2313881,2022-04-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,48,Room Based Capacity,,,,,,112.0,118.0,41.0,71.0,6.0,,36.61 -2313882,2022-04-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2313883,2022-04-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,18,Room Based Capacity,,,,,,25.0,30.0,15.0,10.0,5.0,,60.0 -2313884,2022-04-12,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2313885,2022-04-12,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,86,Bed Based Capacity,91.0,91.0,86.0,5.0,0.0,,,,,,94.51, -2313886,2022-04-12,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313887,2022-04-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2313888,2022-04-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2313889,2022-04-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2313890,2022-04-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2313891,2022-04-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2313892,2022-04-12,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313893,2022-04-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313894,2022-04-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,27.0,10.0,1.0,16.0,,,,,,90.91, -2313895,2022-04-12,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,71.0,61.0,3.0,7.0,,95.31 -2313896,2022-04-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,9.0,9.0,4.0,5.0,0.0,,,,,,44.44, -2313897,2022-04-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2313898,2022-04-12,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,28,Bed Based Capacity,28.0,55.0,28.0,0.0,27.0,,,,,,100.0, -2313899,2022-04-12,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2313900,2022-04-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2313901,2022-04-12,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2313902,2022-04-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2313903,2022-04-12,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2313904,2022-04-12,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313905,2022-04-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2313906,2022-04-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,222.0,245.0,219.0,3.0,23.0,,98.65 -2313907,2022-04-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2313908,2022-04-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2313909,2022-04-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2313910,2022-04-12,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2313911,2022-04-12,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2313912,2022-04-12,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2313913,2022-04-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2313914,2022-04-12,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2313915,2022-04-12,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2313916,2022-04-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2313917,2022-04-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2313918,2022-04-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2313919,2022-04-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313920,2022-04-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2313921,2022-04-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2313922,2022-04-12,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2313923,2022-04-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313924,2022-04-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2313925,2022-04-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313926,2022-04-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2313927,2022-04-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2313928,2022-04-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2313929,2022-04-12,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313930,2022-04-12,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2313931,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2313932,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313933,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313934,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2313935,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2313936,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2313937,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,299,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2313938,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2313939,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2313940,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2313941,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2313942,2022-04-12,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2313943,2022-04-12,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2313944,2022-04-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2313945,2022-04-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313946,2022-04-12,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2313947,2022-04-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2313948,2022-04-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2313949,2022-04-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2313950,2022-04-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2313951,2022-04-12,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313952,2022-04-12,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2313953,2022-04-12,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2313954,2022-04-12,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,27.0,26.0,0.0,1.0,,,,,,100.0, -2313955,2022-04-12,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2313956,2022-04-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313957,2022-04-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2313958,2022-04-12,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2313959,2022-04-12,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2313960,2022-04-12,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2313961,2022-04-12,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,225,Room Based Capacity,,,,,,67.0,75.0,67.0,0.0,8.0,,100.0 -2313962,2022-04-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2313963,2022-04-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2313964,2022-04-12,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2313965,2022-04-12,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2313966,2022-04-12,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2313967,2022-04-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2313968,2022-04-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2313969,2022-04-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2313970,2022-04-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2313971,2022-04-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2313972,2022-04-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2313973,2022-04-12,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2313974,2022-04-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2313975,2022-04-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2313976,2022-04-12,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2313977,2022-04-12,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2313978,2022-04-12,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2313979,2022-04-12,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2313980,2022-04-12,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313981,2022-04-12,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2313982,2022-04-12,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2313983,2022-04-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2313984,2022-04-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2313985,2022-04-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2313986,2022-04-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2313987,2022-04-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2313988,2022-04-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2313989,2022-04-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2313990,2022-04-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2313991,2022-04-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,312,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2313992,2022-04-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2313993,2022-04-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2313994,2022-04-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2313995,2022-04-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,88.0,100.0,88.0,0.0,12.0,,100.0 -2313996,2022-04-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2313997,2022-04-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2313998,2022-04-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2313999,2022-04-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314000,2022-04-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314001,2022-04-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314002,2022-04-13,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,53,Room Based Capacity,,,,,,22.0,30.0,21.0,1.0,8.0,,95.45 -2314003,2022-04-13,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2314004,2022-04-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2314005,2022-04-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,12.0,12.0,9.0,3.0,0.0,,75.0 -2314006,2022-04-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2314007,2022-04-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2314008,2022-04-13,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314009,2022-04-13,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314010,2022-04-13,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2314011,2022-04-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2314012,2022-04-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,70,Room Based Capacity,,,,,,21.0,40.0,21.0,0.0,19.0,,100.0 -2314013,2022-04-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2314014,2022-04-13,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2314015,2022-04-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2314016,2022-04-13,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2314017,2022-04-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314018,2022-04-13,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2314019,2022-04-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,112.0,118.0,39.0,73.0,6.0,,34.82 -2314020,2022-04-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,4.0,30.0,2.0,2.0,26.0,,50.0 -2314021,2022-04-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,23,Room Based Capacity,,,,,,34.0,30.0,20.0,14.0,0.0,,58.82 -2314022,2022-04-13,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314023,2022-04-13,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2314024,2022-04-13,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314025,2022-04-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2314026,2022-04-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2314027,2022-04-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2314028,2022-04-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2314029,2022-04-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314030,2022-04-13,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314031,2022-04-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314032,2022-04-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,27.0,10.0,1.0,16.0,,,,,,90.91, -2314033,2022-04-13,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2314034,2022-04-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2314035,2022-04-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2314036,2022-04-13,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,18,Bed Based Capacity,18.0,55.0,18.0,0.0,37.0,,,,,,100.0, -2314037,2022-04-13,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2314038,2022-04-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2314039,2022-04-13,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2314040,2022-04-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314041,2022-04-13,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2314042,2022-04-13,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314043,2022-04-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2314044,2022-04-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,223.0,245.0,220.0,3.0,22.0,,98.65 -2314045,2022-04-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2314046,2022-04-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2314047,2022-04-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,52,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2314048,2022-04-13,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2314049,2022-04-13,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2314050,2022-04-13,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314051,2022-04-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2314052,2022-04-13,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314053,2022-04-13,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2314054,2022-04-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2314055,2022-04-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2314056,2022-04-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2314057,2022-04-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314058,2022-04-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2314059,2022-04-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2314060,2022-04-13,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2314061,2022-04-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314062,2022-04-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2314063,2022-04-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2314064,2022-04-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2314065,2022-04-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314066,2022-04-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,47.0,43.0,0.0,4.0,,100.0 -2314067,2022-04-13,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314068,2022-04-13,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,91.0,1.0,2.0,,98.91 -2314069,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2314070,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314071,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314072,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2314073,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2314074,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2314075,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2314076,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2314077,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2314078,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2314079,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2314080,2022-04-13,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2314081,2022-04-13,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2314082,2022-04-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2314083,2022-04-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314084,2022-04-13,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2314085,2022-04-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314086,2022-04-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2314087,2022-04-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2314088,2022-04-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2314089,2022-04-13,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314090,2022-04-13,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314091,2022-04-13,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2314092,2022-04-13,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,27.0,25.0,1.0,1.0,,,,,,96.15, -2314093,2022-04-13,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2314094,2022-04-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314095,2022-04-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2314096,2022-04-13,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2314097,2022-04-13,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314098,2022-04-13,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2314099,2022-04-13,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,225,Room Based Capacity,,,,,,67.0,75.0,67.0,0.0,8.0,,100.0 -2314100,2022-04-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,67.0,67.0,66.0,1.0,0.0,,,,,,98.51, -2314101,2022-04-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2314102,2022-04-13,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2314103,2022-04-13,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2314104,2022-04-13,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,54.0,49.0,0.0,5.0,,,,,,100.0, -2314105,2022-04-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2314106,2022-04-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2314107,2022-04-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2314108,2022-04-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2314109,2022-04-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2314110,2022-04-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2314111,2022-04-13,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314112,2022-04-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2314113,2022-04-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2314114,2022-04-13,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314115,2022-04-13,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2314116,2022-04-13,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2314117,2022-04-13,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2314118,2022-04-13,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2314119,2022-04-13,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314120,2022-04-13,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2314121,2022-04-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314122,2022-04-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314123,2022-04-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314124,2022-04-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2314125,2022-04-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314126,2022-04-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2314127,2022-04-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2314128,2022-04-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314129,2022-04-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,309,Room Based Capacity,,,,,,79.0,80.0,78.0,1.0,1.0,,98.73 -2314130,2022-04-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2314131,2022-04-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2314132,2022-04-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2314133,2022-04-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,87.0,100.0,87.0,0.0,13.0,,100.0 -2314134,2022-04-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2314135,2022-04-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2314136,2022-04-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2314137,2022-04-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314138,2022-04-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314139,2022-04-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314140,2022-04-14,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2314141,2022-04-14,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2314142,2022-04-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,81.0,83.0,79.0,2.0,2.0,,97.53 -2314143,2022-04-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2314144,2022-04-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2314145,2022-04-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2314146,2022-04-14,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314147,2022-04-14,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314148,2022-04-14,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2314149,2022-04-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2314150,2022-04-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,73,Room Based Capacity,,,,,,22.0,40.0,22.0,0.0,18.0,,100.0 -2314151,2022-04-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2314152,2022-04-14,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2314153,2022-04-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2314154,2022-04-14,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2314155,2022-04-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314156,2022-04-14,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2314157,2022-04-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,112.0,118.0,38.0,74.0,6.0,,33.93 -2314158,2022-04-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2314159,2022-04-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,26,Room Based Capacity,,,,,,37.0,30.0,24.0,13.0,0.0,,64.86 -2314160,2022-04-14,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314161,2022-04-14,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2314162,2022-04-14,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314163,2022-04-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2314164,2022-04-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2314165,2022-04-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2314166,2022-04-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2314167,2022-04-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314168,2022-04-14,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314169,2022-04-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314170,2022-04-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,27.0,11.0,0.0,16.0,,,,,,100.0, -2314171,2022-04-14,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2314172,2022-04-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2314173,2022-04-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,73.0,74.0,73.0,0.0,1.0,,,,,,100.0, -2314174,2022-04-14,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,12,Bed Based Capacity,12.0,55.0,12.0,0.0,43.0,,,,,,100.0, -2314175,2022-04-14,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2314176,2022-04-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2314177,2022-04-14,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314178,2022-04-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314179,2022-04-14,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2314180,2022-04-14,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2314181,2022-04-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2314182,2022-04-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,224.0,245.0,220.0,4.0,21.0,,98.21 -2314183,2022-04-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2314184,2022-04-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2314185,2022-04-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,51,Room Based Capacity,,,,,,50.0,52.0,49.0,1.0,2.0,,98.0 -2314186,2022-04-14,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2314187,2022-04-14,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2314188,2022-04-14,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314189,2022-04-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2314190,2022-04-14,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314191,2022-04-14,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2314192,2022-04-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2314193,2022-04-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314194,2022-04-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314195,2022-04-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314196,2022-04-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2314197,2022-04-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2314198,2022-04-14,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2314199,2022-04-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314200,2022-04-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,28.0,28.0,23.0,5.0,0.0,,,,,,82.14, -2314201,2022-04-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2314202,2022-04-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2314203,2022-04-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314204,2022-04-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,47.0,43.0,0.0,4.0,,100.0 -2314205,2022-04-14,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314206,2022-04-14,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2314207,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2314208,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314209,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314210,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2314211,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2314212,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2314213,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2314214,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2314215,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2314216,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2314217,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2314218,2022-04-14,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2314219,2022-04-14,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2314220,2022-04-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2314221,2022-04-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314222,2022-04-14,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2314223,2022-04-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314224,2022-04-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2314225,2022-04-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2314226,2022-04-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2314227,2022-04-14,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314228,2022-04-14,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314229,2022-04-14,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2314230,2022-04-14,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2314231,2022-04-14,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2314232,2022-04-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314233,2022-04-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2314234,2022-04-14,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2314235,2022-04-14,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314236,2022-04-14,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2314237,2022-04-14,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,67.0,76.0,67.0,0.0,9.0,,100.0 -2314238,2022-04-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2314239,2022-04-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2314240,2022-04-14,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,53.0,49.0,0.0,4.0,,,,,,100.0, -2314241,2022-04-14,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2314242,2022-04-14,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,54.0,43.0,0.0,11.0,,,,,,100.0, -2314243,2022-04-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,130.0,131.0,129.0,1.0,1.0,,99.23 -2314244,2022-04-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2314245,2022-04-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2314246,2022-04-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,78.0,76.0,1.0,1.0,,98.7 -2314247,2022-04-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2314248,2022-04-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2314249,2022-04-14,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314250,2022-04-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2314251,2022-04-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2314252,2022-04-14,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314253,2022-04-14,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2314254,2022-04-14,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2314255,2022-04-14,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2314256,2022-04-14,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314257,2022-04-14,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314258,2022-04-14,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2314259,2022-04-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314260,2022-04-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314261,2022-04-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314262,2022-04-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2314263,2022-04-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314264,2022-04-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2314265,2022-04-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2314266,2022-04-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314267,2022-04-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,309,Room Based Capacity,,,,,,79.0,80.0,78.0,1.0,1.0,,98.73 -2314268,2022-04-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2314269,2022-04-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2314270,2022-04-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2314271,2022-04-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,87.0,100.0,87.0,0.0,13.0,,100.0 -2314272,2022-04-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2314273,2022-04-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2314274,2022-04-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2314275,2022-04-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314276,2022-04-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314277,2022-04-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314278,2022-04-15,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2314279,2022-04-15,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,65.0,65.0,63.0,2.0,0.0,,96.92 -2314280,2022-04-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,79.0,83.0,77.0,2.0,4.0,,97.47 -2314281,2022-04-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2314282,2022-04-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2314283,2022-04-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2314284,2022-04-15,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314285,2022-04-15,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314286,2022-04-15,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2314287,2022-04-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2314288,2022-04-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2314289,2022-04-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2314290,2022-04-15,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2314291,2022-04-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2314292,2022-04-15,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2314293,2022-04-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314294,2022-04-15,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2314295,2022-04-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,112.0,118.0,38.0,74.0,6.0,,33.93 -2314296,2022-04-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,2.0,30.0,1.0,1.0,28.0,,50.0 -2314297,2022-04-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,26,Room Based Capacity,,,,,,37.0,30.0,24.0,13.0,0.0,,64.86 -2314298,2022-04-15,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314299,2022-04-15,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,91.0,89.0,2.0,0.0,,,,,,97.8, -2314300,2022-04-15,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314301,2022-04-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2314302,2022-04-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2314303,2022-04-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2314304,2022-04-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2314305,2022-04-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2314306,2022-04-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314307,2022-04-15,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314308,2022-04-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2314309,2022-04-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,27.0,10.0,1.0,16.0,,,,,,90.91, -2314310,2022-04-15,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2314311,2022-04-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2314312,2022-04-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2314313,2022-04-15,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,8,Bed Based Capacity,9.0,55.0,8.0,1.0,46.0,,,,,,88.89, -2314314,2022-04-15,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2314315,2022-04-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2314316,2022-04-15,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314317,2022-04-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314318,2022-04-15,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314319,2022-04-15,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314320,2022-04-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2314321,2022-04-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,224.0,245.0,220.0,4.0,21.0,,98.21 -2314322,2022-04-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2314323,2022-04-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2314324,2022-04-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2314325,2022-04-15,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2314326,2022-04-15,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,50.0,42.0,1.0,7.0,,,,,,97.67, -2314327,2022-04-15,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314328,2022-04-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2314329,2022-04-15,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314330,2022-04-15,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2314331,2022-04-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2314332,2022-04-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314333,2022-04-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314334,2022-04-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314335,2022-04-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2314336,2022-04-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2314337,2022-04-15,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2314338,2022-04-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314339,2022-04-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2314340,2022-04-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2314341,2022-04-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2314342,2022-04-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314343,2022-04-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2314344,2022-04-15,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314345,2022-04-15,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2314346,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2314347,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314348,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314349,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,55.0,53.0,1.0,1.0,,,,,,98.15, -2314350,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2314351,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2314352,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,299,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2314353,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2314354,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2314355,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2314356,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2314357,2022-04-15,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2314358,2022-04-15,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2314359,2022-04-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2314360,2022-04-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314361,2022-04-15,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2314362,2022-04-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314363,2022-04-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2314364,2022-04-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2314365,2022-04-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2314366,2022-04-15,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314367,2022-04-15,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314368,2022-04-15,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2314369,2022-04-15,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2314370,2022-04-15,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2314371,2022-04-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314372,2022-04-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2314373,2022-04-15,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2314374,2022-04-15,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314375,2022-04-15,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2314376,2022-04-15,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,67.0,76.0,67.0,0.0,9.0,,100.0 -2314377,2022-04-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2314378,2022-04-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2314379,2022-04-15,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,53.0,48.0,1.0,4.0,,,,,,97.96, -2314380,2022-04-15,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2314381,2022-04-15,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,54.0,43.0,0.0,11.0,,,,,,100.0, -2314382,2022-04-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2314383,2022-04-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2314384,2022-04-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2314385,2022-04-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2314386,2022-04-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2314387,2022-04-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2314388,2022-04-15,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314389,2022-04-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2314390,2022-04-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2314391,2022-04-15,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314392,2022-04-15,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2314393,2022-04-15,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2314394,2022-04-15,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2314395,2022-04-15,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314396,2022-04-15,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314397,2022-04-15,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2314398,2022-04-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314399,2022-04-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314400,2022-04-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314401,2022-04-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2314402,2022-04-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314403,2022-04-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2314404,2022-04-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2314405,2022-04-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314406,2022-04-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,314,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2314407,2022-04-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2314408,2022-04-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2314409,2022-04-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2314410,2022-04-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,88.0,100.0,87.0,1.0,12.0,,98.86 -2314411,2022-04-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,118.0,118.0,117.0,1.0,0.0,,99.15 -2314412,2022-04-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2314413,2022-04-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2314414,2022-04-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314415,2022-04-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314416,2022-04-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314417,2022-04-16,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2314418,2022-04-16,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,205,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2314419,2022-04-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,80.0,83.0,74.0,6.0,3.0,,92.5 -2314420,2022-04-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2314421,2022-04-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2314422,2022-04-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2314423,2022-04-16,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314424,2022-04-16,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314425,2022-04-16,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2314426,2022-04-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,155,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2314427,2022-04-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2314428,2022-04-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,20.0,18.0,20.0,0.0,0.0,,100.0 -2314429,2022-04-16,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,47,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2314430,2022-04-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314431,2022-04-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2314432,2022-04-16,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,68.0,51.0,68.0,0.0,0.0,,100.0 -2314433,2022-04-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314434,2022-04-16,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2314435,2022-04-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,112.0,118.0,38.0,74.0,6.0,,33.93 -2314436,2022-04-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,2.0,30.0,1.0,1.0,28.0,,50.0 -2314437,2022-04-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,27,Room Based Capacity,,,,,,37.0,30.0,25.0,12.0,0.0,,67.57 -2314438,2022-04-16,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314439,2022-04-16,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,91.0,89.0,2.0,0.0,,,,,,97.8, -2314440,2022-04-16,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314441,2022-04-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2314442,2022-04-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314443,2022-04-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2314444,2022-04-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2314445,2022-04-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2314446,2022-04-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314447,2022-04-16,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314448,2022-04-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2314449,2022-04-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,27.0,10.0,1.0,16.0,,,,,,90.91, -2314450,2022-04-16,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,71.0,63.0,1.0,7.0,,98.44 -2314451,2022-04-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2314452,2022-04-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2314453,2022-04-16,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,2,Bed Based Capacity,3.0,55.0,2.0,1.0,52.0,,,,,,66.67, -2314454,2022-04-16,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2314455,2022-04-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2314456,2022-04-16,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2314457,2022-04-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314458,2022-04-16,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314459,2022-04-16,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314460,2022-04-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,47,Bed Based Capacity,49.0,50.0,47.0,2.0,1.0,,,,,,95.92, -2314461,2022-04-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,224.0,245.0,219.0,5.0,21.0,,97.77 -2314462,2022-04-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2314463,2022-04-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2314464,2022-04-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2314465,2022-04-16,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2314466,2022-04-16,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,50.0,42.0,1.0,7.0,,,,,,97.67, -2314467,2022-04-16,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314468,2022-04-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2314469,2022-04-16,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314470,2022-04-16,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2314471,2022-04-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2314472,2022-04-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314473,2022-04-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314474,2022-04-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2314475,2022-04-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2314476,2022-04-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2314477,2022-04-16,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2314478,2022-04-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314479,2022-04-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,28.0,28.0,24.0,4.0,0.0,,,,,,85.71, -2314480,2022-04-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2314481,2022-04-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2314482,2022-04-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314483,2022-04-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2314484,2022-04-16,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314485,2022-04-16,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2314486,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,70.0,49.0,1.0,20.0,,,,,,98.0, -2314487,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314488,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2314489,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2314490,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2314491,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2314492,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,300,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2314493,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2314494,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2314495,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2314496,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2314497,2022-04-16,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2314498,2022-04-16,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2314499,2022-04-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2314500,2022-04-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314501,2022-04-16,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2314502,2022-04-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314503,2022-04-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2314504,2022-04-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2314505,2022-04-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2314506,2022-04-16,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314507,2022-04-16,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314508,2022-04-16,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2314509,2022-04-16,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2314510,2022-04-16,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2314511,2022-04-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314512,2022-04-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2314513,2022-04-16,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2314514,2022-04-16,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2314515,2022-04-16,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2314516,2022-04-16,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,67.0,76.0,67.0,0.0,9.0,,100.0 -2314517,2022-04-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,67.0,65.0,1.0,1.0,,,,,,98.48, -2314518,2022-04-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2314519,2022-04-16,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,53.0,47.0,1.0,5.0,,,,,,97.92, -2314520,2022-04-16,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2314521,2022-04-16,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,54.0,43.0,0.0,11.0,,,,,,100.0, -2314522,2022-04-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2314523,2022-04-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2314524,2022-04-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2314525,2022-04-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2314526,2022-04-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2314527,2022-04-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2314528,2022-04-16,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314529,2022-04-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2314530,2022-04-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2314531,2022-04-16,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314532,2022-04-16,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2314533,2022-04-16,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,10.0,8.0,0.0,2.0,,,,,,100.0, -2314534,2022-04-16,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,96,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2314535,2022-04-16,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314536,2022-04-16,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314537,2022-04-16,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2314538,2022-04-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314539,2022-04-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314540,2022-04-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314541,2022-04-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2314542,2022-04-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314543,2022-04-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2314544,2022-04-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2314545,2022-04-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314546,2022-04-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2314547,2022-04-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2314548,2022-04-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2314549,2022-04-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2314550,2022-04-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,88.0,100.0,87.0,1.0,12.0,,98.86 -2314551,2022-04-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,118.0,118.0,117.0,1.0,0.0,,99.15 -2314552,2022-04-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2314553,2022-04-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2314554,2022-04-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314555,2022-04-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314556,2022-04-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314557,2022-04-17,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,56,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2314558,2022-04-17,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,205,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2314559,2022-04-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,83.0,83.0,77.0,6.0,0.0,,92.77 -2314560,2022-04-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2314561,2022-04-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2314562,2022-04-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2314563,2022-04-17,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314564,2022-04-17,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314565,2022-04-17,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2314566,2022-04-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2314567,2022-04-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2314568,2022-04-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2314569,2022-04-17,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2314570,2022-04-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314571,2022-04-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2314572,2022-04-17,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2314573,2022-04-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314574,2022-04-17,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2314575,2022-04-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,112.0,118.0,38.0,74.0,6.0,,33.93 -2314576,2022-04-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,2.0,30.0,1.0,1.0,28.0,,50.0 -2314577,2022-04-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,25,Room Based Capacity,,,,,,37.0,30.0,23.0,14.0,0.0,,62.16 -2314578,2022-04-17,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314579,2022-04-17,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2314580,2022-04-17,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314581,2022-04-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2314582,2022-04-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314583,2022-04-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2314584,2022-04-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2314585,2022-04-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2314586,2022-04-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314587,2022-04-17,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314588,2022-04-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2314589,2022-04-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,27.0,9.0,2.0,16.0,,,,,,81.82, -2314590,2022-04-17,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2314591,2022-04-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2314592,2022-04-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2314593,2022-04-17,1,City of Toronto,91,,1158.0,Warden Hilltop CC,25 Mendelssohn St,M1L 0G8,Scarborough,ON,16731,COVID19 Response - Warden Hilltop,Mixed Adult,Emergency,24-Hour Respite Site,Winter Programs,1,Bed Based Capacity,3.0,55.0,1.0,2.0,52.0,,,,,,33.33, -2314594,2022-04-17,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2314595,2022-04-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2314596,2022-04-17,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2314597,2022-04-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2314598,2022-04-17,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314599,2022-04-17,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314600,2022-04-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2314601,2022-04-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,224.0,245.0,219.0,5.0,21.0,,97.77 -2314602,2022-04-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2314603,2022-04-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2314604,2022-04-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2314605,2022-04-17,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2314606,2022-04-17,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,50.0,42.0,1.0,7.0,,,,,,97.67, -2314607,2022-04-17,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314608,2022-04-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2314609,2022-04-17,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314610,2022-04-17,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2314611,2022-04-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2314612,2022-04-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314613,2022-04-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314614,2022-04-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314615,2022-04-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2314616,2022-04-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2314617,2022-04-17,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2314618,2022-04-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314619,2022-04-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2314620,2022-04-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2314621,2022-04-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2314622,2022-04-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314623,2022-04-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2314624,2022-04-17,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314625,2022-04-17,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2314626,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,70.0,48.0,1.0,21.0,,,,,,97.96, -2314627,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314628,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2314629,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2314630,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2314631,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2314632,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2314633,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2314634,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2314635,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2314636,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2314637,2022-04-17,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2314638,2022-04-17,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2314639,2022-04-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2314640,2022-04-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314641,2022-04-17,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2314642,2022-04-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314643,2022-04-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2314644,2022-04-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2314645,2022-04-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2314646,2022-04-17,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314647,2022-04-17,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314648,2022-04-17,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2314649,2022-04-17,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2314650,2022-04-17,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2314651,2022-04-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314652,2022-04-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2314653,2022-04-17,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2314654,2022-04-17,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314655,2022-04-17,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2314656,2022-04-17,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,67.0,76.0,67.0,0.0,9.0,,100.0 -2314657,2022-04-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2314658,2022-04-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2314659,2022-04-17,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,53.0,47.0,1.0,5.0,,,,,,97.92, -2314660,2022-04-17,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2314661,2022-04-17,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,54.0,43.0,0.0,11.0,,,,,,100.0, -2314662,2022-04-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2314663,2022-04-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2314664,2022-04-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2314665,2022-04-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2314666,2022-04-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2314667,2022-04-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2314668,2022-04-17,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314669,2022-04-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2314670,2022-04-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2314671,2022-04-17,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314672,2022-04-17,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2314673,2022-04-17,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2314674,2022-04-17,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2314675,2022-04-17,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314676,2022-04-17,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2314677,2022-04-17,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2314678,2022-04-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314679,2022-04-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314680,2022-04-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314681,2022-04-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2314682,2022-04-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314683,2022-04-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2314684,2022-04-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2314685,2022-04-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314686,2022-04-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2314687,2022-04-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2314688,2022-04-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2314689,2022-04-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2314690,2022-04-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,262,Room Based Capacity,,,,,,87.0,100.0,87.0,0.0,13.0,,100.0 -2314691,2022-04-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,378,Room Based Capacity,,,,,,118.0,118.0,116.0,2.0,0.0,,98.31 -2314692,2022-04-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2314693,2022-04-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2314694,2022-04-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314695,2022-04-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314696,2022-04-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314697,2022-04-18,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,24.0,30.0,23.0,1.0,6.0,,95.83 -2314698,2022-04-18,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,205,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2314699,2022-04-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,83.0,83.0,77.0,6.0,0.0,,92.77 -2314700,2022-04-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2314701,2022-04-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2314702,2022-04-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2314703,2022-04-18,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314704,2022-04-18,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314705,2022-04-18,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2314706,2022-04-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2314707,2022-04-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2314708,2022-04-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2314709,2022-04-18,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2314710,2022-04-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314711,2022-04-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2314712,2022-04-18,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2314713,2022-04-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314714,2022-04-18,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2314715,2022-04-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,112.0,118.0,38.0,74.0,6.0,,33.93 -2314716,2022-04-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,2.0,30.0,1.0,1.0,28.0,,50.0 -2314717,2022-04-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,21,Room Based Capacity,,,,,,37.0,30.0,21.0,16.0,0.0,,56.76 -2314718,2022-04-18,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314719,2022-04-18,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2314720,2022-04-18,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314721,2022-04-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2314722,2022-04-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314723,2022-04-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2314724,2022-04-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,66.0,66.0,65.0,1.0,0.0,,,,,,98.48, -2314725,2022-04-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2314726,2022-04-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314727,2022-04-18,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314728,2022-04-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2314729,2022-04-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,27.0,9.0,2.0,16.0,,,,,,81.82, -2314730,2022-04-18,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,71.0,62.0,2.0,7.0,,96.88 -2314731,2022-04-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2314732,2022-04-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2314733,2022-04-18,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2314734,2022-04-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2314735,2022-04-18,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314736,2022-04-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314737,2022-04-18,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314738,2022-04-18,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314739,2022-04-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2314740,2022-04-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,224.0,245.0,218.0,6.0,21.0,,97.32 -2314741,2022-04-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2314742,2022-04-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2314743,2022-04-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2314744,2022-04-18,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2314745,2022-04-18,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,50.0,42.0,1.0,7.0,,,,,,97.67, -2314746,2022-04-18,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314747,2022-04-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2314748,2022-04-18,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314749,2022-04-18,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2314750,2022-04-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2314751,2022-04-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314752,2022-04-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314753,2022-04-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314754,2022-04-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2314755,2022-04-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2314756,2022-04-18,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2314757,2022-04-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314758,2022-04-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2314759,2022-04-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314760,2022-04-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2314761,2022-04-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314762,2022-04-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2314763,2022-04-18,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314764,2022-04-18,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2314765,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,49.0,70.0,47.0,2.0,21.0,,,,,,95.92, -2314766,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314767,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2314768,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2314769,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2314770,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2314771,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2314772,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2314773,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2314774,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2314775,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2314776,2022-04-18,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2314777,2022-04-18,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2314778,2022-04-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2314779,2022-04-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314780,2022-04-18,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2314781,2022-04-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314782,2022-04-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2314783,2022-04-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2314784,2022-04-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2314785,2022-04-18,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314786,2022-04-18,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314787,2022-04-18,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2314788,2022-04-18,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2314789,2022-04-18,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2314790,2022-04-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314791,2022-04-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2314792,2022-04-18,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2314793,2022-04-18,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314794,2022-04-18,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2314795,2022-04-18,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,67.0,76.0,67.0,0.0,9.0,,100.0 -2314796,2022-04-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2314797,2022-04-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2314798,2022-04-18,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,48.0,53.0,45.0,3.0,5.0,,,,,,93.75, -2314799,2022-04-18,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2314800,2022-04-18,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,54.0,43.0,0.0,11.0,,,,,,100.0, -2314801,2022-04-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2314802,2022-04-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2314803,2022-04-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2314804,2022-04-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2314805,2022-04-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2314806,2022-04-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2314807,2022-04-18,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314808,2022-04-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2314809,2022-04-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2314810,2022-04-18,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314811,2022-04-18,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2314812,2022-04-18,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314813,2022-04-18,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2314814,2022-04-18,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314815,2022-04-18,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2314816,2022-04-18,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2314817,2022-04-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314818,2022-04-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2314819,2022-04-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314820,2022-04-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2314821,2022-04-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314822,2022-04-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2314823,2022-04-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2314824,2022-04-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314825,2022-04-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2314826,2022-04-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2314827,2022-04-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2314828,2022-04-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2314829,2022-04-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,86.0,100.0,86.0,0.0,14.0,,100.0 -2314830,2022-04-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,384,Room Based Capacity,,,,,,118.0,118.0,118.0,0.0,0.0,,100.0 -2314831,2022-04-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2314832,2022-04-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2314833,2022-04-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314834,2022-04-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314835,2022-04-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314836,2022-04-19,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2314837,2022-04-19,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,203,Room Based Capacity,,,,,,62.0,65.0,62.0,0.0,3.0,,100.0 -2314838,2022-04-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,83.0,83.0,74.0,9.0,0.0,,89.16 -2314839,2022-04-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2314840,2022-04-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2314841,2022-04-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2314842,2022-04-19,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314843,2022-04-19,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314844,2022-04-19,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,96.0,100.0,96.0,0.0,4.0,,100.0 -2314845,2022-04-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,148,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2314846,2022-04-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2314847,2022-04-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2314848,2022-04-19,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2314849,2022-04-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314850,2022-04-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2314851,2022-04-19,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2314852,2022-04-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314853,2022-04-19,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2314854,2022-04-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,112.0,118.0,41.0,71.0,6.0,,36.61 -2314855,2022-04-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,2.0,30.0,1.0,1.0,28.0,,50.0 -2314856,2022-04-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,21,Room Based Capacity,,,,,,37.0,30.0,21.0,16.0,0.0,,56.76 -2314857,2022-04-19,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314858,2022-04-19,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,91.0,91.0,88.0,3.0,0.0,,,,,,96.7, -2314859,2022-04-19,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314860,2022-04-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2314861,2022-04-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,10.0,8.0,2.0,0.0,,,,,,80.0, -2314862,2022-04-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2314863,2022-04-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2314864,2022-04-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2314865,2022-04-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314866,2022-04-19,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314867,2022-04-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2314868,2022-04-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2314869,2022-04-19,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2314870,2022-04-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,9.0,9.0,0.0,0.0,,,,,,100.0, -2314871,2022-04-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2314872,2022-04-19,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2314873,2022-04-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2314874,2022-04-19,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314875,2022-04-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2314876,2022-04-19,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314877,2022-04-19,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314878,2022-04-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2314879,2022-04-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,225.0,245.0,218.0,7.0,20.0,,96.89 -2314880,2022-04-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2314881,2022-04-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2314882,2022-04-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2314883,2022-04-19,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2314884,2022-04-19,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2314885,2022-04-19,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314886,2022-04-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2314887,2022-04-19,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314888,2022-04-19,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2314889,2022-04-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2314890,2022-04-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2314891,2022-04-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314892,2022-04-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314893,2022-04-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2314894,2022-04-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2314895,2022-04-19,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2314896,2022-04-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2314897,2022-04-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2314898,2022-04-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2314899,2022-04-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2314900,2022-04-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2314901,2022-04-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2314902,2022-04-19,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314903,2022-04-19,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,91.0,1.0,2.0,,98.91 -2314904,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,50.0,70.0,47.0,3.0,20.0,,,,,,94.0, -2314905,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314906,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314907,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2314908,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2314909,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2314910,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2314911,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2314912,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2314913,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2314914,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2314915,2022-04-19,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2314916,2022-04-19,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2314917,2022-04-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2314918,2022-04-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314919,2022-04-19,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2314920,2022-04-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2314921,2022-04-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2314922,2022-04-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2314923,2022-04-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2314924,2022-04-19,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314925,2022-04-19,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314926,2022-04-19,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2314927,2022-04-19,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2314928,2022-04-19,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2314929,2022-04-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314930,2022-04-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2314931,2022-04-19,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2314932,2022-04-19,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2314933,2022-04-19,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2314934,2022-04-19,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,75.0,76.0,75.0,0.0,1.0,,100.0 -2314935,2022-04-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,65.0,67.0,65.0,0.0,2.0,,,,,,100.0, -2314936,2022-04-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2314937,2022-04-19,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,48.0,53.0,45.0,3.0,5.0,,,,,,93.75, -2314938,2022-04-19,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2314939,2022-04-19,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,54.0,42.0,0.0,12.0,,,,,,100.0, -2314940,2022-04-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2314941,2022-04-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2314942,2022-04-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2314943,2022-04-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2314944,2022-04-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2314945,2022-04-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2314946,2022-04-19,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314947,2022-04-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2314948,2022-04-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2314949,2022-04-19,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2314950,2022-04-19,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2314951,2022-04-19,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2314952,2022-04-19,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2314953,2022-04-19,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314954,2022-04-19,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2314955,2022-04-19,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2314956,2022-04-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2314957,2022-04-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2314958,2022-04-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2314959,2022-04-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2314960,2022-04-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2314961,2022-04-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2314962,2022-04-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2314963,2022-04-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2314964,2022-04-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2314965,2022-04-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2314966,2022-04-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2314967,2022-04-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2314968,2022-04-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,87.0,100.0,87.0,0.0,13.0,,100.0 -2314969,2022-04-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,377,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2314970,2022-04-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2314971,2022-04-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2314972,2022-04-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2314973,2022-04-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2314974,2022-04-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2314975,2022-04-20,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2314976,2022-04-20,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,200,Room Based Capacity,,,,,,62.0,65.0,61.0,1.0,3.0,,98.39 -2314977,2022-04-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,83.0,83.0,76.0,7.0,0.0,,91.57 -2314978,2022-04-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2314979,2022-04-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2314980,2022-04-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2314981,2022-04-20,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2314982,2022-04-20,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2314983,2022-04-20,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2314984,2022-04-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,148,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2314985,2022-04-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,75,Room Based Capacity,,,,,,23.0,40.0,23.0,0.0,17.0,,100.0 -2314986,2022-04-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,36,Room Based Capacity,,,,,,18.0,18.0,18.0,0.0,0.0,,100.0 -2314987,2022-04-20,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2314988,2022-04-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2314989,2022-04-20,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2314990,2022-04-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2314991,2022-04-20,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2314992,2022-04-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,112.0,118.0,41.0,71.0,6.0,,36.61 -2314993,2022-04-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,24,Room Based Capacity,,,,,,37.0,30.0,24.0,13.0,0.0,,64.86 -2314994,2022-04-20,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2314995,2022-04-20,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,91.0,89.0,2.0,0.0,,,,,,97.8, -2314996,2022-04-20,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2314997,2022-04-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2314998,2022-04-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2314999,2022-04-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315000,2022-04-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2315001,2022-04-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315002,2022-04-20,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,52.0,53.0,51.0,1.0,1.0,,,,,,98.08, -2315003,2022-04-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315004,2022-04-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,27.0,10.0,2.0,15.0,,,,,,83.33, -2315005,2022-04-20,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2315006,2022-04-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2315007,2022-04-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2315008,2022-04-20,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315009,2022-04-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2315010,2022-04-20,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2315011,2022-04-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2315012,2022-04-20,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315013,2022-04-20,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315014,2022-04-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315015,2022-04-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,225.0,245.0,217.0,8.0,20.0,,96.44 -2315016,2022-04-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2315017,2022-04-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315018,2022-04-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2315019,2022-04-20,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315020,2022-04-20,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315021,2022-04-20,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315022,2022-04-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2315023,2022-04-20,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315024,2022-04-20,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315025,2022-04-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2315026,2022-04-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2315027,2022-04-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315028,2022-04-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315029,2022-04-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2315030,2022-04-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2315031,2022-04-20,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315032,2022-04-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315033,2022-04-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2315034,2022-04-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2315035,2022-04-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,27.0,24.0,1.0,2.0,,,,,,96.0, -2315036,2022-04-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315037,2022-04-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2315038,2022-04-20,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315039,2022-04-20,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2315040,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,70.0,49.0,0.0,21.0,,,,,,100.0, -2315041,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2315042,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315043,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2315044,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2315045,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2315046,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2315047,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2315048,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315049,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2315050,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2315051,2022-04-20,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2315052,2022-04-20,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2315053,2022-04-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2315054,2022-04-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315055,2022-04-20,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2315056,2022-04-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315057,2022-04-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2315058,2022-04-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2315059,2022-04-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2315060,2022-04-20,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315061,2022-04-20,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315062,2022-04-20,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2315063,2022-04-20,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2315064,2022-04-20,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2315065,2022-04-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315066,2022-04-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2315067,2022-04-20,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2315068,2022-04-20,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315069,2022-04-20,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2315070,2022-04-20,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2315071,2022-04-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,65.0,67.0,65.0,0.0,2.0,,,,,,100.0, -2315072,2022-04-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2315073,2022-04-20,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,53.0,45.0,0.0,8.0,,,,,,100.0, -2315074,2022-04-20,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2315075,2022-04-20,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,42.0,54.0,42.0,0.0,12.0,,,,,,100.0, -2315076,2022-04-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2315077,2022-04-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2315078,2022-04-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2315079,2022-04-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2315080,2022-04-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2315081,2022-04-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2315082,2022-04-20,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315083,2022-04-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2315084,2022-04-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2315085,2022-04-20,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315086,2022-04-20,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2315087,2022-04-20,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315088,2022-04-20,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2315089,2022-04-20,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315090,2022-04-20,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2315091,2022-04-20,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2315092,2022-04-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315093,2022-04-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315094,2022-04-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315095,2022-04-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2315096,2022-04-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315097,2022-04-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2315098,2022-04-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2315099,2022-04-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315100,2022-04-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2315101,2022-04-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2315102,2022-04-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2315103,2022-04-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2315104,2022-04-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,87.0,100.0,87.0,0.0,13.0,,100.0 -2315105,2022-04-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,377,Room Based Capacity,,,,,,117.0,118.0,117.0,0.0,1.0,,100.0 -2315106,2022-04-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2315107,2022-04-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,157,Room Based Capacity,,,,,,152.0,155.0,152.0,0.0,3.0,,100.0 -2315108,2022-04-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315109,2022-04-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2315110,2022-04-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315111,2022-04-21,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2315112,2022-04-21,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,202,Room Based Capacity,,,,,,65.0,65.0,62.0,3.0,0.0,,95.38 -2315113,2022-04-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,83.0,83.0,75.0,8.0,0.0,,90.36 -2315114,2022-04-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2315115,2022-04-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2315116,2022-04-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2315117,2022-04-21,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2315118,2022-04-21,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2315119,2022-04-21,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2315120,2022-04-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2315121,2022-04-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2315122,2022-04-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,19.0,18.0,19.0,0.0,0.0,,100.0 -2315123,2022-04-21,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2315124,2022-04-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2315125,2022-04-21,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2315126,2022-04-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315127,2022-04-21,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2315128,2022-04-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,49,Room Based Capacity,,,,,,42.0,118.0,42.0,0.0,76.0,,100.0 -2315129,2022-04-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,34,Room Based Capacity,,,,,,44.0,30.0,34.0,10.0,0.0,,77.27 -2315130,2022-04-21,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2315131,2022-04-21,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2315132,2022-04-21,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315133,2022-04-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,51.0,51.0,46.0,5.0,0.0,,,,,,90.2, -2315134,2022-04-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2315135,2022-04-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315136,2022-04-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2315137,2022-04-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315138,2022-04-21,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2315139,2022-04-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,16171,Streets to Homes - 129 Peter Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315140,2022-04-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,27.0,11.0,1.0,15.0,,,,,,91.67, -2315141,2022-04-21,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2315142,2022-04-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2315143,2022-04-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2315144,2022-04-21,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315145,2022-04-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2315146,2022-04-21,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2315147,2022-04-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2315148,2022-04-21,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315149,2022-04-21,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315150,2022-04-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315151,2022-04-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,229.0,245.0,219.0,10.0,16.0,,95.63 -2315152,2022-04-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2315153,2022-04-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315154,2022-04-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2315155,2022-04-21,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315156,2022-04-21,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315157,2022-04-21,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315158,2022-04-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2315159,2022-04-21,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315160,2022-04-21,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315161,2022-04-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2315162,2022-04-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2315163,2022-04-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2315164,2022-04-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315165,2022-04-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2315166,2022-04-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2315167,2022-04-21,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315168,2022-04-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315169,2022-04-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2315170,2022-04-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2315171,2022-04-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,27.0,25.0,0.0,2.0,,,,,,100.0, -2315172,2022-04-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315173,2022-04-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2315174,2022-04-21,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2315175,2022-04-21,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,91.0,2.0,1.0,,97.85 -2315176,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,70.0,46.0,4.0,20.0,,,,,,92.0, -2315177,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315178,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315179,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2315180,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2315181,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2315182,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2315183,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2315184,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315185,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2315186,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2315187,2022-04-21,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2315188,2022-04-21,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2315189,2022-04-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2315190,2022-04-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,15.0,10.0,0.0,5.0,,,,,,100.0, -2315191,2022-04-21,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2315192,2022-04-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315193,2022-04-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2315194,2022-04-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2315195,2022-04-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2315196,2022-04-21,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315197,2022-04-21,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315198,2022-04-21,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2315199,2022-04-21,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2315200,2022-04-21,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2315201,2022-04-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315202,2022-04-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2315203,2022-04-21,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2315204,2022-04-21,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315205,2022-04-21,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2315206,2022-04-21,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2315207,2022-04-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,65.0,67.0,65.0,0.0,2.0,,,,,,100.0, -2315208,2022-04-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2315209,2022-04-21,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,53.0,45.0,0.0,8.0,,,,,,100.0, -2315210,2022-04-21,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2315211,2022-04-21,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,54.0,38.0,0.0,16.0,,,,,,100.0, -2315212,2022-04-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2315213,2022-04-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2315214,2022-04-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2315215,2022-04-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2315216,2022-04-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2315217,2022-04-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2315218,2022-04-21,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2315219,2022-04-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2315220,2022-04-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2315221,2022-04-21,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315222,2022-04-21,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2315223,2022-04-21,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315224,2022-04-21,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2315225,2022-04-21,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315226,2022-04-21,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2315227,2022-04-21,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2315228,2022-04-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315229,2022-04-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315230,2022-04-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315231,2022-04-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2315232,2022-04-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315233,2022-04-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2315234,2022-04-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315235,2022-04-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315236,2022-04-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2315237,2022-04-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2315238,2022-04-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2315239,2022-04-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2315240,2022-04-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,261,Room Based Capacity,,,,,,86.0,100.0,86.0,0.0,14.0,,100.0 -2315241,2022-04-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2315242,2022-04-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2315243,2022-04-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,157,Room Based Capacity,,,,,,152.0,155.0,152.0,0.0,3.0,,100.0 -2315244,2022-04-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315245,2022-04-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2315246,2022-04-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315247,2022-04-22,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2315248,2022-04-22,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2315249,2022-04-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,83.0,83.0,78.0,5.0,0.0,,93.98 -2315250,2022-04-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2315251,2022-04-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2315252,2022-04-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2315253,2022-04-22,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2315254,2022-04-22,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2315255,2022-04-22,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2315256,2022-04-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2315257,2022-04-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2315258,2022-04-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2315259,2022-04-22,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2315260,2022-04-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2315261,2022-04-22,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2315262,2022-04-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315263,2022-04-22,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2315264,2022-04-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,59,Room Based Capacity,,,,,,60.0,118.0,51.0,9.0,58.0,,85.0 -2315265,2022-04-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,35,Room Based Capacity,,,,,,48.0,30.0,35.0,13.0,0.0,,72.92 -2315266,2022-04-22,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2315267,2022-04-22,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,91.0,91.0,91.0,0.0,0.0,,,,,,100.0, -2315268,2022-04-22,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315269,2022-04-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2315270,2022-04-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2315271,2022-04-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315272,2022-04-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2315273,2022-04-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315274,2022-04-22,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2315275,2022-04-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2315276,2022-04-22,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2315277,2022-04-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2315278,2022-04-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2315279,2022-04-22,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315280,2022-04-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2315281,2022-04-22,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2315282,2022-04-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2315283,2022-04-22,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315284,2022-04-22,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315285,2022-04-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315286,2022-04-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,226.0,245.0,223.0,3.0,19.0,,98.67 -2315287,2022-04-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2315288,2022-04-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315289,2022-04-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2315290,2022-04-22,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315291,2022-04-22,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315292,2022-04-22,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315293,2022-04-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2315294,2022-04-22,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315295,2022-04-22,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315296,2022-04-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2315297,2022-04-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2315298,2022-04-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315299,2022-04-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315300,2022-04-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2315301,2022-04-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2315302,2022-04-22,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315303,2022-04-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315304,2022-04-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2315305,2022-04-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315306,2022-04-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2315307,2022-04-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315308,2022-04-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2315309,2022-04-22,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2315310,2022-04-22,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2315311,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,70.0,47.0,1.0,22.0,,,,,,97.92, -2315312,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2315313,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315314,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2315315,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2315316,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,218.0,235.0,218.0,0.0,17.0,,100.0 -2315317,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2315318,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2315319,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2315320,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2315321,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2315322,2022-04-22,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2315323,2022-04-22,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2315324,2022-04-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2315325,2022-04-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,15.0,9.0,1.0,5.0,,,,,,90.0, -2315326,2022-04-22,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2315327,2022-04-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315328,2022-04-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2315329,2022-04-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2315330,2022-04-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2315331,2022-04-22,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315332,2022-04-22,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315333,2022-04-22,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2315334,2022-04-22,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2315335,2022-04-22,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2315336,2022-04-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315337,2022-04-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2315338,2022-04-22,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2315339,2022-04-22,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315340,2022-04-22,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2315341,2022-04-22,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2315342,2022-04-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,65.0,67.0,65.0,0.0,2.0,,,,,,100.0, -2315343,2022-04-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2315344,2022-04-22,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,53.0,45.0,0.0,8.0,,,,,,100.0, -2315345,2022-04-22,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2315346,2022-04-22,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,54.0,37.0,0.0,17.0,,,,,,100.0, -2315347,2022-04-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2315348,2022-04-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2315349,2022-04-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2315350,2022-04-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,78.0,76.0,0.0,2.0,,100.0 -2315351,2022-04-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2315352,2022-04-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2315353,2022-04-22,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315354,2022-04-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2315355,2022-04-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2315356,2022-04-22,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315357,2022-04-22,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2315358,2022-04-22,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315359,2022-04-22,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2315360,2022-04-22,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315361,2022-04-22,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2315362,2022-04-22,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2315363,2022-04-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315364,2022-04-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315365,2022-04-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315366,2022-04-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2315367,2022-04-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315368,2022-04-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2315369,2022-04-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315370,2022-04-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315371,2022-04-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2315372,2022-04-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2315373,2022-04-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2315374,2022-04-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2315375,2022-04-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,86.0,100.0,86.0,0.0,14.0,,100.0 -2315376,2022-04-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2315377,2022-04-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2315378,2022-04-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,151.0,155.0,151.0,0.0,4.0,,100.0 -2315379,2022-04-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315380,2022-04-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2315381,2022-04-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315382,2022-04-23,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2315383,2022-04-23,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2315384,2022-04-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,83.0,83.0,77.0,6.0,0.0,,92.77 -2315385,2022-04-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2315386,2022-04-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2315387,2022-04-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2315388,2022-04-23,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2315389,2022-04-23,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2315390,2022-04-23,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2315391,2022-04-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2315392,2022-04-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2315393,2022-04-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2315394,2022-04-23,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2315395,2022-04-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2315396,2022-04-23,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2315397,2022-04-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315398,2022-04-23,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2315399,2022-04-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,64,Room Based Capacity,,,,,,60.0,118.0,56.0,4.0,58.0,,93.33 -2315400,2022-04-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,30.0,1.0,0.0,29.0,,100.0 -2315401,2022-04-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,33,Room Based Capacity,,,,,,48.0,30.0,33.0,15.0,0.0,,68.75 -2315402,2022-04-23,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2315403,2022-04-23,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,91.0,91.0,91.0,0.0,0.0,,,,,,100.0, -2315404,2022-04-23,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315405,2022-04-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2315406,2022-04-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2315407,2022-04-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315408,2022-04-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2315409,2022-04-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315410,2022-04-23,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2315411,2022-04-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,27.0,27.0,23.0,4.0,0.0,,,,,,85.19, -2315412,2022-04-23,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2315413,2022-04-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2315414,2022-04-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2315415,2022-04-23,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315416,2022-04-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2315417,2022-04-23,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2315418,2022-04-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2315419,2022-04-23,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315420,2022-04-23,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315421,2022-04-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315422,2022-04-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,226.0,245.0,222.0,4.0,19.0,,98.23 -2315423,2022-04-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2315424,2022-04-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315425,2022-04-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2315426,2022-04-23,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315427,2022-04-23,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315428,2022-04-23,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2315429,2022-04-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2315430,2022-04-23,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315431,2022-04-23,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315432,2022-04-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315433,2022-04-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2315434,2022-04-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2315435,2022-04-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315436,2022-04-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2315437,2022-04-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2315438,2022-04-23,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315439,2022-04-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315440,2022-04-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2315441,2022-04-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2315442,2022-04-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2315443,2022-04-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315444,2022-04-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2315445,2022-04-23,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2315446,2022-04-23,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2315447,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,48.0,70.0,46.0,2.0,22.0,,,,,,95.83, -2315448,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2315449,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315450,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,55.0,52.0,1.0,2.0,,,,,,98.11, -2315451,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2315452,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2315453,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2315454,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2315455,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2315456,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2315457,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2315458,2022-04-23,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2315459,2022-04-23,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2315460,2022-04-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2315461,2022-04-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2315462,2022-04-23,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2315463,2022-04-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315464,2022-04-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2315465,2022-04-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2315466,2022-04-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2315467,2022-04-23,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315468,2022-04-23,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315469,2022-04-23,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2315470,2022-04-23,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2315471,2022-04-23,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2315472,2022-04-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315473,2022-04-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2315474,2022-04-23,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2315475,2022-04-23,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315476,2022-04-23,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2315477,2022-04-23,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2315478,2022-04-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,65.0,67.0,65.0,0.0,2.0,,,,,,100.0, -2315479,2022-04-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2315480,2022-04-23,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,53.0,45.0,0.0,8.0,,,,,,100.0, -2315481,2022-04-23,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2315482,2022-04-23,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,54.0,40.0,0.0,14.0,,,,,,100.0, -2315483,2022-04-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2315484,2022-04-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2315485,2022-04-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2315486,2022-04-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2315487,2022-04-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2315488,2022-04-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2315489,2022-04-23,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315490,2022-04-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2315491,2022-04-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2315492,2022-04-23,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315493,2022-04-23,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2315494,2022-04-23,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315495,2022-04-23,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2315496,2022-04-23,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315497,2022-04-23,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2315498,2022-04-23,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2315499,2022-04-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315500,2022-04-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315501,2022-04-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315502,2022-04-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2315503,2022-04-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,23.0,23.0,21.0,2.0,0.0,,,,,,91.3, -2315504,2022-04-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2315505,2022-04-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315506,2022-04-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315507,2022-04-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2315508,2022-04-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2315509,2022-04-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2315510,2022-04-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2315511,2022-04-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,86.0,100.0,86.0,0.0,14.0,,100.0 -2315512,2022-04-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2315513,2022-04-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2315514,2022-04-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,151.0,155.0,151.0,0.0,4.0,,100.0 -2315515,2022-04-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315516,2022-04-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2315517,2022-04-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315518,2022-04-24,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2315519,2022-04-24,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2315520,2022-04-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,83.0,83.0,77.0,6.0,0.0,,92.77 -2315521,2022-04-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2315522,2022-04-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2315523,2022-04-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2315524,2022-04-24,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2315525,2022-04-24,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2315526,2022-04-24,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2315527,2022-04-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2315528,2022-04-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,77,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2315529,2022-04-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2315530,2022-04-24,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2315531,2022-04-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2315532,2022-04-24,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2315533,2022-04-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315534,2022-04-24,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,36.0,37.0,35.0,1.0,1.0,,97.22 -2315535,2022-04-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,61.0,118.0,57.0,4.0,57.0,,93.44 -2315536,2022-04-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,30.0,1.0,0.0,29.0,,100.0 -2315537,2022-04-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,29,Room Based Capacity,,,,,,48.0,30.0,29.0,19.0,0.0,,60.42 -2315538,2022-04-24,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2315539,2022-04-24,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2315540,2022-04-24,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315541,2022-04-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2315542,2022-04-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2315543,2022-04-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315544,2022-04-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2315545,2022-04-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315546,2022-04-24,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2315547,2022-04-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,27.0,27.0,23.0,4.0,0.0,,,,,,85.19, -2315548,2022-04-24,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2315549,2022-04-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2315550,2022-04-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2315551,2022-04-24,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315552,2022-04-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2315553,2022-04-24,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2315554,2022-04-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2315555,2022-04-24,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315556,2022-04-24,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315557,2022-04-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315558,2022-04-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,226.0,245.0,222.0,4.0,19.0,,98.23 -2315559,2022-04-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2315560,2022-04-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315561,2022-04-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2315562,2022-04-24,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315563,2022-04-24,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315564,2022-04-24,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315565,2022-04-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2315566,2022-04-24,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315567,2022-04-24,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315568,2022-04-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315569,2022-04-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2315570,2022-04-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315571,2022-04-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315572,2022-04-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2315573,2022-04-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,277,Room Based Capacity,,,,,,268.0,271.0,268.0,0.0,3.0,,100.0 -2315574,2022-04-24,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315575,2022-04-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315576,2022-04-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2315577,2022-04-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2315578,2022-04-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,27.0,24.0,0.0,3.0,,,,,,100.0, -2315579,2022-04-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315580,2022-04-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2315581,2022-04-24,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2315582,2022-04-24,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2315583,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,48.0,70.0,43.0,5.0,22.0,,,,,,89.58, -2315584,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315585,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315586,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,55.0,53.0,0.0,2.0,,,,,,100.0, -2315587,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2315588,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,211.0,235.0,211.0,0.0,24.0,,100.0 -2315589,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2315590,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2315591,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315592,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2315593,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,40.0,38.0,0.0,2.0,,,,,,100.0, -2315594,2022-04-24,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2315595,2022-04-24,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2315596,2022-04-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2315597,2022-04-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2315598,2022-04-24,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2315599,2022-04-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315600,2022-04-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2315601,2022-04-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2315602,2022-04-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2315603,2022-04-24,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315604,2022-04-24,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315605,2022-04-24,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2315606,2022-04-24,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,26.0,25.0,0.0,1.0,,,,,,100.0, -2315607,2022-04-24,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2315608,2022-04-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315609,2022-04-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2315610,2022-04-24,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2315611,2022-04-24,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315612,2022-04-24,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2315613,2022-04-24,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,224,Room Based Capacity,,,,,,75.0,76.0,75.0,0.0,1.0,,100.0 -2315614,2022-04-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2315615,2022-04-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2315616,2022-04-24,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,53.0,45.0,0.0,8.0,,,,,,100.0, -2315617,2022-04-24,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2315618,2022-04-24,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,54.0,45.0,0.0,9.0,,,,,,100.0, -2315619,2022-04-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,129.0,131.0,128.0,1.0,2.0,,99.22 -2315620,2022-04-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2315621,2022-04-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2315622,2022-04-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,78.0,77.0,0.0,1.0,,100.0 -2315623,2022-04-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2315624,2022-04-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2315625,2022-04-24,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315626,2022-04-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2315627,2022-04-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2315628,2022-04-24,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315629,2022-04-24,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2315630,2022-04-24,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315631,2022-04-24,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2315632,2022-04-24,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315633,2022-04-24,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2315634,2022-04-24,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2315635,2022-04-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315636,2022-04-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315637,2022-04-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2315638,2022-04-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2315639,2022-04-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2315640,2022-04-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2315641,2022-04-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315642,2022-04-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315643,2022-04-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,317,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2315644,2022-04-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2315645,2022-04-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2315646,2022-04-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2315647,2022-04-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,84.0,100.0,84.0,0.0,16.0,,100.0 -2315648,2022-04-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2315649,2022-04-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2315650,2022-04-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,150.0,155.0,150.0,0.0,5.0,,100.0 -2315651,2022-04-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315652,2022-04-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2315653,2022-04-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315654,2022-04-25,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2315655,2022-04-25,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2315656,2022-04-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2315657,2022-04-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2315658,2022-04-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2315659,2022-04-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2315660,2022-04-25,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,12.0,12.0,10.0,2.0,0.0,,,,,,83.33, -2315661,2022-04-25,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2315662,2022-04-25,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2315663,2022-04-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2315664,2022-04-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,76,Room Based Capacity,,,,,,24.0,40.0,24.0,0.0,16.0,,100.0 -2315665,2022-04-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,33,Room Based Capacity,,,,,,17.0,18.0,17.0,0.0,1.0,,100.0 -2315666,2022-04-25,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2315667,2022-04-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2315668,2022-04-25,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2315669,2022-04-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315670,2022-04-25,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2315671,2022-04-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,61.0,118.0,57.0,4.0,57.0,,93.44 -2315672,2022-04-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,32,Room Based Capacity,,,,,,48.0,30.0,30.0,18.0,0.0,,62.5 -2315673,2022-04-25,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2315674,2022-04-25,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,91.0,91.0,90.0,1.0,0.0,,,,,,98.9, -2315675,2022-04-25,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315676,2022-04-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2315677,2022-04-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2315678,2022-04-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315679,2022-04-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2315680,2022-04-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315681,2022-04-25,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2315682,2022-04-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2315683,2022-04-25,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2315684,2022-04-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2315685,2022-04-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2315686,2022-04-25,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315687,2022-04-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2315688,2022-04-25,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2315689,2022-04-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2315690,2022-04-25,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315691,2022-04-25,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2315692,2022-04-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315693,2022-04-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,226.0,245.0,220.0,6.0,19.0,,97.35 -2315694,2022-04-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,41.0,40.0,0.0,1.0,,,,,,100.0, -2315695,2022-04-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315696,2022-04-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2315697,2022-04-25,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315698,2022-04-25,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315699,2022-04-25,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315700,2022-04-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2315701,2022-04-25,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315702,2022-04-25,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315703,2022-04-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315704,2022-04-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2315705,2022-04-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315706,2022-04-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315707,2022-04-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2315708,2022-04-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2315709,2022-04-25,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315710,2022-04-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315711,2022-04-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2315712,2022-04-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2315713,2022-04-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2315714,2022-04-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315715,2022-04-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2315716,2022-04-25,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2315717,2022-04-25,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2315718,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2315719,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315720,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315721,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2315722,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2315723,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,206.0,235.0,206.0,0.0,29.0,,100.0 -2315724,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2315725,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2315726,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315727,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2315728,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2315729,2022-04-25,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2315730,2022-04-25,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2315731,2022-04-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2315732,2022-04-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2315733,2022-04-25,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2315734,2022-04-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315735,2022-04-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2315736,2022-04-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2315737,2022-04-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2315738,2022-04-25,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315739,2022-04-25,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315740,2022-04-25,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2315741,2022-04-25,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2315742,2022-04-25,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2315743,2022-04-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315744,2022-04-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2315745,2022-04-25,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,31.0,32.0,30.0,1.0,1.0,,96.77 -2315746,2022-04-25,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315747,2022-04-25,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2315748,2022-04-25,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,74.0,76.0,74.0,0.0,2.0,,100.0 -2315749,2022-04-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,67.0,66.0,0.0,1.0,,,,,,100.0, -2315750,2022-04-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2315751,2022-04-25,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,53.0,45.0,0.0,8.0,,,,,,100.0, -2315752,2022-04-25,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2315753,2022-04-25,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,54.0,45.0,0.0,9.0,,,,,,100.0, -2315754,2022-04-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,129.0,131.0,128.0,1.0,2.0,,99.22 -2315755,2022-04-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2315756,2022-04-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2315757,2022-04-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,78.0,76.0,1.0,1.0,,98.7 -2315758,2022-04-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2315759,2022-04-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2315760,2022-04-25,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315761,2022-04-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2315762,2022-04-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2315763,2022-04-25,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315764,2022-04-25,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,34.0,34.0,32.0,2.0,0.0,,,,,,94.12, -2315765,2022-04-25,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315766,2022-04-25,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2315767,2022-04-25,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315768,2022-04-25,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2315769,2022-04-25,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2315770,2022-04-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315771,2022-04-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315772,2022-04-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315773,2022-04-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2315774,2022-04-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2315775,2022-04-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2315776,2022-04-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315777,2022-04-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315778,2022-04-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,317,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2315779,2022-04-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2315780,2022-04-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2315781,2022-04-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2315782,2022-04-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,84.0,100.0,84.0,0.0,16.0,,100.0 -2315783,2022-04-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2315784,2022-04-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2315785,2022-04-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2315786,2022-04-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315787,2022-04-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2315788,2022-04-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315789,2022-04-26,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2315790,2022-04-26,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2315791,2022-04-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2315792,2022-04-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2315793,2022-04-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2315794,2022-04-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2315795,2022-04-26,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2315796,2022-04-26,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2315797,2022-04-26,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2315798,2022-04-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2315799,2022-04-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,104,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2315800,2022-04-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2315801,2022-04-26,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2315802,2022-04-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2315803,2022-04-26,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2315804,2022-04-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315805,2022-04-26,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2315806,2022-04-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,77.0,118.0,59.0,18.0,41.0,,76.62 -2315807,2022-04-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,30,Room Based Capacity,,,,,,48.0,30.0,28.0,20.0,0.0,,58.33 -2315808,2022-04-26,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2315809,2022-04-26,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,91.0,89.0,2.0,0.0,,,,,,97.8, -2315810,2022-04-26,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315811,2022-04-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2315812,2022-04-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2315813,2022-04-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315814,2022-04-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,21.0,22.0,20.0,1.0,1.0,,,,,,95.24, -2315815,2022-04-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315816,2022-04-26,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2315817,2022-04-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,27.0,27.0,23.0,4.0,0.0,,,,,,85.19, -2315818,2022-04-26,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,65.0,0.0,6.0,,100.0 -2315819,2022-04-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2315820,2022-04-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2315821,2022-04-26,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315822,2022-04-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2315823,2022-04-26,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2315824,2022-04-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2315825,2022-04-26,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315826,2022-04-26,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315827,2022-04-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2315828,2022-04-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,227.0,245.0,219.0,8.0,18.0,,96.48 -2315829,2022-04-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2315830,2022-04-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315831,2022-04-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2315832,2022-04-26,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315833,2022-04-26,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315834,2022-04-26,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2315835,2022-04-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2315836,2022-04-26,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315837,2022-04-26,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315838,2022-04-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315839,2022-04-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2315840,2022-04-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315841,2022-04-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315842,2022-04-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2315843,2022-04-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2315844,2022-04-26,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315845,2022-04-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315846,2022-04-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2315847,2022-04-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2315848,2022-04-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2315849,2022-04-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315850,2022-04-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2315851,2022-04-26,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2315852,2022-04-26,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2315853,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,70.0,44.0,6.0,20.0,,,,,,88.0, -2315854,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315855,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315856,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2315857,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2315858,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,207.0,235.0,207.0,0.0,28.0,,100.0 -2315859,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2315860,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2315861,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315862,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2315863,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2315864,2022-04-26,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2315865,2022-04-26,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2315866,2022-04-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2315867,2022-04-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2315868,2022-04-26,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2315869,2022-04-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315870,2022-04-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2315871,2022-04-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2315872,2022-04-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2315873,2022-04-26,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315874,2022-04-26,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315875,2022-04-26,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2315876,2022-04-26,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,26.0,25.0,1.0,0.0,,,,,,96.15, -2315877,2022-04-26,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2315878,2022-04-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315879,2022-04-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2315880,2022-04-26,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2315881,2022-04-26,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315882,2022-04-26,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2315883,2022-04-26,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,74.0,76.0,74.0,0.0,2.0,,100.0 -2315884,2022-04-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2315885,2022-04-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2315886,2022-04-26,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,53.0,45.0,1.0,7.0,,,,,,97.83, -2315887,2022-04-26,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2315888,2022-04-26,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,54.0,45.0,0.0,9.0,,,,,,100.0, -2315889,2022-04-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,127,Room Based Capacity,,,,,,127.0,131.0,127.0,0.0,4.0,,100.0 -2315890,2022-04-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2315891,2022-04-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,39.0,36.0,0.0,3.0,,,,,,100.0, -2315892,2022-04-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,78.0,75.0,0.0,3.0,,100.0 -2315893,2022-04-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2315894,2022-04-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2315895,2022-04-26,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315896,2022-04-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2315897,2022-04-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2315898,2022-04-26,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315899,2022-04-26,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2315900,2022-04-26,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315901,2022-04-26,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2315902,2022-04-26,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315903,2022-04-26,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2315904,2022-04-26,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2315905,2022-04-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2315906,2022-04-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315907,2022-04-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315908,2022-04-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2315909,2022-04-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2315910,2022-04-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2315911,2022-04-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315912,2022-04-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2315913,2022-04-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2315914,2022-04-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2315915,2022-04-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2315916,2022-04-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2315917,2022-04-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,83.0,100.0,83.0,0.0,17.0,,100.0 -2315918,2022-04-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2315919,2022-04-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2315920,2022-04-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2315921,2022-04-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315922,2022-04-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2315923,2022-04-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2315924,2022-04-27,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2315925,2022-04-27,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2315926,2022-04-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,82.0,83.0,82.0,0.0,1.0,,100.0 -2315927,2022-04-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2315928,2022-04-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2315929,2022-04-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2315930,2022-04-27,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2315931,2022-04-27,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2315932,2022-04-27,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2315933,2022-04-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2315934,2022-04-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,106,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2315935,2022-04-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2315936,2022-04-27,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2315937,2022-04-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315938,2022-04-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2315939,2022-04-27,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2315940,2022-04-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2315941,2022-04-27,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2315942,2022-04-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,78.0,118.0,69.0,9.0,40.0,,88.46 -2315943,2022-04-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,32,Room Based Capacity,,,,,,48.0,30.0,30.0,18.0,0.0,,62.5 -2315944,2022-04-27,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2315945,2022-04-27,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,91.0,89.0,2.0,0.0,,,,,,97.8, -2315946,2022-04-27,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2315947,2022-04-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2315948,2022-04-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315949,2022-04-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2315950,2022-04-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2315951,2022-04-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,21.0,22.0,19.0,2.0,1.0,,,,,,90.48, -2315952,2022-04-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2315953,2022-04-27,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2315954,2022-04-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2315955,2022-04-27,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2315956,2022-04-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2315957,2022-04-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2315958,2022-04-27,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2315959,2022-04-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2315960,2022-04-27,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2315961,2022-04-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2315962,2022-04-27,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2315963,2022-04-27,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315964,2022-04-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2315965,2022-04-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,227.0,245.0,220.0,7.0,18.0,,96.92 -2315966,2022-04-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2315967,2022-04-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2315968,2022-04-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2315969,2022-04-27,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2315970,2022-04-27,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2315971,2022-04-27,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2315972,2022-04-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2315973,2022-04-27,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315974,2022-04-27,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2315975,2022-04-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315976,2022-04-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2315977,2022-04-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2315978,2022-04-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2315979,2022-04-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2315980,2022-04-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2315981,2022-04-27,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2315982,2022-04-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2315983,2022-04-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2315984,2022-04-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2315985,2022-04-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2315986,2022-04-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2315987,2022-04-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2315988,2022-04-27,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2315989,2022-04-27,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,90.0,94.0,90.0,0.0,4.0,,100.0 -2315990,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,70.0,46.0,4.0,20.0,,,,,,92.0, -2315991,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2315992,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2315993,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2315994,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2315995,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,234,Room Based Capacity,,,,,,207.0,235.0,207.0,0.0,28.0,,100.0 -2315996,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2315997,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2315998,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2315999,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316000,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316001,2022-04-27,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2316002,2022-04-27,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2316003,2022-04-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2316004,2022-04-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2316005,2022-04-27,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316006,2022-04-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316007,2022-04-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2316008,2022-04-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316009,2022-04-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316010,2022-04-27,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316011,2022-04-27,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316012,2022-04-27,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316013,2022-04-27,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2316014,2022-04-27,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2316015,2022-04-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316016,2022-04-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2316017,2022-04-27,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316018,2022-04-27,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316019,2022-04-27,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316020,2022-04-27,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,74.0,76.0,74.0,0.0,2.0,,100.0 -2316021,2022-04-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316022,2022-04-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316023,2022-04-27,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,47.0,49.0,46.0,1.0,2.0,,,,,,97.87, -2316024,2022-04-27,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316025,2022-04-27,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,54.0,45.0,0.0,9.0,,,,,,100.0, -2316026,2022-04-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,128.0,131.0,128.0,0.0,3.0,,100.0 -2316027,2022-04-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2316028,2022-04-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2316029,2022-04-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2316030,2022-04-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316031,2022-04-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2316032,2022-04-27,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316033,2022-04-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2316034,2022-04-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316035,2022-04-27,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316036,2022-04-27,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316037,2022-04-27,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316038,2022-04-27,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2316039,2022-04-27,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2316040,2022-04-27,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2316041,2022-04-27,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2316042,2022-04-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316043,2022-04-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2316044,2022-04-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316045,2022-04-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316046,2022-04-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2316047,2022-04-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2316048,2022-04-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316049,2022-04-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2316050,2022-04-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2316051,2022-04-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316052,2022-04-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316053,2022-04-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2316054,2022-04-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,84.0,100.0,84.0,0.0,16.0,,100.0 -2316055,2022-04-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2316056,2022-04-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2316057,2022-04-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2316058,2022-04-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316059,2022-04-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2316060,2022-04-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316061,2022-04-28,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2316062,2022-04-28,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2316063,2022-04-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2316064,2022-04-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2316065,2022-04-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2316066,2022-04-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316067,2022-04-28,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,12.0,12.0,9.0,3.0,0.0,,,,,,75.0, -2316068,2022-04-28,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2316069,2022-04-28,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2316070,2022-04-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2316071,2022-04-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,105,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316072,2022-04-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2316073,2022-04-28,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2316074,2022-04-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,13031,Fort York Extreme Weather Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,5.0,5.0,3.0,2.0,0.0,,,,,,60.0, -2316075,2022-04-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316076,2022-04-28,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2316077,2022-04-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316078,2022-04-28,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2316079,2022-04-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,71.0,118.0,71.0,0.0,47.0,,100.0 -2316080,2022-04-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,31,Room Based Capacity,,,,,,48.0,30.0,29.0,19.0,0.0,,60.42 -2316081,2022-04-28,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2316082,2022-04-28,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,89,Bed Based Capacity,91.0,93.0,89.0,2.0,2.0,,,,,,97.8, -2316083,2022-04-28,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316084,2022-04-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,51.0,51.0,45.0,6.0,0.0,,,,,,88.24, -2316085,2022-04-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,13851,Seaton House - Extended Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2316086,2022-04-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2316087,2022-04-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2316088,2022-04-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,22.0,19.0,1.0,2.0,,,,,,95.0, -2316089,2022-04-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316090,2022-04-28,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2316091,2022-04-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2316092,2022-04-28,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,71.0,63.0,2.0,6.0,,96.92 -2316093,2022-04-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316094,2022-04-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2316095,2022-04-28,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2316096,2022-04-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2316097,2022-04-28,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,42.0,42.0,39.0,3.0,0.0,,92.86 -2316098,2022-04-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316099,2022-04-28,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316100,2022-04-28,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316101,2022-04-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2316102,2022-04-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,228.0,245.0,217.0,11.0,17.0,,95.18 -2316103,2022-04-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2316104,2022-04-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2316105,2022-04-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2316106,2022-04-28,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2316107,2022-04-28,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2316108,2022-04-28,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316109,2022-04-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2316110,2022-04-28,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316111,2022-04-28,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2316112,2022-04-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316113,2022-04-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2316114,2022-04-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316115,2022-04-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316116,2022-04-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2316117,2022-04-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2316118,2022-04-28,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2316119,2022-04-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316120,2022-04-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2316121,2022-04-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2316122,2022-04-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2316123,2022-04-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2316124,2022-04-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2316125,2022-04-28,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2316126,2022-04-28,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2316127,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,70.0,46.0,4.0,20.0,,,,,,92.0, -2316128,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316129,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2316130,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2316131,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2316132,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,209.0,235.0,209.0,0.0,26.0,,100.0 -2316133,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2316134,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2316135,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2316136,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316137,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316138,2022-04-28,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2316139,2022-04-28,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2316140,2022-04-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2316141,2022-04-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2316142,2022-04-28,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316143,2022-04-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316144,2022-04-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2316145,2022-04-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316146,2022-04-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316147,2022-04-28,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316148,2022-04-28,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2316149,2022-04-28,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316150,2022-04-28,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2316151,2022-04-28,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,30.0,23.0,2.0,5.0,,,,,,92.0, -2316152,2022-04-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316153,2022-04-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2316154,2022-04-28,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316155,2022-04-28,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316156,2022-04-28,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316157,2022-04-28,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,221,Room Based Capacity,,,,,,74.0,76.0,74.0,0.0,2.0,,100.0 -2316158,2022-04-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316159,2022-04-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316160,2022-04-28,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,49.0,47.0,1.0,1.0,,,,,,97.92, -2316161,2022-04-28,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316162,2022-04-28,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,54.0,45.0,0.0,9.0,,,,,,100.0, -2316163,2022-04-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2316164,2022-04-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2316165,2022-04-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316166,2022-04-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2316167,2022-04-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316168,2022-04-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2316169,2022-04-28,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316170,2022-04-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2316171,2022-04-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316172,2022-04-28,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316173,2022-04-28,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316174,2022-04-28,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316175,2022-04-28,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2316176,2022-04-28,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316177,2022-04-28,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2316178,2022-04-28,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2316179,2022-04-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316180,2022-04-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316181,2022-04-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316182,2022-04-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316183,2022-04-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2316184,2022-04-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2316185,2022-04-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316186,2022-04-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2316187,2022-04-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,313,Room Based Capacity,,,,,,80.0,80.0,79.0,1.0,0.0,,98.75 -2316188,2022-04-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316189,2022-04-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316190,2022-04-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2316191,2022-04-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,385,Room Based Capacity,,,,,,120.0,118.0,120.0,0.0,0.0,,100.0 -2316192,2022-04-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2316193,2022-04-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2316194,2022-04-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316195,2022-04-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2316196,2022-04-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316197,2022-04-29,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2316198,2022-04-29,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2316199,2022-04-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2316200,2022-04-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2316201,2022-04-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2316202,2022-04-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316203,2022-04-29,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2316204,2022-04-29,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2316205,2022-04-29,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2316206,2022-04-29,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2316207,2022-04-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,105,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316208,2022-04-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2316209,2022-04-29,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2316210,2022-04-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316211,2022-04-29,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2316212,2022-04-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316213,2022-04-29,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2316214,2022-04-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,71.0,118.0,71.0,0.0,47.0,,100.0 -2316215,2022-04-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,33,Room Based Capacity,,,,,,48.0,30.0,31.0,17.0,0.0,,64.58 -2316216,2022-04-29,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2316217,2022-04-29,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2316218,2022-04-29,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316219,2022-04-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2316220,2022-04-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2316221,2022-04-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2316222,2022-04-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,22.0,19.0,1.0,2.0,,,,,,95.0, -2316223,2022-04-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316224,2022-04-29,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2316225,2022-04-29,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2316226,2022-04-29,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2316227,2022-04-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,9.0,9.0,4.0,5.0,0.0,,,,,,44.44, -2316228,2022-04-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2316229,2022-04-29,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2316230,2022-04-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2316231,2022-04-29,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2316232,2022-04-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316233,2022-04-29,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316234,2022-04-29,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316235,2022-04-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2316236,2022-04-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,228.0,245.0,217.0,11.0,17.0,,95.18 -2316237,2022-04-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2316238,2022-04-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2316239,2022-04-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2316240,2022-04-29,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2316241,2022-04-29,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2316242,2022-04-29,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316243,2022-04-29,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2316244,2022-04-29,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316245,2022-04-29,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2316246,2022-04-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316247,2022-04-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2316248,2022-04-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316249,2022-04-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316250,2022-04-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2316251,2022-04-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2316252,2022-04-29,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2316253,2022-04-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316254,2022-04-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2316255,2022-04-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2316256,2022-04-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2316257,2022-04-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2316258,2022-04-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2316259,2022-04-29,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2316260,2022-04-29,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2316261,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2316262,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316263,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2316264,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2316265,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2316266,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,210.0,235.0,210.0,0.0,25.0,,100.0 -2316267,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2316268,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2316269,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316270,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316271,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316272,2022-04-29,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2316273,2022-04-29,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2316274,2022-04-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2316275,2022-04-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2316276,2022-04-29,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316277,2022-04-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316278,2022-04-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2316279,2022-04-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316280,2022-04-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316281,2022-04-29,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316282,2022-04-29,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316283,2022-04-29,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316284,2022-04-29,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2316285,2022-04-29,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,30.0,23.0,2.0,5.0,,,,,,92.0, -2316286,2022-04-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316287,2022-04-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2316288,2022-04-29,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316289,2022-04-29,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316290,2022-04-29,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316291,2022-04-29,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2316292,2022-04-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316293,2022-04-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316294,2022-04-29,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2316295,2022-04-29,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316296,2022-04-29,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,54.0,45.0,0.0,9.0,,,,,,100.0, -2316297,2022-04-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2316298,2022-04-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2316299,2022-04-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316300,2022-04-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2316301,2022-04-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316302,2022-04-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2316303,2022-04-29,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2316304,2022-04-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2316305,2022-04-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316306,2022-04-29,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316307,2022-04-29,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316308,2022-04-29,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316309,2022-04-29,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2316310,2022-04-29,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316311,2022-04-29,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2316312,2022-04-29,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2316313,2022-04-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316314,2022-04-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316315,2022-04-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316316,2022-04-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316317,2022-04-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2316318,2022-04-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2316319,2022-04-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316320,2022-04-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2316321,2022-04-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,313,Room Based Capacity,,,,,,80.0,80.0,79.0,1.0,0.0,,98.75 -2316322,2022-04-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316323,2022-04-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316324,2022-04-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,81.0,100.0,80.0,1.0,19.0,,98.77 -2316325,2022-04-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,385,Room Based Capacity,,,,,,120.0,118.0,120.0,0.0,0.0,,100.0 -2316326,2022-04-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2316327,2022-04-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2316328,2022-04-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316329,2022-04-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2316330,2022-04-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316331,2022-04-30,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2316332,2022-04-30,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2316333,2022-04-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2316334,2022-04-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2316335,2022-04-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2316336,2022-04-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316337,2022-04-30,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2316338,2022-04-30,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2316339,2022-04-30,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2316340,2022-04-30,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,149,Room Based Capacity,,,,,,41.0,43.0,40.0,1.0,2.0,,97.56 -2316341,2022-04-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2316342,2022-04-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2316343,2022-04-30,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2316344,2022-04-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2316345,2022-04-30,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2316346,2022-04-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316347,2022-04-30,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2316348,2022-04-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,71.0,118.0,70.0,1.0,47.0,,98.59 -2316349,2022-04-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,32,Room Based Capacity,,,,,,48.0,30.0,30.0,18.0,0.0,,62.5 -2316350,2022-04-30,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2316351,2022-04-30,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2316352,2022-04-30,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316353,2022-04-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2316354,2022-04-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,76,Bed Based Capacity,76.0,81.0,76.0,0.0,5.0,,,,,,100.0, -2316355,2022-04-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2316356,2022-04-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,22.0,19.0,1.0,2.0,,,,,,95.0, -2316357,2022-04-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316358,2022-04-30,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2316359,2022-04-30,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2316360,2022-04-30,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2316361,2022-04-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,9.0,8.0,1.0,0.0,,,,,,88.89, -2316362,2022-04-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2316363,2022-04-30,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2316364,2022-04-30,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2316365,2022-04-30,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2316366,2022-04-30,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316367,2022-04-30,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316368,2022-04-30,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316369,2022-04-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2316370,2022-04-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,228.0,245.0,219.0,9.0,17.0,,96.05 -2316371,2022-04-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2316372,2022-04-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2316373,2022-04-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2316374,2022-04-30,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2316375,2022-04-30,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2316376,2022-04-30,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316377,2022-04-30,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2316378,2022-04-30,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316379,2022-04-30,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2316380,2022-04-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316381,2022-04-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2316382,2022-04-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316383,2022-04-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316384,2022-04-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2316385,2022-04-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2316386,2022-04-30,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2316387,2022-04-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316388,2022-04-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2316389,2022-04-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2316390,2022-04-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2316391,2022-04-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2316392,2022-04-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2316393,2022-04-30,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2316394,2022-04-30,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2316395,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2316396,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316397,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2316398,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2316399,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2316400,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,210.0,235.0,210.0,0.0,25.0,,100.0 -2316401,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,269.0,287.0,268.0,1.0,18.0,,99.63 -2316402,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2316403,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316404,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316405,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316406,2022-04-30,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2316407,2022-04-30,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2316408,2022-04-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2316409,2022-04-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2316410,2022-04-30,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316411,2022-04-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316412,2022-04-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2316413,2022-04-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316414,2022-04-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316415,2022-04-30,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316416,2022-04-30,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316417,2022-04-30,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316418,2022-04-30,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2316419,2022-04-30,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,30.0,23.0,2.0,5.0,,,,,,92.0, -2316420,2022-04-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316421,2022-04-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2316422,2022-04-30,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316423,2022-04-30,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316424,2022-04-30,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316425,2022-04-30,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2316426,2022-04-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316427,2022-04-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316428,2022-04-30,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2316429,2022-04-30,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316430,2022-04-30,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,54.0,45.0,0.0,9.0,,,,,,100.0, -2316431,2022-04-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2316432,2022-04-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2316433,2022-04-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316434,2022-04-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316435,2022-04-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316436,2022-04-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2316437,2022-04-30,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316438,2022-04-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2316439,2022-04-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316440,2022-04-30,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316441,2022-04-30,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316442,2022-04-30,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316443,2022-04-30,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2316444,2022-04-30,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316445,2022-04-30,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2316446,2022-04-30,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2316447,2022-04-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316448,2022-04-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316449,2022-04-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316450,2022-04-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316451,2022-04-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316452,2022-04-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2316453,2022-04-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316454,2022-04-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2316455,2022-05-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,313,Room Based Capacity,,,,,,80.0,80.0,79.0,1.0,0.0,,98.75 -2316456,2022-05-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316457,2022-05-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316458,2022-05-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2316459,2022-05-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,120.0,118.0,119.0,1.0,0.0,,99.17 -2316460,2022-05-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2316461,2022-05-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2316462,2022-05-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316463,2022-05-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2316464,2022-05-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316465,2022-05-01,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,24.0,30.0,23.0,1.0,6.0,,95.83 -2316466,2022-05-01,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,204,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2316467,2022-05-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2316468,2022-05-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2316469,2022-05-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2316470,2022-05-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2316471,2022-05-01,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2316472,2022-05-01,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2316473,2022-05-01,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2316474,2022-05-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2316475,2022-05-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2316476,2022-05-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2316477,2022-05-01,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2316478,2022-05-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,36.0,36.0,31.0,5.0,0.0,,,,,,86.11, -2316479,2022-05-01,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2316480,2022-05-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316481,2022-05-01,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2316482,2022-05-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,69.0,118.0,67.0,2.0,49.0,,97.1 -2316483,2022-05-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,20,Room Based Capacity,,,,,,48.0,30.0,18.0,30.0,0.0,,37.5 -2316484,2022-05-01,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2316485,2022-05-01,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2316486,2022-05-01,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316487,2022-05-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2316488,2022-05-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,75,Bed Based Capacity,76.0,81.0,75.0,1.0,5.0,,,,,,98.68, -2316489,2022-05-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,66.0,66.0,66.0,0.0,0.0,,,,,,100.0, -2316490,2022-05-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,22.0,18.0,2.0,2.0,,,,,,90.0, -2316491,2022-05-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316492,2022-05-01,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2316493,2022-05-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2316494,2022-05-01,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2316495,2022-05-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2316496,2022-05-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2316497,2022-05-01,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2316498,2022-05-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2316499,2022-05-01,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2316500,2022-05-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316501,2022-05-01,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316502,2022-05-01,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316503,2022-05-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2316504,2022-05-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,228.0,245.0,220.0,8.0,17.0,,96.49 -2316505,2022-05-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2316506,2022-05-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2316507,2022-05-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2316508,2022-05-01,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2316509,2022-05-01,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2316510,2022-05-01,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316511,2022-05-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2316512,2022-05-01,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316513,2022-05-01,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2316514,2022-05-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316515,2022-05-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2316516,2022-05-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316517,2022-05-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316518,2022-05-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2316519,2022-05-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2316520,2022-05-01,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2316521,2022-05-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316522,2022-05-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2316523,2022-05-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2316524,2022-05-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2316525,2022-05-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2316526,2022-05-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2316527,2022-05-01,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2316528,2022-05-01,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,102,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2316529,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,50.0,70.0,45.0,5.0,20.0,,,,,,90.0, -2316530,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316531,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2316532,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2316533,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2316534,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,209.0,235.0,209.0,0.0,26.0,,100.0 -2316535,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2316536,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2316537,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316538,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316539,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316540,2022-05-01,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,51.0,51.0,50.0,1.0,0.0,,,,,,98.04, -2316541,2022-05-01,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2316542,2022-05-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2316543,2022-05-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,15.0,9.0,0.0,6.0,,,,,,100.0, -2316544,2022-05-01,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316545,2022-05-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316546,2022-05-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2316547,2022-05-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316548,2022-05-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316549,2022-05-01,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2316550,2022-05-01,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316551,2022-05-01,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316552,2022-05-01,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2316553,2022-05-01,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2316554,2022-05-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2316555,2022-05-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2316556,2022-05-01,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316557,2022-05-01,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2316558,2022-05-01,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316559,2022-05-01,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2316560,2022-05-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316561,2022-05-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316562,2022-05-01,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2316563,2022-05-01,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316564,2022-05-01,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,54.0,48.0,0.0,6.0,,,,,,100.0, -2316565,2022-05-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2316566,2022-05-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2316567,2022-05-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316568,2022-05-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316569,2022-05-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316570,2022-05-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2316571,2022-05-01,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316572,2022-05-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,12,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2316573,2022-05-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316574,2022-05-01,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316575,2022-05-01,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316576,2022-05-01,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316577,2022-05-01,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2316578,2022-05-01,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316579,2022-05-01,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2316580,2022-05-01,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2316581,2022-05-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316582,2022-05-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316583,2022-05-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316584,2022-05-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316585,2022-05-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316586,2022-05-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2316587,2022-05-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316588,2022-05-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2316589,2022-05-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2316590,2022-05-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316591,2022-05-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316592,2022-05-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2316593,2022-05-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,378,Room Based Capacity,,,,,,118.0,118.0,118.0,0.0,0.0,,100.0 -2316594,2022-05-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2316595,2022-05-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2316596,2022-05-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316597,2022-05-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2316598,2022-05-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316599,2022-05-02,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,24.0,30.0,22.0,2.0,6.0,,91.67 -2316600,2022-05-02,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2316601,2022-05-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2316602,2022-05-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2316603,2022-05-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2316604,2022-05-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2316605,2022-05-02,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2316606,2022-05-02,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2316607,2022-05-02,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2316608,2022-05-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2316609,2022-05-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,34.0,40.0,34.0,0.0,6.0,,100.0 -2316610,2022-05-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2316611,2022-05-02,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2316612,2022-05-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,36.0,36.0,30.0,6.0,0.0,,,,,,83.33, -2316613,2022-05-02,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2316614,2022-05-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316615,2022-05-02,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2316616,2022-05-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,68.0,118.0,68.0,0.0,50.0,,100.0 -2316617,2022-05-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,30.0,1.0,0.0,29.0,,100.0 -2316618,2022-05-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,15,Room Based Capacity,,,,,,48.0,30.0,13.0,35.0,0.0,,27.08 -2316619,2022-05-02,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2316620,2022-05-02,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,93.0,93.0,88.0,5.0,0.0,,,,,,94.62, -2316621,2022-05-02,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316622,2022-05-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,49.0,51.0,42.0,7.0,2.0,,,,,,85.71, -2316623,2022-05-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,78,Bed Based Capacity,78.0,81.0,78.0,0.0,3.0,,,,,,100.0, -2316624,2022-05-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,66.0,63.0,0.0,3.0,,,,,,100.0, -2316625,2022-05-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,20.0,22.0,18.0,2.0,2.0,,,,,,90.0, -2316626,2022-05-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316627,2022-05-02,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,51,Bed Based Capacity,51.0,53.0,51.0,0.0,2.0,,,,,,100.0, -2316628,2022-05-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316629,2022-05-02,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2316630,2022-05-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2316631,2022-05-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2316632,2022-05-02,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2316633,2022-05-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2316634,2022-05-02,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2316635,2022-05-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316636,2022-05-02,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316637,2022-05-02,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316638,2022-05-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2316639,2022-05-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,230.0,245.0,223.0,7.0,15.0,,96.96 -2316640,2022-05-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2316641,2022-05-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2316642,2022-05-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2316643,2022-05-02,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2316644,2022-05-02,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2316645,2022-05-02,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2316646,2022-05-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2316647,2022-05-02,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316648,2022-05-02,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2316649,2022-05-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316650,2022-05-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2316651,2022-05-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316652,2022-05-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316653,2022-05-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2316654,2022-05-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,266.0,271.0,265.0,1.0,5.0,,99.62 -2316655,2022-05-02,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2316656,2022-05-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316657,2022-05-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2316658,2022-05-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2316659,2022-05-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316660,2022-05-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2316661,2022-05-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2316662,2022-05-02,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2316663,2022-05-02,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,101,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2316664,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2316665,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316666,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2316667,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2316668,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2316669,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,208.0,235.0,208.0,0.0,27.0,,100.0 -2316670,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2316671,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2316672,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,37.0,36.0,0.0,1.0,,,,,,100.0, -2316673,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316674,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316675,2022-05-02,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2316676,2022-05-02,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2316677,2022-05-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2316678,2022-05-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2316679,2022-05-02,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316680,2022-05-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316681,2022-05-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2316682,2022-05-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316683,2022-05-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316684,2022-05-02,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316685,2022-05-02,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316686,2022-05-02,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2316687,2022-05-02,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2316688,2022-05-02,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2316689,2022-05-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316690,2022-05-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2316691,2022-05-02,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316692,2022-05-02,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2316693,2022-05-02,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316694,2022-05-02,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2316695,2022-05-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316696,2022-05-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316697,2022-05-02,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2316698,2022-05-02,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316699,2022-05-02,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,54.0,50.0,0.0,4.0,,,,,,100.0, -2316700,2022-05-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2316701,2022-05-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2316702,2022-05-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316703,2022-05-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316704,2022-05-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316705,2022-05-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2316706,2022-05-02,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316707,2022-05-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,8,Room Based Capacity,,,,,,3.0,3.0,2.0,1.0,0.0,,66.67 -2316708,2022-05-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316709,2022-05-02,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316710,2022-05-02,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316711,2022-05-02,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316712,2022-05-02,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2316713,2022-05-02,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316714,2022-05-02,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2316715,2022-05-02,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2316716,2022-05-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316717,2022-05-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316718,2022-05-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316719,2022-05-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316720,2022-05-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316721,2022-05-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2316722,2022-05-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316723,2022-05-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2316724,2022-05-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2316725,2022-05-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316726,2022-05-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316727,2022-05-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2316728,2022-05-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,381,Room Based Capacity,,,,,,119.0,118.0,119.0,0.0,0.0,,100.0 -2316729,2022-05-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2316730,2022-05-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2316731,2022-05-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316732,2022-05-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2316733,2022-05-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316734,2022-05-03,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2316735,2022-05-03,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2316736,2022-05-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2316737,2022-05-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,10.0,12.0,10.0,0.0,2.0,,100.0 -2316738,2022-05-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2316739,2022-05-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2316740,2022-05-03,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2316741,2022-05-03,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2316742,2022-05-03,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2316743,2022-05-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2316744,2022-05-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,36.0,40.0,35.0,1.0,4.0,,97.22 -2316745,2022-05-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2316746,2022-05-03,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,45,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2316747,2022-05-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,36.0,36.0,32.0,4.0,0.0,,,,,,88.89, -2316748,2022-05-03,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,68.0,51.0,67.0,1.0,0.0,,98.53 -2316749,2022-05-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316750,2022-05-03,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2316751,2022-05-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,69.0,118.0,69.0,0.0,49.0,,100.0 -2316752,2022-05-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,30.0,1.0,0.0,29.0,,100.0 -2316753,2022-05-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,16,Room Based Capacity,,,,,,48.0,30.0,14.0,34.0,0.0,,29.17 -2316754,2022-05-03,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2316755,2022-05-03,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,93.0,93.0,88.0,5.0,0.0,,,,,,94.62, -2316756,2022-05-03,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316757,2022-05-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,42.0,51.0,40.0,2.0,9.0,,,,,,95.24, -2316758,2022-05-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,75,Bed Based Capacity,76.0,81.0,75.0,1.0,5.0,,,,,,98.68, -2316759,2022-05-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,66.0,62.0,0.0,4.0,,,,,,100.0, -2316760,2022-05-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2316761,2022-05-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316762,2022-05-03,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316763,2022-05-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2316764,2022-05-03,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2316765,2022-05-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2316766,2022-05-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2316767,2022-05-03,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2316768,2022-05-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2316769,2022-05-03,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2316770,2022-05-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316771,2022-05-03,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316772,2022-05-03,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316773,2022-05-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2316774,2022-05-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,231.0,245.0,223.0,8.0,14.0,,96.54 -2316775,2022-05-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2316776,2022-05-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2316777,2022-05-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2316778,2022-05-03,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2316779,2022-05-03,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2316780,2022-05-03,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2316781,2022-05-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2316782,2022-05-03,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316783,2022-05-03,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2316784,2022-05-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316785,2022-05-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2316786,2022-05-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316787,2022-05-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316788,2022-05-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2316789,2022-05-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2316790,2022-05-03,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2316791,2022-05-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316792,2022-05-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2316793,2022-05-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2316794,2022-05-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316795,2022-05-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2316796,2022-05-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2316797,2022-05-03,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,41.0,50.0,39.0,2.0,9.0,,,,,,95.12, -2316798,2022-05-03,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2316799,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,50.0,70.0,46.0,4.0,20.0,,,,,,92.0, -2316800,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316801,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2316802,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2316803,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2316804,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,208.0,235.0,208.0,0.0,27.0,,100.0 -2316805,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,297,Room Based Capacity,,,,,,267.0,287.0,266.0,1.0,20.0,,99.63 -2316806,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2316807,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316808,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316809,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316810,2022-05-03,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2316811,2022-05-03,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2316812,2022-05-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2316813,2022-05-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2316814,2022-05-03,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316815,2022-05-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316816,2022-05-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2316817,2022-05-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,9.0,9.0,6.0,3.0,0.0,,,,,,66.67, -2316818,2022-05-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316819,2022-05-03,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316820,2022-05-03,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316821,2022-05-03,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2316822,2022-05-03,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2316823,2022-05-03,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2316824,2022-05-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316825,2022-05-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,43.0,42.0,1.0,0.0,,,,,,97.67, -2316826,2022-05-03,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316827,2022-05-03,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2316828,2022-05-03,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316829,2022-05-03,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,219,Room Based Capacity,,,,,,76.0,76.0,73.0,3.0,0.0,,96.05 -2316830,2022-05-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316831,2022-05-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316832,2022-05-03,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2316833,2022-05-03,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316834,2022-05-03,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,54.0,51.0,0.0,3.0,,,,,,100.0, -2316835,2022-05-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2316836,2022-05-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2316837,2022-05-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316838,2022-05-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316839,2022-05-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316840,2022-05-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2316841,2022-05-03,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316842,2022-05-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,8,Room Based Capacity,,,,,,3.0,3.0,2.0,1.0,0.0,,66.67 -2316843,2022-05-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316844,2022-05-03,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316845,2022-05-03,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316846,2022-05-03,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316847,2022-05-03,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2316848,2022-05-03,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316849,2022-05-03,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2316850,2022-05-03,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2316851,2022-05-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316852,2022-05-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316853,2022-05-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316854,2022-05-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316855,2022-05-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2316856,2022-05-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2316857,2022-05-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316858,2022-05-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2316859,2022-05-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2316860,2022-05-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316861,2022-05-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316862,2022-05-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2316863,2022-05-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,382,Room Based Capacity,,,,,,120.0,118.0,120.0,0.0,0.0,,100.0 -2316864,2022-05-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2316865,2022-05-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2316866,2022-05-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2316867,2022-05-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2316868,2022-05-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316869,2022-05-04,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2316870,2022-05-04,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2316871,2022-05-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2316872,2022-05-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2316873,2022-05-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2316874,2022-05-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2316875,2022-05-04,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,12.0,12.0,8.0,4.0,0.0,,,,,,66.67, -2316876,2022-05-04,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2316877,2022-05-04,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,100.0,100.0,98.0,2.0,0.0,,98.0 -2316878,2022-05-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2316879,2022-05-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,37.0,40.0,36.0,1.0,3.0,,97.3 -2316880,2022-05-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2316881,2022-05-04,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,42,Room Based Capacity,,,,,,17.0,20.0,17.0,0.0,3.0,,100.0 -2316882,2022-05-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,36.0,36.0,33.0,3.0,0.0,,,,,,91.67, -2316883,2022-05-04,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2316884,2022-05-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316885,2022-05-04,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2316886,2022-05-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,69.0,118.0,69.0,0.0,49.0,,100.0 -2316887,2022-05-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,30.0,1.0,0.0,29.0,,100.0 -2316888,2022-05-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,15,Room Based Capacity,,,,,,48.0,30.0,13.0,35.0,0.0,,27.08 -2316889,2022-05-04,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2316890,2022-05-04,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,93.0,93.0,88.0,5.0,0.0,,,,,,94.62, -2316891,2022-05-04,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316892,2022-05-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,39.0,51.0,37.0,2.0,12.0,,,,,,94.87, -2316893,2022-05-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,75,Bed Based Capacity,75.0,81.0,75.0,0.0,6.0,,,,,,100.0, -2316894,2022-05-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,61.0,66.0,61.0,0.0,5.0,,,,,,100.0, -2316895,2022-05-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2316896,2022-05-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2316897,2022-05-04,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2316898,2022-05-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2316899,2022-05-04,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2316900,2022-05-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2316901,2022-05-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2316902,2022-05-04,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2316903,2022-05-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2316904,2022-05-04,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2316905,2022-05-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2316906,2022-05-04,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2316907,2022-05-04,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316908,2022-05-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2316909,2022-05-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,233.0,245.0,224.0,9.0,12.0,,96.14 -2316910,2022-05-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2316911,2022-05-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2316912,2022-05-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2316913,2022-05-04,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2316914,2022-05-04,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2316915,2022-05-04,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2316916,2022-05-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2316917,2022-05-04,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316918,2022-05-04,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,11.0,11.0,5.0,6.0,0.0,,,,,,45.45, -2316919,2022-05-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2316920,2022-05-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2316921,2022-05-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2316922,2022-05-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316923,2022-05-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2316924,2022-05-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2316925,2022-05-04,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2316926,2022-05-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2316927,2022-05-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2316928,2022-05-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2316929,2022-05-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316930,2022-05-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2316931,2022-05-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2316932,2022-05-04,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,50.0,40.0,1.0,9.0,,,,,,97.56, -2316933,2022-05-04,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2316934,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2316935,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316936,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2316937,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2316938,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2316939,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,211.0,235.0,211.0,0.0,24.0,,100.0 -2316940,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,297,Room Based Capacity,,,,,,266.0,287.0,266.0,0.0,21.0,,100.0 -2316941,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2316942,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2316943,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2316944,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2316945,2022-05-04,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2316946,2022-05-04,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2316947,2022-05-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2316948,2022-05-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2316949,2022-05-04,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2316950,2022-05-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2316951,2022-05-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2316952,2022-05-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2316953,2022-05-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2316954,2022-05-04,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316955,2022-05-04,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2316956,2022-05-04,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2316957,2022-05-04,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,26.0,25.0,1.0,0.0,,,,,,96.15, -2316958,2022-05-04,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2316959,2022-05-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316960,2022-05-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2316961,2022-05-04,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2316962,2022-05-04,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,28.0,26.0,1.0,1.0,,,,,,96.3, -2316963,2022-05-04,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2316964,2022-05-04,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2316965,2022-05-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2316966,2022-05-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,60,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2316967,2022-05-04,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2316968,2022-05-04,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2316969,2022-05-04,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,52.0,54.0,52.0,0.0,2.0,,,,,,100.0, -2316970,2022-05-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2316971,2022-05-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2316972,2022-05-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2316973,2022-05-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2316974,2022-05-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2316975,2022-05-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2316976,2022-05-04,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2316977,2022-05-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,8,Room Based Capacity,,,,,,3.0,3.0,2.0,1.0,0.0,,66.67 -2316978,2022-05-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2316979,2022-05-04,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2316980,2022-05-04,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2316981,2022-05-04,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316982,2022-05-04,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2316983,2022-05-04,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316984,2022-05-04,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2316985,2022-05-04,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2316986,2022-05-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2316987,2022-05-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2316988,2022-05-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2316989,2022-05-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2316990,2022-05-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2316991,2022-05-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2316992,2022-05-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2316993,2022-05-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,31.0,31.0,29.0,2.0,0.0,,,,,,93.55, -2316994,2022-05-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2316995,2022-05-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2316996,2022-05-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2316997,2022-05-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2316998,2022-05-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,382,Room Based Capacity,,,,,,120.0,118.0,120.0,0.0,0.0,,100.0 -2316999,2022-05-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2317000,2022-05-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2317001,2022-05-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317002,2022-05-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2317003,2022-05-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317004,2022-05-05,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2317005,2022-05-05,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2317006,2022-05-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,83.0,83.0,82.0,1.0,0.0,,98.8 -2317007,2022-05-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2317008,2022-05-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2317009,2022-05-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317010,2022-05-05,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,12.0,12.0,7.0,5.0,0.0,,,,,,58.33, -2317011,2022-05-05,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2317012,2022-05-05,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2317013,2022-05-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317014,2022-05-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,38.0,40.0,37.0,1.0,2.0,,97.37 -2317015,2022-05-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317016,2022-05-05,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2317017,2022-05-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2317018,2022-05-05,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2317019,2022-05-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317020,2022-05-05,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2317021,2022-05-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,67.0,118.0,67.0,0.0,51.0,,100.0 -2317022,2022-05-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2317023,2022-05-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,13.0,33.0,0.0,,28.26 -2317024,2022-05-05,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317025,2022-05-05,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,87,Bed Based Capacity,93.0,93.0,87.0,6.0,0.0,,,,,,93.55, -2317026,2022-05-05,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317027,2022-05-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,51.0,37.0,0.0,14.0,,,,,,100.0, -2317028,2022-05-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,75.0,81.0,74.0,1.0,6.0,,,,,,98.67, -2317029,2022-05-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,61.0,66.0,61.0,0.0,5.0,,,,,,100.0, -2317030,2022-05-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,17.0,22.0,17.0,0.0,5.0,,,,,,100.0, -2317031,2022-05-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317032,2022-05-05,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317033,2022-05-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,27.0,27.0,23.0,4.0,0.0,,,,,,85.19, -2317034,2022-05-05,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,63.0,2.0,6.0,,96.92 -2317035,2022-05-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317036,2022-05-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2317037,2022-05-05,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317038,2022-05-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2317039,2022-05-05,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2317040,2022-05-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317041,2022-05-05,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317042,2022-05-05,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317043,2022-05-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317044,2022-05-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,233.0,245.0,224.0,9.0,12.0,,96.14 -2317045,2022-05-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2317046,2022-05-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2317047,2022-05-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317048,2022-05-05,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317049,2022-05-05,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2317050,2022-05-05,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2317051,2022-05-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2317052,2022-05-05,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317053,2022-05-05,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,11.0,11.0,5.0,6.0,0.0,,,,,,45.45, -2317054,2022-05-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317055,2022-05-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2317056,2022-05-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317057,2022-05-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317058,2022-05-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2317059,2022-05-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2317060,2022-05-05,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2317061,2022-05-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317062,2022-05-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2317063,2022-05-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2317064,2022-05-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317065,2022-05-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317066,2022-05-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2317067,2022-05-05,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2317068,2022-05-05,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2317069,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2317070,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317071,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317072,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2317073,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2317074,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2317075,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2317076,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2317077,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317078,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2317079,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2317080,2022-05-05,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2317081,2022-05-05,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2317082,2022-05-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2317083,2022-05-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2317084,2022-05-05,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317085,2022-05-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317086,2022-05-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2317087,2022-05-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,9.0,9.0,7.0,2.0,0.0,,,,,,77.78, -2317088,2022-05-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,8,Room Based Capacity,,,,,,14.0,14.0,8.0,6.0,0.0,,57.14 -2317089,2022-05-05,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317090,2022-05-05,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2317091,2022-05-05,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2317092,2022-05-05,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2317093,2022-05-05,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2317094,2022-05-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317095,2022-05-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,43.0,42.0,1.0,0.0,,,,,,97.67, -2317096,2022-05-05,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2317097,2022-05-05,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2317098,2022-05-05,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2317099,2022-05-05,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,223,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2317100,2022-05-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2317101,2022-05-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2317102,2022-05-05,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2317103,2022-05-05,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2317104,2022-05-05,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2317105,2022-05-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2317106,2022-05-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2317107,2022-05-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317108,2022-05-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317109,2022-05-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2317110,2022-05-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2317111,2022-05-05,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317112,2022-05-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,8,Room Based Capacity,,,,,,3.0,3.0,2.0,1.0,0.0,,66.67 -2317113,2022-05-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2317114,2022-05-05,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2317115,2022-05-05,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2317116,2022-05-05,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2317117,2022-05-05,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2317118,2022-05-05,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317119,2022-05-05,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317120,2022-05-05,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2317121,2022-05-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317122,2022-05-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317123,2022-05-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317124,2022-05-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2317125,2022-05-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317126,2022-05-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2317127,2022-05-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317128,2022-05-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2317129,2022-05-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,317,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2317130,2022-05-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,48,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2317131,2022-05-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2317132,2022-05-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2317133,2022-05-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,378,Room Based Capacity,,,,,,120.0,118.0,119.0,1.0,0.0,,99.17 -2317134,2022-05-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2317135,2022-05-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2317136,2022-05-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317137,2022-05-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2317138,2022-05-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317139,2022-05-06,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2317140,2022-05-06,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2317141,2022-05-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,83.0,83.0,82.0,1.0,0.0,,98.8 -2317142,2022-05-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2317143,2022-05-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2317144,2022-05-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317145,2022-05-06,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,12.0,12.0,7.0,5.0,0.0,,,,,,58.33, -2317146,2022-05-06,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2317147,2022-05-06,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2317148,2022-05-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317149,2022-05-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2317150,2022-05-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317151,2022-05-06,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,44,Room Based Capacity,,,,,,18.0,20.0,18.0,0.0,2.0,,100.0 -2317152,2022-05-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,36.0,36.0,33.0,3.0,0.0,,,,,,91.67, -2317153,2022-05-06,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2317154,2022-05-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317155,2022-05-06,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2317156,2022-05-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,67.0,118.0,67.0,0.0,51.0,,100.0 -2317157,2022-05-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2317158,2022-05-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2317159,2022-05-06,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317160,2022-05-06,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2317161,2022-05-06,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317162,2022-05-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,51.0,37.0,0.0,14.0,,,,,,100.0, -2317163,2022-05-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,77,Bed Based Capacity,77.0,81.0,77.0,0.0,4.0,,,,,,100.0, -2317164,2022-05-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,59,Bed Based Capacity,59.0,66.0,59.0,0.0,7.0,,,,,,100.0, -2317165,2022-05-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2317166,2022-05-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317167,2022-05-06,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317168,2022-05-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,27.0,27.0,20.0,7.0,0.0,,,,,,74.07, -2317169,2022-05-06,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2317170,2022-05-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317171,2022-05-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2317172,2022-05-06,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317173,2022-05-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2317174,2022-05-06,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2317175,2022-05-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317176,2022-05-06,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317177,2022-05-06,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317178,2022-05-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317179,2022-05-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,233.0,245.0,223.0,10.0,12.0,,95.71 -2317180,2022-05-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2317181,2022-05-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2317182,2022-05-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317183,2022-05-06,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317184,2022-05-06,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2317185,2022-05-06,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2317186,2022-05-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2317187,2022-05-06,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317188,2022-05-06,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,11.0,11.0,5.0,6.0,0.0,,,,,,45.45, -2317189,2022-05-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2317190,2022-05-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2317191,2022-05-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317192,2022-05-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317193,2022-05-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2317194,2022-05-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2317195,2022-05-06,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2317196,2022-05-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317197,2022-05-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2317198,2022-05-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2317199,2022-05-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317200,2022-05-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317201,2022-05-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2317202,2022-05-06,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2317203,2022-05-06,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2317204,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2317205,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317206,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317207,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2317208,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2317209,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2317210,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2317211,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2317212,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317213,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2317214,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2317215,2022-05-06,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2317216,2022-05-06,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2317217,2022-05-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2317218,2022-05-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317219,2022-05-06,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317220,2022-05-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317221,2022-05-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2317222,2022-05-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,11.0,9.0,0.0,2.0,,,,,,100.0, -2317223,2022-05-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317224,2022-05-06,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317225,2022-05-06,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317226,2022-05-06,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2317227,2022-05-06,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2317228,2022-05-06,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2317229,2022-05-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317230,2022-05-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2317231,2022-05-06,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2317232,2022-05-06,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2317233,2022-05-06,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2317234,2022-05-06,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,223,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2317235,2022-05-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2317236,2022-05-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2317237,2022-05-06,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2317238,2022-05-06,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2317239,2022-05-06,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2317240,2022-05-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2317241,2022-05-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2317242,2022-05-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317243,2022-05-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317244,2022-05-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2317245,2022-05-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2317246,2022-05-06,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317247,2022-05-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,8,Room Based Capacity,,,,,,3.0,3.0,2.0,1.0,0.0,,66.67 -2317248,2022-05-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2317249,2022-05-06,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2317250,2022-05-06,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2317251,2022-05-06,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2317252,2022-05-06,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2317253,2022-05-06,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317254,2022-05-06,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317255,2022-05-06,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2317256,2022-05-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317257,2022-05-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317258,2022-05-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317259,2022-05-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2317260,2022-05-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317261,2022-05-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2317262,2022-05-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317263,2022-05-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317264,2022-05-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2317265,2022-05-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,48,Room Based Capacity,,,,,,24.0,25.0,24.0,0.0,1.0,,100.0 -2317266,2022-05-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2317267,2022-05-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2317268,2022-05-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,382,Room Based Capacity,,,,,,122.0,118.0,120.0,2.0,0.0,,98.36 -2317269,2022-05-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2317270,2022-05-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2317271,2022-05-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317272,2022-05-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2317273,2022-05-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317274,2022-05-07,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2317275,2022-05-07,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2317276,2022-05-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,83.0,83.0,82.0,1.0,0.0,,98.8 -2317277,2022-05-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2317278,2022-05-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317279,2022-05-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317280,2022-05-07,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,12.0,12.0,6.0,6.0,0.0,,,,,,50.0, -2317281,2022-05-07,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2317282,2022-05-07,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2317283,2022-05-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317284,2022-05-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2317285,2022-05-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317286,2022-05-07,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2317287,2022-05-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,36.0,36.0,33.0,3.0,0.0,,,,,,91.67, -2317288,2022-05-07,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2317289,2022-05-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317290,2022-05-07,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2317291,2022-05-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,66.0,118.0,66.0,0.0,52.0,,100.0 -2317292,2022-05-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2317293,2022-05-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2317294,2022-05-07,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317295,2022-05-07,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2317296,2022-05-07,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2317297,2022-05-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,51.0,37.0,0.0,14.0,,,,,,100.0, -2317298,2022-05-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,77,Bed Based Capacity,77.0,81.0,77.0,0.0,4.0,,,,,,100.0, -2317299,2022-05-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,66.0,58.0,0.0,8.0,,,,,,100.0, -2317300,2022-05-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2317301,2022-05-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317302,2022-05-07,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317303,2022-05-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,27.0,27.0,20.0,7.0,0.0,,,,,,74.07, -2317304,2022-05-07,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2317305,2022-05-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317306,2022-05-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2317307,2022-05-07,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317308,2022-05-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2317309,2022-05-07,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2317310,2022-05-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317311,2022-05-07,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317312,2022-05-07,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317313,2022-05-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317314,2022-05-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,233.0,245.0,220.0,13.0,12.0,,94.42 -2317315,2022-05-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2317316,2022-05-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2317317,2022-05-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317318,2022-05-07,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317319,2022-05-07,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2317320,2022-05-07,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2317321,2022-05-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2317322,2022-05-07,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317323,2022-05-07,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,11.0,11.0,5.0,6.0,0.0,,,,,,45.45, -2317324,2022-05-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2317325,2022-05-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2317326,2022-05-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317327,2022-05-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317328,2022-05-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2317329,2022-05-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2317330,2022-05-07,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2317331,2022-05-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317332,2022-05-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2317333,2022-05-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2317334,2022-05-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317335,2022-05-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317336,2022-05-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2317337,2022-05-07,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2317338,2022-05-07,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2317339,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2317340,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317341,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317342,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2317343,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2317344,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,212.0,235.0,212.0,0.0,23.0,,100.0 -2317345,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2317346,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2317347,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317348,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2317349,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2317350,2022-05-07,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2317351,2022-05-07,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2317352,2022-05-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2317353,2022-05-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317354,2022-05-07,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317355,2022-05-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317356,2022-05-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2317357,2022-05-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,11.0,9.0,0.0,2.0,,,,,,100.0, -2317358,2022-05-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317359,2022-05-07,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317360,2022-05-07,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317361,2022-05-07,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2317362,2022-05-07,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2317363,2022-05-07,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2317364,2022-05-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317365,2022-05-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2317366,2022-05-07,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2317367,2022-05-07,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2317368,2022-05-07,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2317369,2022-05-07,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,223,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2317370,2022-05-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,67.0,67.0,65.0,2.0,0.0,,,,,,97.01, -2317371,2022-05-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2317372,2022-05-07,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2317373,2022-05-07,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2317374,2022-05-07,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2317375,2022-05-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2317376,2022-05-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2317377,2022-05-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317378,2022-05-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317379,2022-05-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2317380,2022-05-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2317381,2022-05-07,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317382,2022-05-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,8,Room Based Capacity,,,,,,3.0,3.0,2.0,1.0,0.0,,66.67 -2317383,2022-05-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2317384,2022-05-07,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2317385,2022-05-07,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2317386,2022-05-07,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317387,2022-05-07,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2317388,2022-05-07,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317389,2022-05-07,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317390,2022-05-07,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2317391,2022-05-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317392,2022-05-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317393,2022-05-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317394,2022-05-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2317395,2022-05-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317396,2022-05-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2317397,2022-05-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317398,2022-05-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317399,2022-05-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2317400,2022-05-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,48,Room Based Capacity,,,,,,24.0,25.0,24.0,0.0,1.0,,100.0 -2317401,2022-05-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2317402,2022-05-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,81.0,100.0,80.0,1.0,19.0,,98.77 -2317403,2022-05-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,386,Room Based Capacity,,,,,,122.0,118.0,121.0,1.0,0.0,,99.18 -2317404,2022-05-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2317405,2022-05-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2317406,2022-05-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317407,2022-05-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2317408,2022-05-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317409,2022-05-08,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2317410,2022-05-08,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2317411,2022-05-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,83.0,83.0,82.0,1.0,0.0,,98.8 -2317412,2022-05-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2317413,2022-05-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317414,2022-05-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317415,2022-05-08,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,12.0,12.0,6.0,6.0,0.0,,,,,,50.0, -2317416,2022-05-08,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2317417,2022-05-08,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2317418,2022-05-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317419,2022-05-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2317420,2022-05-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317421,2022-05-08,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2317422,2022-05-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2317423,2022-05-08,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2317424,2022-05-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317425,2022-05-08,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2317426,2022-05-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,66.0,118.0,66.0,0.0,52.0,,100.0 -2317427,2022-05-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2317428,2022-05-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2317429,2022-05-08,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317430,2022-05-08,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2317431,2022-05-08,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317432,2022-05-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,51.0,37.0,0.0,14.0,,,,,,100.0, -2317433,2022-05-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,76,Bed Based Capacity,76.0,81.0,76.0,0.0,5.0,,,,,,100.0, -2317434,2022-05-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,57.0,66.0,57.0,0.0,9.0,,,,,,100.0, -2317435,2022-05-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2317436,2022-05-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317437,2022-05-08,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317438,2022-05-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,27.0,27.0,20.0,7.0,0.0,,,,,,74.07, -2317439,2022-05-08,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2317440,2022-05-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317441,2022-05-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2317442,2022-05-08,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317443,2022-05-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2317444,2022-05-08,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2317445,2022-05-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2317446,2022-05-08,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317447,2022-05-08,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317448,2022-05-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317449,2022-05-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,233.0,245.0,218.0,15.0,12.0,,93.56 -2317450,2022-05-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2317451,2022-05-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2317452,2022-05-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317453,2022-05-08,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317454,2022-05-08,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2317455,2022-05-08,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2317456,2022-05-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2317457,2022-05-08,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317458,2022-05-08,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,11.0,11.0,5.0,6.0,0.0,,,,,,45.45, -2317459,2022-05-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2317460,2022-05-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2317461,2022-05-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317462,2022-05-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317463,2022-05-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2317464,2022-05-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2317465,2022-05-08,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2317466,2022-05-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317467,2022-05-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2317468,2022-05-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2317469,2022-05-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317470,2022-05-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317471,2022-05-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2317472,2022-05-08,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2317473,2022-05-08,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2317474,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,70.0,48.0,2.0,20.0,,,,,,96.0, -2317475,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317476,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317477,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2317478,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2317479,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,212.0,235.0,212.0,0.0,23.0,,100.0 -2317480,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,271.0,287.0,271.0,0.0,16.0,,100.0 -2317481,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2317482,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317483,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2317484,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2317485,2022-05-08,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2317486,2022-05-08,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2317487,2022-05-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2317488,2022-05-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317489,2022-05-08,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317490,2022-05-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317491,2022-05-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2317492,2022-05-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,11.0,9.0,0.0,2.0,,,,,,100.0, -2317493,2022-05-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317494,2022-05-08,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317495,2022-05-08,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317496,2022-05-08,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2317497,2022-05-08,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2317498,2022-05-08,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2317499,2022-05-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317500,2022-05-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2317501,2022-05-08,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2317502,2022-05-08,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2317503,2022-05-08,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2317504,2022-05-08,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,223,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2317505,2022-05-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2317506,2022-05-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2317507,2022-05-08,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2317508,2022-05-08,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2317509,2022-05-08,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2317510,2022-05-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2317511,2022-05-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2317512,2022-05-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317513,2022-05-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317514,2022-05-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2317515,2022-05-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2317516,2022-05-08,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317517,2022-05-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,8,Room Based Capacity,,,,,,3.0,3.0,2.0,1.0,0.0,,66.67 -2317518,2022-05-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2317519,2022-05-08,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2317520,2022-05-08,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2317521,2022-05-08,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317522,2022-05-08,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2317523,2022-05-08,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317524,2022-05-08,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317525,2022-05-08,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2317526,2022-05-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317527,2022-05-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317528,2022-05-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317529,2022-05-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2317530,2022-05-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317531,2022-05-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2317532,2022-05-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317533,2022-05-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317534,2022-05-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2317535,2022-05-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,47,Room Based Capacity,,,,,,24.0,25.0,24.0,0.0,1.0,,100.0 -2317536,2022-05-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2317537,2022-05-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2317538,2022-05-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,390,Room Based Capacity,,,,,,122.0,118.0,122.0,0.0,0.0,,100.0 -2317539,2022-05-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,13.0,13.0,12.0,1.0,0.0,,92.31 -2317540,2022-05-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2317541,2022-05-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317542,2022-05-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2317543,2022-05-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317544,2022-05-09,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2317545,2022-05-09,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,205,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2317546,2022-05-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,83,Room Based Capacity,,,,,,83.0,83.0,83.0,0.0,0.0,,100.0 -2317547,2022-05-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2317548,2022-05-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317549,2022-05-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2317550,2022-05-09,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,12.0,12.0,5.0,7.0,0.0,,,,,,41.67, -2317551,2022-05-09,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2317552,2022-05-09,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2317553,2022-05-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317554,2022-05-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2317555,2022-05-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317556,2022-05-09,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2317557,2022-05-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2317558,2022-05-09,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2317559,2022-05-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317560,2022-05-09,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2317561,2022-05-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,69.0,118.0,69.0,0.0,49.0,,100.0 -2317562,2022-05-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2317563,2022-05-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,13.0,33.0,0.0,,28.26 -2317564,2022-05-09,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317565,2022-05-09,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,88,Bed Based Capacity,93.0,93.0,88.0,5.0,0.0,,,,,,94.62, -2317566,2022-05-09,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317567,2022-05-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,51.0,36.0,1.0,14.0,,,,,,97.3, -2317568,2022-05-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,78,Bed Based Capacity,78.0,81.0,78.0,0.0,3.0,,,,,,100.0, -2317569,2022-05-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,66.0,54.0,1.0,11.0,,,,,,98.18, -2317570,2022-05-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2317571,2022-05-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317572,2022-05-09,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2317573,2022-05-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2317574,2022-05-09,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,71.0,64.0,1.0,6.0,,98.46 -2317575,2022-05-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317576,2022-05-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2317577,2022-05-09,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317578,2022-05-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2317579,2022-05-09,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317580,2022-05-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317581,2022-05-09,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317582,2022-05-09,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2317583,2022-05-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317584,2022-05-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,233.0,245.0,218.0,15.0,12.0,,93.56 -2317585,2022-05-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2317586,2022-05-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2317587,2022-05-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317588,2022-05-09,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317589,2022-05-09,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2317590,2022-05-09,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,16.0,15.0,0.0,1.0,,,,,,100.0, -2317591,2022-05-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2317592,2022-05-09,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317593,2022-05-09,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2317594,2022-05-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317595,2022-05-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2317596,2022-05-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317597,2022-05-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317598,2022-05-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2317599,2022-05-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2317600,2022-05-09,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2317601,2022-05-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317602,2022-05-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2317603,2022-05-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2317604,2022-05-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317605,2022-05-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317606,2022-05-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2317607,2022-05-09,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2317608,2022-05-09,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2317609,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2317610,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317611,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317612,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2317613,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2317614,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,211.0,235.0,211.0,0.0,24.0,,100.0 -2317615,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,274.0,287.0,272.0,2.0,13.0,,99.27 -2317616,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2317617,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317618,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2317619,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2317620,2022-05-09,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2317621,2022-05-09,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2317622,2022-05-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2317623,2022-05-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317624,2022-05-09,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317625,2022-05-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2317626,2022-05-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2317627,2022-05-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2317628,2022-05-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317629,2022-05-09,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317630,2022-05-09,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317631,2022-05-09,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2317632,2022-05-09,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2317633,2022-05-09,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,30.0,23.0,1.0,6.0,,,,,,95.83, -2317634,2022-05-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317635,2022-05-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2317636,2022-05-09,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2317637,2022-05-09,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2317638,2022-05-09,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2317639,2022-05-09,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,223,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2317640,2022-05-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2317641,2022-05-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2317642,2022-05-09,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2317643,2022-05-09,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2317644,2022-05-09,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2317645,2022-05-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2317646,2022-05-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,221,Bed Based Capacity,225.0,225.0,221.0,4.0,0.0,,,,,,98.22, -2317647,2022-05-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317648,2022-05-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2317649,2022-05-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2317650,2022-05-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2317651,2022-05-09,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317652,2022-05-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2317653,2022-05-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2317654,2022-05-09,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,16.0,16.0,15.0,1.0,0.0,,,,,,93.75, -2317655,2022-05-09,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2317656,2022-05-09,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2317657,2022-05-09,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2317658,2022-05-09,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317659,2022-05-09,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317660,2022-05-09,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2317661,2022-05-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317662,2022-05-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317663,2022-05-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317664,2022-05-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2317665,2022-05-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317666,2022-05-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2317667,2022-05-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317668,2022-05-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317669,2022-05-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2317670,2022-05-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2317671,2022-05-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2317672,2022-05-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2317673,2022-05-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,391,Room Based Capacity,,,,,,122.0,118.0,122.0,0.0,0.0,,100.0 -2317674,2022-05-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2317675,2022-05-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2317676,2022-05-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317677,2022-05-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2317678,2022-05-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317679,2022-05-10,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,30.0,22.0,1.0,7.0,,95.65 -2317680,2022-05-10,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,206,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2317681,2022-05-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,82.0,83.0,82.0,0.0,1.0,,100.0 -2317682,2022-05-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2317683,2022-05-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317684,2022-05-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2317685,2022-05-10,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,12.0,12.0,4.0,8.0,0.0,,,,,,33.33, -2317686,2022-05-10,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2317687,2022-05-10,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2317688,2022-05-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317689,2022-05-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,35.0,40.0,35.0,0.0,5.0,,100.0 -2317690,2022-05-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317691,2022-05-10,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2317692,2022-05-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2317693,2022-05-10,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2317694,2022-05-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317695,2022-05-10,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2317696,2022-05-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,71.0,118.0,70.0,1.0,47.0,,98.59 -2317697,2022-05-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2317698,2022-05-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,13.0,33.0,0.0,,28.26 -2317699,2022-05-10,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317700,2022-05-10,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2317701,2022-05-10,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317702,2022-05-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,38.0,51.0,37.0,1.0,13.0,,,,,,97.37, -2317703,2022-05-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2317704,2022-05-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,66.0,49.0,0.0,17.0,,,,,,100.0, -2317705,2022-05-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2317706,2022-05-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317707,2022-05-10,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317708,2022-05-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317709,2022-05-10,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,71.0,63.0,2.0,6.0,,96.92 -2317710,2022-05-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317711,2022-05-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2317712,2022-05-10,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317713,2022-05-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2317714,2022-05-10,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317715,2022-05-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317716,2022-05-10,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317717,2022-05-10,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317718,2022-05-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317719,2022-05-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,232.0,245.0,219.0,13.0,13.0,,94.4 -2317720,2022-05-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2317721,2022-05-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,88,Room Based Capacity,,,,,,90.0,92.0,88.0,2.0,2.0,,97.78 -2317722,2022-05-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317723,2022-05-10,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317724,2022-05-10,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2317725,2022-05-10,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,16.0,14.0,0.0,2.0,,,,,,100.0, -2317726,2022-05-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2317727,2022-05-10,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317728,2022-05-10,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2317729,2022-05-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317730,2022-05-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2317731,2022-05-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317732,2022-05-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317733,2022-05-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2317734,2022-05-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2317735,2022-05-10,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2317736,2022-05-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317737,2022-05-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2317738,2022-05-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2317739,2022-05-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317740,2022-05-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317741,2022-05-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2317742,2022-05-10,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2317743,2022-05-10,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2317744,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2317745,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317746,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317747,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2317748,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2317749,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,212.0,235.0,212.0,0.0,23.0,,100.0 -2317750,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2317751,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2317752,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317753,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2317754,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2317755,2022-05-10,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2317756,2022-05-10,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2317757,2022-05-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2317758,2022-05-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317759,2022-05-10,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2317760,2022-05-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317761,2022-05-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2317762,2022-05-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2317763,2022-05-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317764,2022-05-10,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317765,2022-05-10,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317766,2022-05-10,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2317767,2022-05-10,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2317768,2022-05-10,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2317769,2022-05-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317770,2022-05-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2317771,2022-05-10,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2317772,2022-05-10,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2317773,2022-05-10,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2317774,2022-05-10,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,76.0,76.0,74.0,2.0,0.0,,97.37 -2317775,2022-05-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2317776,2022-05-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2317777,2022-05-10,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2317778,2022-05-10,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2317779,2022-05-10,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2317780,2022-05-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2317781,2022-05-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2317782,2022-05-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317783,2022-05-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,76.0,77.0,74.0,2.0,1.0,,97.37 -2317784,2022-05-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2317785,2022-05-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2317786,2022-05-10,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317787,2022-05-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2317788,2022-05-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2317789,2022-05-10,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2317790,2022-05-10,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2317791,2022-05-10,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,10.0,8.0,1.0,1.0,,,,,,88.89, -2317792,2022-05-10,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2317793,2022-05-10,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317794,2022-05-10,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317795,2022-05-10,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2317796,2022-05-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317797,2022-05-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317798,2022-05-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317799,2022-05-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2317800,2022-05-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317801,2022-05-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2317802,2022-05-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317803,2022-05-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317804,2022-05-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2317805,2022-05-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2317806,2022-05-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2317807,2022-05-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2317808,2022-05-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,120.0,118.0,120.0,0.0,0.0,,100.0 -2317809,2022-05-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2317810,2022-05-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2317811,2022-05-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317812,2022-05-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2317813,2022-05-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317814,2022-05-11,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2317815,2022-05-11,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,206,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2317816,2022-05-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,83,Room Based Capacity,,,,,,83.0,83.0,83.0,0.0,0.0,,100.0 -2317817,2022-05-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2317818,2022-05-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317819,2022-05-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2317820,2022-05-11,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,12.0,12.0,4.0,8.0,0.0,,,,,,33.33, -2317821,2022-05-11,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,132,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2317822,2022-05-11,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2317823,2022-05-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317824,2022-05-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2317825,2022-05-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317826,2022-05-11,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,48,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2317827,2022-05-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317828,2022-05-11,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2317829,2022-05-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2317830,2022-05-11,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2317831,2022-05-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,84,Room Based Capacity,,,,,,73.0,118.0,73.0,0.0,45.0,,100.0 -2317832,2022-05-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,30.0,2.0,0.0,28.0,,100.0 -2317833,2022-05-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,13.0,33.0,0.0,,28.26 -2317834,2022-05-11,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317835,2022-05-11,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2317836,2022-05-11,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317837,2022-05-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,38.0,51.0,37.0,1.0,13.0,,,,,,97.37, -2317838,2022-05-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2317839,2022-05-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,66.0,49.0,0.0,17.0,,,,,,100.0, -2317840,2022-05-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2317841,2022-05-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317842,2022-05-11,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317843,2022-05-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2317844,2022-05-11,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2317845,2022-05-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317846,2022-05-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2317847,2022-05-11,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317848,2022-05-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2317849,2022-05-11,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317850,2022-05-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317851,2022-05-11,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317852,2022-05-11,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317853,2022-05-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317854,2022-05-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,232.0,245.0,220.0,12.0,13.0,,94.83 -2317855,2022-05-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2317856,2022-05-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2317857,2022-05-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317858,2022-05-11,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317859,2022-05-11,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2317860,2022-05-11,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,16.0,14.0,0.0,2.0,,,,,,100.0, -2317861,2022-05-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2317862,2022-05-11,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317863,2022-05-11,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2317864,2022-05-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2317865,2022-05-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2317866,2022-05-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317867,2022-05-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317868,2022-05-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2317869,2022-05-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2317870,2022-05-11,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2317871,2022-05-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317872,2022-05-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2317873,2022-05-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2317874,2022-05-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317875,2022-05-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2317876,2022-05-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2317877,2022-05-11,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2317878,2022-05-11,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2317879,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,70.0,50.0,0.0,20.0,,,,,,100.0, -2317880,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317881,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317882,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2317883,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2317884,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2317885,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2317886,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2317887,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2317888,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2317889,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2317890,2022-05-11,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2317891,2022-05-11,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2317892,2022-05-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2317893,2022-05-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317894,2022-05-11,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317895,2022-05-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317896,2022-05-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2317897,2022-05-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2317898,2022-05-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2317899,2022-05-11,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317900,2022-05-11,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317901,2022-05-11,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2317902,2022-05-11,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2317903,2022-05-11,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2317904,2022-05-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317905,2022-05-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2317906,2022-05-11,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2317907,2022-05-11,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2317908,2022-05-11,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2317909,2022-05-11,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,220,Room Based Capacity,,,,,,76.0,76.0,74.0,2.0,0.0,,97.37 -2317910,2022-05-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2317911,2022-05-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2317912,2022-05-11,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2317913,2022-05-11,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2317914,2022-05-11,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2317915,2022-05-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2317916,2022-05-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2317917,2022-05-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317918,2022-05-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2317919,2022-05-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2317920,2022-05-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2317921,2022-05-11,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2317922,2022-05-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2317923,2022-05-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2317924,2022-05-11,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2317925,2022-05-11,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2317926,2022-05-11,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,10.0,8.0,1.0,1.0,,,,,,88.89, -2317927,2022-05-11,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2317928,2022-05-11,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317929,2022-05-11,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2317930,2022-05-11,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2317931,2022-05-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2317932,2022-05-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317933,2022-05-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2317934,2022-05-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2317935,2022-05-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2317936,2022-05-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2317937,2022-05-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317938,2022-05-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2317939,2022-05-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2317940,2022-05-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2317941,2022-05-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2317942,2022-05-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2317943,2022-05-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,383,Room Based Capacity,,,,,,120.0,118.0,120.0,0.0,0.0,,100.0 -2317944,2022-05-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2317945,2022-05-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2317946,2022-05-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2317947,2022-05-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2317948,2022-05-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2317949,2022-05-12,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2317950,2022-05-12,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,203,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2317951,2022-05-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,83.0,83.0,82.0,1.0,0.0,,98.8 -2317952,2022-05-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2317953,2022-05-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2317954,2022-05-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2317955,2022-05-12,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,12.0,12.0,5.0,7.0,0.0,,,,,,41.67, -2317956,2022-05-12,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2317957,2022-05-12,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2317958,2022-05-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2317959,2022-05-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,98,Room Based Capacity,,,,,,38.0,40.0,38.0,0.0,2.0,,100.0 -2317960,2022-05-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2317961,2022-05-12,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2317962,2022-05-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2317963,2022-05-12,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2317964,2022-05-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2317965,2022-05-12,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2317966,2022-05-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,86,Room Based Capacity,,,,,,76.0,118.0,75.0,1.0,42.0,,98.68 -2317967,2022-05-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,3.0,30.0,2.0,1.0,27.0,,66.67 -2317968,2022-05-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,13.0,33.0,0.0,,28.26 -2317969,2022-05-12,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2317970,2022-05-12,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2317971,2022-05-12,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317972,2022-05-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,38.0,51.0,37.0,1.0,13.0,,,,,,97.37, -2317973,2022-05-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2317974,2022-05-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,66.0,49.0,0.0,17.0,,,,,,100.0, -2317975,2022-05-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2317976,2022-05-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2317977,2022-05-12,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2317978,2022-05-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2317979,2022-05-12,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2317980,2022-05-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2317981,2022-05-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2317982,2022-05-12,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2317983,2022-05-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2317984,2022-05-12,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2317985,2022-05-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2317986,2022-05-12,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2317987,2022-05-12,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2317988,2022-05-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2317989,2022-05-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,234,Room Based Capacity,,,,,,232.0,245.0,218.0,14.0,13.0,,93.97 -2317990,2022-05-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2317991,2022-05-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2317992,2022-05-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2317993,2022-05-12,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2317994,2022-05-12,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2317995,2022-05-12,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2317996,2022-05-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2317997,2022-05-12,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2317998,2022-05-12,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2317999,2022-05-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318000,2022-05-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318001,2022-05-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2318002,2022-05-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318003,2022-05-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2318004,2022-05-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2318005,2022-05-12,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318006,2022-05-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318007,2022-05-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318008,2022-05-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2318009,2022-05-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318010,2022-05-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318011,2022-05-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2318012,2022-05-12,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2318013,2022-05-12,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,92.0,1.0,1.0,,98.92 -2318014,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,50.0,70.0,44.0,6.0,20.0,,,,,,88.0, -2318015,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318016,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2318017,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2318018,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2318019,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2318020,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,310,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2318021,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2318022,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318023,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2318024,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2318025,2022-05-12,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318026,2022-05-12,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2318027,2022-05-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2318028,2022-05-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318029,2022-05-12,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318030,2022-05-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318031,2022-05-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2318032,2022-05-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2318033,2022-05-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2318034,2022-05-12,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318035,2022-05-12,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318036,2022-05-12,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318037,2022-05-12,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318038,2022-05-12,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318039,2022-05-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318040,2022-05-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318041,2022-05-12,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2318042,2022-05-12,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,28.0,25.0,0.0,3.0,,,,,,100.0, -2318043,2022-05-12,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318044,2022-05-12,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,223,Room Based Capacity,,,,,,76.0,76.0,75.0,1.0,0.0,,98.68 -2318045,2022-05-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318046,2022-05-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318047,2022-05-12,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,49.0,48.0,1.0,0.0,,,,,,97.96, -2318048,2022-05-12,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2318049,2022-05-12,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318050,2022-05-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318051,2022-05-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2318052,2022-05-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318053,2022-05-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2318054,2022-05-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318055,2022-05-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2318056,2022-05-12,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318057,2022-05-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318058,2022-05-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318059,2022-05-12,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2318060,2022-05-12,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2318061,2022-05-12,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2318062,2022-05-12,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2318063,2022-05-12,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318064,2022-05-12,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2318065,2022-05-12,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2318066,2022-05-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318067,2022-05-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318068,2022-05-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318069,2022-05-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2318070,2022-05-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318071,2022-05-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2318072,2022-05-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318073,2022-05-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318074,2022-05-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2318075,2022-05-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2318076,2022-05-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2318077,2022-05-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2318078,2022-05-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,387,Room Based Capacity,,,,,,121.0,118.0,121.0,0.0,0.0,,100.0 -2318079,2022-05-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2318080,2022-05-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,149.0,155.0,149.0,0.0,6.0,,100.0 -2318081,2022-05-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2318082,2022-05-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2318083,2022-05-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318084,2022-05-13,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2318085,2022-05-13,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2318086,2022-05-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,83,Room Based Capacity,,,,,,83.0,83.0,83.0,0.0,0.0,,100.0 -2318087,2022-05-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2318088,2022-05-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2318089,2022-05-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2318090,2022-05-13,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,12.0,12.0,6.0,6.0,0.0,,,,,,50.0, -2318091,2022-05-13,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2318092,2022-05-13,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2318093,2022-05-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2318094,2022-05-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,93,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2318095,2022-05-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2318096,2022-05-13,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2318097,2022-05-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318098,2022-05-13,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2318099,2022-05-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318100,2022-05-13,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2318101,2022-05-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,84,Room Based Capacity,,,,,,76.0,118.0,73.0,3.0,42.0,,96.05 -2318102,2022-05-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,3.0,30.0,1.0,2.0,27.0,,33.33 -2318103,2022-05-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2318104,2022-05-13,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2318105,2022-05-13,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2318106,2022-05-13,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318107,2022-05-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,38.0,51.0,36.0,2.0,13.0,,,,,,94.74, -2318108,2022-05-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2318109,2022-05-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,66.0,47.0,1.0,18.0,,,,,,97.92, -2318110,2022-05-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2318111,2022-05-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318112,2022-05-13,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318113,2022-05-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2318114,2022-05-13,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2318115,2022-05-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2318116,2022-05-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2318117,2022-05-13,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2318118,2022-05-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2318119,2022-05-13,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318120,2022-05-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318121,2022-05-13,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2318122,2022-05-13,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318123,2022-05-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2318124,2022-05-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,222.0,245.0,218.0,4.0,23.0,,98.2 -2318125,2022-05-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2318126,2022-05-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2318127,2022-05-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2318128,2022-05-13,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2318129,2022-05-13,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2318130,2022-05-13,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,16.0,13.0,0.0,3.0,,,,,,100.0, -2318131,2022-05-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2318132,2022-05-13,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2318133,2022-05-13,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2318134,2022-05-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318135,2022-05-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318136,2022-05-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2318137,2022-05-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318138,2022-05-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318139,2022-05-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2318140,2022-05-13,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318141,2022-05-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318142,2022-05-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318143,2022-05-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2318144,2022-05-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318145,2022-05-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318146,2022-05-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2318147,2022-05-13,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2318148,2022-05-13,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2318149,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,70.0,46.0,0.0,24.0,,,,,,100.0, -2318150,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318151,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2318152,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2318153,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2318154,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,212.0,235.0,212.0,0.0,23.0,,100.0 -2318155,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2318156,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2318157,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318158,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2318159,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2318160,2022-05-13,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318161,2022-05-13,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2318162,2022-05-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2318163,2022-05-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318164,2022-05-13,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318165,2022-05-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318166,2022-05-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2318167,2022-05-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2318168,2022-05-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2318169,2022-05-13,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318170,2022-05-13,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2318171,2022-05-13,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318172,2022-05-13,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318173,2022-05-13,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318174,2022-05-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318175,2022-05-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318176,2022-05-13,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2318177,2022-05-13,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,28.0,26.0,0.0,2.0,,,,,,100.0, -2318178,2022-05-13,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318179,2022-05-13,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2318180,2022-05-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318181,2022-05-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318182,2022-05-13,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2318183,2022-05-13,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2318184,2022-05-13,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318185,2022-05-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318186,2022-05-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2318187,2022-05-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318188,2022-05-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2318189,2022-05-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318190,2022-05-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2318191,2022-05-13,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318192,2022-05-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318193,2022-05-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318194,2022-05-13,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2318195,2022-05-13,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2318196,2022-05-13,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318197,2022-05-13,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2318198,2022-05-13,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318199,2022-05-13,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318200,2022-05-13,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2318201,2022-05-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318202,2022-05-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318203,2022-05-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318204,2022-05-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2318205,2022-05-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318206,2022-05-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2318207,2022-05-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318208,2022-05-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318209,2022-05-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2318210,2022-05-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2318211,2022-05-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2318212,2022-05-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2318213,2022-05-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,392,Room Based Capacity,,,,,,122.0,118.0,122.0,0.0,0.0,,100.0 -2318214,2022-05-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2318215,2022-05-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2318216,2022-05-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2318217,2022-05-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2318218,2022-05-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318219,2022-05-14,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2318220,2022-05-14,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2318221,2022-05-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,83,Room Based Capacity,,,,,,83.0,83.0,83.0,0.0,0.0,,100.0 -2318222,2022-05-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2318223,2022-05-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2318224,2022-05-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2318225,2022-05-14,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,12.0,12.0,7.0,5.0,0.0,,,,,,58.33, -2318226,2022-05-14,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2318227,2022-05-14,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2318228,2022-05-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2318229,2022-05-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2318230,2022-05-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2318231,2022-05-14,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,49,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2318232,2022-05-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318233,2022-05-14,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2318234,2022-05-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318235,2022-05-14,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2318236,2022-05-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,84,Room Based Capacity,,,,,,76.0,118.0,73.0,3.0,42.0,,96.05 -2318237,2022-05-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,1,Room Based Capacity,,,,,,3.0,30.0,1.0,2.0,27.0,,33.33 -2318238,2022-05-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,16,Room Based Capacity,,,,,,46.0,30.0,16.0,30.0,0.0,,34.78 -2318239,2022-05-14,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2318240,2022-05-14,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2318241,2022-05-14,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318242,2022-05-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,38.0,51.0,35.0,3.0,13.0,,,,,,92.11, -2318243,2022-05-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,79,Bed Based Capacity,79.0,81.0,79.0,0.0,2.0,,,,,,100.0, -2318244,2022-05-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,66.0,47.0,1.0,18.0,,,,,,97.92, -2318245,2022-05-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2318246,2022-05-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318247,2022-05-14,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318248,2022-05-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2318249,2022-05-14,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2318250,2022-05-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2318251,2022-05-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2318252,2022-05-14,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2318253,2022-05-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2318254,2022-05-14,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2318255,2022-05-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2318256,2022-05-14,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2318257,2022-05-14,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2318258,2022-05-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2318259,2022-05-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,222.0,245.0,218.0,4.0,23.0,,98.2 -2318260,2022-05-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2318261,2022-05-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2318262,2022-05-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2318263,2022-05-14,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2318264,2022-05-14,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2318265,2022-05-14,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,13.0,16.0,10.0,3.0,3.0,,,,,,76.92, -2318266,2022-05-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2318267,2022-05-14,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2318268,2022-05-14,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2318269,2022-05-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318270,2022-05-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318271,2022-05-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2318272,2022-05-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318273,2022-05-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318274,2022-05-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2318275,2022-05-14,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318276,2022-05-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318277,2022-05-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318278,2022-05-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2318279,2022-05-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2318280,2022-05-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318281,2022-05-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2318282,2022-05-14,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2318283,2022-05-14,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2318284,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,47.0,70.0,45.0,2.0,23.0,,,,,,95.74, -2318285,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318286,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2318287,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2318288,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2318289,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2318290,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2318291,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,67,Bed Based Capacity,67.0,70.0,67.0,0.0,3.0,,,,,,100.0, -2318292,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318293,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,128,Bed Based Capacity,129.0,130.0,128.0,1.0,1.0,,,,,,99.22, -2318294,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2318295,2022-05-14,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318296,2022-05-14,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2318297,2022-05-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2318298,2022-05-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318299,2022-05-14,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318300,2022-05-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318301,2022-05-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2318302,2022-05-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2318303,2022-05-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2318304,2022-05-14,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318305,2022-05-14,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2318306,2022-05-14,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318307,2022-05-14,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318308,2022-05-14,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318309,2022-05-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318310,2022-05-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318311,2022-05-14,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2318312,2022-05-14,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,28.0,22.0,0.0,6.0,,,,,,100.0, -2318313,2022-05-14,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318314,2022-05-14,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2318315,2022-05-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318316,2022-05-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318317,2022-05-14,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,49.0,48.0,1.0,0.0,,,,,,97.96, -2318318,2022-05-14,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2318319,2022-05-14,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318320,2022-05-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318321,2022-05-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2318322,2022-05-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318323,2022-05-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2318324,2022-05-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318325,2022-05-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2318326,2022-05-14,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318327,2022-05-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318328,2022-05-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318329,2022-05-14,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2318330,2022-05-14,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2318331,2022-05-14,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318332,2022-05-14,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2318333,2022-05-14,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318334,2022-05-14,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318335,2022-05-14,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2318336,2022-05-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318337,2022-05-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318338,2022-05-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318339,2022-05-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2318340,2022-05-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318341,2022-05-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2318342,2022-05-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318343,2022-05-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318344,2022-05-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2318345,2022-05-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2318346,2022-05-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2318347,2022-05-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2318348,2022-05-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,392,Room Based Capacity,,,,,,122.0,118.0,122.0,0.0,0.0,,100.0 -2318349,2022-05-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2318350,2022-05-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2318351,2022-05-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2318352,2022-05-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2318353,2022-05-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318354,2022-05-15,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2318355,2022-05-15,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2318356,2022-05-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,82.0,83.0,82.0,0.0,1.0,,100.0 -2318357,2022-05-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2318358,2022-05-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2318359,2022-05-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,76.0,77.0,74.0,2.0,1.0,,97.37 -2318360,2022-05-15,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,12.0,12.0,7.0,5.0,0.0,,,,,,58.33, -2318361,2022-05-15,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2318362,2022-05-15,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2318363,2022-05-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2318364,2022-05-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2318365,2022-05-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2318366,2022-05-15,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2318367,2022-05-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318368,2022-05-15,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2318369,2022-05-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318370,2022-05-15,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,78,Room Based Capacity,,,,,,33.0,37.0,33.0,0.0,4.0,,100.0 -2318371,2022-05-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,83,Room Based Capacity,,,,,,76.0,118.0,72.0,4.0,42.0,,94.74 -2318372,2022-05-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2318373,2022-05-15,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2318374,2022-05-15,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2318375,2022-05-15,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318376,2022-05-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,42.0,51.0,39.0,3.0,9.0,,,,,,92.86, -2318377,2022-05-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,79,Bed Based Capacity,79.0,81.0,79.0,0.0,2.0,,,,,,100.0, -2318378,2022-05-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,48.0,66.0,46.0,2.0,18.0,,,,,,95.83, -2318379,2022-05-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,22.0,18.0,0.0,4.0,,,,,,100.0, -2318380,2022-05-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318381,2022-05-15,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318382,2022-05-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2318383,2022-05-15,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2318384,2022-05-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2318385,2022-05-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2318386,2022-05-15,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2318387,2022-05-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2318388,2022-05-15,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2318389,2022-05-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318390,2022-05-15,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2318391,2022-05-15,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318392,2022-05-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2318393,2022-05-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,222.0,245.0,218.0,4.0,23.0,,98.2 -2318394,2022-05-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2318395,2022-05-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2318396,2022-05-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2318397,2022-05-15,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2318398,2022-05-15,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2318399,2022-05-15,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,16.0,10.0,0.0,6.0,,,,,,100.0, -2318400,2022-05-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2318401,2022-05-15,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2318402,2022-05-15,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2318403,2022-05-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318404,2022-05-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318405,2022-05-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2318406,2022-05-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2318407,2022-05-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318408,2022-05-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2318409,2022-05-15,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318410,2022-05-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318411,2022-05-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318412,2022-05-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2318413,2022-05-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318414,2022-05-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318415,2022-05-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2318416,2022-05-15,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2318417,2022-05-15,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2318418,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,70.0,47.0,0.0,23.0,,,,,,100.0, -2318419,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318420,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2318421,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2318422,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2318423,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,246,Room Based Capacity,,,,,,213.0,235.0,213.0,0.0,22.0,,100.0 -2318424,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2318425,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,64.0,70.0,64.0,0.0,6.0,,,,,,100.0, -2318426,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318427,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,128,Bed Based Capacity,128.0,130.0,128.0,0.0,2.0,,,,,,100.0, -2318428,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2318429,2022-05-15,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318430,2022-05-15,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2318431,2022-05-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2318432,2022-05-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318433,2022-05-15,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318434,2022-05-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318435,2022-05-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2318436,2022-05-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2318437,2022-05-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2318438,2022-05-15,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318439,2022-05-15,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2318440,2022-05-15,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318441,2022-05-15,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318442,2022-05-15,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318443,2022-05-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318444,2022-05-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318445,2022-05-15,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2318446,2022-05-15,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,28.0,23.0,0.0,5.0,,,,,,100.0, -2318447,2022-05-15,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318448,2022-05-15,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2318449,2022-05-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318450,2022-05-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318451,2022-05-15,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2318452,2022-05-15,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2318453,2022-05-15,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318454,2022-05-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318455,2022-05-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2318456,2022-05-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318457,2022-05-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2318458,2022-05-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318459,2022-05-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,30.0,30.0,0.0,0.0,,,,,,100.0, -2318460,2022-05-15,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318461,2022-05-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318462,2022-05-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318463,2022-05-15,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2318464,2022-05-15,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2318465,2022-05-15,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2318466,2022-05-15,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2318467,2022-05-15,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318468,2022-05-15,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318469,2022-05-15,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2318470,2022-05-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318471,2022-05-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318472,2022-05-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318473,2022-05-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2318474,2022-05-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318475,2022-05-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2318476,2022-05-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318477,2022-05-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318478,2022-05-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2318479,2022-05-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2318480,2022-05-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2318481,2022-05-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2318482,2022-05-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,394,Room Based Capacity,,,,,,122.0,118.0,122.0,0.0,0.0,,100.0 -2318483,2022-05-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2318484,2022-05-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2318485,2022-05-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2318486,2022-05-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2318487,2022-05-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318488,2022-05-16,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2318489,2022-05-16,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2318490,2022-05-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,82.0,83.0,82.0,0.0,1.0,,100.0 -2318491,2022-05-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2318492,2022-05-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2318493,2022-05-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,77.0,73.0,0.0,4.0,,100.0 -2318494,2022-05-16,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,8.0,12.0,7.0,1.0,4.0,,,,,,87.5, -2318495,2022-05-16,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,132,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2318496,2022-05-16,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2318497,2022-05-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2318498,2022-05-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,36.0,40.0,36.0,0.0,4.0,,100.0 -2318499,2022-05-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2318500,2022-05-16,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2318501,2022-05-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318502,2022-05-16,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2318503,2022-05-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318504,2022-05-16,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,80,Room Based Capacity,,,,,,35.0,37.0,34.0,1.0,2.0,,97.14 -2318505,2022-05-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,86,Room Based Capacity,,,,,,75.0,118.0,75.0,0.0,43.0,,100.0 -2318506,2022-05-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,46.0,30.0,10.0,36.0,0.0,,21.74 -2318507,2022-05-16,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2318508,2022-05-16,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2318509,2022-05-16,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318510,2022-05-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,51.0,40.0,0.0,11.0,,,,,,100.0, -2318511,2022-05-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,78,Bed Based Capacity,78.0,81.0,78.0,0.0,3.0,,,,,,100.0, -2318512,2022-05-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,66.0,43.0,1.0,22.0,,,,,,97.73, -2318513,2022-05-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,22.0,19.0,0.0,3.0,,,,,,100.0, -2318514,2022-05-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318515,2022-05-16,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318516,2022-05-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2318517,2022-05-16,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2318518,2022-05-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2318519,2022-05-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,74.0,74.0,70.0,4.0,0.0,,,,,,94.59, -2318520,2022-05-16,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2318521,2022-05-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2318522,2022-05-16,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2318523,2022-05-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318524,2022-05-16,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2318525,2022-05-16,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318526,2022-05-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318527,2022-05-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,222.0,245.0,218.0,4.0,23.0,,98.2 -2318528,2022-05-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2318529,2022-05-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2318530,2022-05-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2318531,2022-05-16,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2318532,2022-05-16,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2318533,2022-05-16,11,Eva's Initiatives,18,Eva's Place,1024.0,Eva's Place,360 Lesmill Rd,M3B 2T5,Toronto,ON,11931,Eva's Place,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,14.0,12.0,0.0,2.0,,,,,,100.0, -2318534,2022-05-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2318535,2022-05-16,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2318536,2022-05-16,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2318537,2022-05-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318538,2022-05-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318539,2022-05-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318540,2022-05-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318541,2022-05-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318542,2022-05-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2318543,2022-05-16,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318544,2022-05-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318545,2022-05-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318546,2022-05-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2318547,2022-05-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318548,2022-05-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318549,2022-05-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2318550,2022-05-16,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2318551,2022-05-16,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2318552,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,70.0,47.0,1.0,22.0,,,,,,97.92, -2318553,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318554,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,31.0,29.0,1.0,1.0,,,,,,96.67, -2318555,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2318556,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2318557,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2318558,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2318559,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,65,Bed Based Capacity,65.0,70.0,65.0,0.0,5.0,,,,,,100.0, -2318560,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318561,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2318562,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2318563,2022-05-16,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318564,2022-05-16,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2318565,2022-05-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2318566,2022-05-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318567,2022-05-16,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318568,2022-05-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318569,2022-05-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2318570,2022-05-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2318571,2022-05-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2318572,2022-05-16,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318573,2022-05-16,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2318574,2022-05-16,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318575,2022-05-16,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318576,2022-05-16,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318577,2022-05-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318578,2022-05-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318579,2022-05-16,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2318580,2022-05-16,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2318581,2022-05-16,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318582,2022-05-16,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2318583,2022-05-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318584,2022-05-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318585,2022-05-16,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2318586,2022-05-16,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2318587,2022-05-16,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318588,2022-05-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318589,2022-05-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2318590,2022-05-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318591,2022-05-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2318592,2022-05-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318593,2022-05-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,30.0,30.0,29.0,1.0,0.0,,,,,,96.67, -2318594,2022-05-16,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318595,2022-05-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318596,2022-05-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318597,2022-05-16,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2318598,2022-05-16,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2318599,2022-05-16,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318600,2022-05-16,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2318601,2022-05-16,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318602,2022-05-16,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318603,2022-05-16,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2318604,2022-05-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318605,2022-05-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318606,2022-05-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318607,2022-05-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2318608,2022-05-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318609,2022-05-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2318610,2022-05-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318611,2022-05-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318612,2022-05-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2318613,2022-05-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2318614,2022-05-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2318615,2022-05-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2318616,2022-05-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,394,Room Based Capacity,,,,,,122.0,118.0,122.0,0.0,0.0,,100.0 -2318617,2022-05-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2318618,2022-05-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2318619,2022-05-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2318620,2022-05-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2318621,2022-05-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318622,2022-05-17,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2318623,2022-05-17,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2318624,2022-05-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,82.0,83.0,81.0,1.0,1.0,,98.78 -2318625,2022-05-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2318626,2022-05-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2318627,2022-05-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,77.0,72.0,0.0,5.0,,100.0 -2318628,2022-05-17,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,12.0,8.0,1.0,3.0,,,,,,88.89, -2318629,2022-05-17,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,126,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2318630,2022-05-17,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2318631,2022-05-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2318632,2022-05-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2318633,2022-05-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2318634,2022-05-17,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2318635,2022-05-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2318636,2022-05-17,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2318637,2022-05-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318638,2022-05-17,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,79,Room Based Capacity,,,,,,36.0,37.0,33.0,3.0,1.0,,91.67 -2318639,2022-05-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,93,Room Based Capacity,,,,,,81.0,118.0,81.0,0.0,37.0,,100.0 -2318640,2022-05-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,46.0,30.0,10.0,36.0,0.0,,21.74 -2318641,2022-05-17,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2318642,2022-05-17,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2318643,2022-05-17,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318644,2022-05-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,51.0,40.0,0.0,11.0,,,,,,100.0, -2318645,2022-05-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2318646,2022-05-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,66.0,43.0,0.0,23.0,,,,,,100.0, -2318647,2022-05-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,22.0,19.0,0.0,3.0,,,,,,100.0, -2318648,2022-05-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,14371,Seaton House - O'Neill Harm Reduction Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318649,2022-05-17,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318650,2022-05-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2318651,2022-05-17,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,65.0,66.0,62.0,3.0,1.0,,95.38 -2318652,2022-05-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2318653,2022-05-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2318654,2022-05-17,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2318655,2022-05-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2318656,2022-05-17,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318657,2022-05-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318658,2022-05-17,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2318659,2022-05-17,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318660,2022-05-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318661,2022-05-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,223.0,245.0,220.0,3.0,22.0,,98.65 -2318662,2022-05-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2318663,2022-05-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2318664,2022-05-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2318665,2022-05-17,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2318666,2022-05-17,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2318667,2022-05-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2318668,2022-05-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,41.0,41.0,39.0,2.0,0.0,,95.12 -2318669,2022-05-17,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2318670,2022-05-17,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2318671,2022-05-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318672,2022-05-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318673,2022-05-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318674,2022-05-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318675,2022-05-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318676,2022-05-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2318677,2022-05-17,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318678,2022-05-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318679,2022-05-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318680,2022-05-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2318681,2022-05-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318682,2022-05-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318683,2022-05-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2318684,2022-05-17,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2318685,2022-05-17,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2318686,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,46.0,70.0,44.0,2.0,24.0,,,,,,95.65, -2318687,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,19.0,18.0,0.0,1.0,,,,,,100.0, -2318688,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2318689,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2318690,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2318691,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2318692,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2318693,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,64,Bed Based Capacity,64.0,70.0,64.0,0.0,6.0,,,,,,100.0, -2318694,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318695,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2318696,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2318697,2022-05-17,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318698,2022-05-17,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2318699,2022-05-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2318700,2022-05-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318701,2022-05-17,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318702,2022-05-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318703,2022-05-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2318704,2022-05-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2318705,2022-05-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2318706,2022-05-17,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318707,2022-05-17,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2318708,2022-05-17,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318709,2022-05-17,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318710,2022-05-17,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318711,2022-05-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318712,2022-05-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318713,2022-05-17,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2318714,2022-05-17,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2318715,2022-05-17,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318716,2022-05-17,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2318717,2022-05-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318718,2022-05-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318719,2022-05-17,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,49.0,47.0,1.0,1.0,,,,,,97.92, -2318720,2022-05-17,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2318721,2022-05-17,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318722,2022-05-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318723,2022-05-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2318724,2022-05-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318725,2022-05-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2318726,2022-05-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318727,2022-05-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2318728,2022-05-17,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318729,2022-05-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318730,2022-05-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318731,2022-05-17,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2318732,2022-05-17,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2318733,2022-05-17,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318734,2022-05-17,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2318735,2022-05-17,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318736,2022-05-17,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2318737,2022-05-17,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2318738,2022-05-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318739,2022-05-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318740,2022-05-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318741,2022-05-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2318742,2022-05-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318743,2022-05-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2318744,2022-05-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318745,2022-05-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318746,2022-05-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2318747,2022-05-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2318748,2022-05-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2318749,2022-05-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,82.0,100.0,81.0,1.0,18.0,,98.78 -2318750,2022-05-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,401,Room Based Capacity,,,,,,124.0,118.0,124.0,0.0,0.0,,100.0 -2318751,2022-05-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2318752,2022-05-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2318753,2022-05-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2318754,2022-05-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2318755,2022-05-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318756,2022-05-18,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2318757,2022-05-18,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2318758,2022-05-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,83.0,76.0,0.0,7.0,,100.0 -2318759,2022-05-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2318760,2022-05-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2318761,2022-05-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2318762,2022-05-18,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,9.0,12.0,8.0,1.0,3.0,,,,,,88.89, -2318763,2022-05-18,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2318764,2022-05-18,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,99.0,100.0,98.0,1.0,1.0,,98.99 -2318765,2022-05-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2318766,2022-05-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,94,Room Based Capacity,,,,,,38.0,40.0,37.0,1.0,2.0,,97.37 -2318767,2022-05-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2318768,2022-05-18,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2318769,2022-05-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318770,2022-05-18,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2318771,2022-05-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318772,2022-05-18,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2318773,2022-05-18,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,36.0,37.0,34.0,2.0,1.0,,94.44 -2318774,2022-05-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,95,Room Based Capacity,,,,,,83.0,118.0,83.0,0.0,35.0,,100.0 -2318775,2022-05-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,46.0,30.0,11.0,35.0,0.0,,23.91 -2318776,2022-05-18,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2318777,2022-05-18,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2318778,2022-05-18,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318779,2022-05-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,51.0,40.0,0.0,11.0,,,,,,100.0, -2318780,2022-05-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,80.0,81.0,80.0,0.0,1.0,,,,,,100.0, -2318781,2022-05-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,66.0,30.0,0.0,36.0,,,,,,100.0, -2318782,2022-05-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,22.0,19.0,0.0,3.0,,,,,,100.0, -2318783,2022-05-18,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318784,2022-05-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2318785,2022-05-18,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,62.0,2.0,2.0,,96.88 -2318786,2022-05-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2318787,2022-05-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2318788,2022-05-18,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2318789,2022-05-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2318790,2022-05-18,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2318791,2022-05-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318792,2022-05-18,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2318793,2022-05-18,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318794,2022-05-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318795,2022-05-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,228.0,245.0,224.0,4.0,17.0,,98.25 -2318796,2022-05-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2318797,2022-05-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2318798,2022-05-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2318799,2022-05-18,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2318800,2022-05-18,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2318801,2022-05-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2318802,2022-05-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2318803,2022-05-18,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2318804,2022-05-18,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2318805,2022-05-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318806,2022-05-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318807,2022-05-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318808,2022-05-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318809,2022-05-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318810,2022-05-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2318811,2022-05-18,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318812,2022-05-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318813,2022-05-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318814,2022-05-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2318815,2022-05-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318816,2022-05-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318817,2022-05-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2318818,2022-05-18,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,50.0,39.0,1.0,10.0,,,,,,97.5, -2318819,2022-05-18,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2318820,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,46.0,70.0,42.0,4.0,24.0,,,,,,91.3, -2318821,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318822,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,30.0,31.0,30.0,0.0,1.0,,,,,,100.0, -2318823,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2318824,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2318825,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2318826,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2318827,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,65,Bed Based Capacity,65.0,70.0,65.0,0.0,5.0,,,,,,100.0, -2318828,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318829,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2318830,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2318831,2022-05-18,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318832,2022-05-18,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2318833,2022-05-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2318834,2022-05-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318835,2022-05-18,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318836,2022-05-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318837,2022-05-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2318838,2022-05-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2318839,2022-05-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2318840,2022-05-18,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318841,2022-05-18,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2318842,2022-05-18,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318843,2022-05-18,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318844,2022-05-18,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318845,2022-05-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2318846,2022-05-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318847,2022-05-18,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2318848,2022-05-18,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2318849,2022-05-18,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318850,2022-05-18,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2318851,2022-05-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318852,2022-05-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318853,2022-05-18,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2318854,2022-05-18,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2318855,2022-05-18,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318856,2022-05-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318857,2022-05-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2318858,2022-05-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318859,2022-05-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2318860,2022-05-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318861,2022-05-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2318862,2022-05-18,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318863,2022-05-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318864,2022-05-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318865,2022-05-18,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2318866,2022-05-18,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2318867,2022-05-18,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318868,2022-05-18,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2318869,2022-05-18,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318870,2022-05-18,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318871,2022-05-18,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2318872,2022-05-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318873,2022-05-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318874,2022-05-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2318875,2022-05-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2318876,2022-05-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318877,2022-05-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2318878,2022-05-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2318879,2022-05-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318880,2022-05-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2318881,2022-05-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2318882,2022-05-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2318883,2022-05-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2318884,2022-05-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,401,Room Based Capacity,,,,,,123.0,118.0,123.0,0.0,0.0,,100.0 -2318885,2022-05-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2318886,2022-05-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,145.0,155.0,145.0,0.0,10.0,,100.0 -2318887,2022-05-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2318888,2022-05-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2318889,2022-05-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318890,2022-05-19,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2318891,2022-05-19,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2318892,2022-05-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,83.0,78.0,0.0,5.0,,100.0 -2318893,2022-05-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2318894,2022-05-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2318895,2022-05-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2318896,2022-05-19,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,10.0,12.0,8.0,2.0,2.0,,,,,,80.0, -2318897,2022-05-19,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2318898,2022-05-19,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2318899,2022-05-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2318900,2022-05-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,98,Room Based Capacity,,,,,,39.0,40.0,38.0,1.0,1.0,,97.44 -2318901,2022-05-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2318902,2022-05-19,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2318903,2022-05-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318904,2022-05-19,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2318905,2022-05-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2318906,2022-05-19,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,29,Bed Based Capacity,29.0,40.0,29.0,0.0,11.0,,,,,,100.0, -2318907,2022-05-19,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,37.0,37.0,34.0,3.0,0.0,,91.89 -2318908,2022-05-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,94,Room Based Capacity,,,,,,83.0,118.0,82.0,1.0,35.0,,98.8 -2318909,2022-05-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,46.0,30.0,10.0,36.0,0.0,,21.74 -2318910,2022-05-19,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2318911,2022-05-19,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2318912,2022-05-19,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318913,2022-05-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,51.0,41.0,0.0,10.0,,,,,,100.0, -2318914,2022-05-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2318915,2022-05-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11811,Seaton House - Hostel Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,66.0,18.0,0.0,48.0,,,,,,100.0, -2318916,2022-05-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,22.0,19.0,0.0,3.0,,,,,,100.0, -2318917,2022-05-19,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318918,2022-05-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2318919,2022-05-19,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,62.0,2.0,2.0,,96.88 -2318920,2022-05-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2318921,2022-05-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2318922,2022-05-19,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2318923,2022-05-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2318924,2022-05-19,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2318925,2022-05-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2318926,2022-05-19,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2318927,2022-05-19,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318928,2022-05-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2318929,2022-05-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,230.0,245.0,224.0,6.0,15.0,,97.39 -2318930,2022-05-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2318931,2022-05-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2318932,2022-05-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2318933,2022-05-19,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2318934,2022-05-19,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2318935,2022-05-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2318936,2022-05-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2318937,2022-05-19,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2318938,2022-05-19,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2318939,2022-05-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318940,2022-05-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2318941,2022-05-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318942,2022-05-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2318943,2022-05-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318944,2022-05-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2318945,2022-05-19,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2318946,2022-05-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318947,2022-05-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2318948,2022-05-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2318949,2022-05-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2318950,2022-05-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2318951,2022-05-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2318952,2022-05-19,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2318953,2022-05-19,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2318954,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,70.0,45.0,1.0,24.0,,,,,,97.83, -2318955,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318956,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2318957,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2318958,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2318959,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,214.0,235.0,214.0,0.0,21.0,,100.0 -2318960,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,300,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2318961,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,66,Bed Based Capacity,66.0,70.0,66.0,0.0,4.0,,,,,,100.0, -2318962,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2318963,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2318964,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2318965,2022-05-19,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2318966,2022-05-19,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2318967,2022-05-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2318968,2022-05-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2318969,2022-05-19,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2318970,2022-05-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2318971,2022-05-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2318972,2022-05-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2318973,2022-05-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2318974,2022-05-19,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318975,2022-05-19,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2318976,2022-05-19,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2318977,2022-05-19,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2318978,2022-05-19,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2318979,2022-05-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2318980,2022-05-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2318981,2022-05-19,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2318982,2022-05-19,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2318983,2022-05-19,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2318984,2022-05-19,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,226,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2318985,2022-05-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2318986,2022-05-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2318987,2022-05-19,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2318988,2022-05-19,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2318989,2022-05-19,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2318990,2022-05-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2318991,2022-05-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2318992,2022-05-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2318993,2022-05-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2318994,2022-05-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2318995,2022-05-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2318996,2022-05-19,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2318997,2022-05-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2318998,2022-05-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2318999,2022-05-19,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319000,2022-05-19,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319001,2022-05-19,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319002,2022-05-19,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2319003,2022-05-19,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319004,2022-05-19,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319005,2022-05-19,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319006,2022-05-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319007,2022-05-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319008,2022-05-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319009,2022-05-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319010,2022-05-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319011,2022-05-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319012,2022-05-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319013,2022-05-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319014,2022-05-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,78.0,2.0,0.0,,97.5 -2319015,2022-05-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319016,2022-05-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319017,2022-05-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2319018,2022-05-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,402,Room Based Capacity,,,,,,124.0,118.0,124.0,0.0,0.0,,100.0 -2319019,2022-05-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2319020,2022-05-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2319021,2022-05-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319022,2022-05-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319023,2022-05-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319024,2022-05-20,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319025,2022-05-20,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2319026,2022-05-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,82.0,83.0,82.0,0.0,1.0,,100.0 -2319027,2022-05-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2319028,2022-05-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2319029,2022-05-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2319030,2022-05-20,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2319031,2022-05-20,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2319032,2022-05-20,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2319033,2022-05-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2319034,2022-05-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,105,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2319035,2022-05-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319036,2022-05-20,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319037,2022-05-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319038,2022-05-20,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2319039,2022-05-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319040,2022-05-20,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,63.0,42.0,1.0,20.0,,,,,,97.67, -2319041,2022-05-20,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,89,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2319042,2022-05-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,93,Room Based Capacity,,,,,,83.0,118.0,83.0,0.0,35.0,,100.0 -2319043,2022-05-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,14,Room Based Capacity,,,,,,46.0,30.0,14.0,32.0,0.0,,30.43 -2319044,2022-05-20,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319045,2022-05-20,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2319046,2022-05-20,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319047,2022-05-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2319048,2022-05-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2319049,2022-05-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2319050,2022-05-20,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319051,2022-05-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2319052,2022-05-20,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2319053,2022-05-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319054,2022-05-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2319055,2022-05-20,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319056,2022-05-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319057,2022-05-20,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319058,2022-05-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2319059,2022-05-20,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319060,2022-05-20,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319061,2022-05-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319062,2022-05-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,231.0,245.0,225.0,6.0,14.0,,97.4 -2319063,2022-05-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,41.0,40.0,1.0,0.0,,,,,,97.56, -2319064,2022-05-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2319065,2022-05-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2319066,2022-05-20,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2319067,2022-05-20,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2319068,2022-05-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319069,2022-05-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2319070,2022-05-20,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2319071,2022-05-20,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2319072,2022-05-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319073,2022-05-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2319074,2022-05-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2319075,2022-05-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319076,2022-05-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319077,2022-05-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2319078,2022-05-20,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2319079,2022-05-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319080,2022-05-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2319081,2022-05-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2319082,2022-05-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319083,2022-05-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319084,2022-05-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2319085,2022-05-20,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,50.0,40.0,1.0,9.0,,,,,,97.56, -2319086,2022-05-20,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2319087,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,56.0,70.0,51.0,5.0,14.0,,,,,,91.07, -2319088,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319089,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2319090,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2319091,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2319092,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,216.0,235.0,216.0,0.0,19.0,,100.0 -2319093,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2319094,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2319095,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319096,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,70.0,10.0,0.0,60.0,,,,,,100.0, -2319097,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2319098,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2319099,2022-05-20,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2319100,2022-05-20,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2319101,2022-05-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2319102,2022-05-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319103,2022-05-20,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2319104,2022-05-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319105,2022-05-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2319106,2022-05-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2319107,2022-05-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2319108,2022-05-20,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319109,2022-05-20,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2319110,2022-05-20,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2319111,2022-05-20,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2319112,2022-05-20,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2319113,2022-05-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319114,2022-05-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2319115,2022-05-20,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2319116,2022-05-20,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2319117,2022-05-20,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2319118,2022-05-20,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2319119,2022-05-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2319120,2022-05-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2319121,2022-05-20,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,49.0,48.0,1.0,0.0,,,,,,97.96, -2319122,2022-05-20,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2319123,2022-05-20,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319124,2022-05-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2319125,2022-05-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2319126,2022-05-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319127,2022-05-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319128,2022-05-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2319129,2022-05-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2319130,2022-05-20,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319131,2022-05-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2319132,2022-05-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2319133,2022-05-20,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319134,2022-05-20,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319135,2022-05-20,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319136,2022-05-20,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2319137,2022-05-20,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319138,2022-05-20,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319139,2022-05-20,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319140,2022-05-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319141,2022-05-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319142,2022-05-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2319143,2022-05-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319144,2022-05-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319145,2022-05-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319146,2022-05-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319147,2022-05-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319148,2022-05-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2319149,2022-05-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319150,2022-05-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319151,2022-05-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2319152,2022-05-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,405,Room Based Capacity,,,,,,126.0,118.0,125.0,1.0,0.0,,99.21 -2319153,2022-05-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2319154,2022-05-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2319155,2022-05-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319156,2022-05-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319157,2022-05-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319158,2022-05-21,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319159,2022-05-21,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,205,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2319160,2022-05-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,82.0,83.0,82.0,0.0,1.0,,100.0 -2319161,2022-05-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2319162,2022-05-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2319163,2022-05-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319164,2022-05-21,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,12.0,10.0,0.0,2.0,,,,,,100.0, -2319165,2022-05-21,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2319166,2022-05-21,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2319167,2022-05-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,145,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2319168,2022-05-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,105,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2319169,2022-05-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319170,2022-05-21,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319171,2022-05-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319172,2022-05-21,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2319173,2022-05-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319174,2022-05-21,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,63.0,52.0,1.0,10.0,,,,,,98.11, -2319175,2022-05-21,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,90,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2319176,2022-05-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,93,Room Based Capacity,,,,,,83.0,118.0,83.0,0.0,35.0,,100.0 -2319177,2022-05-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,13.0,33.0,0.0,,28.26 -2319178,2022-05-21,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319179,2022-05-21,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2319180,2022-05-21,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319181,2022-05-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2319182,2022-05-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2319183,2022-05-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2319184,2022-05-21,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319185,2022-05-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2319186,2022-05-21,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2319187,2022-05-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319188,2022-05-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2319189,2022-05-21,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319190,2022-05-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319191,2022-05-21,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319192,2022-05-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319193,2022-05-21,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319194,2022-05-21,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2319195,2022-05-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,50.0,50.0,49.0,1.0,0.0,,,,,,98.0, -2319196,2022-05-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,231.0,245.0,225.0,6.0,14.0,,97.4 -2319197,2022-05-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2319198,2022-05-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2319199,2022-05-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2319200,2022-05-21,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2319201,2022-05-21,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2319202,2022-05-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319203,2022-05-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2319204,2022-05-21,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2319205,2022-05-21,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2319206,2022-05-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319207,2022-05-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2319208,2022-05-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2319209,2022-05-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319210,2022-05-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319211,2022-05-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,267.0,271.0,267.0,0.0,4.0,,100.0 -2319212,2022-05-21,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2319213,2022-05-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319214,2022-05-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2319215,2022-05-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319216,2022-05-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319217,2022-05-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319218,2022-05-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2319219,2022-05-21,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2319220,2022-05-21,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2319221,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,58.0,70.0,55.0,3.0,12.0,,,,,,94.83, -2319222,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319223,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319224,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2319225,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2319226,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2319227,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2319228,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,44,Bed Based Capacity,44.0,70.0,44.0,0.0,26.0,,,,,,100.0, -2319229,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319230,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,70.0,20.0,0.0,50.0,,,,,,100.0, -2319231,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2319232,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2319233,2022-05-21,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2319234,2022-05-21,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2319235,2022-05-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,45.0,40.0,44.0,1.0,0.0,,97.78 -2319236,2022-05-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319237,2022-05-21,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2319238,2022-05-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319239,2022-05-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2319240,2022-05-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2319241,2022-05-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2319242,2022-05-21,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319243,2022-05-21,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2319244,2022-05-21,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2319245,2022-05-21,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2319246,2022-05-21,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2319247,2022-05-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319248,2022-05-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2319249,2022-05-21,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2319250,2022-05-21,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2319251,2022-05-21,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2319252,2022-05-21,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2319253,2022-05-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2319254,2022-05-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2319255,2022-05-21,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2319256,2022-05-21,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2319257,2022-05-21,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319258,2022-05-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2319259,2022-05-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2319260,2022-05-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319261,2022-05-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319262,2022-05-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2319263,2022-05-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2319264,2022-05-21,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319265,2022-05-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2319266,2022-05-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2319267,2022-05-21,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319268,2022-05-21,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319269,2022-05-21,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2319270,2022-05-21,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2319271,2022-05-21,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319272,2022-05-21,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319273,2022-05-21,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319274,2022-05-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319275,2022-05-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319276,2022-05-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319277,2022-05-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319278,2022-05-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319279,2022-05-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2319280,2022-05-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319281,2022-05-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319282,2022-05-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2319283,2022-05-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319284,2022-05-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319285,2022-05-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2319286,2022-05-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,409,Room Based Capacity,,,,,,126.0,118.0,126.0,0.0,0.0,,100.0 -2319287,2022-05-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2319288,2022-05-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2319289,2022-05-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319290,2022-05-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319291,2022-05-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319292,2022-05-22,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319293,2022-05-22,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,205,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2319294,2022-05-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,83,Room Based Capacity,,,,,,83.0,83.0,83.0,0.0,0.0,,100.0 -2319295,2022-05-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,11.0,12.0,10.0,1.0,1.0,,90.91 -2319296,2022-05-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2319297,2022-05-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319298,2022-05-22,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2319299,2022-05-22,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2319300,2022-05-22,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2319301,2022-05-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2319302,2022-05-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,105,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2319303,2022-05-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319304,2022-05-22,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,51,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319305,2022-05-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319306,2022-05-22,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2319307,2022-05-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319308,2022-05-22,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,57.0,63.0,57.0,0.0,6.0,,,,,,100.0, -2319309,2022-05-22,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2319310,2022-05-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,92,Room Based Capacity,,,,,,83.0,118.0,83.0,0.0,35.0,,100.0 -2319311,2022-05-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,13.0,33.0,0.0,,28.26 -2319312,2022-05-22,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319313,2022-05-22,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2319314,2022-05-22,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319315,2022-05-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2319316,2022-05-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2319317,2022-05-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2319318,2022-05-22,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319319,2022-05-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2319320,2022-05-22,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2319321,2022-05-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319322,2022-05-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2319323,2022-05-22,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319324,2022-05-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319325,2022-05-22,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319326,2022-05-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319327,2022-05-22,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319328,2022-05-22,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319329,2022-05-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319330,2022-05-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,231.0,245.0,223.0,8.0,14.0,,96.54 -2319331,2022-05-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2319332,2022-05-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2319333,2022-05-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2319334,2022-05-22,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2319335,2022-05-22,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2319336,2022-05-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319337,2022-05-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2319338,2022-05-22,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2319339,2022-05-22,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2319340,2022-05-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319341,2022-05-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2319342,2022-05-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2319343,2022-05-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319344,2022-05-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319345,2022-05-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2319346,2022-05-22,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2319347,2022-05-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319348,2022-05-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2319349,2022-05-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319350,2022-05-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319351,2022-05-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319352,2022-05-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2319353,2022-05-22,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2319354,2022-05-22,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2319355,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,58.0,70.0,54.0,4.0,12.0,,,,,,93.1, -2319356,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319357,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319358,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2319359,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2319360,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2319361,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,267.0,287.0,267.0,0.0,20.0,,100.0 -2319362,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,44,Bed Based Capacity,44.0,70.0,44.0,0.0,26.0,,,,,,100.0, -2319363,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319364,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,70.0,20.0,0.0,50.0,,,,,,100.0, -2319365,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2319366,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2319367,2022-05-22,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2319368,2022-05-22,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2319369,2022-05-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,45.0,40.0,43.0,2.0,0.0,,95.56 -2319370,2022-05-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319371,2022-05-22,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2319372,2022-05-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319373,2022-05-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2319374,2022-05-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2319375,2022-05-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2319376,2022-05-22,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319377,2022-05-22,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2319378,2022-05-22,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2319379,2022-05-22,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2319380,2022-05-22,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2319381,2022-05-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319382,2022-05-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2319383,2022-05-22,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2319384,2022-05-22,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2319385,2022-05-22,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2319386,2022-05-22,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2319387,2022-05-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2319388,2022-05-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2319389,2022-05-22,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2319390,2022-05-22,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2319391,2022-05-22,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319392,2022-05-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2319393,2022-05-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2319394,2022-05-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319395,2022-05-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2319396,2022-05-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2319397,2022-05-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2319398,2022-05-22,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319399,2022-05-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2319400,2022-05-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2319401,2022-05-22,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319402,2022-05-22,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319403,2022-05-22,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319404,2022-05-22,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2319405,2022-05-22,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319406,2022-05-22,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319407,2022-05-22,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319408,2022-05-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319409,2022-05-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2319410,2022-05-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319411,2022-05-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319412,2022-05-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319413,2022-05-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2319414,2022-05-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319415,2022-05-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319416,2022-05-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,313,Room Based Capacity,,,,,,79.0,80.0,78.0,1.0,1.0,,98.73 -2319417,2022-05-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319418,2022-05-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319419,2022-05-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2319420,2022-05-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,126.0,118.0,126.0,0.0,0.0,,100.0 -2319421,2022-05-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2319422,2022-05-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2319423,2022-05-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319424,2022-05-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319425,2022-05-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319426,2022-05-23,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319427,2022-05-23,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,205,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2319428,2022-05-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,83.0,83.0,82.0,1.0,0.0,,98.8 -2319429,2022-05-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,20,Room Based Capacity,,,,,,12.0,12.0,10.0,2.0,0.0,,83.33 -2319430,2022-05-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,27,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2319431,2022-05-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319432,2022-05-23,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,12.0,9.0,1.0,2.0,,,,,,90.0, -2319433,2022-05-23,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2319434,2022-05-23,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2319435,2022-05-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2319436,2022-05-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,109,Room Based Capacity,,,,,,42.0,40.0,41.0,1.0,0.0,,97.62 -2319437,2022-05-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319438,2022-05-23,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319439,2022-05-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2319440,2022-05-23,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2319441,2022-05-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319442,2022-05-23,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,63.0,58.0,0.0,5.0,,,,,,100.0, -2319443,2022-05-23,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2319444,2022-05-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,92,Room Based Capacity,,,,,,83.0,118.0,83.0,0.0,35.0,,100.0 -2319445,2022-05-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2319446,2022-05-23,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319447,2022-05-23,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2319448,2022-05-23,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319449,2022-05-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2319450,2022-05-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2319451,2022-05-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2319452,2022-05-23,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319453,2022-05-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2319454,2022-05-23,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2319455,2022-05-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319456,2022-05-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2319457,2022-05-23,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319458,2022-05-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319459,2022-05-23,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319460,2022-05-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319461,2022-05-23,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319462,2022-05-23,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319463,2022-05-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319464,2022-05-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,240,Room Based Capacity,,,,,,231.0,245.0,223.0,8.0,14.0,,96.54 -2319465,2022-05-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2319466,2022-05-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2319467,2022-05-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2319468,2022-05-23,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2319469,2022-05-23,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2319470,2022-05-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319471,2022-05-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2319472,2022-05-23,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2319473,2022-05-23,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2319474,2022-05-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319475,2022-05-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2319476,2022-05-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319477,2022-05-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319478,2022-05-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319479,2022-05-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2319480,2022-05-23,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2319481,2022-05-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319482,2022-05-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2319483,2022-05-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319484,2022-05-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319485,2022-05-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319486,2022-05-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2319487,2022-05-23,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2319488,2022-05-23,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2319489,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,58.0,70.0,54.0,4.0,12.0,,,,,,93.1, -2319490,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319491,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319492,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2319493,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2319494,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,215.0,235.0,215.0,0.0,20.0,,100.0 -2319495,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,301,Room Based Capacity,,,,,,267.0,287.0,267.0,0.0,20.0,,100.0 -2319496,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16194,Homes First Society - 5800 Yonge Street - Warming Centre,Mixed Adult,Emergency,Warming Centre,Winter Programs,45,Bed Based Capacity,45.0,70.0,45.0,0.0,25.0,,,,,,100.0, -2319497,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319498,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,70.0,20.0,0.0,50.0,,,,,,100.0, -2319499,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2319500,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2319501,2022-05-23,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2319502,2022-05-23,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2319503,2022-05-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2319504,2022-05-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319505,2022-05-23,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2319506,2022-05-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319507,2022-05-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2319508,2022-05-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2319509,2022-05-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2319510,2022-05-23,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319511,2022-05-23,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2319512,2022-05-23,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2319513,2022-05-23,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2319514,2022-05-23,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2319515,2022-05-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319516,2022-05-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2319517,2022-05-23,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2319518,2022-05-23,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,28.0,25.0,0.0,3.0,,,,,,100.0, -2319519,2022-05-23,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2319520,2022-05-23,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2319521,2022-05-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2319522,2022-05-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2319523,2022-05-23,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2319524,2022-05-23,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2319525,2022-05-23,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319526,2022-05-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2319527,2022-05-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,224.0,225.0,223.0,1.0,1.0,,,,,,99.55, -2319528,2022-05-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319529,2022-05-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2319530,2022-05-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2319531,2022-05-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2319532,2022-05-23,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319533,2022-05-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2319534,2022-05-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2319535,2022-05-23,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319536,2022-05-23,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319537,2022-05-23,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319538,2022-05-23,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,100,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2319539,2022-05-23,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319540,2022-05-23,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319541,2022-05-23,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319542,2022-05-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319543,2022-05-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2319544,2022-05-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319545,2022-05-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319546,2022-05-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319547,2022-05-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2319548,2022-05-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319549,2022-05-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319550,2022-05-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2319551,2022-05-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319552,2022-05-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319553,2022-05-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2319554,2022-05-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,127.0,118.0,127.0,0.0,0.0,,100.0 -2319555,2022-05-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,13.0,13.0,12.0,1.0,0.0,,92.31 -2319556,2022-05-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2319557,2022-05-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319558,2022-05-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319559,2022-05-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319560,2022-05-24,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319561,2022-05-24,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2319562,2022-05-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,83.0,83.0,81.0,2.0,0.0,,97.59 -2319563,2022-05-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2319564,2022-05-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2319565,2022-05-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319566,2022-05-24,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,12.0,9.0,2.0,1.0,,,,,,81.82, -2319567,2022-05-24,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2319568,2022-05-24,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2319569,2022-05-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2319570,2022-05-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,111,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2319571,2022-05-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319572,2022-05-24,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319573,2022-05-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2319574,2022-05-24,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2319575,2022-05-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319576,2022-05-24,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2319577,2022-05-24,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2319578,2022-05-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,92,Room Based Capacity,,,,,,83.0,118.0,83.0,0.0,35.0,,100.0 -2319579,2022-05-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,11.0,35.0,0.0,,23.91 -2319580,2022-05-24,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319581,2022-05-24,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2319582,2022-05-24,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319583,2022-05-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2319584,2022-05-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2319585,2022-05-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2319586,2022-05-24,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319587,2022-05-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,27.0,27.0,22.0,5.0,0.0,,,,,,81.48, -2319588,2022-05-24,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,65.0,66.0,59.0,6.0,1.0,,90.77 -2319589,2022-05-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319590,2022-05-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2319591,2022-05-24,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319592,2022-05-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319593,2022-05-24,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319594,2022-05-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319595,2022-05-24,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319596,2022-05-24,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319597,2022-05-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319598,2022-05-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,239,Room Based Capacity,,,,,,231.0,245.0,222.0,9.0,14.0,,96.1 -2319599,2022-05-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2319600,2022-05-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2319601,2022-05-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2319602,2022-05-24,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2319603,2022-05-24,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2319604,2022-05-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319605,2022-05-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2319606,2022-05-24,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2319607,2022-05-24,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2319608,2022-05-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319609,2022-05-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2319610,2022-05-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319611,2022-05-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319612,2022-05-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319613,2022-05-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2319614,2022-05-24,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2319615,2022-05-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319616,2022-05-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2319617,2022-05-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2319618,2022-05-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319619,2022-05-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319620,2022-05-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2319621,2022-05-24,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2319622,2022-05-24,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2319623,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,54.0,70.0,52.0,2.0,16.0,,,,,,96.3, -2319624,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2319625,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319626,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2319627,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,85.0,86.0,85.0,0.0,1.0,,100.0 -2319628,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,216.0,235.0,215.0,1.0,19.0,,99.54 -2319629,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2319630,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2319631,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,65,Bed Based Capacity,65.0,70.0,65.0,0.0,5.0,,,,,,100.0, -2319632,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2319633,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2319634,2022-05-24,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2319635,2022-05-24,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2319636,2022-05-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2319637,2022-05-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319638,2022-05-24,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2319639,2022-05-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319640,2022-05-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2319641,2022-05-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2319642,2022-05-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2319643,2022-05-24,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319644,2022-05-24,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319645,2022-05-24,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2319646,2022-05-24,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2319647,2022-05-24,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2319648,2022-05-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319649,2022-05-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2319650,2022-05-24,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2319651,2022-05-24,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319652,2022-05-24,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2319653,2022-05-24,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2319654,2022-05-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2319655,2022-05-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2319656,2022-05-24,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2319657,2022-05-24,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2319658,2022-05-24,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319659,2022-05-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2319660,2022-05-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2319661,2022-05-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319662,2022-05-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2319663,2022-05-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2319664,2022-05-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2319665,2022-05-24,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319666,2022-05-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2319667,2022-05-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2319668,2022-05-24,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319669,2022-05-24,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319670,2022-05-24,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319671,2022-05-24,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2319672,2022-05-24,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319673,2022-05-24,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319674,2022-05-24,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319675,2022-05-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319676,2022-05-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319677,2022-05-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319678,2022-05-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319679,2022-05-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319680,2022-05-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319681,2022-05-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319682,2022-05-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319683,2022-05-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2319684,2022-05-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319685,2022-05-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319686,2022-05-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2319687,2022-05-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,415,Room Based Capacity,,,,,,127.0,118.0,127.0,0.0,0.0,,100.0 -2319688,2022-05-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2319689,2022-05-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,155.0,146.0,0.0,9.0,,100.0 -2319690,2022-05-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319691,2022-05-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319692,2022-05-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319693,2022-05-25,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319694,2022-05-25,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2319695,2022-05-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,83.0,76.0,1.0,6.0,,98.7 -2319696,2022-05-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2319697,2022-05-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2319698,2022-05-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2319699,2022-05-25,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2319700,2022-05-25,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2319701,2022-05-25,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,99.0,100.0,98.0,1.0,1.0,,98.99 -2319702,2022-05-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2319703,2022-05-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,111,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2319704,2022-05-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319705,2022-05-25,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319706,2022-05-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319707,2022-05-25,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2319708,2022-05-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319709,2022-05-25,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,62.0,63.0,61.0,1.0,1.0,,,,,,98.39, -2319710,2022-05-25,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2319711,2022-05-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,92,Room Based Capacity,,,,,,83.0,118.0,83.0,0.0,35.0,,100.0 -2319712,2022-05-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,46.0,30.0,10.0,36.0,0.0,,21.74 -2319713,2022-05-25,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319714,2022-05-25,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2319715,2022-05-25,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319716,2022-05-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2319717,2022-05-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2319718,2022-05-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2319719,2022-05-25,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319720,2022-05-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2319721,2022-05-25,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,65,Room Based Capacity,,,,,,64.0,66.0,59.0,5.0,2.0,,92.19 -2319722,2022-05-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319723,2022-05-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2319724,2022-05-25,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319725,2022-05-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319726,2022-05-25,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319727,2022-05-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319728,2022-05-25,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319729,2022-05-25,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319730,2022-05-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319731,2022-05-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,231.0,245.0,220.0,11.0,14.0,,95.24 -2319732,2022-05-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2319733,2022-05-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2319734,2022-05-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2319735,2022-05-25,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2319736,2022-05-25,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2319737,2022-05-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319738,2022-05-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2319739,2022-05-25,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2319740,2022-05-25,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2319741,2022-05-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319742,2022-05-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2319743,2022-05-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319744,2022-05-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319745,2022-05-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319746,2022-05-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2319747,2022-05-25,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2319748,2022-05-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319749,2022-05-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2319750,2022-05-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2319751,2022-05-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319752,2022-05-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319753,2022-05-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2319754,2022-05-25,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2319755,2022-05-25,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2319756,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,54.0,70.0,52.0,2.0,16.0,,,,,,96.3, -2319757,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319758,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319759,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2319760,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2319761,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2319762,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,269.0,287.0,269.0,0.0,18.0,,100.0 -2319763,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319764,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,70.0,70.0,67.0,3.0,0.0,,,,,,95.71, -2319765,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2319766,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2319767,2022-05-25,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2319768,2022-05-25,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2319769,2022-05-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2319770,2022-05-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319771,2022-05-25,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2319772,2022-05-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319773,2022-05-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2319774,2022-05-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2319775,2022-05-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2319776,2022-05-25,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319777,2022-05-25,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319778,2022-05-25,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2319779,2022-05-25,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2319780,2022-05-25,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2319781,2022-05-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319782,2022-05-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2319783,2022-05-25,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2319784,2022-05-25,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319785,2022-05-25,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2319786,2022-05-25,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2319787,2022-05-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2319788,2022-05-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2319789,2022-05-25,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2319790,2022-05-25,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2319791,2022-05-25,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319792,2022-05-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,131.0,131.0,130.0,1.0,0.0,,99.24 -2319793,2022-05-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2319794,2022-05-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319795,2022-05-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319796,2022-05-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2319797,2022-05-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2319798,2022-05-25,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319799,2022-05-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2319800,2022-05-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2319801,2022-05-25,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319802,2022-05-25,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319803,2022-05-25,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319804,2022-05-25,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2319805,2022-05-25,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319806,2022-05-25,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319807,2022-05-25,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319808,2022-05-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319809,2022-05-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319810,2022-05-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319811,2022-05-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319812,2022-05-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319813,2022-05-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2319814,2022-05-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319815,2022-05-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319816,2022-05-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2319817,2022-05-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319818,2022-05-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319819,2022-05-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2319820,2022-05-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,412,Room Based Capacity,,,,,,126.0,118.0,126.0,0.0,0.0,,100.0 -2319821,2022-05-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2319822,2022-05-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2319823,2022-05-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319824,2022-05-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319825,2022-05-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319826,2022-05-26,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319827,2022-05-26,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2319828,2022-05-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2319829,2022-05-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2319830,2022-05-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2319831,2022-05-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2319832,2022-05-26,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2319833,2022-05-26,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,69.0,86.0,69.0,0.0,17.0,,100.0 -2319834,2022-05-26,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2319835,2022-05-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2319836,2022-05-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,111,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2319837,2022-05-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319838,2022-05-26,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319839,2022-05-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319840,2022-05-26,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2319841,2022-05-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319842,2022-05-26,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,61.0,63.0,61.0,0.0,2.0,,,,,,100.0, -2319843,2022-05-26,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2319844,2022-05-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,83.0,118.0,82.0,1.0,35.0,,98.8 -2319845,2022-05-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2319846,2022-05-26,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319847,2022-05-26,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2319848,2022-05-26,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319849,2022-05-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2319850,2022-05-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2319851,2022-05-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2319852,2022-05-26,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319853,2022-05-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2319854,2022-05-26,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,60.0,4.0,2.0,,93.75 -2319855,2022-05-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319856,2022-05-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2319857,2022-05-26,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319858,2022-05-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319859,2022-05-26,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319860,2022-05-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2319861,2022-05-26,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319862,2022-05-26,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319863,2022-05-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2319864,2022-05-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,237,Room Based Capacity,,,,,,231.0,245.0,220.0,11.0,14.0,,95.24 -2319865,2022-05-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2319866,2022-05-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2319867,2022-05-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2319868,2022-05-26,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2319869,2022-05-26,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2319870,2022-05-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2319871,2022-05-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2319872,2022-05-26,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2319873,2022-05-26,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2319874,2022-05-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319875,2022-05-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2319876,2022-05-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319877,2022-05-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319878,2022-05-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319879,2022-05-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2319880,2022-05-26,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2319881,2022-05-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319882,2022-05-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2319883,2022-05-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2319884,2022-05-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319885,2022-05-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2319886,2022-05-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2319887,2022-05-26,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2319888,2022-05-26,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2319889,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,70.0,51.0,2.0,17.0,,,,,,96.23, -2319890,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319891,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319892,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2319893,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2319894,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,217.0,235.0,217.0,0.0,18.0,,100.0 -2319895,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2319896,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2319897,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2319898,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2319899,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2319900,2022-05-26,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2319901,2022-05-26,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,18.0,18.0,17.0,1.0,0.0,,,,,,94.44, -2319902,2022-05-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2319903,2022-05-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319904,2022-05-26,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2319905,2022-05-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319906,2022-05-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,17.0,17.0,15.0,2.0,0.0,,,,,,88.24, -2319907,2022-05-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2319908,2022-05-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2319909,2022-05-26,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319910,2022-05-26,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319911,2022-05-26,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2319912,2022-05-26,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2319913,2022-05-26,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2319914,2022-05-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319915,2022-05-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2319916,2022-05-26,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2319917,2022-05-26,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319918,2022-05-26,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2319919,2022-05-26,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2319920,2022-05-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2319921,2022-05-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2319922,2022-05-26,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2319923,2022-05-26,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2319924,2022-05-26,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2319925,2022-05-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2319926,2022-05-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,224.0,225.0,223.0,1.0,1.0,,,,,,99.55, -2319927,2022-05-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319928,2022-05-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2319929,2022-05-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2319930,2022-05-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2319931,2022-05-26,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319932,2022-05-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2319933,2022-05-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2319934,2022-05-26,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2319935,2022-05-26,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2319936,2022-05-26,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319937,2022-05-26,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2319938,2022-05-26,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319939,2022-05-26,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319940,2022-05-26,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2319941,2022-05-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2319942,2022-05-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319943,2022-05-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2319944,2022-05-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2319945,2022-05-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2319946,2022-05-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2319947,2022-05-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2319948,2022-05-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2319949,2022-05-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2319950,2022-05-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2319951,2022-05-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2319952,2022-05-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,244,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2319953,2022-05-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,406,Room Based Capacity,,,,,,124.0,118.0,124.0,0.0,0.0,,100.0 -2319954,2022-05-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2319955,2022-05-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2319956,2022-05-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2319957,2022-05-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2319958,2022-05-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2319959,2022-05-27,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2319960,2022-05-27,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2319961,2022-05-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,82.0,83.0,81.0,1.0,1.0,,98.78 -2319962,2022-05-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2319963,2022-05-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2319964,2022-05-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2319965,2022-05-27,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2319966,2022-05-27,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,125,Room Based Capacity,,,,,,68.0,86.0,68.0,0.0,18.0,,100.0 -2319967,2022-05-27,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2319968,2022-05-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,150,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2319969,2022-05-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,108,Room Based Capacity,,,,,,41.0,40.0,41.0,0.0,0.0,,100.0 -2319970,2022-05-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2319971,2022-05-27,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2319972,2022-05-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2319973,2022-05-27,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2319974,2022-05-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2319975,2022-05-27,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,61.0,63.0,61.0,0.0,2.0,,,,,,100.0, -2319976,2022-05-27,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2319977,2022-05-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,81.0,118.0,81.0,0.0,37.0,,100.0 -2319978,2022-05-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,46.0,30.0,12.0,34.0,0.0,,26.09 -2319979,2022-05-27,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2319980,2022-05-27,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2319981,2022-05-27,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2319982,2022-05-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2319983,2022-05-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2319984,2022-05-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2319985,2022-05-27,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319986,2022-05-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,27.0,27.0,23.0,4.0,0.0,,,,,,85.19, -2319987,2022-05-27,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,60.0,4.0,2.0,,93.75 -2319988,2022-05-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2319989,2022-05-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2319990,2022-05-27,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2319991,2022-05-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2319992,2022-05-27,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2319993,2022-05-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2319994,2022-05-27,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2319995,2022-05-27,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2319996,2022-05-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2319997,2022-05-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,231.0,245.0,218.0,13.0,14.0,,94.37 -2319998,2022-05-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2319999,2022-05-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320000,2022-05-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2320001,2022-05-27,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320002,2022-05-27,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2320003,2022-05-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320004,2022-05-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2320005,2022-05-27,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320006,2022-05-27,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2320007,2022-05-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320008,2022-05-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320009,2022-05-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320010,2022-05-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320011,2022-05-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320012,2022-05-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2320013,2022-05-27,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320014,2022-05-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320015,2022-05-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2320016,2022-05-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320017,2022-05-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320018,2022-05-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320019,2022-05-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2320020,2022-05-27,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320021,2022-05-27,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2320022,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,53.0,70.0,51.0,2.0,17.0,,,,,,96.23, -2320023,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320024,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320025,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2320026,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2320027,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2320028,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,304,Room Based Capacity,,,,,,272.0,287.0,271.0,1.0,15.0,,99.63 -2320029,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320030,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,70.0,67.0,0.0,3.0,,,,,,100.0, -2320031,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320032,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320033,2022-05-27,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320034,2022-05-27,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320035,2022-05-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2320036,2022-05-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320037,2022-05-27,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320038,2022-05-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320039,2022-05-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2320040,2022-05-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320041,2022-05-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2320042,2022-05-27,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320043,2022-05-27,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320044,2022-05-27,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320045,2022-05-27,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320046,2022-05-27,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2320047,2022-05-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320048,2022-05-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320049,2022-05-27,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2320050,2022-05-27,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,28.0,26.0,1.0,1.0,,,,,,96.3, -2320051,2022-05-27,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320052,2022-05-27,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320053,2022-05-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320054,2022-05-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2320055,2022-05-27,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320056,2022-05-27,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2320057,2022-05-27,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320058,2022-05-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2320059,2022-05-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2320060,2022-05-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320061,2022-05-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320062,2022-05-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2320063,2022-05-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320064,2022-05-27,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320065,2022-05-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320066,2022-05-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,6.0,6.0,5.0,1.0,0.0,,,,,,83.33, -2320067,2022-05-27,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320068,2022-05-27,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2320069,2022-05-27,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320070,2022-05-27,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2320071,2022-05-27,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320072,2022-05-27,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320073,2022-05-27,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320074,2022-05-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320075,2022-05-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320076,2022-05-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320077,2022-05-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2320078,2022-05-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320079,2022-05-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2320080,2022-05-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320081,2022-05-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320082,2022-05-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2320083,2022-05-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2320084,2022-05-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2320085,2022-05-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,78.0,100.0,77.0,1.0,22.0,,98.72 -2320086,2022-05-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,410,Room Based Capacity,,,,,,125.0,118.0,125.0,0.0,0.0,,100.0 -2320087,2022-05-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2320088,2022-05-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2320089,2022-05-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2320090,2022-05-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2320091,2022-05-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320092,2022-05-28,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2320093,2022-05-28,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2320094,2022-05-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,83.0,83.0,80.0,3.0,0.0,,96.39 -2320095,2022-05-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2320096,2022-05-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2320097,2022-05-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2320098,2022-05-28,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2320099,2022-05-28,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,123,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2320100,2022-05-28,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2320101,2022-05-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,151,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2320102,2022-05-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,110,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2320103,2022-05-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2320104,2022-05-28,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2320105,2022-05-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2320106,2022-05-28,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2320107,2022-05-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320108,2022-05-28,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2320109,2022-05-28,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2320110,2022-05-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,81.0,118.0,81.0,0.0,37.0,,100.0 -2320111,2022-05-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,11.0,35.0,0.0,,23.91 -2320112,2022-05-28,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2320113,2022-05-28,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2320114,2022-05-28,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320115,2022-05-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2320116,2022-05-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2320117,2022-05-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2320118,2022-05-28,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320119,2022-05-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2320120,2022-05-28,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,60.0,4.0,2.0,,93.75 -2320121,2022-05-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2320122,2022-05-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2320123,2022-05-28,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2320124,2022-05-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2320125,2022-05-28,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320126,2022-05-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2320127,2022-05-28,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320128,2022-05-28,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320129,2022-05-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2320130,2022-05-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,231.0,245.0,218.0,13.0,14.0,,94.37 -2320131,2022-05-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2320132,2022-05-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320133,2022-05-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2320134,2022-05-28,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320135,2022-05-28,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2320136,2022-05-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320137,2022-05-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2320138,2022-05-28,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320139,2022-05-28,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2320140,2022-05-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320141,2022-05-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320142,2022-05-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320143,2022-05-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320144,2022-05-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320145,2022-05-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2320146,2022-05-28,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320147,2022-05-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320148,2022-05-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2320149,2022-05-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320150,2022-05-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320151,2022-05-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320152,2022-05-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2320153,2022-05-28,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320154,2022-05-28,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2320155,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2320156,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320157,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320158,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2320159,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2320160,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2320161,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,302,Room Based Capacity,,,,,,270.0,287.0,270.0,0.0,17.0,,100.0 -2320162,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320163,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,70.0,67.0,0.0,3.0,,,,,,100.0, -2320164,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320165,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320166,2022-05-28,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320167,2022-05-28,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320168,2022-05-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2320169,2022-05-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320170,2022-05-28,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320171,2022-05-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320172,2022-05-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2320173,2022-05-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320174,2022-05-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2320175,2022-05-28,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320176,2022-05-28,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320177,2022-05-28,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320178,2022-05-28,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320179,2022-05-28,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2320180,2022-05-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320181,2022-05-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320182,2022-05-28,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2320183,2022-05-28,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320184,2022-05-28,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320185,2022-05-28,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320186,2022-05-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320187,2022-05-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2320188,2022-05-28,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320189,2022-05-28,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2320190,2022-05-28,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320191,2022-05-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2320192,2022-05-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,224.0,225.0,223.0,1.0,1.0,,,,,,99.55, -2320193,2022-05-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320194,2022-05-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320195,2022-05-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2320196,2022-05-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320197,2022-05-28,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,50.0,50.0,48.0,2.0,0.0,,,,,,96.0, -2320198,2022-05-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320199,2022-05-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,6.0,6.0,5.0,1.0,0.0,,,,,,83.33, -2320200,2022-05-28,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320201,2022-05-28,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,32,Bed Based Capacity,34.0,34.0,32.0,2.0,0.0,,,,,,94.12, -2320202,2022-05-28,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320203,2022-05-28,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2320204,2022-05-28,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320205,2022-05-28,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2320206,2022-05-28,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320207,2022-05-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320208,2022-05-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320209,2022-05-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2320210,2022-05-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2320211,2022-05-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320212,2022-05-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2320213,2022-05-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320214,2022-05-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320215,2022-05-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2320216,2022-05-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2320217,2022-05-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2320218,2022-05-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,242,Room Based Capacity,,,,,,78.0,100.0,77.0,1.0,22.0,,98.72 -2320219,2022-05-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,410,Room Based Capacity,,,,,,125.0,118.0,125.0,0.0,0.0,,100.0 -2320220,2022-05-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2320221,2022-05-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,155.0,147.0,0.0,8.0,,100.0 -2320222,2022-05-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2320223,2022-05-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2320224,2022-05-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320225,2022-05-29,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2320226,2022-05-29,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2320227,2022-05-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2320228,2022-05-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2320229,2022-05-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2320230,2022-05-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2320231,2022-05-29,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2320232,2022-05-29,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,67.0,86.0,67.0,0.0,19.0,,100.0 -2320233,2022-05-29,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2320234,2022-05-29,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,151,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2320235,2022-05-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,110,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2320236,2022-05-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2320237,2022-05-29,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2320238,2022-05-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320239,2022-05-29,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2320240,2022-05-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320241,2022-05-29,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2320242,2022-05-29,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2320243,2022-05-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,81.0,118.0,81.0,0.0,37.0,,100.0 -2320244,2022-05-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,12,Room Based Capacity,,,,,,46.0,30.0,11.0,35.0,0.0,,23.91 -2320245,2022-05-29,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2320246,2022-05-29,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2320247,2022-05-29,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320248,2022-05-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2320249,2022-05-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2320250,2022-05-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2320251,2022-05-29,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320252,2022-05-29,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2320253,2022-05-29,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,60.0,4.0,2.0,,93.75 -2320254,2022-05-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2320255,2022-05-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2320256,2022-05-29,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2320257,2022-05-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2320258,2022-05-29,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320259,2022-05-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320260,2022-05-29,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320261,2022-05-29,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320262,2022-05-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320263,2022-05-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,231.0,245.0,218.0,13.0,14.0,,94.37 -2320264,2022-05-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2320265,2022-05-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320266,2022-05-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2320267,2022-05-29,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320268,2022-05-29,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2320269,2022-05-29,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320270,2022-05-29,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2320271,2022-05-29,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320272,2022-05-29,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2320273,2022-05-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320274,2022-05-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320275,2022-05-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320276,2022-05-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320277,2022-05-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320278,2022-05-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2320279,2022-05-29,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320280,2022-05-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320281,2022-05-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2320282,2022-05-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320283,2022-05-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320284,2022-05-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320285,2022-05-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2320286,2022-05-29,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320287,2022-05-29,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2320288,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,56.0,70.0,55.0,1.0,14.0,,,,,,98.21, -2320289,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320290,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320291,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2320292,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2320293,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,255,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2320294,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,299,Room Based Capacity,,,,,,267.0,287.0,267.0,0.0,20.0,,100.0 -2320295,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320296,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,64,Bed Based Capacity,68.0,70.0,64.0,4.0,2.0,,,,,,94.12, -2320297,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320298,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320299,2022-05-29,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320300,2022-05-29,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320301,2022-05-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2320302,2022-05-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320303,2022-05-29,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320304,2022-05-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320305,2022-05-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2320306,2022-05-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320307,2022-05-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2320308,2022-05-29,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320309,2022-05-29,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320310,2022-05-29,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320311,2022-05-29,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320312,2022-05-29,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2320313,2022-05-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320314,2022-05-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320315,2022-05-29,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2320316,2022-05-29,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320317,2022-05-29,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320318,2022-05-29,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320319,2022-05-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320320,2022-05-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2320321,2022-05-29,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320322,2022-05-29,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2320323,2022-05-29,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2320324,2022-05-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2320325,2022-05-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2320326,2022-05-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320327,2022-05-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320328,2022-05-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2320329,2022-05-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320330,2022-05-29,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320331,2022-05-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320332,2022-05-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2320333,2022-05-29,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320334,2022-05-29,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2320335,2022-05-29,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320336,2022-05-29,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2320337,2022-05-29,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320338,2022-05-29,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320339,2022-05-29,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320340,2022-05-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320341,2022-05-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320342,2022-05-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320343,2022-05-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2320344,2022-05-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320345,2022-05-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2320346,2022-05-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320347,2022-05-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320348,2022-05-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2320349,2022-05-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2320350,2022-05-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2320351,2022-05-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,77.0,100.0,77.0,0.0,23.0,,100.0 -2320352,2022-05-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,409,Room Based Capacity,,,,,,125.0,118.0,125.0,0.0,0.0,,100.0 -2320353,2022-05-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2320354,2022-05-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2320355,2022-05-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2320356,2022-05-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2320357,2022-05-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320358,2022-05-30,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2320359,2022-05-30,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2320360,2022-05-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,82.0,83.0,81.0,1.0,1.0,,98.78 -2320361,2022-05-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2320362,2022-05-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2320363,2022-05-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2320364,2022-05-30,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2320365,2022-05-30,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,122,Room Based Capacity,,,,,,67.0,86.0,66.0,1.0,19.0,,98.51 -2320366,2022-05-30,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2320367,2022-05-30,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,151,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2320368,2022-05-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,110,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2320369,2022-05-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2320370,2022-05-30,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2320371,2022-05-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320372,2022-05-30,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2320373,2022-05-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320374,2022-05-30,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2320375,2022-05-30,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2320376,2022-05-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,81.0,118.0,81.0,0.0,37.0,,100.0 -2320377,2022-05-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,46.0,30.0,10.0,36.0,0.0,,21.74 -2320378,2022-05-30,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2320379,2022-05-30,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2320380,2022-05-30,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320381,2022-05-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2320382,2022-05-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2320383,2022-05-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2320384,2022-05-30,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320385,2022-05-30,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320386,2022-05-30,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2320387,2022-05-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2320388,2022-05-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2320389,2022-05-30,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2320390,2022-05-30,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2320391,2022-05-30,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2320392,2022-05-30,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320393,2022-05-30,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320394,2022-05-30,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320395,2022-05-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320396,2022-05-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,232.0,245.0,219.0,13.0,13.0,,94.4 -2320397,2022-05-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2320398,2022-05-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320399,2022-05-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2320400,2022-05-30,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320401,2022-05-30,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,50.0,42.0,1.0,7.0,,,,,,97.67, -2320402,2022-05-30,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320403,2022-05-30,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2320404,2022-05-30,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320405,2022-05-30,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2320406,2022-05-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320407,2022-05-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320408,2022-05-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2320409,2022-05-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320410,2022-05-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2320411,2022-05-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2320412,2022-05-30,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320413,2022-05-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320414,2022-05-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2320415,2022-05-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2320416,2022-05-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320417,2022-05-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320418,2022-05-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2320419,2022-05-30,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320420,2022-05-30,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2320421,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,56.0,70.0,51.0,5.0,14.0,,,,,,91.07, -2320422,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320423,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320424,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2320425,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2320426,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,222.0,235.0,222.0,0.0,13.0,,100.0 -2320427,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,300,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2320428,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2320429,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2320430,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320431,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320432,2022-05-30,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320433,2022-05-30,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320434,2022-05-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2320435,2022-05-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2320436,2022-05-30,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320437,2022-05-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320438,2022-05-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2320439,2022-05-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320440,2022-05-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2320441,2022-05-30,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320442,2022-05-30,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320443,2022-05-30,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320444,2022-05-30,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320445,2022-05-30,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,30.0,24.0,1.0,5.0,,,,,,96.0, -2320446,2022-05-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320447,2022-05-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320448,2022-05-30,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2320449,2022-05-30,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2320450,2022-05-30,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320451,2022-05-30,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320452,2022-05-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320453,2022-05-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2320454,2022-05-30,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320455,2022-05-30,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2320456,2022-05-30,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320457,2022-05-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2320458,2022-05-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,224.0,225.0,222.0,2.0,1.0,,,,,,99.11, -2320459,2022-05-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320460,2022-05-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320461,2022-05-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2320462,2022-05-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320463,2022-05-30,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320464,2022-05-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320465,2022-05-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2320466,2022-05-30,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320467,2022-05-30,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2320468,2022-05-30,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320469,2022-05-30,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2320470,2022-05-30,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320471,2022-05-30,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320472,2022-05-30,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320473,2022-05-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320474,2022-05-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320475,2022-05-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320476,2022-05-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2320477,2022-05-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320478,2022-05-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2320479,2022-05-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320480,2022-05-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320481,2022-05-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2320482,2022-05-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2320483,2022-05-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2320484,2022-05-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,77.0,100.0,76.0,1.0,23.0,,98.7 -2320485,2022-05-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,405,Room Based Capacity,,,,,,125.0,118.0,124.0,1.0,0.0,,99.2 -2320486,2022-05-31,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2320487,2022-05-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2320488,2022-05-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2320489,2022-05-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2320490,2022-05-31,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320491,2022-05-31,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2320492,2022-05-31,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,206,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2320493,2022-05-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2320494,2022-05-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2320495,2022-05-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2320496,2022-05-31,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320497,2022-05-31,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2320498,2022-05-31,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2320499,2022-05-31,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2320500,2022-05-31,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,151,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2320501,2022-05-31,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,113,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2320502,2022-05-31,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2320503,2022-05-31,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2320504,2022-05-31,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320505,2022-05-31,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2320506,2022-05-31,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320507,2022-05-31,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2320508,2022-05-31,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2320509,2022-05-31,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,88,Room Based Capacity,,,,,,81.0,118.0,80.0,1.0,37.0,,98.77 -2320510,2022-05-31,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,8,Room Based Capacity,,,,,,46.0,30.0,7.0,39.0,0.0,,15.22 -2320511,2022-05-31,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2320512,2022-05-31,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2320513,2022-05-31,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320514,2022-05-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2320515,2022-05-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2320516,2022-05-31,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2320517,2022-05-31,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320518,2022-05-31,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320519,2022-05-31,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2320520,2022-05-31,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2320521,2022-05-31,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2320522,2022-05-31,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2320523,2022-05-31,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2320524,2022-05-31,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320525,2022-05-31,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2320526,2022-05-31,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320527,2022-05-31,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320528,2022-05-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320529,2022-05-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,226.0,245.0,218.0,8.0,19.0,,96.46 -2320530,2022-05-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2320531,2022-05-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320532,2022-05-31,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2320533,2022-05-31,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320534,2022-05-31,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2320535,2022-05-31,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320536,2022-05-31,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2320537,2022-05-31,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320538,2022-05-31,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2320539,2022-05-31,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320540,2022-05-31,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320541,2022-05-31,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320542,2022-05-31,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320543,2022-05-31,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2320544,2022-05-31,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2320545,2022-05-31,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320546,2022-05-31,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320547,2022-05-31,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2320548,2022-05-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2320549,2022-05-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320550,2022-05-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320551,2022-05-31,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2320552,2022-05-31,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320553,2022-05-31,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2320554,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,56.0,70.0,51.0,5.0,14.0,,,,,,91.07, -2320555,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320556,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320557,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2320558,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2320559,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2320560,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,300,Room Based Capacity,,,,,,268.0,287.0,268.0,0.0,19.0,,100.0 -2320561,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320562,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2320563,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320564,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320565,2022-05-31,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320566,2022-05-31,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320567,2022-05-31,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2320568,2022-05-31,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320569,2022-05-31,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320570,2022-05-31,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320571,2022-05-31,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2320572,2022-05-31,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320573,2022-05-31,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2320574,2022-05-31,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320575,2022-05-31,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320576,2022-05-31,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320577,2022-05-31,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320578,2022-05-31,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,26.0,30.0,24.0,2.0,4.0,,,,,,92.31, -2320579,2022-05-31,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320580,2022-05-31,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320581,2022-05-31,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2320582,2022-05-31,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320583,2022-05-31,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320584,2022-05-31,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320585,2022-05-31,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320586,2022-05-31,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,61,Room Based Capacity,,,,,,23.0,23.0,21.0,2.0,0.0,,91.3 -2320587,2022-05-31,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320588,2022-05-31,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2320589,2022-05-31,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320590,2022-05-31,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2320591,2022-05-31,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,224.0,225.0,224.0,0.0,1.0,,,,,,100.0, -2320592,2022-05-31,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320593,2022-05-31,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320594,2022-05-31,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2320595,2022-05-31,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320596,2022-05-31,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320597,2022-05-31,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320598,2022-05-31,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2320599,2022-05-31,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320600,2022-05-31,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2320601,2022-05-31,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320602,2022-05-31,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2320603,2022-05-31,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320604,2022-05-31,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320605,2022-05-31,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320606,2022-05-31,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320607,2022-05-31,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320608,2022-05-31,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320609,2022-05-31,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2320610,2022-05-31,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320611,2022-05-31,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2320612,2022-05-31,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320613,2022-05-31,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320614,2022-06-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2320615,2022-06-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2320616,2022-06-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2320617,2022-06-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,76.0,100.0,76.0,0.0,24.0,,100.0 -2320618,2022-06-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,400,Room Based Capacity,,,,,,123.0,118.0,123.0,0.0,0.0,,100.0 -2320619,2022-06-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,12.0,13.0,12.0,0.0,1.0,,100.0 -2320620,2022-06-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2320621,2022-06-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2320622,2022-06-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2320623,2022-06-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320624,2022-06-01,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,24.0,30.0,23.0,1.0,6.0,,95.83 -2320625,2022-06-01,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,204,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2320626,2022-06-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,79.0,83.0,78.0,1.0,4.0,,98.73 -2320627,2022-06-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2320628,2022-06-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2320629,2022-06-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320630,2022-06-01,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2320631,2022-06-01,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,124,Room Based Capacity,,,,,,66.0,86.0,66.0,0.0,20.0,,100.0 -2320632,2022-06-01,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2320633,2022-06-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,151,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2320634,2022-06-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,113,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2320635,2022-06-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,2,Room Based Capacity,,,,,,2.0,18.0,2.0,0.0,16.0,,100.0 -2320636,2022-06-01,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2320637,2022-06-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320638,2022-06-01,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2320639,2022-06-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320640,2022-06-01,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2320641,2022-06-01,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2320642,2022-06-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,88,Room Based Capacity,,,,,,80.0,118.0,80.0,0.0,38.0,,100.0 -2320643,2022-06-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,46.0,30.0,9.0,37.0,0.0,,19.57 -2320644,2022-06-01,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2320645,2022-06-01,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2320646,2022-06-01,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320647,2022-06-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2320648,2022-06-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2320649,2022-06-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2320650,2022-06-01,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320651,2022-06-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2320652,2022-06-01,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,63.0,66.0,63.0,0.0,3.0,,100.0 -2320653,2022-06-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2320654,2022-06-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,71,Bed Based Capacity,74.0,74.0,71.0,3.0,0.0,,,,,,95.95, -2320655,2022-06-01,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2320656,2022-06-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2320657,2022-06-01,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2320658,2022-06-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320659,2022-06-01,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320660,2022-06-01,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320661,2022-06-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320662,2022-06-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,234,Room Based Capacity,,,,,,226.0,245.0,217.0,9.0,19.0,,96.02 -2320663,2022-06-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2320664,2022-06-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320665,2022-06-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2320666,2022-06-01,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320667,2022-06-01,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320668,2022-06-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320669,2022-06-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2320670,2022-06-01,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320671,2022-06-01,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2320672,2022-06-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320673,2022-06-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320674,2022-06-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320675,2022-06-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2320676,2022-06-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320677,2022-06-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2320678,2022-06-01,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320679,2022-06-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320680,2022-06-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2320681,2022-06-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2320682,2022-06-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320683,2022-06-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320684,2022-06-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2320685,2022-06-01,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,41.0,50.0,40.0,1.0,9.0,,,,,,97.56, -2320686,2022-06-01,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2320687,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,56.0,70.0,54.0,2.0,14.0,,,,,,96.43, -2320688,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320689,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2320690,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,55.0,54.0,0.0,1.0,,,,,,100.0, -2320691,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2320692,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2320693,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2320694,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320695,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2320696,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320697,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320698,2022-06-01,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320699,2022-06-01,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320700,2022-06-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2320701,2022-06-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320702,2022-06-01,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320703,2022-06-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2320704,2022-06-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,17.0,17.0,17.0,0.0,0.0,,,,,,100.0, -2320705,2022-06-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320706,2022-06-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2320707,2022-06-01,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320708,2022-06-01,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320709,2022-06-01,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320710,2022-06-01,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320711,2022-06-01,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2320712,2022-06-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320713,2022-06-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320714,2022-06-01,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2320715,2022-06-01,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320716,2022-06-01,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320717,2022-06-01,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320718,2022-06-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320719,2022-06-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2320720,2022-06-01,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320721,2022-06-01,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2320722,2022-06-01,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320723,2022-06-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2320724,2022-06-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2320725,2022-06-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320726,2022-06-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320727,2022-06-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2320728,2022-06-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320729,2022-06-01,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320730,2022-06-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320731,2022-06-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2320732,2022-06-01,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320733,2022-06-01,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2320734,2022-06-01,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320735,2022-06-01,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2320736,2022-06-01,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320737,2022-06-01,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2320738,2022-06-01,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2320739,2022-06-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320740,2022-06-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320741,2022-06-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2320742,2022-06-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2320743,2022-06-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320744,2022-06-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2320745,2022-06-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320746,2022-06-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320747,2022-06-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,317,Room Based Capacity,,,,,,80.0,80.0,79.0,1.0,0.0,,98.75 -2320748,2022-06-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2320749,2022-06-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2320750,2022-06-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,241,Room Based Capacity,,,,,,76.0,100.0,76.0,0.0,24.0,,100.0 -2320751,2022-06-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,397,Room Based Capacity,,,,,,122.0,118.0,122.0,0.0,0.0,,100.0 -2320752,2022-06-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2320753,2022-06-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2320754,2022-06-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2320755,2022-06-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2320756,2022-06-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2320757,2022-06-02,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2320758,2022-06-02,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,204,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2320759,2022-06-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2320760,2022-06-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2320761,2022-06-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2320762,2022-06-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2320763,2022-06-02,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2320764,2022-06-02,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,128,Room Based Capacity,,,,,,69.0,86.0,68.0,1.0,17.0,,98.55 -2320765,2022-06-02,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,97.0,100.0,96.0,1.0,3.0,,98.97 -2320766,2022-06-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,151,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2320767,2022-06-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,111,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2320768,2022-06-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2320769,2022-06-02,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2320770,2022-06-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320771,2022-06-02,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2320772,2022-06-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320773,2022-06-02,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,61.0,63.0,61.0,0.0,2.0,,,,,,100.0, -2320774,2022-06-02,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2320775,2022-06-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,79.0,118.0,79.0,0.0,39.0,,100.0 -2320776,2022-06-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,46.0,30.0,9.0,37.0,0.0,,19.57 -2320777,2022-06-02,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2320778,2022-06-02,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2320779,2022-06-02,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320780,2022-06-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2320781,2022-06-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2320782,2022-06-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2320783,2022-06-02,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320784,2022-06-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2320785,2022-06-02,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,63.0,66.0,61.0,2.0,3.0,,96.83 -2320786,2022-06-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2320787,2022-06-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2320788,2022-06-02,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2320789,2022-06-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2320790,2022-06-02,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2320791,2022-06-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320792,2022-06-02,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320793,2022-06-02,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320794,2022-06-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320795,2022-06-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,229.0,245.0,216.0,13.0,16.0,,94.32 -2320796,2022-06-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2320797,2022-06-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320798,2022-06-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2320799,2022-06-02,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320800,2022-06-02,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,43.0,50.0,40.0,3.0,7.0,,,,,,93.02, -2320801,2022-06-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320802,2022-06-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2320803,2022-06-02,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320804,2022-06-02,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2320805,2022-06-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320806,2022-06-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320807,2022-06-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2320808,2022-06-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2320809,2022-06-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320810,2022-06-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,261.0,271.0,261.0,0.0,10.0,,100.0 -2320811,2022-06-02,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320812,2022-06-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320813,2022-06-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2320814,2022-06-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2320815,2022-06-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320816,2022-06-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320817,2022-06-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2320818,2022-06-02,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320819,2022-06-02,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2320820,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,56.0,70.0,53.0,3.0,14.0,,,,,,94.64, -2320821,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320822,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320823,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2320824,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2320825,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,222.0,235.0,222.0,0.0,13.0,,100.0 -2320826,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2320827,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320828,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2320829,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320830,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320831,2022-06-02,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320832,2022-06-02,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320833,2022-06-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2320834,2022-06-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320835,2022-06-02,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320836,2022-06-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320837,2022-06-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2320838,2022-06-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320839,2022-06-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2320840,2022-06-02,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320841,2022-06-02,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320842,2022-06-02,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320843,2022-06-02,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320844,2022-06-02,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2320845,2022-06-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320846,2022-06-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320847,2022-06-02,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2320848,2022-06-02,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320849,2022-06-02,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320850,2022-06-02,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320851,2022-06-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320852,2022-06-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2320853,2022-06-02,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320854,2022-06-02,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2320855,2022-06-02,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320856,2022-06-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2320857,2022-06-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2320858,2022-06-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320859,2022-06-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2320860,2022-06-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2320861,2022-06-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320862,2022-06-02,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320863,2022-06-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320864,2022-06-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2320865,2022-06-02,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320866,2022-06-02,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2320867,2022-06-02,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320868,2022-06-02,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,101,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2320869,2022-06-02,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320870,2022-06-02,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2320871,2022-06-02,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2320872,2022-06-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320873,2022-06-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320874,2022-06-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320875,2022-06-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2320876,2022-06-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2320877,2022-06-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2320878,2022-06-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2320879,2022-06-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320880,2022-06-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2320881,2022-06-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2320882,2022-06-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2320883,2022-06-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,75.0,100.0,75.0,0.0,25.0,,100.0 -2320884,2022-06-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,396,Room Based Capacity,,,,,,121.0,118.0,121.0,0.0,0.0,,100.0 -2320885,2022-06-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2320886,2022-06-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2320887,2022-06-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2320888,2022-06-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2320889,2022-06-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320890,2022-06-03,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2320891,2022-06-03,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2320892,2022-06-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,82.0,83.0,81.0,1.0,1.0,,98.78 -2320893,2022-06-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2320894,2022-06-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2320895,2022-06-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2320896,2022-06-03,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,12.0,11.0,0.0,1.0,,,,,,100.0, -2320897,2022-06-03,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,70.0,86.0,70.0,0.0,16.0,,100.0 -2320898,2022-06-03,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,97,Room Based Capacity,,,,,,97.0,100.0,97.0,0.0,3.0,,100.0 -2320899,2022-06-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2320900,2022-06-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,114,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2320901,2022-06-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2320902,2022-06-03,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2320903,2022-06-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320904,2022-06-03,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2320905,2022-06-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2320906,2022-06-03,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,61,Bed Based Capacity,62.0,63.0,61.0,1.0,1.0,,,,,,98.39, -2320907,2022-06-03,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2320908,2022-06-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,89,Room Based Capacity,,,,,,81.0,118.0,80.0,1.0,37.0,,98.77 -2320909,2022-06-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,46.0,30.0,6.0,40.0,0.0,,13.04 -2320910,2022-06-03,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2320911,2022-06-03,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2320912,2022-06-03,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2320913,2022-06-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2320914,2022-06-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2320915,2022-06-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2320916,2022-06-03,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320917,2022-06-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2320918,2022-06-03,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2320919,2022-06-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2320920,2022-06-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2320921,2022-06-03,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2320922,2022-06-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2320923,2022-06-03,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2320924,2022-06-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2320925,2022-06-03,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320926,2022-06-03,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320927,2022-06-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320928,2022-06-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,232,Room Based Capacity,,,,,,215.0,245.0,215.0,0.0,30.0,,100.0 -2320929,2022-06-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2320930,2022-06-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2320931,2022-06-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2320932,2022-06-03,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2320933,2022-06-03,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,50.0,40.0,4.0,6.0,,,,,,90.91, -2320934,2022-06-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2320935,2022-06-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2320936,2022-06-03,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2320937,2022-06-03,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2320938,2022-06-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320939,2022-06-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2320940,2022-06-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,44.0,40.0,4.0,0.0,,,,,,90.91, -2320941,2022-06-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2320942,2022-06-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320943,2022-06-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2320944,2022-06-03,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2320945,2022-06-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320946,2022-06-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2320947,2022-06-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2320948,2022-06-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2320949,2022-06-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2320950,2022-06-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2320951,2022-06-03,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2320952,2022-06-03,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2320953,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2320954,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320955,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2320956,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2320957,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2320958,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2320959,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,306,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2320960,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2320961,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2320962,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2320963,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2320964,2022-06-03,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2320965,2022-06-03,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2320966,2022-06-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,40.0,40.0,40.0,0.0,0.0,,100.0 -2320967,2022-06-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320968,2022-06-03,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2320969,2022-06-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2320970,2022-06-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2320971,2022-06-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2320972,2022-06-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2320973,2022-06-03,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320974,2022-06-03,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2320975,2022-06-03,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2320976,2022-06-03,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2320977,2022-06-03,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2320978,2022-06-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2320979,2022-06-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2320980,2022-06-03,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,32.0,28.0,0.0,4.0,,100.0 -2320981,2022-06-03,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2320982,2022-06-03,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2320983,2022-06-03,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2320984,2022-06-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2320985,2022-06-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2320986,2022-06-03,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2320987,2022-06-03,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2320988,2022-06-03,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2320989,2022-06-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2320990,2022-06-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2320991,2022-06-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2320992,2022-06-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2320993,2022-06-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2320994,2022-06-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2320995,2022-06-03,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2320996,2022-06-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2320997,2022-06-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2320998,2022-06-03,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2320999,2022-06-03,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2321000,2022-06-03,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321001,2022-06-03,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2321002,2022-06-03,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321003,2022-06-03,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2321004,2022-06-03,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2321005,2022-06-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321006,2022-06-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321007,2022-06-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321008,2022-06-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321009,2022-06-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321010,2022-06-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2321011,2022-06-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321012,2022-06-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321013,2022-06-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,310,Room Based Capacity,,,,,,79.0,80.0,78.0,1.0,1.0,,98.73 -2321014,2022-06-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321015,2022-06-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321016,2022-06-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,75.0,100.0,75.0,0.0,25.0,,100.0 -2321017,2022-06-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,396,Room Based Capacity,,,,,,121.0,118.0,121.0,0.0,0.0,,100.0 -2321018,2022-06-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321019,2022-06-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2321020,2022-06-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2321021,2022-06-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2321022,2022-06-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321023,2022-06-04,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321024,2022-06-04,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2321025,2022-06-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,82,Room Based Capacity,,,,,,82.0,83.0,82.0,0.0,1.0,,100.0 -2321026,2022-06-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2321027,2022-06-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321028,2022-06-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2321029,2022-06-04,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2321030,2022-06-04,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,133,Room Based Capacity,,,,,,71.0,86.0,70.0,1.0,15.0,,98.59 -2321031,2022-06-04,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2321032,2022-06-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,156,Room Based Capacity,,,,,,42.0,43.0,42.0,0.0,1.0,,100.0 -2321033,2022-06-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,114,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2321034,2022-06-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321035,2022-06-04,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321036,2022-06-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321037,2022-06-04,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2321038,2022-06-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321039,2022-06-04,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321040,2022-06-04,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2321041,2022-06-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,86,Room Based Capacity,,,,,,78.0,118.0,78.0,0.0,40.0,,100.0 -2321042,2022-06-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,46.0,30.0,6.0,40.0,0.0,,13.04 -2321043,2022-06-04,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321044,2022-06-04,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2321045,2022-06-04,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321046,2022-06-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2321047,2022-06-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2321048,2022-06-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2321049,2022-06-04,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321050,2022-06-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321051,2022-06-04,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2321052,2022-06-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321053,2022-06-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2321054,2022-06-04,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321055,2022-06-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2321056,2022-06-04,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2321057,2022-06-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321058,2022-06-04,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2321059,2022-06-04,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321060,2022-06-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321061,2022-06-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,232,Room Based Capacity,,,,,,215.0,245.0,215.0,0.0,30.0,,100.0 -2321062,2022-06-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321063,2022-06-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321064,2022-06-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321065,2022-06-04,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321066,2022-06-04,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,50.0,40.0,4.0,6.0,,,,,,90.91, -2321067,2022-06-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2321068,2022-06-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2321069,2022-06-04,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2321070,2022-06-04,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2321071,2022-06-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321072,2022-06-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321073,2022-06-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2321074,2022-06-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321075,2022-06-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321076,2022-06-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,261.0,271.0,261.0,0.0,10.0,,100.0 -2321077,2022-06-04,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2321078,2022-06-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321079,2022-06-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2321080,2022-06-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2321081,2022-06-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321082,2022-06-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321083,2022-06-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2321084,2022-06-04,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2321085,2022-06-04,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2321086,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2321087,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321088,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321089,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2321090,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2321091,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2321092,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2321093,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321094,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2321095,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2321096,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2321097,2022-06-04,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2321098,2022-06-04,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2321099,2022-06-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2321100,2022-06-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321101,2022-06-04,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321102,2022-06-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321103,2022-06-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,17.0,17.0,15.0,2.0,0.0,,,,,,88.24, -2321104,2022-06-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2321105,2022-06-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2321106,2022-06-04,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321107,2022-06-04,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321108,2022-06-04,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2321109,2022-06-04,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2321110,2022-06-04,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2321111,2022-06-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321112,2022-06-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2321113,2022-06-04,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,32.0,28.0,0.0,4.0,,100.0 -2321114,2022-06-04,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2321115,2022-06-04,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2321116,2022-06-04,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2321117,2022-06-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2321118,2022-06-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2321119,2022-06-04,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2321120,2022-06-04,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2321121,2022-06-04,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321122,2022-06-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2321123,2022-06-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2321124,2022-06-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321125,2022-06-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2321126,2022-06-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2321127,2022-06-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2321128,2022-06-04,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321129,2022-06-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2321130,2022-06-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2321131,2022-06-04,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2321132,2022-06-04,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2321133,2022-06-04,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321134,2022-06-04,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2321135,2022-06-04,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321136,2022-06-04,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2321137,2022-06-04,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2321138,2022-06-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321139,2022-06-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321140,2022-06-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321141,2022-06-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321142,2022-06-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2321143,2022-06-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2321144,2022-06-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2321145,2022-06-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321146,2022-06-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2321147,2022-06-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321148,2022-06-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321149,2022-06-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,238,Room Based Capacity,,,,,,75.0,100.0,75.0,0.0,25.0,,100.0 -2321150,2022-06-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,396,Room Based Capacity,,,,,,121.0,118.0,121.0,0.0,0.0,,100.0 -2321151,2022-06-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321152,2022-06-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2321153,2022-06-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2321154,2022-06-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2321155,2022-06-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321156,2022-06-05,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321157,2022-06-05,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2321158,2022-06-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2321159,2022-06-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,12.0,12.0,11.0,1.0,0.0,,91.67 -2321160,2022-06-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321161,2022-06-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2321162,2022-06-05,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2321163,2022-06-05,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2321164,2022-06-05,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2321165,2022-06-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,152,Room Based Capacity,,,,,,41.0,43.0,41.0,0.0,2.0,,100.0 -2321166,2022-06-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,115,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2321167,2022-06-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321168,2022-06-05,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321169,2022-06-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321170,2022-06-05,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2321171,2022-06-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321172,2022-06-05,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321173,2022-06-05,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2321174,2022-06-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,86,Room Based Capacity,,,,,,78.0,118.0,78.0,0.0,40.0,,100.0 -2321175,2022-06-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,46.0,30.0,6.0,40.0,0.0,,13.04 -2321176,2022-06-05,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321177,2022-06-05,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2321178,2022-06-05,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321179,2022-06-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2321180,2022-06-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2321181,2022-06-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2321182,2022-06-05,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321183,2022-06-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321184,2022-06-05,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2321185,2022-06-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321186,2022-06-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2321187,2022-06-05,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321188,2022-06-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2321189,2022-06-05,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2321190,2022-06-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321191,2022-06-05,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2321192,2022-06-05,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321193,2022-06-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321194,2022-06-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,232,Room Based Capacity,,,,,,215.0,245.0,215.0,0.0,30.0,,100.0 -2321195,2022-06-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321196,2022-06-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321197,2022-06-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321198,2022-06-05,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321199,2022-06-05,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,44.0,50.0,40.0,4.0,6.0,,,,,,90.91, -2321200,2022-06-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2321201,2022-06-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2321202,2022-06-05,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2321203,2022-06-05,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2321204,2022-06-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321205,2022-06-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321206,2022-06-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321207,2022-06-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321208,2022-06-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321209,2022-06-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,261.0,271.0,261.0,0.0,10.0,,100.0 -2321210,2022-06-05,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2321211,2022-06-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321212,2022-06-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2321213,2022-06-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,25.0,25.0,20.0,5.0,0.0,,,,,,80.0, -2321214,2022-06-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321215,2022-06-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321216,2022-06-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2321217,2022-06-05,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2321218,2022-06-05,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2321219,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2321220,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321221,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321222,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2321223,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2321224,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2321225,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2321226,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321227,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2321228,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2321229,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2321230,2022-06-05,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2321231,2022-06-05,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2321232,2022-06-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2321233,2022-06-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321234,2022-06-05,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321235,2022-06-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321236,2022-06-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,17.0,17.0,15.0,2.0,0.0,,,,,,88.24, -2321237,2022-06-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2321238,2022-06-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,10,Room Based Capacity,,,,,,14.0,14.0,10.0,4.0,0.0,,71.43 -2321239,2022-06-05,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321240,2022-06-05,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321241,2022-06-05,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2321242,2022-06-05,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2321243,2022-06-05,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2321244,2022-06-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321245,2022-06-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2321246,2022-06-05,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,28.0,32.0,28.0,0.0,4.0,,100.0 -2321247,2022-06-05,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2321248,2022-06-05,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2321249,2022-06-05,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2321250,2022-06-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2321251,2022-06-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2321252,2022-06-05,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2321253,2022-06-05,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2321254,2022-06-05,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321255,2022-06-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2321256,2022-06-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2321257,2022-06-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321258,2022-06-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2321259,2022-06-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2321260,2022-06-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2321261,2022-06-05,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321262,2022-06-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2321263,2022-06-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2321264,2022-06-05,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2321265,2022-06-05,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2321266,2022-06-05,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321267,2022-06-05,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2321268,2022-06-05,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321269,2022-06-05,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2321270,2022-06-05,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2321271,2022-06-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321272,2022-06-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321273,2022-06-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321274,2022-06-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321275,2022-06-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321276,2022-06-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2321277,2022-06-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321278,2022-06-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321279,2022-06-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2321280,2022-06-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321281,2022-06-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321282,2022-06-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,236,Room Based Capacity,,,,,,75.0,100.0,74.0,1.0,25.0,,98.67 -2321283,2022-06-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,396,Room Based Capacity,,,,,,122.0,118.0,121.0,1.0,0.0,,99.18 -2321284,2022-06-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321285,2022-06-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,148.0,155.0,148.0,0.0,7.0,,100.0 -2321286,2022-06-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2321287,2022-06-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2321288,2022-06-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321289,2022-06-06,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321290,2022-06-06,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2321291,2022-06-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2321292,2022-06-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2321293,2022-06-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321294,2022-06-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2321295,2022-06-06,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,12.0,10.0,1.0,1.0,,,,,,90.91, -2321296,2022-06-06,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2321297,2022-06-06,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2321298,2022-06-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,146,Room Based Capacity,,,,,,41.0,43.0,40.0,1.0,2.0,,97.56 -2321299,2022-06-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,119,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2321300,2022-06-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321301,2022-06-06,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321302,2022-06-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321303,2022-06-06,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2321304,2022-06-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321305,2022-06-06,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321306,2022-06-06,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2321307,2022-06-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,85,Room Based Capacity,,,,,,77.0,118.0,77.0,0.0,41.0,,100.0 -2321308,2022-06-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,46.0,30.0,5.0,41.0,0.0,,10.87 -2321309,2022-06-06,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321310,2022-06-06,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,90,Bed Based Capacity,93.0,93.0,90.0,3.0,0.0,,,,,,96.77, -2321311,2022-06-06,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321312,2022-06-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,51.0,51.0,43.0,8.0,0.0,,,,,,84.31, -2321313,2022-06-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2321314,2022-06-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2321315,2022-06-06,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321316,2022-06-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2321317,2022-06-06,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,64.0,66.0,64.0,0.0,2.0,,100.0 -2321318,2022-06-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321319,2022-06-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2321320,2022-06-06,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321321,2022-06-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2321322,2022-06-06,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2321323,2022-06-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321324,2022-06-06,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2321325,2022-06-06,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321326,2022-06-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321327,2022-06-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,216.0,245.0,216.0,0.0,29.0,,100.0 -2321328,2022-06-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321329,2022-06-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321330,2022-06-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321331,2022-06-06,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321332,2022-06-06,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,45.0,50.0,41.0,4.0,5.0,,,,,,91.11, -2321333,2022-06-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2321334,2022-06-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2321335,2022-06-06,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2321336,2022-06-06,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2321337,2022-06-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321338,2022-06-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321339,2022-06-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321340,2022-06-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321341,2022-06-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321342,2022-06-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,260.0,271.0,260.0,0.0,11.0,,100.0 -2321343,2022-06-06,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2321344,2022-06-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321345,2022-06-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2321346,2022-06-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2321347,2022-06-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321348,2022-06-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321349,2022-06-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2321350,2022-06-06,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2321351,2022-06-06,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2321352,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,57.0,70.0,57.0,0.0,13.0,,,,,,100.0, -2321353,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321354,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321355,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2321356,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2321357,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2321358,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,303,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2321359,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321360,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2321361,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2321362,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2321363,2022-06-06,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2321364,2022-06-06,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2321365,2022-06-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,41.0,40.0,41.0,0.0,0.0,,100.0 -2321366,2022-06-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2321367,2022-06-06,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321368,2022-06-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321369,2022-06-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2321370,2022-06-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2321371,2022-06-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321372,2022-06-06,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321373,2022-06-06,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321374,2022-06-06,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2321375,2022-06-06,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2321376,2022-06-06,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2321377,2022-06-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321378,2022-06-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2321379,2022-06-06,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,29,Room Based Capacity,,,,,,29.0,32.0,29.0,0.0,3.0,,100.0 -2321380,2022-06-06,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2321381,2022-06-06,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2321382,2022-06-06,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2321383,2022-06-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2321384,2022-06-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2321385,2022-06-06,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,49.0,48.0,1.0,0.0,,,,,,97.96, -2321386,2022-06-06,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2321387,2022-06-06,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321388,2022-06-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,131.0,131.0,130.0,1.0,0.0,,99.24 -2321389,2022-06-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2321390,2022-06-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321391,2022-06-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,75.0,77.0,74.0,1.0,2.0,,98.67 -2321392,2022-06-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2321393,2022-06-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2321394,2022-06-06,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2321395,2022-06-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,11,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2321396,2022-06-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2321397,2022-06-06,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2321398,2022-06-06,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2321399,2022-06-06,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321400,2022-06-06,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2321401,2022-06-06,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321402,2022-06-06,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2321403,2022-06-06,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2321404,2022-06-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321405,2022-06-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2321406,2022-06-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321407,2022-06-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321408,2022-06-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321409,2022-06-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2321410,2022-06-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321411,2022-06-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321412,2022-06-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2321413,2022-06-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321414,2022-06-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321415,2022-06-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,81.0,100.0,79.0,2.0,19.0,,97.53 -2321416,2022-06-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,392,Room Based Capacity,,,,,,120.0,118.0,120.0,0.0,0.0,,100.0 -2321417,2022-06-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321418,2022-06-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2321419,2022-06-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2321420,2022-06-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2321421,2022-06-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321422,2022-06-07,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321423,2022-06-07,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2321424,2022-06-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2321425,2022-06-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,24,Room Based Capacity,,,,,,12.0,12.0,12.0,0.0,0.0,,100.0 -2321426,2022-06-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2321427,2022-06-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2321428,2022-06-07,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,12.0,9.0,2.0,1.0,,,,,,81.82, -2321429,2022-06-07,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2321430,2022-06-07,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2321431,2022-06-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,146,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2321432,2022-06-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,119,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2321433,2022-06-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321434,2022-06-07,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321435,2022-06-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2321436,2022-06-07,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2321437,2022-06-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321438,2022-06-07,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321439,2022-06-07,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2321440,2022-06-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,88,Room Based Capacity,,,,,,80.0,118.0,80.0,0.0,38.0,,100.0 -2321441,2022-06-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,46.0,30.0,5.0,41.0,0.0,,10.87 -2321442,2022-06-07,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321443,2022-06-07,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,91,Bed Based Capacity,93.0,93.0,91.0,2.0,0.0,,,,,,97.85, -2321444,2022-06-07,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321445,2022-06-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,51.0,51.0,44.0,7.0,0.0,,,,,,86.27, -2321446,2022-06-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2321447,2022-06-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2321448,2022-06-07,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321449,2022-06-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321450,2022-06-07,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,64.0,66.0,64.0,0.0,2.0,,100.0 -2321451,2022-06-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321452,2022-06-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2321453,2022-06-07,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321454,2022-06-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2321455,2022-06-07,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2321456,2022-06-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321457,2022-06-07,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2321458,2022-06-07,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321459,2022-06-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321460,2022-06-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,232,Room Based Capacity,,,,,,218.0,245.0,215.0,3.0,27.0,,98.62 -2321461,2022-06-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321462,2022-06-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321463,2022-06-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321464,2022-06-07,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321465,2022-06-07,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2321466,2022-06-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2321467,2022-06-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2321468,2022-06-07,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2321469,2022-06-07,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2321470,2022-06-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2321471,2022-06-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321472,2022-06-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321473,2022-06-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321474,2022-06-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321475,2022-06-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,261.0,271.0,261.0,0.0,10.0,,100.0 -2321476,2022-06-07,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2321477,2022-06-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321478,2022-06-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2321479,2022-06-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2321480,2022-06-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321481,2022-06-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321482,2022-06-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2321483,2022-06-07,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,50.0,41.0,0.0,9.0,,,,,,100.0, -2321484,2022-06-07,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2321485,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,57.0,70.0,56.0,1.0,13.0,,,,,,98.25, -2321486,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321487,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321488,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2321489,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2321490,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,219.0,235.0,219.0,0.0,16.0,,100.0 -2321491,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2321492,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321493,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,68,Bed Based Capacity,68.0,70.0,68.0,0.0,2.0,,,,,,100.0, -2321494,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2321495,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2321496,2022-06-07,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2321497,2022-06-07,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2321498,2022-06-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2321499,2022-06-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321500,2022-06-07,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321501,2022-06-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2321502,2022-06-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2321503,2022-06-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2321504,2022-06-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321505,2022-06-07,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321506,2022-06-07,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321507,2022-06-07,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321508,2022-06-07,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2321509,2022-06-07,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2321510,2022-06-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321511,2022-06-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2321512,2022-06-07,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2321513,2022-06-07,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2321514,2022-06-07,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2321515,2022-06-07,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2321516,2022-06-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2321517,2022-06-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2321518,2022-06-07,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2321519,2022-06-07,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2321520,2022-06-07,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321521,2022-06-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2321522,2022-06-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2321523,2022-06-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321524,2022-06-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2321525,2022-06-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2321526,2022-06-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2321527,2022-06-07,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2321528,2022-06-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2321529,2022-06-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2321530,2022-06-07,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2321531,2022-06-07,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2321532,2022-06-07,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321533,2022-06-07,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,27.0,27.0,25.0,2.0,0.0,,92.59 -2321534,2022-06-07,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321535,2022-06-07,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2321536,2022-06-07,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2321537,2022-06-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321538,2022-06-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321539,2022-06-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321540,2022-06-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321541,2022-06-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321542,2022-06-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2321543,2022-06-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321544,2022-06-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321545,2022-06-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2321546,2022-06-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321547,2022-06-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321548,2022-06-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2321549,2022-06-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,395,Room Based Capacity,,,,,,121.0,118.0,121.0,0.0,0.0,,100.0 -2321550,2022-06-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321551,2022-06-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2321552,2022-06-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2321553,2022-06-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2321554,2022-06-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321555,2022-06-08,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321556,2022-06-08,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2321557,2022-06-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,83.0,78.0,0.0,5.0,,100.0 -2321558,2022-06-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,22,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2321559,2022-06-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2321560,2022-06-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2321561,2022-06-08,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,12.0,9.0,2.0,1.0,,,,,,81.82, -2321562,2022-06-08,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2321563,2022-06-08,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2321564,2022-06-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,146,Room Based Capacity,,,,,,40.0,43.0,40.0,0.0,3.0,,100.0 -2321565,2022-06-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,119,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2321566,2022-06-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321567,2022-06-08,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321568,2022-06-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321569,2022-06-08,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2321570,2022-06-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321571,2022-06-08,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321572,2022-06-08,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2321573,2022-06-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,80.0,118.0,79.0,1.0,38.0,,98.75 -2321574,2022-06-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,46.0,30.0,4.0,42.0,0.0,,8.7 -2321575,2022-06-08,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321576,2022-06-08,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2321577,2022-06-08,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321578,2022-06-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2321579,2022-06-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2321580,2022-06-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,22.0,22.0,20.0,2.0,0.0,,,,,,90.91, -2321581,2022-06-08,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321582,2022-06-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2321583,2022-06-08,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2321584,2022-06-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321585,2022-06-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2321586,2022-06-08,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321587,2022-06-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2321588,2022-06-08,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2321589,2022-06-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321590,2022-06-08,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2321591,2022-06-08,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2321592,2022-06-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321593,2022-06-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,220.0,245.0,216.0,4.0,25.0,,98.18 -2321594,2022-06-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321595,2022-06-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321596,2022-06-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321597,2022-06-08,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321598,2022-06-08,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2321599,2022-06-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2321600,2022-06-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2321601,2022-06-08,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2321602,2022-06-08,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2321603,2022-06-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2321604,2022-06-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321605,2022-06-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2321606,2022-06-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321607,2022-06-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321608,2022-06-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,261.0,271.0,261.0,0.0,10.0,,100.0 -2321609,2022-06-08,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2321610,2022-06-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321611,2022-06-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2321612,2022-06-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321613,2022-06-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321614,2022-06-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321615,2022-06-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2321616,2022-06-08,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2321617,2022-06-08,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,93.0,94.0,92.0,1.0,1.0,,98.92 -2321618,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2321619,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321620,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321621,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2321622,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,81.0,86.0,81.0,0.0,5.0,,100.0 -2321623,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,222.0,235.0,222.0,0.0,13.0,,100.0 -2321624,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2321625,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321626,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,68.0,70.0,67.0,1.0,2.0,,,,,,98.53, -2321627,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2321628,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2321629,2022-06-08,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2321630,2022-06-08,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2321631,2022-06-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2321632,2022-06-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321633,2022-06-08,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321634,2022-06-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2321635,2022-06-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,17.0,17.0,15.0,2.0,0.0,,,,,,88.24, -2321636,2022-06-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2321637,2022-06-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321638,2022-06-08,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321639,2022-06-08,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321640,2022-06-08,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321641,2022-06-08,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2321642,2022-06-08,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2321643,2022-06-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321644,2022-06-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2321645,2022-06-08,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2321646,2022-06-08,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2321647,2022-06-08,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2321648,2022-06-08,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2321649,2022-06-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2321650,2022-06-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2321651,2022-06-08,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2321652,2022-06-08,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2321653,2022-06-08,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321654,2022-06-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2321655,2022-06-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2321656,2022-06-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321657,2022-06-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2321658,2022-06-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2321659,2022-06-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2321660,2022-06-08,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321661,2022-06-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2321662,2022-06-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2321663,2022-06-08,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2321664,2022-06-08,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2321665,2022-06-08,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321666,2022-06-08,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2321667,2022-06-08,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321668,2022-06-08,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2321669,2022-06-08,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2321670,2022-06-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321671,2022-06-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321672,2022-06-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321673,2022-06-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321674,2022-06-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321675,2022-06-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2321676,2022-06-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2321677,2022-06-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321678,2022-06-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2321679,2022-06-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321680,2022-06-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321681,2022-06-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,80.0,100.0,80.0,0.0,20.0,,100.0 -2321682,2022-06-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,403,Room Based Capacity,,,,,,123.0,118.0,122.0,1.0,0.0,,99.19 -2321683,2022-06-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321684,2022-06-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2321685,2022-06-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2321686,2022-06-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2321687,2022-06-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321688,2022-06-09,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321689,2022-06-09,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2321690,2022-06-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,83.0,78.0,0.0,5.0,,100.0 -2321691,2022-06-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,21,Room Based Capacity,,,,,,11.0,12.0,11.0,0.0,1.0,,100.0 -2321692,2022-06-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2321693,2022-06-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2321694,2022-06-09,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,12.0,11.0,0.0,1.0,,,,,,100.0, -2321695,2022-06-09,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,139,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2321696,2022-06-09,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2321697,2022-06-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2321698,2022-06-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,119,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2321699,2022-06-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321700,2022-06-09,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321701,2022-06-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321702,2022-06-09,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2321703,2022-06-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321704,2022-06-09,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321705,2022-06-09,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2321706,2022-06-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,87,Room Based Capacity,,,,,,79.0,118.0,79.0,0.0,39.0,,100.0 -2321707,2022-06-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,46.0,30.0,5.0,41.0,0.0,,10.87 -2321708,2022-06-09,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321709,2022-06-09,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2321710,2022-06-09,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321711,2022-06-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2321712,2022-06-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2321713,2022-06-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2321714,2022-06-09,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321715,2022-06-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2321716,2022-06-09,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2321717,2022-06-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321718,2022-06-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2321719,2022-06-09,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321720,2022-06-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2321721,2022-06-09,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2321722,2022-06-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321723,2022-06-09,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2321724,2022-06-09,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2321725,2022-06-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321726,2022-06-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,232,Room Based Capacity,,,,,,220.0,245.0,215.0,5.0,25.0,,97.73 -2321727,2022-06-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321728,2022-06-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321729,2022-06-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321730,2022-06-09,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321731,2022-06-09,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2321732,2022-06-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2321733,2022-06-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2321734,2022-06-09,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2321735,2022-06-09,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2321736,2022-06-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2321737,2022-06-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321738,2022-06-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321739,2022-06-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321740,2022-06-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2321741,2022-06-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2321742,2022-06-09,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2321743,2022-06-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321744,2022-06-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2321745,2022-06-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321746,2022-06-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321747,2022-06-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321748,2022-06-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2321749,2022-06-09,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2321750,2022-06-09,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2321751,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2321752,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321753,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321754,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2321755,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,81.0,86.0,81.0,0.0,5.0,,100.0 -2321756,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,220.0,235.0,220.0,0.0,15.0,,100.0 -2321757,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2321758,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321759,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2321760,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2321761,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2321762,2022-06-09,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2321763,2022-06-09,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2321764,2022-06-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2321765,2022-06-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,15.0,15.0,13.0,2.0,0.0,,,,,,86.67, -2321766,2022-06-09,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321767,2022-06-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2321768,2022-06-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,17.0,17.0,15.0,2.0,0.0,,,,,,88.24, -2321769,2022-06-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2321770,2022-06-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321771,2022-06-09,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321772,2022-06-09,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321773,2022-06-09,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2321774,2022-06-09,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2321775,2022-06-09,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2321776,2022-06-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321777,2022-06-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2321778,2022-06-09,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2321779,2022-06-09,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2321780,2022-06-09,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2321781,2022-06-09,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2321782,2022-06-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2321783,2022-06-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2321784,2022-06-09,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2321785,2022-06-09,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2321786,2022-06-09,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321787,2022-06-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2321788,2022-06-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2321789,2022-06-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321790,2022-06-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2321791,2022-06-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2321792,2022-06-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2321793,2022-06-09,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321794,2022-06-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2321795,2022-06-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2321796,2022-06-09,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2321797,2022-06-09,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2321798,2022-06-09,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321799,2022-06-09,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2321800,2022-06-09,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321801,2022-06-09,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2321802,2022-06-09,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2321803,2022-06-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321804,2022-06-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321805,2022-06-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321806,2022-06-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2321807,2022-06-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321808,2022-06-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2321809,2022-06-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321810,2022-06-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321811,2022-06-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2321812,2022-06-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321813,2022-06-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321814,2022-06-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2321815,2022-06-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,408,Room Based Capacity,,,,,,126.0,118.0,125.0,1.0,0.0,,99.21 -2321816,2022-06-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321817,2022-06-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2321818,2022-06-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2321819,2022-06-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2321820,2022-06-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321821,2022-06-10,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321822,2022-06-10,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2321823,2022-06-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,83.0,75.0,0.0,8.0,,100.0 -2321824,2022-06-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2321825,2022-06-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,26,Room Based Capacity,,,,,,13.0,14.0,13.0,0.0,1.0,,100.0 -2321826,2022-06-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2321827,2022-06-10,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2321828,2022-06-10,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,142,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2321829,2022-06-10,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2321830,2022-06-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2321831,2022-06-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,120,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2321832,2022-06-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321833,2022-06-10,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321834,2022-06-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321835,2022-06-10,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2321836,2022-06-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321837,2022-06-10,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321838,2022-06-10,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2321839,2022-06-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,88.0,118.0,88.0,0.0,30.0,,100.0 -2321840,2022-06-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,46.0,30.0,5.0,41.0,0.0,,10.87 -2321841,2022-06-10,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321842,2022-06-10,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2321843,2022-06-10,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321844,2022-06-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2321845,2022-06-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2321846,2022-06-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2321847,2022-06-10,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321848,2022-06-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321849,2022-06-10,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,66.0,64.0,0.0,2.0,,100.0 -2321850,2022-06-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321851,2022-06-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2321852,2022-06-10,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321853,2022-06-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2321854,2022-06-10,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2321855,2022-06-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321856,2022-06-10,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2321857,2022-06-10,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2321858,2022-06-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321859,2022-06-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,225.0,245.0,216.0,9.0,20.0,,96.0 -2321860,2022-06-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321861,2022-06-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321862,2022-06-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321863,2022-06-10,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321864,2022-06-10,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2321865,2022-06-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2321866,2022-06-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2321867,2022-06-10,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2321868,2022-06-10,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2321869,2022-06-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2321870,2022-06-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2321871,2022-06-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2321872,2022-06-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321873,2022-06-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321874,2022-06-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2321875,2022-06-10,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2321876,2022-06-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321877,2022-06-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2321878,2022-06-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321879,2022-06-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2321880,2022-06-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2321881,2022-06-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2321882,2022-06-10,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2321883,2022-06-10,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2321884,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2321885,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321886,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321887,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2321888,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2321889,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,256,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2321890,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2321891,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2321892,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2321893,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2321894,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2321895,2022-06-10,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2321896,2022-06-10,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,18.0,18.0,16.0,2.0,0.0,,,,,,88.89, -2321897,2022-06-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2321898,2022-06-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321899,2022-06-10,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2321900,2022-06-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2321901,2022-06-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,17.0,17.0,15.0,2.0,0.0,,,,,,88.24, -2321902,2022-06-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2321903,2022-06-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2321904,2022-06-10,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321905,2022-06-10,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321906,2022-06-10,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2321907,2022-06-10,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2321908,2022-06-10,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2321909,2022-06-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321910,2022-06-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2321911,2022-06-10,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2321912,2022-06-10,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2321913,2022-06-10,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2321914,2022-06-10,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2321915,2022-06-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2321916,2022-06-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2321917,2022-06-10,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2321918,2022-06-10,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2321919,2022-06-10,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2321920,2022-06-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2321921,2022-06-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2321922,2022-06-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321923,2022-06-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2321924,2022-06-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2321925,2022-06-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2321926,2022-06-10,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321927,2022-06-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2321928,2022-06-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2321929,2022-06-10,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2321930,2022-06-10,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2321931,2022-06-10,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321932,2022-06-10,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2321933,2022-06-10,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2321934,2022-06-10,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2321935,2022-06-10,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2321936,2022-06-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2321937,2022-06-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321938,2022-06-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2321939,2022-06-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2321940,2022-06-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2321941,2022-06-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2321942,2022-06-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2321943,2022-06-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2321944,2022-06-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2321945,2022-06-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2321946,2022-06-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2321947,2022-06-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2321948,2022-06-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,408,Room Based Capacity,,,,,,125.0,118.0,124.0,1.0,0.0,,99.2 -2321949,2022-06-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2321950,2022-06-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2321951,2022-06-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2321952,2022-06-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2321953,2022-06-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2321954,2022-06-11,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2321955,2022-06-11,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2321956,2022-06-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,83.0,75.0,0.0,8.0,,100.0 -2321957,2022-06-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,10.0,12.0,8.0,2.0,2.0,,80.0 -2321958,2022-06-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2321959,2022-06-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2321960,2022-06-11,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2321961,2022-06-11,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2321962,2022-06-11,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2321963,2022-06-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2321964,2022-06-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,120,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2321965,2022-06-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2321966,2022-06-11,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2321967,2022-06-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2321968,2022-06-11,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2321969,2022-06-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2321970,2022-06-11,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2321971,2022-06-11,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2321972,2022-06-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,120,Room Based Capacity,,,,,,96.0,118.0,95.0,1.0,22.0,,98.96 -2321973,2022-06-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,46.0,30.0,3.0,43.0,0.0,,6.52 -2321974,2022-06-11,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2321975,2022-06-11,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2321976,2022-06-11,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2321977,2022-06-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2321978,2022-06-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2321979,2022-06-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2321980,2022-06-11,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321981,2022-06-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2321982,2022-06-11,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,66.0,64.0,1.0,1.0,,98.46 -2321983,2022-06-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2321984,2022-06-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2321985,2022-06-11,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2321986,2022-06-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2321987,2022-06-11,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2321988,2022-06-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2321989,2022-06-11,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2321990,2022-06-11,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,44.0,43.0,0.0,1.0,,,,,,100.0, -2321991,2022-06-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2321992,2022-06-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,225.0,245.0,216.0,9.0,20.0,,96.0 -2321993,2022-06-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2321994,2022-06-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2321995,2022-06-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2321996,2022-06-11,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2321997,2022-06-11,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2321998,2022-06-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,14.0,12.0,0.0,2.0,,,,,,100.0, -2321999,2022-06-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2322000,2022-06-11,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322001,2022-06-11,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322002,2022-06-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2322003,2022-06-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2322004,2022-06-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322005,2022-06-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322006,2022-06-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322007,2022-06-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,275,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2322008,2022-06-11,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2322009,2022-06-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322010,2022-06-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322011,2022-06-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322012,2022-06-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322013,2022-06-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322014,2022-06-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2322015,2022-06-11,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2322016,2022-06-11,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2322017,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2322018,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322019,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322020,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2322021,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2322022,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2322023,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2322024,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322025,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2322026,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322027,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2322028,2022-06-11,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322029,2022-06-11,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322030,2022-06-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322031,2022-06-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322032,2022-06-11,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2322033,2022-06-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322034,2022-06-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2322035,2022-06-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2322036,2022-06-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322037,2022-06-11,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322038,2022-06-11,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322039,2022-06-11,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322040,2022-06-11,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322041,2022-06-11,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322042,2022-06-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322043,2022-06-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322044,2022-06-11,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2322045,2022-06-11,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322046,2022-06-11,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322047,2022-06-11,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322048,2022-06-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322049,2022-06-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2322050,2022-06-11,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322051,2022-06-11,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322052,2022-06-11,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322053,2022-06-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2322054,2022-06-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2322055,2022-06-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322056,2022-06-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2322057,2022-06-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322058,2022-06-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322059,2022-06-11,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322060,2022-06-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322061,2022-06-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322062,2022-06-11,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322063,2022-06-11,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322064,2022-06-11,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322065,2022-06-11,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2322066,2022-06-11,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322067,2022-06-11,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322068,2022-06-11,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322069,2022-06-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322070,2022-06-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322071,2022-06-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322072,2022-06-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2322073,2022-06-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322074,2022-06-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2322075,2022-06-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322076,2022-06-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322077,2022-06-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,316,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2322078,2022-06-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2322079,2022-06-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2322080,2022-06-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2322081,2022-06-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,415,Room Based Capacity,,,,,,125.0,118.0,125.0,0.0,0.0,,100.0 -2322082,2022-06-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2322083,2022-06-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2322084,2022-06-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2322085,2022-06-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2322086,2022-06-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322087,2022-06-12,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2322088,2022-06-12,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2322089,2022-06-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,81.0,83.0,79.0,2.0,2.0,,97.53 -2322090,2022-06-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2322091,2022-06-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2322092,2022-06-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322093,2022-06-12,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2322094,2022-06-12,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2322095,2022-06-12,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2322096,2022-06-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2322097,2022-06-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,120,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322098,2022-06-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2322099,2022-06-12,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2322100,2022-06-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322101,2022-06-12,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2322102,2022-06-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322103,2022-06-12,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2322104,2022-06-12,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2322105,2022-06-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,121,Room Based Capacity,,,,,,94.0,118.0,94.0,0.0,24.0,,100.0 -2322106,2022-06-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,46.0,30.0,3.0,43.0,0.0,,6.52 -2322107,2022-06-12,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2322108,2022-06-12,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2322109,2022-06-12,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322110,2022-06-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2322111,2022-06-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2322112,2022-06-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2322113,2022-06-12,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,52,Bed Based Capacity,53.0,53.0,52.0,1.0,0.0,,,,,,98.11, -2322114,2022-06-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2322115,2022-06-12,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2322116,2022-06-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2322117,2022-06-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2322118,2022-06-12,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2322119,2022-06-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2322120,2022-06-12,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2322121,2022-06-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2322122,2022-06-12,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,28.0,28.0,27.0,1.0,0.0,,,,,,96.43, -2322123,2022-06-12,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322124,2022-06-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322125,2022-06-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,225.0,245.0,216.0,9.0,20.0,,96.0 -2322126,2022-06-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2322127,2022-06-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2322128,2022-06-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2322129,2022-06-12,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2322130,2022-06-12,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2322131,2022-06-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,14.0,12.0,0.0,2.0,,,,,,100.0, -2322132,2022-06-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2322133,2022-06-12,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322134,2022-06-12,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322135,2022-06-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2322136,2022-06-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2322137,2022-06-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322138,2022-06-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322139,2022-06-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322140,2022-06-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2322141,2022-06-12,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2322142,2022-06-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322143,2022-06-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322144,2022-06-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2322145,2022-06-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322146,2022-06-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322147,2022-06-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2322148,2022-06-12,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2322149,2022-06-12,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2322150,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,58.0,70.0,57.0,1.0,12.0,,,,,,98.28, -2322151,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322152,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322153,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2322154,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2322155,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2322156,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,305,Room Based Capacity,,,,,,272.0,287.0,272.0,0.0,15.0,,100.0 -2322157,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322158,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2322159,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322160,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2322161,2022-06-12,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322162,2022-06-12,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322163,2022-06-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322164,2022-06-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322165,2022-06-12,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2322166,2022-06-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322167,2022-06-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,17.0,17.0,16.0,1.0,0.0,,,,,,94.12, -2322168,2022-06-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,11.0,11.0,10.0,1.0,0.0,,,,,,90.91, -2322169,2022-06-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322170,2022-06-12,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322171,2022-06-12,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322172,2022-06-12,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322173,2022-06-12,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322174,2022-06-12,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322175,2022-06-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322176,2022-06-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322177,2022-06-12,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2322178,2022-06-12,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322179,2022-06-12,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322180,2022-06-12,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322181,2022-06-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322182,2022-06-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2322183,2022-06-12,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322184,2022-06-12,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322185,2022-06-12,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322186,2022-06-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2322187,2022-06-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2322188,2022-06-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322189,2022-06-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2322190,2022-06-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322191,2022-06-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322192,2022-06-12,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322193,2022-06-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322194,2022-06-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322195,2022-06-12,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322196,2022-06-12,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322197,2022-06-12,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322198,2022-06-12,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2322199,2022-06-12,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322200,2022-06-12,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322201,2022-06-12,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322202,2022-06-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322203,2022-06-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322204,2022-06-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322205,2022-06-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2322206,2022-06-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322207,2022-06-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2322208,2022-06-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322209,2022-06-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322210,2022-06-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,317,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2322211,2022-06-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2322212,2022-06-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2322213,2022-06-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,81.0,100.0,81.0,0.0,19.0,,100.0 -2322214,2022-06-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,415,Room Based Capacity,,,,,,125.0,118.0,125.0,0.0,0.0,,100.0 -2322215,2022-06-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2322216,2022-06-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2322217,2022-06-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2322218,2022-06-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2322219,2022-06-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322220,2022-06-13,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2322221,2022-06-13,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2322222,2022-06-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,79.0,83.0,78.0,1.0,4.0,,98.73 -2322223,2022-06-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2322224,2022-06-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2322225,2022-06-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322226,2022-06-13,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2322227,2022-06-13,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,134,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2322228,2022-06-13,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,99.0,100.0,98.0,1.0,1.0,,98.99 -2322229,2022-06-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,139,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2322230,2022-06-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,120,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322231,2022-06-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2322232,2022-06-13,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2322233,2022-06-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322234,2022-06-13,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2322235,2022-06-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322236,2022-06-13,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2322237,2022-06-13,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2322238,2022-06-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,102.0,118.0,102.0,0.0,16.0,,100.0 -2322239,2022-06-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,45.0,30.0,5.0,40.0,0.0,,11.11 -2322240,2022-06-13,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2322241,2022-06-13,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2322242,2022-06-13,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322243,2022-06-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2322244,2022-06-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2322245,2022-06-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2322246,2022-06-13,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2322247,2022-06-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2322248,2022-06-13,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,66.0,64.0,1.0,1.0,,98.46 -2322249,2022-06-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2322250,2022-06-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2322251,2022-06-13,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2322252,2022-06-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2322253,2022-06-13,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2322254,2022-06-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322255,2022-06-13,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322256,2022-06-13,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322257,2022-06-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322258,2022-06-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,235,Room Based Capacity,,,,,,225.0,245.0,219.0,6.0,20.0,,97.33 -2322259,2022-06-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2322260,2022-06-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2322261,2022-06-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2322262,2022-06-13,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2322263,2022-06-13,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2322264,2022-06-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2322265,2022-06-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,40.0,41.0,39.0,1.0,1.0,,97.5 -2322266,2022-06-13,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322267,2022-06-13,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322268,2022-06-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,37.0,37.0,36.0,1.0,0.0,,,,,,97.3, -2322269,2022-06-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2322270,2022-06-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322271,2022-06-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322272,2022-06-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322273,2022-06-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2322274,2022-06-13,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2322275,2022-06-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322276,2022-06-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322277,2022-06-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322278,2022-06-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322279,2022-06-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322280,2022-06-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2322281,2022-06-13,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2322282,2022-06-13,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2322283,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,58,Bed Based Capacity,58.0,70.0,58.0,0.0,12.0,,,,,,100.0, -2322284,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322285,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322286,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2322287,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2322288,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,257,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2322289,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,308,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2322290,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322291,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2322292,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322293,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2322294,2022-06-13,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322295,2022-06-13,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322296,2022-06-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322297,2022-06-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322298,2022-06-13,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2322299,2022-06-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322300,2022-06-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2322301,2022-06-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322302,2022-06-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322303,2022-06-13,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322304,2022-06-13,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322305,2022-06-13,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322306,2022-06-13,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322307,2022-06-13,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322308,2022-06-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322309,2022-06-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322310,2022-06-13,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2322311,2022-06-13,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322312,2022-06-13,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322313,2022-06-13,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322314,2022-06-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322315,2022-06-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2322316,2022-06-13,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322317,2022-06-13,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322318,2022-06-13,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322319,2022-06-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2322320,2022-06-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2322321,2022-06-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322322,2022-06-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2322323,2022-06-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322324,2022-06-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322325,2022-06-13,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322326,2022-06-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322327,2022-06-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322328,2022-06-13,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322329,2022-06-13,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322330,2022-06-13,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322331,2022-06-13,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,99,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2322332,2022-06-13,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322333,2022-06-13,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322334,2022-06-13,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322335,2022-06-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322336,2022-06-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322337,2022-06-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322338,2022-06-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2322339,2022-06-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322340,2022-06-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2322341,2022-06-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322342,2022-06-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322343,2022-06-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,314,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2322344,2022-06-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2322345,2022-06-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2322346,2022-06-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2322347,2022-06-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,413,Room Based Capacity,,,,,,125.0,118.0,124.0,1.0,0.0,,99.2 -2322348,2022-06-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2322349,2022-06-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,147.0,152.0,147.0,0.0,5.0,,100.0 -2322350,2022-06-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2322351,2022-06-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2322352,2022-06-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322353,2022-06-14,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2322354,2022-06-14,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2322355,2022-06-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2322356,2022-06-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2322357,2022-06-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2322358,2022-06-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322359,2022-06-14,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2322360,2022-06-14,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2322361,2022-06-14,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2322362,2022-06-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,139,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2322363,2022-06-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322364,2022-06-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2322365,2022-06-14,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2322366,2022-06-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322367,2022-06-14,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2322368,2022-06-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322369,2022-06-14,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2322370,2022-06-14,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2322371,2022-06-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,107.0,118.0,106.0,1.0,11.0,,99.07 -2322372,2022-06-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,42.0,30.0,5.0,37.0,0.0,,11.9 -2322373,2022-06-14,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2322374,2022-06-14,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2322375,2022-06-14,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322376,2022-06-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2322377,2022-06-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2322378,2022-06-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2322379,2022-06-14,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2322380,2022-06-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2322381,2022-06-14,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2322382,2022-06-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2322383,2022-06-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2322384,2022-06-14,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2322385,2022-06-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2322386,2022-06-14,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2322387,2022-06-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322388,2022-06-14,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322389,2022-06-14,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322390,2022-06-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2322391,2022-06-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,232,Room Based Capacity,,,,,,225.0,245.0,217.0,8.0,20.0,,96.44 -2322392,2022-06-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2322393,2022-06-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2322394,2022-06-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2322395,2022-06-14,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2322396,2022-06-14,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2322397,2022-06-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2322398,2022-06-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2322399,2022-06-14,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322400,2022-06-14,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322401,2022-06-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2322402,2022-06-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2322403,2022-06-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2322404,2022-06-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322405,2022-06-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322406,2022-06-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,260.0,271.0,260.0,0.0,11.0,,100.0 -2322407,2022-06-14,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2322408,2022-06-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322409,2022-06-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322410,2022-06-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322411,2022-06-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322412,2022-06-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322413,2022-06-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2322414,2022-06-14,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,46.0,50.0,44.0,2.0,4.0,,,,,,95.65, -2322415,2022-06-14,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2322416,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,57,Bed Based Capacity,58.0,70.0,57.0,1.0,12.0,,,,,,98.28, -2322417,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322418,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322419,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2322420,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2322421,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2322422,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,307,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2322423,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322424,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2322425,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322426,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2322427,2022-06-14,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322428,2022-06-14,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322429,2022-06-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2322430,2022-06-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322431,2022-06-14,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2322432,2022-06-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322433,2022-06-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2322434,2022-06-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322435,2022-06-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322436,2022-06-14,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2322437,2022-06-14,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322438,2022-06-14,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322439,2022-06-14,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322440,2022-06-14,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322441,2022-06-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322442,2022-06-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322443,2022-06-14,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2322444,2022-06-14,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322445,2022-06-14,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322446,2022-06-14,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,227,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322447,2022-06-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322448,2022-06-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,58,Room Based Capacity,,,,,,23.0,23.0,19.0,4.0,0.0,,82.61 -2322449,2022-06-14,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322450,2022-06-14,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322451,2022-06-14,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322452,2022-06-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2322453,2022-06-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2322454,2022-06-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322455,2022-06-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2322456,2022-06-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322457,2022-06-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322458,2022-06-14,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322459,2022-06-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322460,2022-06-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322461,2022-06-14,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322462,2022-06-14,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322463,2022-06-14,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322464,2022-06-14,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2322465,2022-06-14,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322466,2022-06-14,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322467,2022-06-14,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322468,2022-06-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322469,2022-06-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322470,2022-06-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322471,2022-06-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2322472,2022-06-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322473,2022-06-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2322474,2022-06-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2322475,2022-06-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322476,2022-06-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2322477,2022-06-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2322478,2022-06-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2322479,2022-06-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2322480,2022-06-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,421,Room Based Capacity,,,,,,127.0,118.0,127.0,0.0,0.0,,100.0 -2322481,2022-06-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2322482,2022-06-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,147.0,152.0,147.0,0.0,5.0,,100.0 -2322483,2022-06-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2322484,2022-06-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2322485,2022-06-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322486,2022-06-15,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2322487,2022-06-15,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2322488,2022-06-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,80.0,83.0,77.0,3.0,3.0,,96.25 -2322489,2022-06-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2322490,2022-06-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2322491,2022-06-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322492,2022-06-15,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2322493,2022-06-15,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,135,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2322494,2022-06-15,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2322495,2022-06-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,139,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2322496,2022-06-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322497,2022-06-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2322498,2022-06-15,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2322499,2022-06-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322500,2022-06-15,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2322501,2022-06-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322502,2022-06-15,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,62.0,63.0,62.0,0.0,1.0,,,,,,100.0, -2322503,2022-06-15,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2322504,2022-06-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,111.0,118.0,108.0,3.0,7.0,,97.3 -2322505,2022-06-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,30.0,30.0,5.0,25.0,0.0,,16.67 -2322506,2022-06-15,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2322507,2022-06-15,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2322508,2022-06-15,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322509,2022-06-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2322510,2022-06-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2322511,2022-06-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2322512,2022-06-15,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2322513,2022-06-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2322514,2022-06-15,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,65.0,66.0,61.0,4.0,1.0,,93.85 -2322515,2022-06-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2322516,2022-06-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2322517,2022-06-15,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2322518,2022-06-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2322519,2022-06-15,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322520,2022-06-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322521,2022-06-15,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322522,2022-06-15,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322523,2022-06-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322524,2022-06-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,233,Room Based Capacity,,,,,,225.0,245.0,217.0,8.0,20.0,,96.44 -2322525,2022-06-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2322526,2022-06-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2322527,2022-06-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2322528,2022-06-15,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2322529,2022-06-15,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2322530,2022-06-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2322531,2022-06-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2322532,2022-06-15,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322533,2022-06-15,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322534,2022-06-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2322535,2022-06-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322536,2022-06-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322537,2022-06-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2322538,2022-06-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322539,2022-06-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,260.0,271.0,260.0,0.0,11.0,,100.0 -2322540,2022-06-15,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2322541,2022-06-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322542,2022-06-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322543,2022-06-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322544,2022-06-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322545,2022-06-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322546,2022-06-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2322547,2022-06-15,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2322548,2022-06-15,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2322549,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,58.0,70.0,56.0,2.0,12.0,,,,,,96.55, -2322550,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322551,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322552,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2322553,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2322554,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,258,Room Based Capacity,,,,,,222.0,235.0,222.0,0.0,13.0,,100.0 -2322555,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,310,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2322556,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322557,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2322558,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322559,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2322560,2022-06-15,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322561,2022-06-15,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322562,2022-06-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322563,2022-06-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322564,2022-06-15,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2322565,2022-06-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2322566,2022-06-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2322567,2022-06-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2322568,2022-06-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322569,2022-06-15,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322570,2022-06-15,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322571,2022-06-15,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322572,2022-06-15,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322573,2022-06-15,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322574,2022-06-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322575,2022-06-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322576,2022-06-15,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,30,Room Based Capacity,,,,,,30.0,32.0,30.0,0.0,2.0,,100.0 -2322577,2022-06-15,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322578,2022-06-15,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322579,2022-06-15,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,228,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322580,2022-06-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322581,2022-06-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2322582,2022-06-15,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322583,2022-06-15,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322584,2022-06-15,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322585,2022-06-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2322586,2022-06-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2322587,2022-06-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322588,2022-06-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322589,2022-06-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322590,2022-06-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322591,2022-06-15,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2322592,2022-06-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322593,2022-06-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322594,2022-06-15,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322595,2022-06-15,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322596,2022-06-15,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322597,2022-06-15,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2322598,2022-06-15,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322599,2022-06-15,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322600,2022-06-15,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322601,2022-06-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322602,2022-06-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322603,2022-06-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322604,2022-06-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2322605,2022-06-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322606,2022-06-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2322607,2022-06-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2322608,2022-06-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322609,2022-06-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2322610,2022-06-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2322611,2022-06-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2322612,2022-06-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2322613,2022-06-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,424,Room Based Capacity,,,,,,129.0,118.0,128.0,1.0,0.0,,99.22 -2322614,2022-06-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2322615,2022-06-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,148.0,152.0,148.0,0.0,4.0,,100.0 -2322616,2022-06-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2322617,2022-06-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2322618,2022-06-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322619,2022-06-16,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2322620,2022-06-16,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,65.0,65.0,65.0,0.0,0.0,,100.0 -2322621,2022-06-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2322622,2022-06-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,9.0,12.0,8.0,1.0,3.0,,88.89 -2322623,2022-06-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2322624,2022-06-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322625,2022-06-16,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2322626,2022-06-16,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,136,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2322627,2022-06-16,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2322628,2022-06-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,137,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2322629,2022-06-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,123,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2322630,2022-06-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2322631,2022-06-16,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2322632,2022-06-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322633,2022-06-16,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2322634,2022-06-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2322635,2022-06-16,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2322636,2022-06-16,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2322637,2022-06-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,108.0,118.0,108.0,0.0,10.0,,100.0 -2322638,2022-06-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,30.0,30.0,4.0,26.0,0.0,,13.33 -2322639,2022-06-16,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2322640,2022-06-16,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2322641,2022-06-16,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322642,2022-06-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2322643,2022-06-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2322644,2022-06-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2322645,2022-06-16,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2322646,2022-06-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2322647,2022-06-16,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,65.0,66.0,61.0,4.0,1.0,,93.85 -2322648,2022-06-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2322649,2022-06-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2322650,2022-06-16,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2322651,2022-06-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2322652,2022-06-16,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322653,2022-06-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322654,2022-06-16,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322655,2022-06-16,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322656,2022-06-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322657,2022-06-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,232,Room Based Capacity,,,,,,225.0,245.0,216.0,9.0,20.0,,96.0 -2322658,2022-06-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2322659,2022-06-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2322660,2022-06-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2322661,2022-06-16,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2322662,2022-06-16,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2322663,2022-06-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2322664,2022-06-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2322665,2022-06-16,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322666,2022-06-16,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322667,2022-06-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2322668,2022-06-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322669,2022-06-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322670,2022-06-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2322671,2022-06-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322672,2022-06-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,273,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2322673,2022-06-16,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2322674,2022-06-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322675,2022-06-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322676,2022-06-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322677,2022-06-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322678,2022-06-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322679,2022-06-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2322680,2022-06-16,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2322681,2022-06-16,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2322682,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,56.0,70.0,54.0,2.0,14.0,,,,,,96.43, -2322683,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322684,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322685,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2322686,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2322687,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,224.0,235.0,224.0,0.0,11.0,,100.0 -2322688,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,313,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2322689,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322690,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2322691,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322692,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2322693,2022-06-16,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322694,2022-06-16,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322695,2022-06-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322696,2022-06-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322697,2022-06-16,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2322698,2022-06-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322699,2022-06-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2322700,2022-06-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2322701,2022-06-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322702,2022-06-16,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322703,2022-06-16,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322704,2022-06-16,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322705,2022-06-16,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322706,2022-06-16,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322707,2022-06-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322708,2022-06-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322709,2022-06-16,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2322710,2022-06-16,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322711,2022-06-16,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322712,2022-06-16,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,228,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322713,2022-06-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322714,2022-06-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2322715,2022-06-16,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322716,2022-06-16,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322717,2022-06-16,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322718,2022-06-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2322719,2022-06-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2322720,2022-06-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322721,2022-06-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322722,2022-06-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322723,2022-06-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322724,2022-06-16,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322725,2022-06-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322726,2022-06-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322727,2022-06-16,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322728,2022-06-16,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322729,2022-06-16,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322730,2022-06-16,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,95,Room Based Capacity,,,,,,27.0,27.0,26.0,1.0,0.0,,96.3 -2322731,2022-06-16,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322732,2022-06-16,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322733,2022-06-16,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322734,2022-06-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322735,2022-06-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322736,2022-06-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322737,2022-06-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2322738,2022-06-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322739,2022-06-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2322740,2022-06-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2322741,2022-06-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2322742,2022-06-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2322743,2022-06-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2322744,2022-06-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2322745,2022-06-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2322746,2022-06-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,435,Room Based Capacity,,,,,,132.0,118.0,132.0,0.0,0.0,,100.0 -2322747,2022-06-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2322748,2022-06-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,152.0,147.0,0.0,5.0,,100.0 -2322749,2022-06-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2322750,2022-06-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2322751,2022-06-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322752,2022-06-17,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2322753,2022-06-17,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,209,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2322754,2022-06-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2322755,2022-06-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,15,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2322756,2022-06-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2322757,2022-06-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322758,2022-06-17,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2322759,2022-06-17,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2322760,2022-06-17,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2322761,2022-06-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,137,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2322762,2022-06-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,124,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2322763,2022-06-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2322764,2022-06-17,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2322765,2022-06-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2322766,2022-06-17,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2322767,2022-06-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322768,2022-06-17,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2322769,2022-06-17,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2322770,2022-06-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,107.0,118.0,107.0,0.0,11.0,,100.0 -2322771,2022-06-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,30.0,30.0,2.0,28.0,0.0,,6.67 -2322772,2022-06-17,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2322773,2022-06-17,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2322774,2022-06-17,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322775,2022-06-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2322776,2022-06-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2322777,2022-06-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2322778,2022-06-17,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2322779,2022-06-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2322780,2022-06-17,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2322781,2022-06-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2322782,2022-06-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2322783,2022-06-17,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2322784,2022-06-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2322785,2022-06-17,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322786,2022-06-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322787,2022-06-17,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322788,2022-06-17,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322789,2022-06-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2322790,2022-06-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,227,Room Based Capacity,,,,,,225.0,245.0,211.0,14.0,20.0,,93.78 -2322791,2022-06-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2322792,2022-06-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2322793,2022-06-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2322794,2022-06-17,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2322795,2022-06-17,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2322796,2022-06-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2322797,2022-06-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2322798,2022-06-17,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322799,2022-06-17,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322800,2022-06-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2322801,2022-06-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322802,2022-06-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2322803,2022-06-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322804,2022-06-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322805,2022-06-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2322806,2022-06-17,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2322807,2022-06-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322808,2022-06-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322809,2022-06-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322810,2022-06-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322811,2022-06-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322812,2022-06-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2322813,2022-06-17,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2322814,2022-06-17,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2322815,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2322816,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322817,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322818,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2322819,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2322820,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,261,Room Based Capacity,,,,,,225.0,235.0,225.0,0.0,10.0,,100.0 -2322821,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,310,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2322822,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322823,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2322824,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322825,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2322826,2022-06-17,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322827,2022-06-17,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322828,2022-06-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322829,2022-06-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322830,2022-06-17,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2322831,2022-06-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322832,2022-06-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2322833,2022-06-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2322834,2022-06-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322835,2022-06-17,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2322836,2022-06-17,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322837,2022-06-17,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322838,2022-06-17,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322839,2022-06-17,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322840,2022-06-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2322841,2022-06-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322842,2022-06-17,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2322843,2022-06-17,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322844,2022-06-17,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322845,2022-06-17,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,228,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322846,2022-06-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322847,2022-06-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2322848,2022-06-17,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322849,2022-06-17,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322850,2022-06-17,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322851,2022-06-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2322852,2022-06-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2322853,2022-06-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322854,2022-06-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322855,2022-06-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322856,2022-06-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322857,2022-06-17,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322858,2022-06-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322859,2022-06-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322860,2022-06-17,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322861,2022-06-17,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322862,2022-06-17,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322863,2022-06-17,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2322864,2022-06-17,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322865,2022-06-17,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2322866,2022-06-17,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2322867,2022-06-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322868,2022-06-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322869,2022-06-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322870,2022-06-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2322871,2022-06-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322872,2022-06-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2322873,2022-06-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2322874,2022-06-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2322875,2022-06-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2322876,2022-06-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2322877,2022-06-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2322878,2022-06-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2322879,2022-06-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,438,Room Based Capacity,,,,,,133.0,118.0,133.0,0.0,0.0,,100.0 -2322880,2022-06-18,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2322881,2022-06-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2322882,2022-06-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2322883,2022-06-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2322884,2022-06-18,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322885,2022-06-18,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2322886,2022-06-18,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2322887,2022-06-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2322888,2022-06-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,7.0,12.0,7.0,0.0,5.0,,100.0 -2322889,2022-06-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2322890,2022-06-18,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322891,2022-06-18,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2322892,2022-06-18,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2322893,2022-06-18,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2322894,2022-06-18,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,137,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2322895,2022-06-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,124,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2322896,2022-06-18,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2322897,2022-06-18,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2322898,2022-06-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322899,2022-06-18,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2322900,2022-06-18,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322901,2022-06-18,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2322902,2022-06-18,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2322903,2022-06-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,107.0,118.0,107.0,0.0,11.0,,100.0 -2322904,2022-06-18,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,2,Room Based Capacity,,,,,,30.0,30.0,2.0,28.0,0.0,,6.67 -2322905,2022-06-18,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2322906,2022-06-18,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2322907,2022-06-18,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322908,2022-06-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2322909,2022-06-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2322910,2022-06-18,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2322911,2022-06-18,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2322912,2022-06-18,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2322913,2022-06-18,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2322914,2022-06-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2322915,2022-06-18,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2322916,2022-06-18,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2322917,2022-06-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2322918,2022-06-18,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2322919,2022-06-18,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322920,2022-06-18,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322921,2022-06-18,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322922,2022-06-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,47,Bed Based Capacity,49.0,50.0,47.0,2.0,1.0,,,,,,95.92, -2322923,2022-06-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,227,Room Based Capacity,,,,,,225.0,245.0,211.0,14.0,20.0,,93.78 -2322924,2022-06-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2322925,2022-06-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2322926,2022-06-18,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2322927,2022-06-18,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2322928,2022-06-18,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2322929,2022-06-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2322930,2022-06-18,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2322931,2022-06-18,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2322932,2022-06-18,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2322933,2022-06-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2322934,2022-06-18,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2322935,2022-06-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322936,2022-06-18,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2322937,2022-06-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322938,2022-06-18,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2322939,2022-06-18,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2322940,2022-06-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322941,2022-06-18,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2322942,2022-06-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322943,2022-06-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2322944,2022-06-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2322945,2022-06-18,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2322946,2022-06-18,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2322947,2022-06-18,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2322948,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2322949,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322950,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2322951,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2322952,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2322953,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2322954,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2322955,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2322956,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2322957,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2322958,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2322959,2022-06-18,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2322960,2022-06-18,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2322961,2022-06-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2322962,2022-06-18,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322963,2022-06-18,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2322964,2022-06-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2322965,2022-06-18,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2322966,2022-06-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2322967,2022-06-18,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2322968,2022-06-18,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322969,2022-06-18,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2322970,2022-06-18,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2322971,2022-06-18,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2322972,2022-06-18,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2322973,2022-06-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322974,2022-06-18,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2322975,2022-06-18,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2322976,2022-06-18,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2322977,2022-06-18,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2322978,2022-06-18,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,228,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2322979,2022-06-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2322980,2022-06-18,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2322981,2022-06-18,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2322982,2022-06-18,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2322983,2022-06-18,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2322984,2022-06-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2322985,2022-06-18,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2322986,2022-06-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2322987,2022-06-18,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2322988,2022-06-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2322989,2022-06-18,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2322990,2022-06-18,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2322991,2022-06-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2322992,2022-06-18,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2322993,2022-06-18,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2322994,2022-06-18,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2322995,2022-06-18,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2322996,2022-06-18,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2322997,2022-06-18,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2322998,2022-06-18,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2322999,2022-06-18,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323000,2022-06-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323001,2022-06-18,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323002,2022-06-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323003,2022-06-18,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323004,2022-06-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323005,2022-06-18,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2323006,2022-06-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2323007,2022-06-18,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2323008,2022-06-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2323009,2022-06-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323010,2022-06-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323011,2022-06-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,79.0,100.0,78.0,1.0,21.0,,98.73 -2323012,2022-06-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,445,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2323013,2022-06-19,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323014,2022-06-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2323015,2022-06-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323016,2022-06-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323017,2022-06-19,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323018,2022-06-19,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323019,2022-06-19,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2323020,2022-06-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2323021,2022-06-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,7.0,12.0,7.0,0.0,5.0,,100.0 -2323022,2022-06-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323023,2022-06-19,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323024,2022-06-19,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2323025,2022-06-19,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2323026,2022-06-19,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2323027,2022-06-19,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,137,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2323028,2022-06-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,124,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2323029,2022-06-19,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323030,2022-06-19,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2323031,2022-06-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2323032,2022-06-19,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323033,2022-06-19,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323034,2022-06-19,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323035,2022-06-19,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2323036,2022-06-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,106.0,118.0,106.0,0.0,12.0,,100.0 -2323037,2022-06-19,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,30.0,30.0,3.0,27.0,0.0,,10.0 -2323038,2022-06-19,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2323039,2022-06-19,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2323040,2022-06-19,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323041,2022-06-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2323042,2022-06-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323043,2022-06-19,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2323044,2022-06-19,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323045,2022-06-19,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323046,2022-06-19,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2323047,2022-06-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323048,2022-06-19,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2323049,2022-06-19,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323050,2022-06-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2323051,2022-06-19,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2323052,2022-06-19,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323053,2022-06-19,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323054,2022-06-19,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323055,2022-06-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2323056,2022-06-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,227,Room Based Capacity,,,,,,225.0,245.0,211.0,14.0,20.0,,93.78 -2323057,2022-06-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323058,2022-06-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323059,2022-06-19,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323060,2022-06-19,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323061,2022-06-19,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2323062,2022-06-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323063,2022-06-19,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2323064,2022-06-19,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323065,2022-06-19,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323066,2022-06-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2323067,2022-06-19,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323068,2022-06-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323069,2022-06-19,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323070,2022-06-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323071,2022-06-19,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,261.0,271.0,261.0,0.0,10.0,,100.0 -2323072,2022-06-19,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2323073,2022-06-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323074,2022-06-19,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2323075,2022-06-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323076,2022-06-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323077,2022-06-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323078,2022-06-19,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2323079,2022-06-19,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2323080,2022-06-19,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2323081,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2323082,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323083,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323084,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2323085,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2323086,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,259,Room Based Capacity,,,,,,223.0,235.0,223.0,0.0,12.0,,100.0 -2323087,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,309,Room Based Capacity,,,,,,273.0,287.0,273.0,0.0,14.0,,100.0 -2323088,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2323089,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2323090,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2323091,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2323092,2022-06-19,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2323093,2022-06-19,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2323094,2022-06-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2323095,2022-06-19,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323096,2022-06-19,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323097,2022-06-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323098,2022-06-19,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2323099,2022-06-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2323100,2022-06-19,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2323101,2022-06-19,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323102,2022-06-19,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323103,2022-06-19,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2323104,2022-06-19,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,26.0,26.0,26.0,0.0,0.0,,,,,,100.0, -2323105,2022-06-19,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2323106,2022-06-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323107,2022-06-19,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2323108,2022-06-19,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2323109,2022-06-19,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,28.0,26.0,1.0,1.0,,,,,,96.3, -2323110,2022-06-19,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2323111,2022-06-19,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,228,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2323112,2022-06-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2323113,2022-06-19,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2323114,2022-06-19,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2323115,2022-06-19,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2323116,2022-06-19,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323117,2022-06-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2323118,2022-06-19,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2323119,2022-06-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323120,2022-06-19,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323121,2022-06-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,39.0,39.0,38.0,1.0,0.0,,,,,,97.44, -2323122,2022-06-19,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2323123,2022-06-19,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323124,2022-06-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2323125,2022-06-19,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2323126,2022-06-19,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2323127,2022-06-19,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2323128,2022-06-19,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323129,2022-06-19,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2323130,2022-06-19,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323131,2022-06-19,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323132,2022-06-19,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323133,2022-06-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323134,2022-06-19,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323135,2022-06-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323136,2022-06-19,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2323137,2022-06-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323138,2022-06-19,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2323139,2022-06-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2323140,2022-06-19,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2323141,2022-06-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,318,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2323142,2022-06-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323143,2022-06-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323144,2022-06-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2323145,2022-06-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,446,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2323146,2022-06-20,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323147,2022-06-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2323148,2022-06-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323149,2022-06-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323150,2022-06-20,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323151,2022-06-20,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323152,2022-06-20,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2323153,2022-06-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2323154,2022-06-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,8.0,12.0,7.0,1.0,4.0,,87.5 -2323155,2022-06-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323156,2022-06-20,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323157,2022-06-20,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2323158,2022-06-20,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,141,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2323159,2022-06-20,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,99.0,100.0,98.0,1.0,1.0,,98.99 -2323160,2022-06-20,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,137,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2323161,2022-06-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,122,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323162,2022-06-20,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323163,2022-06-20,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2323164,2022-06-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323165,2022-06-20,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323166,2022-06-20,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323167,2022-06-20,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323168,2022-06-20,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2323169,2022-06-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,104.0,118.0,104.0,0.0,14.0,,100.0 -2323170,2022-06-20,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,30.0,30.0,4.0,26.0,0.0,,13.33 -2323171,2022-06-20,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2323172,2022-06-20,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2323173,2022-06-20,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323174,2022-06-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2323175,2022-06-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323176,2022-06-20,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,22.0,22.0,21.0,1.0,0.0,,,,,,95.45, -2323177,2022-06-20,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323178,2022-06-20,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2323179,2022-06-20,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,65.0,66.0,63.0,2.0,1.0,,96.92 -2323180,2022-06-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323181,2022-06-20,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2323182,2022-06-20,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323183,2022-06-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2323184,2022-06-20,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2323185,2022-06-20,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323186,2022-06-20,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323187,2022-06-20,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323188,2022-06-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2323189,2022-06-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,226,Room Based Capacity,,,,,,225.0,245.0,211.0,14.0,20.0,,93.78 -2323190,2022-06-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323191,2022-06-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323192,2022-06-20,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323193,2022-06-20,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323194,2022-06-20,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2323195,2022-06-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2323196,2022-06-20,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2323197,2022-06-20,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323198,2022-06-20,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323199,2022-06-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2323200,2022-06-20,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323201,2022-06-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2323202,2022-06-20,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323203,2022-06-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323204,2022-06-20,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,269,Room Based Capacity,,,,,,262.0,271.0,261.0,1.0,9.0,,99.62 -2323205,2022-06-20,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2323206,2022-06-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323207,2022-06-20,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2323208,2022-06-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323209,2022-06-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323210,2022-06-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323211,2022-06-20,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2323212,2022-06-20,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2323213,2022-06-20,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2323214,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,55.0,70.0,51.0,4.0,15.0,,,,,,92.73, -2323215,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323216,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323217,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2323218,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2323219,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,261,Room Based Capacity,,,,,,225.0,235.0,225.0,0.0,10.0,,100.0 -2323220,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,311,Room Based Capacity,,,,,,274.0,287.0,274.0,0.0,13.0,,100.0 -2323221,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2323222,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2323223,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2323224,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2323225,2022-06-20,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2323226,2022-06-20,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2323227,2022-06-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323228,2022-06-20,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323229,2022-06-20,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323230,2022-06-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323231,2022-06-20,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2323232,2022-06-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2323233,2022-06-20,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2323234,2022-06-20,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323235,2022-06-20,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323236,2022-06-20,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2323237,2022-06-20,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,26.0,23.0,1.0,2.0,,,,,,95.83, -2323238,2022-06-20,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2323239,2022-06-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323240,2022-06-20,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2323241,2022-06-20,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2323242,2022-06-20,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2323243,2022-06-20,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2323244,2022-06-20,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,228,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2323245,2022-06-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2323246,2022-06-20,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2323247,2022-06-20,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2323248,2022-06-20,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2323249,2022-06-20,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323250,2022-06-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2323251,2022-06-20,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2323252,2022-06-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323253,2022-06-20,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323254,2022-06-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2323255,2022-06-20,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2323256,2022-06-20,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323257,2022-06-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2323258,2022-06-20,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2323259,2022-06-20,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2323260,2022-06-20,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2323261,2022-06-20,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323262,2022-06-20,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2323263,2022-06-20,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323264,2022-06-20,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323265,2022-06-20,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323266,2022-06-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323267,2022-06-20,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2323268,2022-06-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2323269,2022-06-20,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323270,2022-06-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323271,2022-06-20,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2323272,2022-06-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2323273,2022-06-20,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323274,2022-06-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,319,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2323275,2022-06-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323276,2022-06-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323277,2022-06-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2323278,2022-06-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,446,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2323279,2022-06-21,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323280,2022-06-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2323281,2022-06-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323282,2022-06-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323283,2022-06-21,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323284,2022-06-21,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323285,2022-06-21,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,65.0,65.0,64.0,1.0,0.0,,98.46 -2323286,2022-06-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2323287,2022-06-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,7.0,12.0,7.0,0.0,5.0,,100.0 -2323288,2022-06-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323289,2022-06-21,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2323290,2022-06-21,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2323291,2022-06-21,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2323292,2022-06-21,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2323293,2022-06-21,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,137,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2323294,2022-06-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,120,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323295,2022-06-21,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323296,2022-06-21,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2323297,2022-06-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323298,2022-06-21,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323299,2022-06-21,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323300,2022-06-21,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323301,2022-06-21,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2323302,2022-06-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,107.0,118.0,107.0,0.0,11.0,,100.0 -2323303,2022-06-21,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,30.0,30.0,6.0,24.0,0.0,,20.0 -2323304,2022-06-21,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2323305,2022-06-21,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2323306,2022-06-21,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323307,2022-06-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2323308,2022-06-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323309,2022-06-21,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2323310,2022-06-21,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323311,2022-06-21,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2323312,2022-06-21,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2323313,2022-06-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323314,2022-06-21,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2323315,2022-06-21,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323316,2022-06-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2323317,2022-06-21,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2323318,2022-06-21,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323319,2022-06-21,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323320,2022-06-21,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323321,2022-06-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2323322,2022-06-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,224,Room Based Capacity,,,,,,227.0,245.0,211.0,16.0,18.0,,92.95 -2323323,2022-06-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323324,2022-06-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323325,2022-06-21,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323326,2022-06-21,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323327,2022-06-21,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2323328,2022-06-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323329,2022-06-21,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2323330,2022-06-21,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323331,2022-06-21,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323332,2022-06-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,37.0,35.0,1.0,1.0,,,,,,97.22, -2323333,2022-06-21,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323334,2022-06-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323335,2022-06-21,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323336,2022-06-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323337,2022-06-21,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2323338,2022-06-21,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2323339,2022-06-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323340,2022-06-21,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2323341,2022-06-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323342,2022-06-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323343,2022-06-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323344,2022-06-21,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2323345,2022-06-21,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2323346,2022-06-21,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2323347,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2323348,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323349,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323350,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2323351,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2323352,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,260,Room Based Capacity,,,,,,225.0,235.0,225.0,0.0,10.0,,100.0 -2323353,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,314,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2323354,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2323355,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2323356,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2323357,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2323358,2022-06-21,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2323359,2022-06-21,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2323360,2022-06-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323361,2022-06-21,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323362,2022-06-21,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323363,2022-06-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323364,2022-06-21,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2323365,2022-06-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2323366,2022-06-21,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2323367,2022-06-21,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323368,2022-06-21,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323369,2022-06-21,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2323370,2022-06-21,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,26.0,21.0,0.0,5.0,,,,,,100.0, -2323371,2022-06-21,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2323372,2022-06-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323373,2022-06-21,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2323374,2022-06-21,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2323375,2022-06-21,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,28.0,25.0,0.0,3.0,,,,,,100.0, -2323376,2022-06-21,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2323377,2022-06-21,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,229,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2323378,2022-06-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2323379,2022-06-21,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2323380,2022-06-21,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2323381,2022-06-21,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2323382,2022-06-21,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323383,2022-06-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2323384,2022-06-21,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2323385,2022-06-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323386,2022-06-21,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323387,2022-06-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2323388,2022-06-21,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2323389,2022-06-21,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323390,2022-06-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2323391,2022-06-21,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2323392,2022-06-21,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2323393,2022-06-21,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2323394,2022-06-21,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323395,2022-06-21,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2323396,2022-06-21,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323397,2022-06-21,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323398,2022-06-21,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323399,2022-06-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323400,2022-06-21,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2323401,2022-06-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323402,2022-06-21,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323403,2022-06-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2323404,2022-06-21,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,14.0,14.0,12.0,2.0,0.0,,,,,,85.71, -2323405,2022-06-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2323406,2022-06-21,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323407,2022-06-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,315,Room Based Capacity,,,,,,80.0,80.0,79.0,1.0,0.0,,98.75 -2323408,2022-06-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,49,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323409,2022-06-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323410,2022-06-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2323411,2022-06-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,450,Room Based Capacity,,,,,,136.0,118.0,136.0,0.0,0.0,,100.0 -2323412,2022-06-22,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323413,2022-06-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2323414,2022-06-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323415,2022-06-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323416,2022-06-22,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323417,2022-06-22,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323418,2022-06-22,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2323419,2022-06-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2323420,2022-06-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,7.0,12.0,7.0,0.0,5.0,,100.0 -2323421,2022-06-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323422,2022-06-22,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2323423,2022-06-22,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2323424,2022-06-22,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2323425,2022-06-22,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2323426,2022-06-22,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,137,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2323427,2022-06-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,120,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323428,2022-06-22,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323429,2022-06-22,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2323430,2022-06-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323431,2022-06-22,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323432,2022-06-22,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323433,2022-06-22,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323434,2022-06-22,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,37.0,37.0,36.0,1.0,0.0,,97.3 -2323435,2022-06-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,157,Room Based Capacity,,,,,,108.0,118.0,108.0,0.0,10.0,,100.0 -2323436,2022-06-22,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,30.0,30.0,7.0,23.0,0.0,,23.33 -2323437,2022-06-22,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2323438,2022-06-22,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2323439,2022-06-22,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323440,2022-06-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2323441,2022-06-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323442,2022-06-22,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2323443,2022-06-22,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323444,2022-06-22,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2323445,2022-06-22,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,64.0,66.0,64.0,0.0,2.0,,100.0 -2323446,2022-06-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323447,2022-06-22,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2323448,2022-06-22,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323449,2022-06-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2323450,2022-06-22,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2323451,2022-06-22,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323452,2022-06-22,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323453,2022-06-22,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323454,2022-06-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2323455,2022-06-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,224,Room Based Capacity,,,,,,227.0,245.0,211.0,16.0,18.0,,92.95 -2323456,2022-06-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323457,2022-06-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323458,2022-06-22,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323459,2022-06-22,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323460,2022-06-22,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2323461,2022-06-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323462,2022-06-22,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2323463,2022-06-22,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323464,2022-06-22,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323465,2022-06-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2323466,2022-06-22,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323467,2022-06-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323468,2022-06-22,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323469,2022-06-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323470,2022-06-22,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2323471,2022-06-22,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2323472,2022-06-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323473,2022-06-22,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2323474,2022-06-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323475,2022-06-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323476,2022-06-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323477,2022-06-22,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2323478,2022-06-22,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2323479,2022-06-22,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2323480,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2323481,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323482,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323483,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2323484,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2323485,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,261,Room Based Capacity,,,,,,226.0,235.0,226.0,0.0,9.0,,100.0 -2323486,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,313,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2323487,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2323488,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2323489,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2323490,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2323491,2022-06-22,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2323492,2022-06-22,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2323493,2022-06-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323494,2022-06-22,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323495,2022-06-22,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323496,2022-06-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323497,2022-06-22,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2323498,2022-06-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2323499,2022-06-22,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2323500,2022-06-22,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323501,2022-06-22,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323502,2022-06-22,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323503,2022-06-22,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2323504,2022-06-22,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2323505,2022-06-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323506,2022-06-22,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2323507,2022-06-22,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2323508,2022-06-22,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2323509,2022-06-22,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2323510,2022-06-22,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,229,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2323511,2022-06-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2323512,2022-06-22,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2323513,2022-06-22,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2323514,2022-06-22,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2323515,2022-06-22,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2323516,2022-06-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2323517,2022-06-22,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2323518,2022-06-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323519,2022-06-22,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323520,2022-06-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2323521,2022-06-22,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2323522,2022-06-22,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323523,2022-06-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2323524,2022-06-22,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2323525,2022-06-22,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2323526,2022-06-22,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2323527,2022-06-22,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323528,2022-06-22,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2323529,2022-06-22,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323530,2022-06-22,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323531,2022-06-22,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323532,2022-06-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323533,2022-06-22,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2323534,2022-06-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323535,2022-06-22,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323536,2022-06-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323537,2022-06-22,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2323538,2022-06-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,9.0,10.0,9.0,0.0,1.0,,,,,,100.0, -2323539,2022-06-22,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2323540,2022-06-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2323541,2022-06-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323542,2022-06-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323543,2022-06-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,249,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2323544,2022-06-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,450,Room Based Capacity,,,,,,136.0,118.0,136.0,0.0,0.0,,100.0 -2323545,2022-06-23,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323546,2022-06-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2323547,2022-06-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323548,2022-06-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323549,2022-06-23,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323550,2022-06-23,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323551,2022-06-23,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,206,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2323552,2022-06-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,80.0,83.0,78.0,2.0,3.0,,97.5 -2323553,2022-06-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,14,Room Based Capacity,,,,,,8.0,12.0,7.0,1.0,4.0,,87.5 -2323554,2022-06-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323555,2022-06-23,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2323556,2022-06-23,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2323557,2022-06-23,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,141,Room Based Capacity,,,,,,74.0,86.0,74.0,0.0,12.0,,100.0 -2323558,2022-06-23,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2323559,2022-06-23,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,132,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2323560,2022-06-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,118,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2323561,2022-06-23,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323562,2022-06-23,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2323563,2022-06-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2323564,2022-06-23,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323565,2022-06-23,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323566,2022-06-23,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323567,2022-06-23,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2323568,2022-06-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,108.0,118.0,108.0,0.0,10.0,,100.0 -2323569,2022-06-23,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,30.0,30.0,10.0,20.0,0.0,,33.33 -2323570,2022-06-23,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2323571,2022-06-23,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2323572,2022-06-23,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323573,2022-06-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,51.0,51.0,39.0,12.0,0.0,,,,,,76.47, -2323574,2022-06-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323575,2022-06-23,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2323576,2022-06-23,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323577,2022-06-23,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2323578,2022-06-23,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,64.0,66.0,64.0,0.0,2.0,,100.0 -2323579,2022-06-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323580,2022-06-23,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2323581,2022-06-23,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323582,2022-06-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,2,Bed Based Capacity,2.0,2.0,2.0,0.0,0.0,,,,,,100.0, -2323583,2022-06-23,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323584,2022-06-23,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323585,2022-06-23,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323586,2022-06-23,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323587,2022-06-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2323588,2022-06-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,225,Room Based Capacity,,,,,,227.0,245.0,212.0,15.0,18.0,,93.39 -2323589,2022-06-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323590,2022-06-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323591,2022-06-23,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323592,2022-06-23,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323593,2022-06-23,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2323594,2022-06-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323595,2022-06-23,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2323596,2022-06-23,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323597,2022-06-23,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323598,2022-06-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2323599,2022-06-23,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323600,2022-06-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323601,2022-06-23,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323602,2022-06-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323603,2022-06-23,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2323604,2022-06-23,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2323605,2022-06-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323606,2022-06-23,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2323607,2022-06-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323608,2022-06-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,25.0,24.0,0.0,1.0,,,,,,100.0, -2323609,2022-06-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323610,2022-06-23,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2323611,2022-06-23,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2323612,2022-06-23,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2323613,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2323614,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323615,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323616,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2323617,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2323618,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,262,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2323619,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,316,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2323620,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2323621,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2323622,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2323623,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2323624,2022-06-23,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2323625,2022-06-23,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2323626,2022-06-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323627,2022-06-23,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323628,2022-06-23,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323629,2022-06-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323630,2022-06-23,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2323631,2022-06-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2323632,2022-06-23,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2323633,2022-06-23,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323634,2022-06-23,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323635,2022-06-23,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2323636,2022-06-23,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2323637,2022-06-23,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2323638,2022-06-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323639,2022-06-23,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2323640,2022-06-23,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2323641,2022-06-23,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,28.0,20.0,0.0,8.0,,,,,,100.0, -2323642,2022-06-23,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2323643,2022-06-23,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,229,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2323644,2022-06-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2323645,2022-06-23,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2323646,2022-06-23,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2323647,2022-06-23,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2323648,2022-06-23,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2323649,2022-06-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,129.0,131.0,129.0,0.0,2.0,,100.0 -2323650,2022-06-23,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2323651,2022-06-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323652,2022-06-23,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323653,2022-06-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2323654,2022-06-23,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2323655,2022-06-23,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323656,2022-06-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2323657,2022-06-23,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2323658,2022-06-23,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2323659,2022-06-23,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2323660,2022-06-23,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323661,2022-06-23,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,97,Room Based Capacity,,,,,,27.0,27.0,27.0,0.0,0.0,,100.0 -2323662,2022-06-23,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323663,2022-06-23,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2323664,2022-06-23,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323665,2022-06-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323666,2022-06-23,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323667,2022-06-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323668,2022-06-23,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323669,2022-06-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2323670,2022-06-23,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2323671,2022-06-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323672,2022-06-23,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2323673,2022-06-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2323674,2022-06-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323675,2022-06-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323676,2022-06-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2323677,2022-06-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,443,Room Based Capacity,,,,,,134.0,118.0,134.0,0.0,0.0,,100.0 -2323678,2022-06-24,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323679,2022-06-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2323680,2022-06-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323681,2022-06-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323682,2022-06-24,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2323683,2022-06-24,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323684,2022-06-24,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,206,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2323685,2022-06-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,81.0,83.0,78.0,3.0,2.0,,96.3 -2323686,2022-06-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2323687,2022-06-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323688,2022-06-24,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2323689,2022-06-24,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2323690,2022-06-24,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,141,Room Based Capacity,,,,,,74.0,86.0,74.0,0.0,12.0,,100.0 -2323691,2022-06-24,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2323692,2022-06-24,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,132,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2323693,2022-06-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323694,2022-06-24,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323695,2022-06-24,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2323696,2022-06-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323697,2022-06-24,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323698,2022-06-24,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323699,2022-06-24,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323700,2022-06-24,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2323701,2022-06-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,109.0,118.0,108.0,1.0,9.0,,99.08 -2323702,2022-06-24,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,30.0,30.0,10.0,20.0,0.0,,33.33 -2323703,2022-06-24,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2323704,2022-06-24,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2323705,2022-06-24,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323706,2022-06-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2323707,2022-06-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323708,2022-06-24,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2323709,2022-06-24,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323710,2022-06-24,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323711,2022-06-24,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2323712,2022-06-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323713,2022-06-24,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2323714,2022-06-24,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323715,2022-06-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2323716,2022-06-24,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323717,2022-06-24,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323718,2022-06-24,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323719,2022-06-24,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323720,2022-06-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2323721,2022-06-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,224,Room Based Capacity,,,,,,227.0,245.0,211.0,16.0,18.0,,92.95 -2323722,2022-06-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323723,2022-06-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323724,2022-06-24,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323725,2022-06-24,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323726,2022-06-24,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2323727,2022-06-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323728,2022-06-24,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323729,2022-06-24,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323730,2022-06-24,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323731,2022-06-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2323732,2022-06-24,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323733,2022-06-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323734,2022-06-24,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323735,2022-06-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323736,2022-06-24,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2323737,2022-06-24,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2323738,2022-06-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323739,2022-06-24,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2323740,2022-06-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2323741,2022-06-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323742,2022-06-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323743,2022-06-24,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2323744,2022-06-24,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2323745,2022-06-24,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2323746,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2323747,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323748,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323749,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2323750,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2323751,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,228.0,235.0,228.0,0.0,7.0,,100.0 -2323752,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,316,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2323753,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2323754,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2323755,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2323756,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2323757,2022-06-24,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2323758,2022-06-24,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2323759,2022-06-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323760,2022-06-24,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323761,2022-06-24,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323762,2022-06-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323763,2022-06-24,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,17.0,17.0,14.0,3.0,0.0,,,,,,82.35, -2323764,2022-06-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2323765,2022-06-24,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2323766,2022-06-24,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323767,2022-06-24,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323768,2022-06-24,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323769,2022-06-24,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2323770,2022-06-24,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2323771,2022-06-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323772,2022-06-24,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2323773,2022-06-24,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2323774,2022-06-24,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,28.0,21.0,0.0,7.0,,,,,,100.0, -2323775,2022-06-24,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2323776,2022-06-24,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,229,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2323777,2022-06-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2323778,2022-06-24,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2323779,2022-06-24,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2323780,2022-06-24,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2323781,2022-06-24,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2323782,2022-06-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2323783,2022-06-24,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2323784,2022-06-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323785,2022-06-24,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2323786,2022-06-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2323787,2022-06-24,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2323788,2022-06-24,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323789,2022-06-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2323790,2022-06-24,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2323791,2022-06-24,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2323792,2022-06-24,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2323793,2022-06-24,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323794,2022-06-24,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2323795,2022-06-24,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323796,2022-06-24,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2323797,2022-06-24,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323798,2022-06-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323799,2022-06-24,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323800,2022-06-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323801,2022-06-24,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323802,2022-06-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323803,2022-06-24,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2323804,2022-06-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323805,2022-06-24,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2323806,2022-06-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2323807,2022-06-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323808,2022-06-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323809,2022-06-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2323810,2022-06-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,447,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2323811,2022-06-25,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323812,2022-06-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2323813,2022-06-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323814,2022-06-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323815,2022-06-25,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323816,2022-06-25,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323817,2022-06-25,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,204,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2323818,2022-06-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,79.0,83.0,77.0,2.0,4.0,,97.47 -2323819,2022-06-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2323820,2022-06-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323821,2022-06-25,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2323822,2022-06-25,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2323823,2022-06-25,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2323824,2022-06-25,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2323825,2022-06-25,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2323826,2022-06-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,117,Room Based Capacity,,,,,,43.0,40.0,42.0,1.0,0.0,,97.67 -2323827,2022-06-25,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323828,2022-06-25,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2323829,2022-06-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323830,2022-06-25,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323831,2022-06-25,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323832,2022-06-25,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323833,2022-06-25,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2323834,2022-06-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,159,Room Based Capacity,,,,,,109.0,118.0,109.0,0.0,9.0,,100.0 -2323835,2022-06-25,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,30.0,30.0,10.0,20.0,0.0,,33.33 -2323836,2022-06-25,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2323837,2022-06-25,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2323838,2022-06-25,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323839,2022-06-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2323840,2022-06-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323841,2022-06-25,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2323842,2022-06-25,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323843,2022-06-25,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323844,2022-06-25,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2323845,2022-06-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323846,2022-06-25,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2323847,2022-06-25,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323848,2022-06-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2323849,2022-06-25,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323850,2022-06-25,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323851,2022-06-25,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323852,2022-06-25,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323853,2022-06-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2323854,2022-06-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,224,Room Based Capacity,,,,,,227.0,245.0,211.0,16.0,18.0,,92.95 -2323855,2022-06-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323856,2022-06-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323857,2022-06-25,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323858,2022-06-25,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323859,2022-06-25,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2323860,2022-06-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323861,2022-06-25,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323862,2022-06-25,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323863,2022-06-25,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323864,2022-06-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2323865,2022-06-25,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323866,2022-06-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323867,2022-06-25,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323868,2022-06-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323869,2022-06-25,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2323870,2022-06-25,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2323871,2022-06-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323872,2022-06-25,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2323873,2022-06-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2323874,2022-06-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2323875,2022-06-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2323876,2022-06-25,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2323877,2022-06-25,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2323878,2022-06-25,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2323879,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2323880,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323881,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2323882,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2323883,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2323884,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,262,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2323885,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,315,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2323886,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2323887,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2323888,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2323889,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2323890,2022-06-25,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2323891,2022-06-25,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2323892,2022-06-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2323893,2022-06-25,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323894,2022-06-25,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2323895,2022-06-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323896,2022-06-25,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2323897,2022-06-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2323898,2022-06-25,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2323899,2022-06-25,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323900,2022-06-25,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323901,2022-06-25,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323902,2022-06-25,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2323903,2022-06-25,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2323904,2022-06-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323905,2022-06-25,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2323906,2022-06-25,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2323907,2022-06-25,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,21.0,28.0,20.0,1.0,7.0,,,,,,95.24, -2323908,2022-06-25,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2323909,2022-06-25,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,229,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2323910,2022-06-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2323911,2022-06-25,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2323912,2022-06-25,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2323913,2022-06-25,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2323914,2022-06-25,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2323915,2022-06-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2323916,2022-06-25,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2323917,2022-06-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323918,2022-06-25,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2323919,2022-06-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2323920,2022-06-25,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2323921,2022-06-25,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323922,2022-06-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2323923,2022-06-25,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2323924,2022-06-25,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2323925,2022-06-25,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2323926,2022-06-25,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323927,2022-06-25,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2323928,2022-06-25,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323929,2022-06-25,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2323930,2022-06-25,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323931,2022-06-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2323932,2022-06-25,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323933,2022-06-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2323934,2022-06-25,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2323935,2022-06-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2323936,2022-06-25,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323937,2022-06-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2323938,2022-06-25,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2323939,2022-06-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2323940,2022-06-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2323941,2022-06-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2323942,2022-06-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,254,Room Based Capacity,,,,,,79.0,100.0,79.0,0.0,21.0,,100.0 -2323943,2022-06-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,447,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2323944,2022-06-26,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2323945,2022-06-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2323946,2022-06-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323947,2022-06-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2323948,2022-06-26,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2323949,2022-06-26,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2323950,2022-06-26,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,207,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2323951,2022-06-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,79.0,83.0,75.0,4.0,4.0,,94.94 -2323952,2022-06-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2323953,2022-06-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2323954,2022-06-26,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2323955,2022-06-26,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2323956,2022-06-26,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2323957,2022-06-26,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,96,Room Based Capacity,,,,,,97.0,100.0,96.0,1.0,3.0,,98.97 -2323958,2022-06-26,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2323959,2022-06-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,117,Room Based Capacity,,,,,,43.0,40.0,42.0,1.0,0.0,,97.67 -2323960,2022-06-26,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2323961,2022-06-26,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2323962,2022-06-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2323963,2022-06-26,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2323964,2022-06-26,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323965,2022-06-26,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2323966,2022-06-26,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2323967,2022-06-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,159,Room Based Capacity,,,,,,109.0,118.0,109.0,0.0,9.0,,100.0 -2323968,2022-06-26,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,10,Room Based Capacity,,,,,,30.0,30.0,10.0,20.0,0.0,,33.33 -2323969,2022-06-26,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2323970,2022-06-26,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2323971,2022-06-26,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2323972,2022-06-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,51.0,51.0,39.0,12.0,0.0,,,,,,76.47, -2323973,2022-06-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2323974,2022-06-26,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2323975,2022-06-26,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2323976,2022-06-26,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2323977,2022-06-26,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,63.0,66.0,63.0,0.0,3.0,,100.0 -2323978,2022-06-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2323979,2022-06-26,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2323980,2022-06-26,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2323981,2022-06-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2323982,2022-06-26,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2323983,2022-06-26,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2323984,2022-06-26,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2323985,2022-06-26,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2323986,2022-06-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2323987,2022-06-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,224,Room Based Capacity,,,,,,227.0,245.0,211.0,16.0,18.0,,92.95 -2323988,2022-06-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2323989,2022-06-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2323990,2022-06-26,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2323991,2022-06-26,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2323992,2022-06-26,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2323993,2022-06-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2323994,2022-06-26,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2323995,2022-06-26,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2323996,2022-06-26,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2323997,2022-06-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2323998,2022-06-26,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2323999,2022-06-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324000,2022-06-26,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324001,2022-06-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324002,2022-06-26,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,266.0,271.0,266.0,0.0,5.0,,100.0 -2324003,2022-06-26,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2324004,2022-06-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324005,2022-06-26,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324006,2022-06-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2324007,2022-06-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324008,2022-06-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324009,2022-06-26,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324010,2022-06-26,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2324011,2022-06-26,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2324012,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2324013,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324014,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324015,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2324016,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,84.0,86.0,84.0,0.0,2.0,,100.0 -2324017,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,262,Room Based Capacity,,,,,,227.0,235.0,227.0,0.0,8.0,,100.0 -2324018,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,313,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2324019,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324020,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2324021,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,130.0,130.0,129.0,1.0,0.0,,,,,,99.23, -2324022,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2324023,2022-06-26,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324024,2022-06-26,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324025,2022-06-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324026,2022-06-26,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324027,2022-06-26,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324028,2022-06-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324029,2022-06-26,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2324030,2022-06-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2324031,2022-06-26,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324032,2022-06-26,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324033,2022-06-26,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324034,2022-06-26,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324035,2022-06-26,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324036,2022-06-26,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324037,2022-06-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324038,2022-06-26,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2324039,2022-06-26,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324040,2022-06-26,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,28.0,21.0,0.0,7.0,,,,,,100.0, -2324041,2022-06-26,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324042,2022-06-26,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,229,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2324043,2022-06-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324044,2022-06-26,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324045,2022-06-26,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2324046,2022-06-26,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2324047,2022-06-26,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2324048,2022-06-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,129,Room Based Capacity,,,,,,130.0,131.0,129.0,1.0,1.0,,99.23 -2324049,2022-06-26,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2324050,2022-06-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324051,2022-06-26,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324052,2022-06-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324053,2022-06-26,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324054,2022-06-26,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324055,2022-06-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324056,2022-06-26,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324057,2022-06-26,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324058,2022-06-26,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324059,2022-06-26,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324060,2022-06-26,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324061,2022-06-26,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324062,2022-06-26,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324063,2022-06-26,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324064,2022-06-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324065,2022-06-26,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324066,2022-06-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324067,2022-06-26,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324068,2022-06-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2324069,2022-06-26,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324070,2022-06-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324071,2022-06-26,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2324072,2022-06-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2324073,2022-06-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2324074,2022-06-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2324075,2022-06-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,252,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2324076,2022-06-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,451,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2324077,2022-06-27,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2324078,2022-06-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2324079,2022-06-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324080,2022-06-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2324081,2022-06-27,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324082,2022-06-27,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2324083,2022-06-27,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2324084,2022-06-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,79.0,83.0,77.0,2.0,4.0,,97.47 -2324085,2022-06-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2324086,2022-06-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2324087,2022-06-27,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324088,2022-06-27,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2324089,2022-06-27,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,142,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2324090,2022-06-27,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2324091,2022-06-27,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2324092,2022-06-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2324093,2022-06-27,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2324094,2022-06-27,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2324095,2022-06-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324096,2022-06-27,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2324097,2022-06-27,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2324098,2022-06-27,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2324099,2022-06-27,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2324100,2022-06-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,105.0,118.0,105.0,0.0,13.0,,100.0 -2324101,2022-06-27,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,30.0,30.0,11.0,19.0,0.0,,36.67 -2324102,2022-06-27,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2324103,2022-06-27,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2324104,2022-06-27,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324105,2022-06-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,51.0,51.0,39.0,12.0,0.0,,,,,,76.47, -2324106,2022-06-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2324107,2022-06-27,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,22.0,22.0,19.0,3.0,0.0,,,,,,86.36, -2324108,2022-06-27,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2324109,2022-06-27,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2324110,2022-06-27,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,63.0,66.0,63.0,0.0,3.0,,100.0 -2324111,2022-06-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2324112,2022-06-27,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2324113,2022-06-27,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2324114,2022-06-27,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2324115,2022-06-27,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324116,2022-06-27,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2324117,2022-06-27,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324118,2022-06-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2324119,2022-06-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,224,Room Based Capacity,,,,,,227.0,245.0,211.0,16.0,18.0,,92.95 -2324120,2022-06-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2324121,2022-06-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2324122,2022-06-27,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,52.0,52.0,52.0,0.0,0.0,,100.0 -2324123,2022-06-27,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2324124,2022-06-27,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2324125,2022-06-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,14.0,12.0,1.0,1.0,,,,,,92.31, -2324126,2022-06-27,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2324127,2022-06-27,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2324128,2022-06-27,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2324129,2022-06-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2324130,2022-06-27,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324131,2022-06-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324132,2022-06-27,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324133,2022-06-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324134,2022-06-27,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,274,Room Based Capacity,,,,,,265.0,271.0,265.0,0.0,6.0,,100.0 -2324135,2022-06-27,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2324136,2022-06-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324137,2022-06-27,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324138,2022-06-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2324139,2022-06-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324140,2022-06-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324141,2022-06-27,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324142,2022-06-27,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2324143,2022-06-27,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2324144,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,70.0,55.0,0.0,15.0,,,,,,100.0, -2324145,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324146,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324147,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2324148,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2324149,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,263,Room Based Capacity,,,,,,228.0,235.0,228.0,0.0,7.0,,100.0 -2324150,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,317,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2324151,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324152,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2324153,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2324154,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2324155,2022-06-27,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324156,2022-06-27,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324157,2022-06-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324158,2022-06-27,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2324159,2022-06-27,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324160,2022-06-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324161,2022-06-27,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2324162,2022-06-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2324163,2022-06-27,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324164,2022-06-27,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324165,2022-06-27,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,15.0,15.0,14.0,1.0,0.0,,,,,,93.33, -2324166,2022-06-27,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324167,2022-06-27,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324168,2022-06-27,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324169,2022-06-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324170,2022-06-27,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2324171,2022-06-27,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324172,2022-06-27,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,28.0,21.0,0.0,7.0,,,,,,100.0, -2324173,2022-06-27,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324174,2022-06-27,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,229,Room Based Capacity,,,,,,76.0,76.0,76.0,0.0,0.0,,100.0 -2324175,2022-06-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324176,2022-06-27,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324177,2022-06-27,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2324178,2022-06-27,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2324179,2022-06-27,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2324180,2022-06-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2324181,2022-06-27,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2324182,2022-06-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324183,2022-06-27,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324184,2022-06-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324185,2022-06-27,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324186,2022-06-27,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324187,2022-06-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324188,2022-06-27,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324189,2022-06-27,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324190,2022-06-27,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324191,2022-06-27,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324192,2022-06-27,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324193,2022-06-27,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324194,2022-06-27,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324195,2022-06-27,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324196,2022-06-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324197,2022-06-27,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2324198,2022-06-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324199,2022-06-27,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324200,2022-06-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324201,2022-06-27,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324202,2022-06-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2324203,2022-06-27,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324204,2022-06-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2324205,2022-06-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2324206,2022-06-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2324207,2022-06-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,76.0,100.0,76.0,0.0,24.0,,100.0 -2324208,2022-06-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,456,Room Based Capacity,,,,,,137.0,118.0,137.0,0.0,0.0,,100.0 -2324209,2022-06-28,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2324210,2022-06-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,147.0,152.0,147.0,0.0,5.0,,100.0 -2324211,2022-06-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324212,2022-06-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2324213,2022-06-28,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324214,2022-06-28,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2324215,2022-06-28,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2324216,2022-06-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2324217,2022-06-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2324218,2022-06-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2324219,2022-06-28,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2324220,2022-06-28,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2324221,2022-06-28,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,142,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2324222,2022-06-28,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,98,Room Based Capacity,,,,,,98.0,100.0,98.0,0.0,2.0,,100.0 -2324223,2022-06-28,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2324224,2022-06-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2324225,2022-06-28,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2324226,2022-06-28,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2324227,2022-06-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324228,2022-06-28,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2324229,2022-06-28,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324230,2022-06-28,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2324231,2022-06-28,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,86,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2324232,2022-06-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,103.0,118.0,103.0,0.0,15.0,,100.0 -2324233,2022-06-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,30.0,5.0,0.0,25.0,,100.0 -2324234,2022-06-28,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,28.0,30.0,11.0,17.0,2.0,,39.29 -2324235,2022-06-28,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2324236,2022-06-28,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2324237,2022-06-28,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324238,2022-06-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2324239,2022-06-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2324240,2022-06-28,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2324241,2022-06-28,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2324242,2022-06-28,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2324243,2022-06-28,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,63.0,66.0,63.0,0.0,3.0,,100.0 -2324244,2022-06-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2324245,2022-06-28,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2324246,2022-06-28,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2324247,2022-06-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2324248,2022-06-28,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,42.0,42.0,39.0,3.0,0.0,,92.86 -2324249,2022-06-28,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324250,2022-06-28,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2324251,2022-06-28,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324252,2022-06-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2324253,2022-06-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,225,Room Based Capacity,,,,,,227.0,245.0,212.0,15.0,18.0,,93.39 -2324254,2022-06-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2324255,2022-06-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2324256,2022-06-28,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,53,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2324257,2022-06-28,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2324258,2022-06-28,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2324259,2022-06-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324260,2022-06-28,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2324261,2022-06-28,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2324262,2022-06-28,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2324263,2022-06-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2324264,2022-06-28,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324265,2022-06-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324266,2022-06-28,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324267,2022-06-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324268,2022-06-28,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2324269,2022-06-28,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2324270,2022-06-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324271,2022-06-28,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324272,2022-06-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2324273,2022-06-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324274,2022-06-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324275,2022-06-28,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324276,2022-06-28,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2324277,2022-06-28,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,92.0,94.0,92.0,0.0,2.0,,100.0 -2324278,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2324279,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324280,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324281,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2324282,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2324283,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,231.0,235.0,231.0,0.0,4.0,,100.0 -2324284,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,318,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2324285,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324286,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2324287,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2324288,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2324289,2022-06-28,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324290,2022-06-28,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324291,2022-06-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324292,2022-06-28,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324293,2022-06-28,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324294,2022-06-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324295,2022-06-28,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2324296,2022-06-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2324297,2022-06-28,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324298,2022-06-28,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324299,2022-06-28,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324300,2022-06-28,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324301,2022-06-28,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324302,2022-06-28,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324303,2022-06-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324304,2022-06-28,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2324305,2022-06-28,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324306,2022-06-28,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,28.0,21.0,0.0,7.0,,,,,,100.0, -2324307,2022-06-28,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324308,2022-06-28,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,75.0,76.0,75.0,0.0,1.0,,100.0 -2324309,2022-06-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324310,2022-06-28,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324311,2022-06-28,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2324312,2022-06-28,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2324313,2022-06-28,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2324314,2022-06-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,130.0,131.0,130.0,0.0,1.0,,100.0 -2324315,2022-06-28,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2324316,2022-06-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324317,2022-06-28,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324318,2022-06-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324319,2022-06-28,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324320,2022-06-28,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324321,2022-06-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324322,2022-06-28,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324323,2022-06-28,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324324,2022-06-28,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324325,2022-06-28,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324326,2022-06-28,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324327,2022-06-28,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324328,2022-06-28,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324329,2022-06-28,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324330,2022-06-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324331,2022-06-28,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324332,2022-06-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324333,2022-06-28,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324334,2022-06-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324335,2022-06-28,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324336,2022-06-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324337,2022-06-28,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324338,2022-06-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2324339,2022-06-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2324340,2022-06-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2324341,2022-06-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,245,Room Based Capacity,,,,,,76.0,100.0,76.0,0.0,24.0,,100.0 -2324342,2022-06-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,457,Room Based Capacity,,,,,,137.0,118.0,137.0,0.0,0.0,,100.0 -2324343,2022-06-29,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2324344,2022-06-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2324345,2022-06-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324346,2022-06-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2324347,2022-06-29,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324348,2022-06-29,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2324349,2022-06-29,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,208,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2324350,2022-06-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,81,Room Based Capacity,,,,,,81.0,83.0,81.0,0.0,2.0,,100.0 -2324351,2022-06-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2324352,2022-06-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2324353,2022-06-29,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324354,2022-06-29,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2324355,2022-06-29,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,142,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2324356,2022-06-29,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2324357,2022-06-29,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,141,Room Based Capacity,,,,,,39.0,43.0,39.0,0.0,4.0,,100.0 -2324358,2022-06-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2324359,2022-06-29,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2324360,2022-06-29,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2324361,2022-06-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324362,2022-06-29,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2324363,2022-06-29,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324364,2022-06-29,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2324365,2022-06-29,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2324366,2022-06-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,105.0,118.0,105.0,0.0,13.0,,100.0 -2324367,2022-06-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,30.0,5.0,0.0,25.0,,100.0 -2324368,2022-06-29,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,14,Room Based Capacity,,,,,,28.0,30.0,14.0,14.0,2.0,,50.0 -2324369,2022-06-29,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2324370,2022-06-29,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2324371,2022-06-29,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324372,2022-06-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2324373,2022-06-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2324374,2022-06-29,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2324375,2022-06-29,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2324376,2022-06-29,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2324377,2022-06-29,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2324378,2022-06-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2324379,2022-06-29,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2324380,2022-06-29,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2324381,2022-06-29,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2324382,2022-06-29,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324383,2022-06-29,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2324384,2022-06-29,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324385,2022-06-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2324386,2022-06-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,224,Room Based Capacity,,,,,,227.0,245.0,211.0,16.0,18.0,,92.95 -2324387,2022-06-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2324388,2022-06-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2324389,2022-06-29,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2324390,2022-06-29,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2324391,2022-06-29,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2324392,2022-06-29,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2324393,2022-06-29,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2324394,2022-06-29,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2324395,2022-06-29,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2324396,2022-06-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2324397,2022-06-29,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324398,2022-06-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324399,2022-06-29,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324400,2022-06-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324401,2022-06-29,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2324402,2022-06-29,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2324403,2022-06-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324404,2022-06-29,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324405,2022-06-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2324406,2022-06-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324407,2022-06-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324408,2022-06-29,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324409,2022-06-29,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2324410,2022-06-29,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2324411,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,70.0,54.0,0.0,16.0,,,,,,100.0, -2324412,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324413,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324414,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2324415,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2324416,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,231.0,235.0,231.0,0.0,4.0,,100.0 -2324417,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,316,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2324418,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324419,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2324420,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2324421,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2324422,2022-06-29,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324423,2022-06-29,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324424,2022-06-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324425,2022-06-29,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324426,2022-06-29,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324427,2022-06-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324428,2022-06-29,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,17.0,17.0,13.0,4.0,0.0,,,,,,76.47, -2324429,2022-06-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,11.0,11.0,9.0,2.0,0.0,,,,,,81.82, -2324430,2022-06-29,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324431,2022-06-29,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324432,2022-06-29,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324433,2022-06-29,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324434,2022-06-29,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324435,2022-06-29,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324436,2022-06-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324437,2022-06-29,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2324438,2022-06-29,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324439,2022-06-29,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,28.0,18.0,0.0,10.0,,,,,,100.0, -2324440,2022-06-29,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324441,2022-06-29,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,222,Room Based Capacity,,,,,,75.0,76.0,75.0,0.0,1.0,,100.0 -2324442,2022-06-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324443,2022-06-29,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324444,2022-06-29,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2324445,2022-06-29,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2324446,2022-06-29,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2324447,2022-06-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2324448,2022-06-29,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2324449,2022-06-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324450,2022-06-29,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324451,2022-06-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324452,2022-06-29,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324453,2022-06-29,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324454,2022-06-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324455,2022-06-29,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324456,2022-06-29,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324457,2022-06-29,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324458,2022-06-29,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324459,2022-06-29,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324460,2022-06-29,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324461,2022-06-29,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324462,2022-06-29,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324463,2022-06-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324464,2022-06-29,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324465,2022-06-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324466,2022-06-29,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324467,2022-06-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324468,2022-06-29,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324469,2022-06-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324470,2022-06-29,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324471,2022-06-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,312,Room Based Capacity,,,,,,79.0,80.0,78.0,1.0,1.0,,98.73 -2324472,2022-06-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2324473,2022-06-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2324474,2022-06-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,77.0,100.0,77.0,0.0,23.0,,100.0 -2324475,2022-06-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,452,Room Based Capacity,,,,,,137.0,118.0,137.0,0.0,0.0,,100.0 -2324476,2022-06-30,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,12.0,13.0,12.0,0.0,1.0,,100.0 -2324477,2022-06-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2324478,2022-06-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324479,2022-06-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2324480,2022-06-30,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324481,2022-06-30,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2324482,2022-06-30,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,203,Room Based Capacity,,,,,,64.0,65.0,63.0,1.0,1.0,,98.44 -2324483,2022-06-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2324484,2022-06-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,9.0,12.0,8.0,1.0,3.0,,88.89 -2324485,2022-06-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2324486,2022-06-30,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2324487,2022-06-30,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2324488,2022-06-30,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,144,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2324489,2022-06-30,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2324490,2022-06-30,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,136,Room Based Capacity,,,,,,38.0,43.0,38.0,0.0,5.0,,100.0 -2324491,2022-06-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2324492,2022-06-30,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2324493,2022-06-30,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2324494,2022-06-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324495,2022-06-30,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,67.0,51.0,67.0,0.0,0.0,,100.0 -2324496,2022-06-30,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324497,2022-06-30,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2324498,2022-06-30,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2324499,2022-06-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,158,Room Based Capacity,,,,,,108.0,118.0,108.0,0.0,10.0,,100.0 -2324500,2022-06-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,4.0,1.0,25.0,,80.0 -2324501,2022-06-30,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,13,Room Based Capacity,,,,,,28.0,30.0,13.0,15.0,2.0,,46.43 -2324502,2022-06-30,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2324503,2022-06-30,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2324504,2022-06-30,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324505,2022-06-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2324506,2022-06-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2324507,2022-06-30,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2324508,2022-06-30,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2324509,2022-06-30,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2324510,2022-06-30,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2324511,2022-06-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2324512,2022-06-30,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2324513,2022-06-30,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2324514,2022-06-30,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2324515,2022-06-30,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324516,2022-06-30,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2324517,2022-06-30,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324518,2022-06-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2324519,2022-06-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,226,Room Based Capacity,,,,,,227.0,245.0,213.0,14.0,18.0,,93.83 -2324520,2022-06-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2324521,2022-06-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2324522,2022-06-30,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2324523,2022-06-30,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2324524,2022-06-30,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2324525,2022-06-30,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324526,2022-06-30,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2324527,2022-06-30,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2324528,2022-06-30,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2324529,2022-06-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2324530,2022-06-30,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324531,2022-06-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2324532,2022-06-30,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324533,2022-06-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2324534,2022-06-30,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2324535,2022-06-30,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2324536,2022-06-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324537,2022-06-30,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324538,2022-06-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2324539,2022-06-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324540,2022-06-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324541,2022-06-30,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324542,2022-06-30,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2324543,2022-06-30,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2324544,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,70.0,53.0,0.0,17.0,,,,,,100.0, -2324545,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324546,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2324547,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2324548,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2324549,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,231.0,235.0,231.0,0.0,4.0,,100.0 -2324550,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,317,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2324551,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324552,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,69.0,70.0,69.0,0.0,1.0,,,,,,100.0, -2324553,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2324554,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,40.0,40.0,39.0,1.0,0.0,,,,,,97.5, -2324555,2022-06-30,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324556,2022-06-30,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324557,2022-06-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324558,2022-06-30,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324559,2022-06-30,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324560,2022-06-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324561,2022-06-30,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2324562,2022-06-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2324563,2022-06-30,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324564,2022-06-30,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324565,2022-06-30,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324566,2022-06-30,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324567,2022-06-30,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324568,2022-06-30,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324569,2022-06-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2324570,2022-06-30,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2324571,2022-06-30,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324572,2022-06-30,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,28.0,18.0,0.0,10.0,,,,,,100.0, -2324573,2022-06-30,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324574,2022-06-30,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,72.0,76.0,71.0,1.0,4.0,,98.61 -2324575,2022-06-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324576,2022-06-30,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324577,2022-06-30,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2324578,2022-06-30,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2324579,2022-06-30,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2324580,2022-06-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2324581,2022-06-30,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2324582,2022-06-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324583,2022-06-30,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324584,2022-06-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324585,2022-06-30,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324586,2022-06-30,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324587,2022-06-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324588,2022-06-30,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324589,2022-06-30,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324590,2022-06-30,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324591,2022-06-30,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2324592,2022-06-30,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324593,2022-06-30,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2324594,2022-06-30,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2324595,2022-06-30,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324596,2022-06-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324597,2022-06-30,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324598,2022-06-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2324599,2022-06-30,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324600,2022-06-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324601,2022-06-30,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324602,2022-06-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324603,2022-06-30,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324604,2022-07-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,306,Room Based Capacity,,,,,,79.0,80.0,77.0,2.0,1.0,,97.47 -2324605,2022-07-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2324606,2022-07-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2324607,2022-07-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,77.0,100.0,77.0,0.0,23.0,,100.0 -2324608,2022-07-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,456,Room Based Capacity,,,,,,138.0,118.0,138.0,0.0,0.0,,100.0 -2324609,2022-07-01,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,12.0,13.0,12.0,0.0,1.0,,100.0 -2324610,2022-07-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2324611,2022-07-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324612,2022-07-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2324613,2022-07-01,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324614,2022-07-01,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2324615,2022-07-01,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,206,Room Based Capacity,,,,,,63.0,65.0,63.0,0.0,2.0,,100.0 -2324616,2022-07-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2324617,2022-07-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2324618,2022-07-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2324619,2022-07-01,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324620,2022-07-01,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,12.0,11.0,0.0,1.0,,,,,,100.0, -2324621,2022-07-01,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,143,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2324622,2022-07-01,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2324623,2022-07-01,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,130,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2324624,2022-07-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2324625,2022-07-01,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2324626,2022-07-01,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2324627,2022-07-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324628,2022-07-01,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2324629,2022-07-01,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2324630,2022-07-01,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2324631,2022-07-01,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2324632,2022-07-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,105.0,118.0,105.0,0.0,13.0,,100.0 -2324633,2022-07-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,4.0,1.0,25.0,,80.0 -2324634,2022-07-01,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,28.0,30.0,11.0,17.0,2.0,,39.29 -2324635,2022-07-01,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2324636,2022-07-01,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2324637,2022-07-01,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324638,2022-07-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2324639,2022-07-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2324640,2022-07-01,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2324641,2022-07-01,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2324642,2022-07-01,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2324643,2022-07-01,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,63.0,66.0,61.0,2.0,3.0,,96.83 -2324644,2022-07-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2324645,2022-07-01,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2324646,2022-07-01,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2324647,2022-07-01,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324648,2022-07-01,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324649,2022-07-01,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2324650,2022-07-01,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324651,2022-07-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2324652,2022-07-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,225,Room Based Capacity,,,,,,227.0,245.0,213.0,14.0,18.0,,93.83 -2324653,2022-07-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2324654,2022-07-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2324655,2022-07-01,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2324656,2022-07-01,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2324657,2022-07-01,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2324658,2022-07-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324659,2022-07-01,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324660,2022-07-01,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2324661,2022-07-01,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2324662,2022-07-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2324663,2022-07-01,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324664,2022-07-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324665,2022-07-01,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324666,2022-07-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324667,2022-07-01,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2324668,2022-07-01,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2324669,2022-07-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324670,2022-07-01,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324671,2022-07-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2324672,2022-07-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324673,2022-07-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324674,2022-07-01,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324675,2022-07-01,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2324676,2022-07-01,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2324677,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,70.0,52.0,1.0,17.0,,,,,,98.11, -2324678,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324679,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324680,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2324681,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2324682,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,264,Room Based Capacity,,,,,,231.0,235.0,231.0,0.0,4.0,,100.0 -2324683,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,315,Room Based Capacity,,,,,,277.0,287.0,277.0,0.0,10.0,,100.0 -2324684,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324685,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2324686,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2324687,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2324688,2022-07-01,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324689,2022-07-01,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324690,2022-07-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324691,2022-07-01,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324692,2022-07-01,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324693,2022-07-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324694,2022-07-01,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2324695,2022-07-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2324696,2022-07-01,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324697,2022-07-01,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324698,2022-07-01,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324699,2022-07-01,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324700,2022-07-01,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324701,2022-07-01,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324702,2022-07-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324703,2022-07-01,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2324704,2022-07-01,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324705,2022-07-01,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,28.0,20.0,0.0,8.0,,,,,,100.0, -2324706,2022-07-01,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324707,2022-07-01,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,72.0,76.0,71.0,1.0,4.0,,98.61 -2324708,2022-07-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324709,2022-07-01,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324710,2022-07-01,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2324711,2022-07-01,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2324712,2022-07-01,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,54.0,52.0,1.0,1.0,,,,,,98.11, -2324713,2022-07-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2324714,2022-07-01,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,222,Bed Based Capacity,225.0,225.0,222.0,3.0,0.0,,,,,,98.67, -2324715,2022-07-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324716,2022-07-01,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2324717,2022-07-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324718,2022-07-01,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324719,2022-07-01,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324720,2022-07-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324721,2022-07-01,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324722,2022-07-01,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324723,2022-07-01,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324724,2022-07-01,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324725,2022-07-01,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324726,2022-07-01,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2324727,2022-07-01,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324728,2022-07-01,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324729,2022-07-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324730,2022-07-01,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324731,2022-07-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2324732,2022-07-01,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324733,2022-07-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324734,2022-07-01,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324735,2022-07-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324736,2022-07-01,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324737,2022-07-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2324738,2022-07-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2324739,2022-07-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2324740,2022-07-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,77.0,100.0,77.0,0.0,23.0,,100.0 -2324741,2022-07-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,456,Room Based Capacity,,,,,,138.0,118.0,138.0,0.0,0.0,,100.0 -2324742,2022-07-02,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,12.0,13.0,12.0,0.0,1.0,,100.0 -2324743,2022-07-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,146.0,152.0,146.0,0.0,6.0,,100.0 -2324744,2022-07-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324745,2022-07-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2324746,2022-07-02,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324747,2022-07-02,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2324748,2022-07-02,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2324749,2022-07-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,81.0,83.0,79.0,2.0,2.0,,97.53 -2324750,2022-07-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2324751,2022-07-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2324752,2022-07-02,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2324753,2022-07-02,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2324754,2022-07-02,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,144,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2324755,2022-07-02,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,100.0,100.0,99.0,1.0,0.0,,99.0 -2324756,2022-07-02,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,130,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2324757,2022-07-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2324758,2022-07-02,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2324759,2022-07-02,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2324760,2022-07-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324761,2022-07-02,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,67.0,51.0,66.0,1.0,0.0,,98.51 -2324762,2022-07-02,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,24.0,24.0,21.0,3.0,0.0,,,,,,87.5, -2324763,2022-07-02,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,62,Bed Based Capacity,63.0,63.0,62.0,1.0,0.0,,,,,,98.41, -2324764,2022-07-02,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2324765,2022-07-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,155,Room Based Capacity,,,,,,105.0,118.0,105.0,0.0,13.0,,100.0 -2324766,2022-07-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,5.0,30.0,5.0,0.0,25.0,,100.0 -2324767,2022-07-02,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,28.0,30.0,7.0,21.0,2.0,,25.0 -2324768,2022-07-02,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2324769,2022-07-02,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2324770,2022-07-02,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324771,2022-07-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2324772,2022-07-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2324773,2022-07-02,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2324774,2022-07-02,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2324775,2022-07-02,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2324776,2022-07-02,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,63.0,66.0,61.0,2.0,3.0,,96.83 -2324777,2022-07-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2324778,2022-07-02,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2324779,2022-07-02,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2324780,2022-07-02,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324781,2022-07-02,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324782,2022-07-02,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2324783,2022-07-02,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324784,2022-07-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2324785,2022-07-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,225,Room Based Capacity,,,,,,227.0,245.0,213.0,14.0,18.0,,93.83 -2324786,2022-07-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2324787,2022-07-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2324788,2022-07-02,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2324789,2022-07-02,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2324790,2022-07-02,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2324791,2022-07-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324792,2022-07-02,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324793,2022-07-02,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2324794,2022-07-02,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2324795,2022-07-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2324796,2022-07-02,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324797,2022-07-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324798,2022-07-02,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324799,2022-07-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2324800,2022-07-02,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2324801,2022-07-02,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2324802,2022-07-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324803,2022-07-02,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324804,2022-07-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2324805,2022-07-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2324806,2022-07-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324807,2022-07-02,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324808,2022-07-02,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2324809,2022-07-02,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2324810,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,70.0,53.0,0.0,17.0,,,,,,100.0, -2324811,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324812,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2324813,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2324814,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2324815,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,264,Room Based Capacity,,,,,,231.0,235.0,231.0,0.0,4.0,,100.0 -2324816,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,314,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2324817,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324818,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2324819,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2324820,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,40.0,40.0,40.0,0.0,0.0,,,,,,100.0, -2324821,2022-07-02,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324822,2022-07-02,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324823,2022-07-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324824,2022-07-02,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324825,2022-07-02,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324826,2022-07-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324827,2022-07-02,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2324828,2022-07-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2324829,2022-07-02,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324830,2022-07-02,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324831,2022-07-02,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324832,2022-07-02,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324833,2022-07-02,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324834,2022-07-02,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324835,2022-07-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324836,2022-07-02,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,42,Bed Based Capacity,43.0,43.0,42.0,1.0,0.0,,,,,,97.67, -2324837,2022-07-02,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324838,2022-07-02,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2324839,2022-07-02,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324840,2022-07-02,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,212,Room Based Capacity,,,,,,72.0,76.0,71.0,1.0,4.0,,98.61 -2324841,2022-07-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324842,2022-07-02,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324843,2022-07-02,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,49.0,48.0,0.0,1.0,,,,,,100.0, -2324844,2022-07-02,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2324845,2022-07-02,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2324846,2022-07-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2324847,2022-07-02,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,223,Bed Based Capacity,225.0,225.0,223.0,2.0,0.0,,,,,,99.11, -2324848,2022-07-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2324849,2022-07-02,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2324850,2022-07-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324851,2022-07-02,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324852,2022-07-02,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324853,2022-07-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324854,2022-07-02,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324855,2022-07-02,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324856,2022-07-02,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324857,2022-07-02,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324858,2022-07-02,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324859,2022-07-02,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324860,2022-07-02,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324861,2022-07-02,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324862,2022-07-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324863,2022-07-02,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324864,2022-07-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2324865,2022-07-02,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324866,2022-07-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324867,2022-07-02,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324868,2022-07-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324869,2022-07-02,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324870,2022-07-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2324871,2022-07-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2324872,2022-07-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2324873,2022-07-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,77.0,100.0,77.0,0.0,23.0,,100.0 -2324874,2022-07-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,456,Room Based Capacity,,,,,,138.0,118.0,138.0,0.0,0.0,,100.0 -2324875,2022-07-03,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,11,Room Based Capacity,,,,,,11.0,13.0,11.0,0.0,2.0,,100.0 -2324876,2022-07-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2324877,2022-07-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324878,2022-07-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2324879,2022-07-03,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324880,2022-07-03,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,57,Room Based Capacity,,,,,,22.0,30.0,22.0,0.0,8.0,,100.0 -2324881,2022-07-03,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2324882,2022-07-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2324883,2022-07-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2324884,2022-07-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2324885,2022-07-03,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2324886,2022-07-03,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2324887,2022-07-03,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,144,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2324888,2022-07-03,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2324889,2022-07-03,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,128,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2324890,2022-07-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,119,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2324891,2022-07-03,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2324892,2022-07-03,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2324893,2022-07-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,36.0,37.0,0.0,-1.0,,,,,,100.0, -2324894,2022-07-03,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2324895,2022-07-03,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,24.0,20.0,0.0,4.0,,,,,,100.0, -2324896,2022-07-03,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2324897,2022-07-03,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2324898,2022-07-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,105.0,118.0,105.0,0.0,13.0,,100.0 -2324899,2022-07-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,7,Room Based Capacity,,,,,,5.0,30.0,5.0,0.0,25.0,,100.0 -2324900,2022-07-03,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,28.0,30.0,6.0,22.0,2.0,,21.43 -2324901,2022-07-03,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2324902,2022-07-03,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,92,Bed Based Capacity,93.0,93.0,92.0,1.0,0.0,,,,,,98.92, -2324903,2022-07-03,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324904,2022-07-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,51.0,51.0,42.0,9.0,0.0,,,,,,82.35, -2324905,2022-07-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2324906,2022-07-03,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2324907,2022-07-03,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2324908,2022-07-03,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2324909,2022-07-03,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2324910,2022-07-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2324911,2022-07-03,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2324912,2022-07-03,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2324913,2022-07-03,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324914,2022-07-03,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324915,2022-07-03,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2324916,2022-07-03,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324917,2022-07-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2324918,2022-07-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,225,Room Based Capacity,,,,,,227.0,245.0,213.0,14.0,18.0,,93.83 -2324919,2022-07-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2324920,2022-07-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2324921,2022-07-03,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2324922,2022-07-03,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2324923,2022-07-03,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2324924,2022-07-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2324925,2022-07-03,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2324926,2022-07-03,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2324927,2022-07-03,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2324928,2022-07-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2324929,2022-07-03,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324930,2022-07-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324931,2022-07-03,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2324932,2022-07-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2324933,2022-07-03,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2324934,2022-07-03,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2324935,2022-07-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324936,2022-07-03,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2324937,2022-07-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2324938,2022-07-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324939,2022-07-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2324940,2022-07-03,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2324941,2022-07-03,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2324942,2022-07-03,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,105,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2324943,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,70.0,53.0,0.0,17.0,,,,,,100.0, -2324944,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324945,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2324946,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2324947,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2324948,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,231.0,235.0,231.0,0.0,4.0,,100.0 -2324949,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,313,Room Based Capacity,,,,,,275.0,287.0,275.0,0.0,12.0,,100.0 -2324950,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2324951,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,69,Bed Based Capacity,70.0,70.0,69.0,1.0,0.0,,,,,,98.57, -2324952,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2324953,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2324954,2022-07-03,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2324955,2022-07-03,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2324956,2022-07-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2324957,2022-07-03,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324958,2022-07-03,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2324959,2022-07-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2324960,2022-07-03,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2324961,2022-07-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2324962,2022-07-03,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2324963,2022-07-03,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324964,2022-07-03,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2324965,2022-07-03,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324966,2022-07-03,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2324967,2022-07-03,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2324968,2022-07-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324969,2022-07-03,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2324970,2022-07-03,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2324971,2022-07-03,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2324972,2022-07-03,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2324973,2022-07-03,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,213,Room Based Capacity,,,,,,72.0,76.0,72.0,0.0,4.0,,100.0 -2324974,2022-07-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2324975,2022-07-03,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2324976,2022-07-03,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,47,Bed Based Capacity,48.0,49.0,47.0,1.0,1.0,,,,,,97.92, -2324977,2022-07-03,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2324978,2022-07-03,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2324979,2022-07-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2324980,2022-07-03,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2324981,2022-07-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2324982,2022-07-03,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2324983,2022-07-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2324984,2022-07-03,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2324985,2022-07-03,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2324986,2022-07-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2324987,2022-07-03,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2324988,2022-07-03,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2324989,2022-07-03,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2324990,2022-07-03,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2324991,2022-07-03,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2324992,2022-07-03,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324993,2022-07-03,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2324994,2022-07-03,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324995,2022-07-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2324996,2022-07-03,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2324997,2022-07-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2324998,2022-07-03,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2324999,2022-07-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325000,2022-07-03,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325001,2022-07-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325002,2022-07-03,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325003,2022-07-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325004,2022-07-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325005,2022-07-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325006,2022-07-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,76.0,100.0,76.0,0.0,24.0,,100.0 -2325007,2022-07-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,455,Room Based Capacity,,,,,,137.0,118.0,137.0,0.0,0.0,,100.0 -2325008,2022-07-04,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,11,Room Based Capacity,,,,,,11.0,13.0,11.0,0.0,2.0,,100.0 -2325009,2022-07-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,145.0,152.0,145.0,0.0,7.0,,100.0 -2325010,2022-07-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325011,2022-07-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2325012,2022-07-04,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325013,2022-07-04,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2325014,2022-07-04,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325015,2022-07-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,79.0,83.0,79.0,0.0,4.0,,100.0 -2325016,2022-07-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,16,Room Based Capacity,,,,,,8.0,12.0,8.0,0.0,4.0,,100.0 -2325017,2022-07-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325018,2022-07-04,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2325019,2022-07-04,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2325020,2022-07-04,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,143,Room Based Capacity,,,,,,74.0,86.0,74.0,0.0,12.0,,100.0 -2325021,2022-07-04,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2325022,2022-07-04,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,126,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2325023,2022-07-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2325024,2022-07-04,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,16231,SSHA Scarborough Hotel 3 - Mixed Adult Winter Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,18.0,1.0,0.0,17.0,,100.0 -2325025,2022-07-04,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,19.0,1.0,0.0,,95.0 -2325026,2022-07-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2325027,2022-07-04,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2325028,2022-07-04,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,24.0,20.0,0.0,4.0,,,,,,100.0, -2325029,2022-07-04,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325030,2022-07-04,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,87,Room Based Capacity,,,,,,37.0,37.0,37.0,0.0,0.0,,100.0 -2325031,2022-07-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,153,Room Based Capacity,,,,,,104.0,118.0,104.0,0.0,14.0,,100.0 -2325032,2022-07-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,2.0,3.0,25.0,,40.0 -2325033,2022-07-04,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,6,Room Based Capacity,,,,,,28.0,30.0,6.0,22.0,2.0,,21.43 -2325034,2022-07-04,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2325035,2022-07-04,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325036,2022-07-04,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325037,2022-07-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,51.0,51.0,41.0,10.0,0.0,,,,,,80.39, -2325038,2022-07-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2325039,2022-07-04,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2325040,2022-07-04,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325041,2022-07-04,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,27.0,27.0,21.0,6.0,0.0,,,,,,77.78, -2325042,2022-07-04,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2325043,2022-07-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2325044,2022-07-04,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,73,Bed Based Capacity,74.0,74.0,73.0,1.0,0.0,,,,,,98.65, -2325045,2022-07-04,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325046,2022-07-04,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325047,2022-07-04,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325048,2022-07-04,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325049,2022-07-04,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,41,Bed Based Capacity,44.0,44.0,41.0,3.0,0.0,,,,,,93.18, -2325050,2022-07-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2325051,2022-07-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,225,Room Based Capacity,,,,,,227.0,245.0,213.0,14.0,18.0,,93.83 -2325052,2022-07-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325053,2022-07-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325054,2022-07-04,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2325055,2022-07-04,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325056,2022-07-04,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2325057,2022-07-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325058,2022-07-04,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2325059,2022-07-04,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325060,2022-07-04,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,11.0,11.0,6.0,5.0,0.0,,,,,,54.55, -2325061,2022-07-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,36.0,37.0,33.0,3.0,1.0,,,,,,91.67, -2325062,2022-07-04,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2325063,2022-07-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325064,2022-07-04,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325065,2022-07-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325066,2022-07-04,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2325067,2022-07-04,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2325068,2022-07-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325069,2022-07-04,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2325070,2022-07-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2325071,2022-07-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325072,2022-07-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325073,2022-07-04,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2325074,2022-07-04,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2325075,2022-07-04,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,104,Room Based Capacity,,,,,,93.0,94.0,92.0,1.0,1.0,,98.92 -2325076,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,70.0,53.0,0.0,17.0,,,,,,100.0, -2325077,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325078,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325079,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2325080,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2325081,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,232.0,235.0,231.0,1.0,3.0,,99.57 -2325082,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,314,Room Based Capacity,,,,,,276.0,287.0,276.0,0.0,11.0,,100.0 -2325083,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2325084,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,68.0,70.0,67.0,1.0,2.0,,,,,,98.53, -2325085,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2325086,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2325087,2022-07-04,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2325088,2022-07-04,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2325089,2022-07-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,40.0,43.0,1.0,0.0,,97.73 -2325090,2022-07-04,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325091,2022-07-04,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2325092,2022-07-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325093,2022-07-04,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,17.0,17.0,9.0,8.0,0.0,,,,,,52.94, -2325094,2022-07-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325095,2022-07-04,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2325096,2022-07-04,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325097,2022-07-04,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325098,2022-07-04,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325099,2022-07-04,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2325100,2022-07-04,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2325101,2022-07-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325102,2022-07-04,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2325103,2022-07-04,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2325104,2022-07-04,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,28.0,25.0,0.0,3.0,,,,,,100.0, -2325105,2022-07-04,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2325106,2022-07-04,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,194,Room Based Capacity,,,,,,72.0,76.0,65.0,7.0,4.0,,90.28 -2325107,2022-07-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,66,Bed Based Capacity,67.0,67.0,66.0,1.0,0.0,,,,,,98.51, -2325108,2022-07-04,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,23.0,23.0,18.0,5.0,0.0,,78.26 -2325109,2022-07-04,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2325110,2022-07-04,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2325111,2022-07-04,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325112,2022-07-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2325113,2022-07-04,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2325114,2022-07-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2325115,2022-07-04,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2325116,2022-07-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2325117,2022-07-04,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2325118,2022-07-04,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325119,2022-07-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2325120,2022-07-04,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2325121,2022-07-04,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2325122,2022-07-04,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2325123,2022-07-04,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325124,2022-07-04,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2325125,2022-07-04,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325126,2022-07-04,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325127,2022-07-04,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2325128,2022-07-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325129,2022-07-04,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2325130,2022-07-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325131,2022-07-04,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325132,2022-07-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325133,2022-07-04,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325134,2022-07-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325135,2022-07-04,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325136,2022-07-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,320,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325137,2022-07-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325138,2022-07-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325139,2022-07-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,76.0,100.0,76.0,0.0,24.0,,100.0 -2325140,2022-07-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,443,Room Based Capacity,,,,,,134.0,118.0,134.0,0.0,0.0,,100.0 -2325141,2022-07-05,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,11,Room Based Capacity,,,,,,11.0,13.0,11.0,0.0,2.0,,100.0 -2325142,2022-07-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,143.0,152.0,143.0,0.0,9.0,,100.0 -2325143,2022-07-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325144,2022-07-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2325145,2022-07-05,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325146,2022-07-05,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,59,Room Based Capacity,,,,,,23.0,30.0,23.0,0.0,7.0,,100.0 -2325147,2022-07-05,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,211,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325148,2022-07-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2325149,2022-07-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2325150,2022-07-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325151,2022-07-05,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2325152,2022-07-05,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2325153,2022-07-05,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,143,Room Based Capacity,,,,,,74.0,86.0,74.0,0.0,12.0,,100.0 -2325154,2022-07-05,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2325155,2022-07-05,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,126,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2325156,2022-07-05,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,121,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2325157,2022-07-05,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2325158,2022-07-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2325159,2022-07-05,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,67.0,51.0,63.0,4.0,0.0,,94.03 -2325160,2022-07-05,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325161,2022-07-05,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325162,2022-07-05,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2325163,2022-07-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,157,Room Based Capacity,,,,,,106.0,118.0,106.0,0.0,12.0,,100.0 -2325164,2022-07-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,5.0,30.0,1.0,4.0,25.0,,20.0 -2325165,2022-07-05,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,9,Room Based Capacity,,,,,,28.0,30.0,9.0,19.0,2.0,,32.14 -2325166,2022-07-05,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2325167,2022-07-05,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325168,2022-07-05,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325169,2022-07-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2325170,2022-07-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2325171,2022-07-05,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2325172,2022-07-05,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325173,2022-07-05,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,27.0,27.0,20.0,7.0,0.0,,,,,,74.07, -2325174,2022-07-05,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,64.0,66.0,64.0,0.0,2.0,,100.0 -2325175,2022-07-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2325176,2022-07-05,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2325177,2022-07-05,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325178,2022-07-05,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325179,2022-07-05,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,53.0,54.0,52.0,1.0,1.0,,,,,,98.11, -2325180,2022-07-05,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325181,2022-07-05,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325182,2022-07-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,50.0,48.0,1.0,1.0,,,,,,97.96, -2325183,2022-07-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,223,Room Based Capacity,,,,,,214.0,245.0,211.0,3.0,31.0,,98.6 -2325184,2022-07-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325185,2022-07-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325186,2022-07-05,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2325187,2022-07-05,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325188,2022-07-05,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,45.0,50.0,42.0,3.0,5.0,,,,,,93.33, -2325189,2022-07-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325190,2022-07-05,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325191,2022-07-05,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325192,2022-07-05,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325193,2022-07-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2325194,2022-07-05,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325195,2022-07-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2325196,2022-07-05,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325197,2022-07-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325198,2022-07-05,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2325199,2022-07-05,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2325200,2022-07-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325201,2022-07-05,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,28.0,28.0,26.0,2.0,0.0,,,,,,92.86, -2325202,2022-07-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2325203,2022-07-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325204,2022-07-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325205,2022-07-05,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2325206,2022-07-05,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2325207,2022-07-05,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2325208,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,70.0,53.0,0.0,17.0,,,,,,100.0, -2325209,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325210,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2325211,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2325212,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2325213,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,232.0,235.0,232.0,0.0,3.0,,100.0 -2325214,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,317,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2325215,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2325216,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2325217,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2325218,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2325219,2022-07-05,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2325220,2022-07-05,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2325221,2022-07-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,43.0,40.0,43.0,0.0,0.0,,100.0 -2325222,2022-07-05,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325223,2022-07-05,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2325224,2022-07-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2325225,2022-07-05,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,17.0,17.0,9.0,8.0,0.0,,,,,,52.94, -2325226,2022-07-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325227,2022-07-05,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2325228,2022-07-05,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325229,2022-07-05,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325230,2022-07-05,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325231,2022-07-05,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2325232,2022-07-05,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2325233,2022-07-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325234,2022-07-05,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2325235,2022-07-05,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2325236,2022-07-05,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,28.0,25.0,0.0,3.0,,,,,,100.0, -2325237,2022-07-05,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2325238,2022-07-05,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,194,Room Based Capacity,,,,,,65.0,76.0,65.0,0.0,11.0,,100.0 -2325239,2022-07-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2325240,2022-07-05,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,23.0,23.0,18.0,5.0,0.0,,78.26 -2325241,2022-07-05,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2325242,2022-07-05,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2325243,2022-07-05,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325244,2022-07-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2325245,2022-07-05,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2325246,2022-07-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2325247,2022-07-05,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,75,Room Based Capacity,,,,,,75.0,77.0,75.0,0.0,2.0,,100.0 -2325248,2022-07-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2325249,2022-07-05,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2325250,2022-07-05,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325251,2022-07-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2325252,2022-07-05,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2325253,2022-07-05,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2325254,2022-07-05,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2325255,2022-07-05,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325256,2022-07-05,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,92,Room Based Capacity,,,,,,26.0,27.0,26.0,0.0,1.0,,100.0 -2325257,2022-07-05,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325258,2022-07-05,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325259,2022-07-05,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2325260,2022-07-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325261,2022-07-05,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2325262,2022-07-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325263,2022-07-05,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325264,2022-07-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325265,2022-07-05,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325266,2022-07-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,10.0,10.0,9.0,1.0,0.0,,,,,,90.0, -2325267,2022-07-05,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325268,2022-07-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325269,2022-07-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325270,2022-07-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325271,2022-07-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,77.0,100.0,76.0,1.0,23.0,,98.7 -2325272,2022-07-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,430,Room Based Capacity,,,,,,132.0,118.0,132.0,0.0,0.0,,100.0 -2325273,2022-07-06,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,11,Room Based Capacity,,,,,,11.0,13.0,11.0,0.0,2.0,,100.0 -2325274,2022-07-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,143.0,152.0,143.0,0.0,9.0,,100.0 -2325275,2022-07-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325276,2022-07-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2325277,2022-07-06,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325278,2022-07-06,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2325279,2022-07-06,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325280,2022-07-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2325281,2022-07-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2325282,2022-07-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325283,2022-07-06,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2325284,2022-07-06,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2325285,2022-07-06,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,143,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2325286,2022-07-06,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2325287,2022-07-06,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,126,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2325288,2022-07-06,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,120,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2325289,2022-07-06,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2325290,2022-07-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2325291,2022-07-06,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,67.0,51.0,62.0,5.0,0.0,,92.54 -2325292,2022-07-06,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325293,2022-07-06,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325294,2022-07-06,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,35.0,37.0,34.0,1.0,2.0,,97.14 -2325295,2022-07-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,104.0,118.0,104.0,0.0,14.0,,100.0 -2325296,2022-07-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,2.0,3.0,25.0,,40.0 -2325297,2022-07-06,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,11,Room Based Capacity,,,,,,28.0,30.0,11.0,17.0,2.0,,39.29 -2325298,2022-07-06,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2325299,2022-07-06,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325300,2022-07-06,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325301,2022-07-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,51.0,51.0,39.0,12.0,0.0,,,,,,76.47, -2325302,2022-07-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,80,Bed Based Capacity,81.0,81.0,80.0,1.0,0.0,,,,,,98.77, -2325303,2022-07-06,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2325304,2022-07-06,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325305,2022-07-06,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,27.0,27.0,20.0,7.0,0.0,,,,,,74.07, -2325306,2022-07-06,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,64.0,66.0,62.0,2.0,2.0,,96.88 -2325307,2022-07-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2325308,2022-07-06,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,72,Bed Based Capacity,74.0,74.0,72.0,2.0,0.0,,,,,,97.3, -2325309,2022-07-06,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325310,2022-07-06,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325311,2022-07-06,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2325312,2022-07-06,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325313,2022-07-06,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325314,2022-07-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2325315,2022-07-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,223,Room Based Capacity,,,,,,214.0,245.0,211.0,3.0,31.0,,98.6 -2325316,2022-07-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325317,2022-07-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325318,2022-07-06,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2325319,2022-07-06,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325320,2022-07-06,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2325321,2022-07-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,11.0,14.0,11.0,0.0,3.0,,,,,,100.0, -2325322,2022-07-06,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2325323,2022-07-06,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325324,2022-07-06,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325325,2022-07-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2325326,2022-07-06,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325327,2022-07-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325328,2022-07-06,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325329,2022-07-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325330,2022-07-06,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,269,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2325331,2022-07-06,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2325332,2022-07-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325333,2022-07-06,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2325334,2022-07-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325335,2022-07-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325336,2022-07-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325337,2022-07-06,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2325338,2022-07-06,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2325339,2022-07-06,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2325340,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,56.0,70.0,50.0,6.0,14.0,,,,,,89.29, -2325341,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325342,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325343,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,55.0,55.0,54.0,1.0,0.0,,,,,,98.18, -2325344,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2325345,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,232.0,235.0,231.0,1.0,3.0,,99.57 -2325346,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,319,Room Based Capacity,,,,,,280.0,287.0,280.0,0.0,7.0,,100.0 -2325347,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2325348,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2325349,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2325350,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2325351,2022-07-06,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2325352,2022-07-06,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2325353,2022-07-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,43,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2325354,2022-07-06,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325355,2022-07-06,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2325356,2022-07-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2325357,2022-07-06,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,9,Bed Based Capacity,17.0,17.0,9.0,8.0,0.0,,,,,,52.94, -2325358,2022-07-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325359,2022-07-06,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2325360,2022-07-06,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325361,2022-07-06,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325362,2022-07-06,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325363,2022-07-06,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2325364,2022-07-06,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2325365,2022-07-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325366,2022-07-06,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2325367,2022-07-06,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2325368,2022-07-06,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,28.0,25.0,0.0,3.0,,,,,,100.0, -2325369,2022-07-06,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2325370,2022-07-06,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,182,Room Based Capacity,,,,,,62.0,76.0,62.0,0.0,14.0,,100.0 -2325371,2022-07-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2325372,2022-07-06,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,23.0,23.0,18.0,5.0,0.0,,78.26 -2325373,2022-07-06,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2325374,2022-07-06,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2325375,2022-07-06,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2325376,2022-07-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2325377,2022-07-06,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2325378,2022-07-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,35.0,36.0,34.0,1.0,1.0,,,,,,97.14, -2325379,2022-07-06,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2325380,2022-07-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2325381,2022-07-06,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2325382,2022-07-06,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325383,2022-07-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2325384,2022-07-06,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2325385,2022-07-06,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2325386,2022-07-06,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2325387,2022-07-06,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325388,2022-07-06,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2325389,2022-07-06,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2325390,2022-07-06,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325391,2022-07-06,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325392,2022-07-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325393,2022-07-06,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2325394,2022-07-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325395,2022-07-06,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325396,2022-07-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325397,2022-07-06,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325398,2022-07-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325399,2022-07-06,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325400,2022-07-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325401,2022-07-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325402,2022-07-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325403,2022-07-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2325404,2022-07-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,243,Room Based Capacity,,,,,,77.0,100.0,76.0,1.0,23.0,,98.7 -2325405,2022-07-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,433,Room Based Capacity,,,,,,135.0,118.0,132.0,3.0,0.0,,97.78 -2325406,2022-07-07,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,11,Room Based Capacity,,,,,,13.0,13.0,11.0,2.0,0.0,,84.62 -2325407,2022-07-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,143.0,152.0,143.0,0.0,9.0,,100.0 -2325408,2022-07-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325409,2022-07-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2325410,2022-07-07,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325411,2022-07-07,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2325412,2022-07-07,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325413,2022-07-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,80.0,83.0,79.0,1.0,3.0,,98.75 -2325414,2022-07-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2325415,2022-07-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325416,2022-07-07,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2325417,2022-07-07,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2325418,2022-07-07,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,143,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2325419,2022-07-07,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2325420,2022-07-07,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,126,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2325421,2022-07-07,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,123,Room Based Capacity,,,,,,42.0,40.0,42.0,0.0,0.0,,100.0 -2325422,2022-07-07,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2325423,2022-07-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2325424,2022-07-07,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,67.0,51.0,62.0,5.0,0.0,,92.54 -2325425,2022-07-07,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325426,2022-07-07,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325427,2022-07-07,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2325428,2022-07-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,156,Room Based Capacity,,,,,,105.0,118.0,105.0,0.0,13.0,,100.0 -2325429,2022-07-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,2.0,3.0,25.0,,40.0 -2325430,2022-07-07,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,17,Room Based Capacity,,,,,,28.0,30.0,17.0,11.0,2.0,,60.71 -2325431,2022-07-07,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2325432,2022-07-07,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325433,2022-07-07,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325434,2022-07-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,51.0,51.0,39.0,12.0,0.0,,,,,,76.47, -2325435,2022-07-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2325436,2022-07-07,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2325437,2022-07-07,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325438,2022-07-07,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,27.0,27.0,20.0,7.0,0.0,,,,,,74.07, -2325439,2022-07-07,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2325440,2022-07-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2325441,2022-07-07,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2325442,2022-07-07,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325443,2022-07-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2325444,2022-07-07,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2325445,2022-07-07,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325446,2022-07-07,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325447,2022-07-07,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325448,2022-07-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,50.0,49.0,0.0,1.0,,,,,,100.0, -2325449,2022-07-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,222,Room Based Capacity,,,,,,214.0,245.0,210.0,4.0,31.0,,98.13 -2325450,2022-07-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325451,2022-07-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325452,2022-07-07,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2325453,2022-07-07,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325454,2022-07-07,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2325455,2022-07-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2325456,2022-07-07,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2325457,2022-07-07,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325458,2022-07-07,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325459,2022-07-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2325460,2022-07-07,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325461,2022-07-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325462,2022-07-07,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325463,2022-07-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325464,2022-07-07,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,270,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2325465,2022-07-07,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,45.0,43.0,2.0,0.0,,,,,,95.56, -2325466,2022-07-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325467,2022-07-07,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2325468,2022-07-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2325469,2022-07-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325470,2022-07-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325471,2022-07-07,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2325472,2022-07-07,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2325473,2022-07-07,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,103,Room Based Capacity,,,,,,91.0,94.0,91.0,0.0,3.0,,100.0 -2325474,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,56.0,70.0,52.0,4.0,14.0,,,,,,92.86, -2325475,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325476,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325477,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2325478,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2325479,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,265,Room Based Capacity,,,,,,232.0,235.0,232.0,0.0,3.0,,100.0 -2325480,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,318,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2325481,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2325482,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2325483,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2325484,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2325485,2022-07-07,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2325486,2022-07-07,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2325487,2022-07-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,41.0,40.0,41.0,0.0,0.0,,100.0 -2325488,2022-07-07,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325489,2022-07-07,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2325490,2022-07-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2325491,2022-07-07,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2325492,2022-07-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325493,2022-07-07,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2325494,2022-07-07,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325495,2022-07-07,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325496,2022-07-07,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325497,2022-07-07,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2325498,2022-07-07,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2325499,2022-07-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325500,2022-07-07,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2325501,2022-07-07,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2325502,2022-07-07,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,28.0,24.0,0.0,4.0,,,,,,100.0, -2325503,2022-07-07,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2325504,2022-07-07,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,183,Room Based Capacity,,,,,,62.0,76.0,62.0,0.0,14.0,,100.0 -2325505,2022-07-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2325506,2022-07-07,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,23.0,23.0,18.0,5.0,0.0,,78.26 -2325507,2022-07-07,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2325508,2022-07-07,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2325509,2022-07-07,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325510,2022-07-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2325511,2022-07-07,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2325512,2022-07-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2325513,2022-07-07,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2325514,2022-07-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2325515,2022-07-07,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2325516,2022-07-07,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325517,2022-07-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2325518,2022-07-07,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2325519,2022-07-07,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2325520,2022-07-07,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2325521,2022-07-07,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325522,2022-07-07,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2325523,2022-07-07,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325524,2022-07-07,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325525,2022-07-07,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325526,2022-07-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325527,2022-07-07,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2325528,2022-07-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325529,2022-07-07,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325530,2022-07-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325531,2022-07-07,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325532,2022-07-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325533,2022-07-07,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325534,2022-07-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,321,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325535,2022-07-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325536,2022-07-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325537,2022-07-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2325538,2022-07-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,77.0,100.0,77.0,0.0,23.0,,100.0 -2325539,2022-07-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,439,Room Based Capacity,,,,,,134.0,118.0,134.0,0.0,0.0,,100.0 -2325540,2022-07-08,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,10,Room Based Capacity,,,,,,10.0,13.0,10.0,0.0,3.0,,100.0 -2325541,2022-07-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,142.0,152.0,142.0,0.0,10.0,,100.0 -2325542,2022-07-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325543,2022-07-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2325544,2022-07-08,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325545,2022-07-08,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2325546,2022-07-08,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325547,2022-07-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2325548,2022-07-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2325549,2022-07-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325550,2022-07-08,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2325551,2022-07-08,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2325552,2022-07-08,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,137,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2325553,2022-07-08,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2325554,2022-07-08,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,125,Room Based Capacity,,,,,,35.0,43.0,35.0,0.0,8.0,,100.0 -2325555,2022-07-08,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,131,Room Based Capacity,,,,,,44.0,40.0,44.0,0.0,0.0,,100.0 -2325556,2022-07-08,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,19.0,20.0,19.0,0.0,1.0,,100.0 -2325557,2022-07-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2325558,2022-07-08,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2325559,2022-07-08,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2325560,2022-07-08,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325561,2022-07-08,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,81,Room Based Capacity,,,,,,34.0,37.0,34.0,0.0,3.0,,100.0 -2325562,2022-07-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,154,Room Based Capacity,,,,,,106.0,118.0,105.0,1.0,12.0,,99.06 -2325563,2022-07-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,5.0,30.0,1.0,4.0,25.0,,20.0 -2325564,2022-07-08,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,14,Room Based Capacity,,,,,,28.0,30.0,14.0,14.0,2.0,,50.0 -2325565,2022-07-08,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2325566,2022-07-08,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325567,2022-07-08,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325568,2022-07-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2325569,2022-07-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2325570,2022-07-08,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2325571,2022-07-08,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325572,2022-07-08,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,27.0,27.0,20.0,7.0,0.0,,,,,,74.07, -2325573,2022-07-08,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2325574,2022-07-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,3,Bed Based Capacity,4.0,9.0,3.0,1.0,5.0,,,,,,75.0, -2325575,2022-07-08,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2325576,2022-07-08,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325577,2022-07-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2325578,2022-07-08,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2325579,2022-07-08,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325580,2022-07-08,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325581,2022-07-08,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325582,2022-07-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,50.0,48.0,0.0,2.0,,,,,,100.0, -2325583,2022-07-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,220,Room Based Capacity,,,,,,214.0,245.0,209.0,5.0,31.0,,97.66 -2325584,2022-07-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325585,2022-07-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325586,2022-07-08,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2325587,2022-07-08,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325588,2022-07-08,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2325589,2022-07-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2325590,2022-07-08,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2325591,2022-07-08,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325592,2022-07-08,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325593,2022-07-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2325594,2022-07-08,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325595,2022-07-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325596,2022-07-08,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325597,2022-07-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325598,2022-07-08,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,271,Room Based Capacity,,,,,,264.0,271.0,264.0,0.0,7.0,,100.0 -2325599,2022-07-08,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2325600,2022-07-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325601,2022-07-08,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2325602,2022-07-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325603,2022-07-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325604,2022-07-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325605,2022-07-08,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2325606,2022-07-08,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2325607,2022-07-08,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2325608,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,52,Bed Based Capacity,56.0,70.0,52.0,4.0,14.0,,,,,,92.86, -2325609,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325610,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325611,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2325612,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2325613,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,233.0,235.0,233.0,0.0,2.0,,100.0 -2325614,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,320,Room Based Capacity,,,,,,280.0,287.0,280.0,0.0,7.0,,100.0 -2325615,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2325616,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2325617,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2325618,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2325619,2022-07-08,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2325620,2022-07-08,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2325621,2022-07-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,41.0,40.0,41.0,0.0,0.0,,100.0 -2325622,2022-07-08,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325623,2022-07-08,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2325624,2022-07-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2325625,2022-07-08,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,17.0,17.0,10.0,7.0,0.0,,,,,,58.82, -2325626,2022-07-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325627,2022-07-08,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2325628,2022-07-08,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325629,2022-07-08,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325630,2022-07-08,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325631,2022-07-08,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2325632,2022-07-08,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2325633,2022-07-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325634,2022-07-08,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2325635,2022-07-08,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2325636,2022-07-08,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2325637,2022-07-08,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2325638,2022-07-08,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,183,Room Based Capacity,,,,,,64.0,76.0,62.0,2.0,12.0,,96.88 -2325639,2022-07-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2325640,2022-07-08,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,23.0,23.0,18.0,5.0,0.0,,78.26 -2325641,2022-07-08,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,49.0,49.0,48.0,1.0,0.0,,,,,,97.96, -2325642,2022-07-08,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2325643,2022-07-08,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325644,2022-07-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2325645,2022-07-08,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2325646,2022-07-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2325647,2022-07-08,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2325648,2022-07-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2325649,2022-07-08,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2325650,2022-07-08,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325651,2022-07-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2325652,2022-07-08,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2325653,2022-07-08,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2325654,2022-07-08,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2325655,2022-07-08,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325656,2022-07-08,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2325657,2022-07-08,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325658,2022-07-08,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325659,2022-07-08,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325660,2022-07-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325661,2022-07-08,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2325662,2022-07-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325663,2022-07-08,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325664,2022-07-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325665,2022-07-08,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325666,2022-07-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325667,2022-07-08,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325668,2022-07-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325669,2022-07-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325670,2022-07-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325671,2022-07-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2325672,2022-07-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,251,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2325673,2022-07-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,443,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2325674,2022-07-09,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,12.0,13.0,12.0,0.0,1.0,,100.0 -2325675,2022-07-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,142.0,152.0,142.0,0.0,10.0,,100.0 -2325676,2022-07-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325677,2022-07-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2325678,2022-07-09,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325679,2022-07-09,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2325680,2022-07-09,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325681,2022-07-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2325682,2022-07-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2325683,2022-07-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325684,2022-07-09,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2325685,2022-07-09,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2325686,2022-07-09,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,141,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2325687,2022-07-09,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2325688,2022-07-09,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,125,Room Based Capacity,,,,,,37.0,43.0,35.0,2.0,6.0,,94.59 -2325689,2022-07-09,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,134,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2325690,2022-07-09,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,20.0,20.0,19.0,1.0,0.0,,95.0 -2325691,2022-07-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2325692,2022-07-09,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2325693,2022-07-09,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2325694,2022-07-09,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325695,2022-07-09,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2325696,2022-07-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,158,Room Based Capacity,,,,,,106.0,118.0,106.0,0.0,12.0,,100.0 -2325697,2022-07-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,3,Room Based Capacity,,,,,,5.0,30.0,1.0,4.0,25.0,,20.0 -2325698,2022-07-09,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,14,Room Based Capacity,,,,,,28.0,30.0,14.0,14.0,2.0,,50.0 -2325699,2022-07-09,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2325700,2022-07-09,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325701,2022-07-09,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325702,2022-07-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,40,Bed Based Capacity,51.0,51.0,40.0,11.0,0.0,,,,,,78.43, -2325703,2022-07-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2325704,2022-07-09,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2325705,2022-07-09,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325706,2022-07-09,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,27.0,27.0,21.0,6.0,0.0,,,,,,77.78, -2325707,2022-07-09,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2325708,2022-07-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2325709,2022-07-09,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2325710,2022-07-09,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325711,2022-07-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2325712,2022-07-09,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325713,2022-07-09,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325714,2022-07-09,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325715,2022-07-09,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325716,2022-07-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2325717,2022-07-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,220,Room Based Capacity,,,,,,214.0,245.0,209.0,5.0,31.0,,97.66 -2325718,2022-07-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325719,2022-07-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325720,2022-07-09,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2325721,2022-07-09,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325722,2022-07-09,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2325723,2022-07-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,13.0,14.0,12.0,1.0,1.0,,,,,,92.31, -2325724,2022-07-09,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2325725,2022-07-09,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325726,2022-07-09,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325727,2022-07-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2325728,2022-07-09,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325729,2022-07-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325730,2022-07-09,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325731,2022-07-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325732,2022-07-09,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,269,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2325733,2022-07-09,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2325734,2022-07-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325735,2022-07-09,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2325736,2022-07-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325737,2022-07-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325738,2022-07-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325739,2022-07-09,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,46.0,47.0,45.0,1.0,1.0,,97.83 -2325740,2022-07-09,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,45,Bed Based Capacity,46.0,50.0,45.0,1.0,4.0,,,,,,97.83, -2325741,2022-07-09,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2325742,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2325743,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325744,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,30,Bed Based Capacity,31.0,31.0,30.0,1.0,0.0,,,,,,96.77, -2325745,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2325746,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2325747,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,233.0,235.0,233.0,0.0,2.0,,100.0 -2325748,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,320,Room Based Capacity,,,,,,280.0,287.0,280.0,0.0,7.0,,100.0 -2325749,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2325750,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2325751,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,130,Bed Based Capacity,130.0,130.0,130.0,0.0,0.0,,,,,,100.0, -2325752,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2325753,2022-07-09,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2325754,2022-07-09,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2325755,2022-07-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,41.0,40.0,41.0,0.0,0.0,,100.0 -2325756,2022-07-09,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325757,2022-07-09,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2325758,2022-07-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2325759,2022-07-09,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2325760,2022-07-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325761,2022-07-09,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2325762,2022-07-09,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325763,2022-07-09,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325764,2022-07-09,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2325765,2022-07-09,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2325766,2022-07-09,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2325767,2022-07-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325768,2022-07-09,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2325769,2022-07-09,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2325770,2022-07-09,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2325771,2022-07-09,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2325772,2022-07-09,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,183,Room Based Capacity,,,,,,64.0,76.0,62.0,2.0,12.0,,96.88 -2325773,2022-07-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2325774,2022-07-09,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,23.0,23.0,18.0,5.0,0.0,,78.26 -2325775,2022-07-09,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2325776,2022-07-09,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2325777,2022-07-09,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325778,2022-07-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2325779,2022-07-09,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2325780,2022-07-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2325781,2022-07-09,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2325782,2022-07-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2325783,2022-07-09,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2325784,2022-07-09,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325785,2022-07-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2325786,2022-07-09,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2325787,2022-07-09,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2325788,2022-07-09,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2325789,2022-07-09,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325790,2022-07-09,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,88,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2325791,2022-07-09,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325792,2022-07-09,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325793,2022-07-09,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325794,2022-07-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325795,2022-07-09,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,24.0,24.0,24.0,0.0,0.0,,,,,,100.0, -2325796,2022-07-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325797,2022-07-09,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325798,2022-07-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325799,2022-07-09,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325800,2022-07-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325801,2022-07-09,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325802,2022-07-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325803,2022-07-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325804,2022-07-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325805,2022-07-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2325806,2022-07-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,248,Room Based Capacity,,,,,,78.0,100.0,77.0,1.0,22.0,,98.72 -2325807,2022-07-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,443,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2325808,2022-07-10,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,12.0,13.0,12.0,0.0,1.0,,100.0 -2325809,2022-07-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,147,Room Based Capacity,,,,,,141.0,152.0,141.0,0.0,11.0,,100.0 -2325810,2022-07-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325811,2022-07-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,33.0,33.0,32.0,1.0,0.0,,,,,,96.97, -2325812,2022-07-10,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325813,2022-07-10,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2325814,2022-07-10,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325815,2022-07-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,79.0,83.0,78.0,1.0,4.0,,98.73 -2325816,2022-07-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2325817,2022-07-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325818,2022-07-10,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2325819,2022-07-10,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2325820,2022-07-10,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2325821,2022-07-10,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2325822,2022-07-10,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,125,Room Based Capacity,,,,,,39.0,43.0,35.0,4.0,4.0,,89.74 -2325823,2022-07-10,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,134,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2325824,2022-07-10,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2325825,2022-07-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2325826,2022-07-10,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,67.0,51.0,63.0,4.0,0.0,,94.03 -2325827,2022-07-10,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2325828,2022-07-10,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325829,2022-07-10,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2325830,2022-07-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,157,Room Based Capacity,,,,,,107.0,118.0,105.0,2.0,11.0,,98.13 -2325831,2022-07-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,2.0,3.0,25.0,,40.0 -2325832,2022-07-10,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,16,Room Based Capacity,,,,,,28.0,30.0,16.0,12.0,2.0,,57.14 -2325833,2022-07-10,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,22.0,23.0,22.0,0.0,1.0,,100.0 -2325834,2022-07-10,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325835,2022-07-10,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325836,2022-07-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,51.0,51.0,39.0,12.0,0.0,,,,,,76.47, -2325837,2022-07-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2325838,2022-07-10,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2325839,2022-07-10,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325840,2022-07-10,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2325841,2022-07-10,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,64.0,66.0,61.0,3.0,2.0,,95.31 -2325842,2022-07-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2325843,2022-07-10,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2325844,2022-07-10,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325845,2022-07-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2325846,2022-07-10,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325847,2022-07-10,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2325848,2022-07-10,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325849,2022-07-10,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325850,2022-07-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,47,Bed Based Capacity,47.0,50.0,47.0,0.0,3.0,,,,,,100.0, -2325851,2022-07-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,220,Room Based Capacity,,,,,,214.0,245.0,209.0,5.0,31.0,,97.66 -2325852,2022-07-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325853,2022-07-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325854,2022-07-10,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2325855,2022-07-10,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325856,2022-07-10,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2325857,2022-07-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2325858,2022-07-10,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2325859,2022-07-10,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325860,2022-07-10,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325861,2022-07-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2325862,2022-07-10,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325863,2022-07-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325864,2022-07-10,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325865,2022-07-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2325866,2022-07-10,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,268,Room Based Capacity,,,,,,262.0,271.0,261.0,1.0,9.0,,99.62 -2325867,2022-07-10,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2325868,2022-07-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325869,2022-07-10,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2325870,2022-07-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2325871,2022-07-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325872,2022-07-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2325873,2022-07-10,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2325874,2022-07-10,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2325875,2022-07-10,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2325876,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2325877,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325878,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325879,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2325880,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2325881,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,264,Room Based Capacity,,,,,,232.0,235.0,232.0,0.0,3.0,,100.0 -2325882,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,319,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2325883,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2325884,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2325885,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2325886,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,38.0,40.0,37.0,1.0,2.0,,,,,,97.37, -2325887,2022-07-10,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2325888,2022-07-10,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2325889,2022-07-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,41.0,40.0,41.0,0.0,0.0,,100.0 -2325890,2022-07-10,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325891,2022-07-10,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2325892,2022-07-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2325893,2022-07-10,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2325894,2022-07-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325895,2022-07-10,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2325896,2022-07-10,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2325897,2022-07-10,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325898,2022-07-10,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,20.0,18.0,0.0,2.0,,,,,,100.0, -2325899,2022-07-10,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2325900,2022-07-10,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2325901,2022-07-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325902,2022-07-10,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2325903,2022-07-10,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2325904,2022-07-10,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2325905,2022-07-10,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2325906,2022-07-10,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,183,Room Based Capacity,,,,,,64.0,76.0,62.0,2.0,12.0,,96.88 -2325907,2022-07-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2325908,2022-07-10,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,50,Room Based Capacity,,,,,,23.0,23.0,18.0,5.0,0.0,,78.26 -2325909,2022-07-10,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2325910,2022-07-10,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2325911,2022-07-10,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325912,2022-07-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2325913,2022-07-10,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2325914,2022-07-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2325915,2022-07-10,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2325916,2022-07-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2325917,2022-07-10,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2325918,2022-07-10,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325919,2022-07-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2325920,2022-07-10,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2325921,2022-07-10,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2325922,2022-07-10,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2325923,2022-07-10,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325924,2022-07-10,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,26.0,27.0,24.0,2.0,1.0,,92.31 -2325925,2022-07-10,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325926,2022-07-10,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325927,2022-07-10,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2325928,2022-07-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2325929,2022-07-10,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325930,2022-07-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2325931,2022-07-10,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2325932,2022-07-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325933,2022-07-10,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2325934,2022-07-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2325935,2022-07-10,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2325936,2022-07-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,322,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2325937,2022-07-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2325938,2022-07-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2325939,2022-07-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2325940,2022-07-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,247,Room Based Capacity,,,,,,76.0,100.0,76.0,0.0,24.0,,100.0 -2325941,2022-07-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,441,Room Based Capacity,,,,,,134.0,118.0,134.0,0.0,0.0,,100.0 -2325942,2022-07-11,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,12,Room Based Capacity,,,,,,12.0,13.0,12.0,0.0,1.0,,100.0 -2325943,2022-07-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,142.0,152.0,142.0,0.0,10.0,,100.0 -2325944,2022-07-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2325945,2022-07-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2325946,2022-07-11,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2325947,2022-07-11,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2325948,2022-07-11,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2325949,2022-07-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,78.0,83.0,78.0,0.0,5.0,,100.0 -2325950,2022-07-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2325951,2022-07-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2325952,2022-07-11,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2325953,2022-07-11,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2325954,2022-07-11,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,139,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2325955,2022-07-11,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2325956,2022-07-11,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,127,Room Based Capacity,,,,,,36.0,43.0,35.0,1.0,7.0,,97.22 -2325957,2022-07-11,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,134,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2325958,2022-07-11,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2325959,2022-07-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2325960,2022-07-11,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,66,Room Based Capacity,,,,,,67.0,51.0,62.0,5.0,0.0,,92.54 -2325961,2022-07-11,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,20.0,20.0,19.0,1.0,0.0,,,,,,95.0, -2325962,2022-07-11,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2325963,2022-07-11,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2325964,2022-07-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,102.0,118.0,102.0,0.0,16.0,,100.0 -2325965,2022-07-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,2.0,3.0,25.0,,40.0 -2325966,2022-07-11,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,19,Room Based Capacity,,,,,,28.0,30.0,19.0,9.0,2.0,,67.86 -2325967,2022-07-11,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2325968,2022-07-11,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2325969,2022-07-11,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2325970,2022-07-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,51.0,51.0,38.0,13.0,0.0,,,,,,74.51, -2325971,2022-07-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2325972,2022-07-11,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2325973,2022-07-11,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2325974,2022-07-11,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2325975,2022-07-11,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,67,Room Based Capacity,,,,,,64.0,66.0,60.0,4.0,2.0,,93.75 -2325976,2022-07-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2325977,2022-07-11,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2325978,2022-07-11,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2325979,2022-07-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2325980,2022-07-11,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2325981,2022-07-11,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2325982,2022-07-11,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2325983,2022-07-11,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2325984,2022-07-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2325985,2022-07-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,219,Room Based Capacity,,,,,,214.0,245.0,208.0,6.0,31.0,,97.2 -2325986,2022-07-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2325987,2022-07-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2325988,2022-07-11,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2325989,2022-07-11,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2325990,2022-07-11,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2325991,2022-07-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2325992,2022-07-11,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2325993,2022-07-11,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2325994,2022-07-11,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2325995,2022-07-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2325996,2022-07-11,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2325997,2022-07-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2325998,2022-07-11,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2325999,2022-07-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2326000,2022-07-11,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,263.0,271.0,263.0,0.0,8.0,,100.0 -2326001,2022-07-11,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2326002,2022-07-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326003,2022-07-11,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2326004,2022-07-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,25.0,25.0,23.0,2.0,0.0,,,,,,92.0, -2326005,2022-07-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326006,2022-07-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326007,2022-07-11,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2326008,2022-07-11,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326009,2022-07-11,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2326010,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2326011,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326012,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326013,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2326014,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,82,Room Based Capacity,,,,,,82.0,86.0,82.0,0.0,4.0,,100.0 -2326015,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,234.0,235.0,234.0,0.0,1.0,,100.0 -2326016,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,321,Room Based Capacity,,,,,,281.0,287.0,281.0,0.0,6.0,,100.0 -2326017,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2326018,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2326019,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2326020,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,40.0,38.0,0.0,2.0,,,,,,100.0, -2326021,2022-07-11,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,51.0,51.0,51.0,0.0,0.0,,,,,,100.0, -2326022,2022-07-11,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2326023,2022-07-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,41.0,40.0,41.0,0.0,0.0,,100.0 -2326024,2022-07-11,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326025,2022-07-11,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2326026,2022-07-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2326027,2022-07-11,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2326028,2022-07-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326029,2022-07-11,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2326030,2022-07-11,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2326031,2022-07-11,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326032,2022-07-11,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,20.0,19.0,0.0,1.0,,,,,,100.0, -2326033,2022-07-11,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2326034,2022-07-11,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,26.0,30.0,25.0,1.0,4.0,,,,,,96.15, -2326035,2022-07-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326036,2022-07-11,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2326037,2022-07-11,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2326038,2022-07-11,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2326039,2022-07-11,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2326040,2022-07-11,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,182,Room Based Capacity,,,,,,66.0,76.0,61.0,5.0,10.0,,92.42 -2326041,2022-07-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2326042,2022-07-11,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2326043,2022-07-11,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2326044,2022-07-11,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2326045,2022-07-11,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326046,2022-07-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2326047,2022-07-11,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2326048,2022-07-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,32,Bed Based Capacity,32.0,36.0,32.0,0.0,4.0,,,,,,100.0, -2326049,2022-07-11,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2326050,2022-07-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2326051,2022-07-11,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2326052,2022-07-11,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,56.0,50.0,0.0,6.0,,,,,,100.0, -2326053,2022-07-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2326054,2022-07-11,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2326055,2022-07-11,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2326056,2022-07-11,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,33,Bed Based Capacity,34.0,34.0,33.0,1.0,0.0,,,,,,97.06, -2326057,2022-07-11,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326058,2022-07-11,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,84,Room Based Capacity,,,,,,26.0,27.0,24.0,2.0,1.0,,92.31 -2326059,2022-07-11,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326060,2022-07-11,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2326061,2022-07-11,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2326062,2022-07-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326063,2022-07-11,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326064,2022-07-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326065,2022-07-11,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326066,2022-07-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326067,2022-07-11,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326068,2022-07-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326069,2022-07-11,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326070,2022-07-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,315,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2326071,2022-07-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2326072,2022-07-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2326073,2022-07-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2326074,2022-07-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,250,Room Based Capacity,,,,,,77.0,100.0,77.0,0.0,23.0,,100.0 -2326075,2022-07-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,441,Room Based Capacity,,,,,,134.0,118.0,134.0,0.0,0.0,,100.0 -2326076,2022-07-12,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2326077,2022-07-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,142.0,152.0,142.0,0.0,10.0,,100.0 -2326078,2022-07-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,39.0,41.0,38.0,1.0,2.0,,97.44 -2326079,2022-07-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2326080,2022-07-12,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326081,2022-07-12,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2326082,2022-07-12,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2326083,2022-07-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,78,Room Based Capacity,,,,,,79.0,83.0,78.0,1.0,4.0,,98.73 -2326084,2022-07-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,9.0,12.0,9.0,0.0,3.0,,100.0 -2326085,2022-07-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2326086,2022-07-12,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,77,Room Based Capacity,,,,,,77.0,77.0,77.0,0.0,0.0,,100.0 -2326087,2022-07-12,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2326088,2022-07-12,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,71.0,86.0,71.0,0.0,15.0,,100.0 -2326089,2022-07-12,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2326090,2022-07-12,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,130,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2326091,2022-07-12,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,134,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2326092,2022-07-12,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2326093,2022-07-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,36.0,36.0,33.0,3.0,0.0,,,,,,91.67, -2326094,2022-07-12,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,68,Room Based Capacity,,,,,,67.0,51.0,64.0,3.0,0.0,,95.52 -2326095,2022-07-12,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326096,2022-07-12,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2326097,2022-07-12,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2326098,2022-07-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,101.0,118.0,101.0,0.0,17.0,,100.0 -2326099,2022-07-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,4.0,30.0,2.0,2.0,26.0,,50.0 -2326100,2022-07-12,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,19,Room Based Capacity,,,,,,29.0,30.0,19.0,10.0,1.0,,65.52 -2326101,2022-07-12,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2326102,2022-07-12,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2326103,2022-07-12,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2326104,2022-07-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,51.0,51.0,38.0,13.0,0.0,,,,,,74.51, -2326105,2022-07-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2326106,2022-07-12,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2326107,2022-07-12,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2326108,2022-07-12,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2326109,2022-07-12,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2326110,2022-07-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2326111,2022-07-12,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2326112,2022-07-12,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2326113,2022-07-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2326114,2022-07-12,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2326115,2022-07-12,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2326116,2022-07-12,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2326117,2022-07-12,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326118,2022-07-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326119,2022-07-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,219,Room Based Capacity,,,,,,214.0,245.0,208.0,6.0,31.0,,97.2 -2326120,2022-07-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2326121,2022-07-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2326122,2022-07-12,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2326123,2022-07-12,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2326124,2022-07-12,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2326125,2022-07-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,14.0,13.0,0.0,1.0,,,,,,100.0, -2326126,2022-07-12,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2326127,2022-07-12,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2326128,2022-07-12,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326129,2022-07-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2326130,2022-07-12,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326131,2022-07-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2326132,2022-07-12,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326133,2022-07-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,53.0,54.0,53.0,0.0,1.0,,,,,,100.0, -2326134,2022-07-12,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,272,Room Based Capacity,,,,,,262.0,271.0,262.0,0.0,9.0,,100.0 -2326135,2022-07-12,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2326136,2022-07-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326137,2022-07-12,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2326138,2022-07-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2326139,2022-07-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326140,2022-07-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326141,2022-07-12,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,44,Room Based Capacity,,,,,,44.0,47.0,44.0,0.0,3.0,,100.0 -2326142,2022-07-12,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326143,2022-07-12,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2326144,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,57.0,70.0,56.0,1.0,13.0,,,,,,98.25, -2326145,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326146,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326147,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2326148,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2326149,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,267,Room Based Capacity,,,,,,235.0,235.0,235.0,0.0,0.0,,100.0 -2326150,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,319,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2326151,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,37.0,37.0,35.0,2.0,0.0,,,,,,94.59, -2326152,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2326153,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2326154,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,38.0,40.0,38.0,0.0,2.0,,,,,,100.0, -2326155,2022-07-12,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,51.0,50.0,0.0,1.0,,,,,,100.0, -2326156,2022-07-12,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2326157,2022-07-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,40.0,40.0,1.0,0.0,,97.56 -2326158,2022-07-12,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326159,2022-07-12,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2326160,2022-07-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2326161,2022-07-12,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2326162,2022-07-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326163,2022-07-12,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2326164,2022-07-12,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,17,Bed Based Capacity,19.0,19.0,17.0,2.0,0.0,,,,,,89.47, -2326165,2022-07-12,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326166,2022-07-12,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326167,2022-07-12,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2326168,2022-07-12,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2326169,2022-07-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326170,2022-07-12,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2326171,2022-07-12,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2326172,2022-07-12,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2326173,2022-07-12,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2326174,2022-07-12,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,181,Room Based Capacity,,,,,,64.0,76.0,61.0,3.0,12.0,,95.31 -2326175,2022-07-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2326176,2022-07-12,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2326177,2022-07-12,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2326178,2022-07-12,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2326179,2022-07-12,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326180,2022-07-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2326181,2022-07-12,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2326182,2022-07-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2326183,2022-07-12,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,74,Room Based Capacity,,,,,,74.0,77.0,74.0,0.0,3.0,,100.0 -2326184,2022-07-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2326185,2022-07-12,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2326186,2022-07-12,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,56.0,54.0,0.0,2.0,,,,,,100.0, -2326187,2022-07-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2326188,2022-07-12,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2326189,2022-07-12,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2326190,2022-07-12,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2326191,2022-07-12,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326192,2022-07-12,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2326193,2022-07-12,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326194,2022-07-12,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2326195,2022-07-12,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2326196,2022-07-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326197,2022-07-12,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326198,2022-07-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326199,2022-07-12,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326200,2022-07-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326201,2022-07-12,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326202,2022-07-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326203,2022-07-12,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326204,2022-07-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,315,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2326205,2022-07-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2326206,2022-07-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2326207,2022-07-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2326208,2022-07-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2326209,2022-07-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,451,Room Based Capacity,,,,,,136.0,118.0,136.0,0.0,0.0,,100.0 -2326210,2022-07-13,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2326211,2022-07-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,143.0,152.0,143.0,0.0,9.0,,100.0 -2326212,2022-07-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,39,Room Based Capacity,,,,,,39.0,41.0,39.0,0.0,2.0,,100.0 -2326213,2022-07-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2326214,2022-07-13,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2326215,2022-07-13,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2326216,2022-07-13,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2326217,2022-07-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2326218,2022-07-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,10.0,12.0,9.0,1.0,2.0,,90.0 -2326219,2022-07-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2326220,2022-07-13,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326221,2022-07-13,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2326222,2022-07-13,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,138,Room Based Capacity,,,,,,72.0,86.0,71.0,1.0,14.0,,98.61 -2326223,2022-07-13,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2326224,2022-07-13,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,130,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2326225,2022-07-13,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,134,Room Based Capacity,,,,,,45.0,40.0,45.0,0.0,0.0,,100.0 -2326226,2022-07-13,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2326227,2022-07-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2326228,2022-07-13,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2326229,2022-07-13,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326230,2022-07-13,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2326231,2022-07-13,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2326232,2022-07-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,152,Room Based Capacity,,,,,,103.0,118.0,103.0,0.0,15.0,,100.0 -2326233,2022-07-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,3.0,2.0,25.0,,60.0 -2326234,2022-07-13,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,19,Room Based Capacity,,,,,,28.0,30.0,19.0,9.0,2.0,,67.86 -2326235,2022-07-13,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2326236,2022-07-13,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2326237,2022-07-13,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2326238,2022-07-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,38,Bed Based Capacity,51.0,51.0,38.0,13.0,0.0,,,,,,74.51, -2326239,2022-07-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2326240,2022-07-13,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2326241,2022-07-13,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2326242,2022-07-13,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,27.0,26.0,1.0,0.0,,,,,,96.3, -2326243,2022-07-13,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,71,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2326244,2022-07-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2326245,2022-07-13,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2326246,2022-07-13,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2326247,2022-07-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2326248,2022-07-13,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2326249,2022-07-13,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326250,2022-07-13,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2326251,2022-07-13,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326252,2022-07-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2326253,2022-07-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,215,Room Based Capacity,,,,,,214.0,245.0,204.0,10.0,31.0,,95.33 -2326254,2022-07-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2326255,2022-07-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2326256,2022-07-13,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,55,Room Based Capacity,,,,,,51.0,52.0,51.0,0.0,1.0,,100.0 -2326257,2022-07-13,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2326258,2022-07-13,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2326259,2022-07-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,14.0,14.0,13.0,1.0,0.0,,,,,,92.86, -2326260,2022-07-13,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2326261,2022-07-13,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2326262,2022-07-13,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326263,2022-07-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2326264,2022-07-13,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326265,2022-07-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2326266,2022-07-13,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326267,2022-07-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2326268,2022-07-13,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,276,Room Based Capacity,,,,,,268.0,271.0,266.0,2.0,3.0,,99.25 -2326269,2022-07-13,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2326270,2022-07-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326271,2022-07-13,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2326272,2022-07-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2326273,2022-07-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326274,2022-07-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326275,2022-07-13,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2326276,2022-07-13,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326277,2022-07-13,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2326278,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,57.0,70.0,55.0,2.0,13.0,,,,,,96.49, -2326279,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326280,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326281,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2326282,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2326283,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,234.0,235.0,234.0,0.0,1.0,,100.0 -2326284,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,318,Room Based Capacity,,,,,,278.0,287.0,278.0,0.0,9.0,,100.0 -2326285,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2326286,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2326287,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2326288,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2326289,2022-07-13,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,51.0,48.0,0.0,3.0,,,,,,100.0, -2326290,2022-07-13,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2326291,2022-07-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,39.0,40.0,39.0,0.0,1.0,,100.0 -2326292,2022-07-13,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326293,2022-07-13,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2326294,2022-07-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2326295,2022-07-13,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2326296,2022-07-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326297,2022-07-13,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,13,Room Based Capacity,,,,,,14.0,14.0,13.0,1.0,0.0,,92.86 -2326298,2022-07-13,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2326299,2022-07-13,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326300,2022-07-13,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326301,2022-07-13,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2326302,2022-07-13,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2326303,2022-07-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326304,2022-07-13,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2326305,2022-07-13,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2326306,2022-07-13,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2326307,2022-07-13,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2326308,2022-07-13,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,183,Room Based Capacity,,,,,,64.0,76.0,62.0,2.0,12.0,,96.88 -2326309,2022-07-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2326310,2022-07-13,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2326311,2022-07-13,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2326312,2022-07-13,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,73.0,73.0,72.0,1.0,0.0,,98.63 -2326313,2022-07-13,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326314,2022-07-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2326315,2022-07-13,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2326316,2022-07-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2326317,2022-07-13,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,77.0,77.0,76.0,1.0,0.0,,98.7 -2326318,2022-07-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2326319,2022-07-13,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2326320,2022-07-13,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,56.0,56.0,0.0,0.0,,,,,,100.0, -2326321,2022-07-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2326322,2022-07-13,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2326323,2022-07-13,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2326324,2022-07-13,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2326325,2022-07-13,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326326,2022-07-13,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2326327,2022-07-13,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326328,2022-07-13,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2326329,2022-07-13,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2326330,2022-07-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326331,2022-07-13,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2326332,2022-07-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2326333,2022-07-13,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326334,2022-07-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326335,2022-07-13,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326336,2022-07-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326337,2022-07-13,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326338,2022-07-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,315,Room Based Capacity,,,,,,79.0,80.0,79.0,0.0,1.0,,100.0 -2326339,2022-07-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2326340,2022-07-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2326341,2022-07-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2326342,2022-07-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2326343,2022-07-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,451,Room Based Capacity,,,,,,136.0,118.0,136.0,0.0,0.0,,100.0 -2326344,2022-07-14,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2326345,2022-07-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,148,Room Based Capacity,,,,,,142.0,152.0,142.0,0.0,10.0,,100.0 -2326346,2022-07-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2326347,2022-07-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2326348,2022-07-14,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2326349,2022-07-14,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2326350,2022-07-14,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2326351,2022-07-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,80.0,83.0,80.0,0.0,3.0,,100.0 -2326352,2022-07-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,11.0,12.0,9.0,2.0,1.0,,81.82 -2326353,2022-07-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2326354,2022-07-14,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326355,2022-07-14,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2326356,2022-07-14,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,141,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2326357,2022-07-14,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2326358,2022-07-14,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,129,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2326359,2022-07-14,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,136,Room Based Capacity,,,,,,46.0,40.0,46.0,0.0,0.0,,100.0 -2326360,2022-07-14,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2326361,2022-07-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,36.0,36.0,33.0,3.0,0.0,,,,,,91.67, -2326362,2022-07-14,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2326363,2022-07-14,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326364,2022-07-14,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2326365,2022-07-14,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,85,Room Based Capacity,,,,,,36.0,37.0,36.0,0.0,1.0,,100.0 -2326366,2022-07-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,103.0,118.0,103.0,0.0,15.0,,100.0 -2326367,2022-07-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,3.0,2.0,25.0,,60.0 -2326368,2022-07-14,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,19,Room Based Capacity,,,,,,28.0,30.0,19.0,9.0,2.0,,67.86 -2326369,2022-07-14,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2326370,2022-07-14,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2326371,2022-07-14,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2326372,2022-07-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,51.0,51.0,36.0,15.0,0.0,,,,,,70.59, -2326373,2022-07-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2326374,2022-07-14,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2326375,2022-07-14,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2326376,2022-07-14,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,27.0,27.0,24.0,3.0,0.0,,,,,,88.89, -2326377,2022-07-14,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,70,Room Based Capacity,,,,,,63.0,66.0,62.0,1.0,3.0,,98.41 -2326378,2022-07-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2326379,2022-07-14,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2326380,2022-07-14,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2326381,2022-07-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2326382,2022-07-14,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2326383,2022-07-14,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326384,2022-07-14,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2326385,2022-07-14,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326386,2022-07-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2326387,2022-07-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,215,Room Based Capacity,,,,,,214.0,245.0,204.0,10.0,31.0,,95.33 -2326388,2022-07-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2326389,2022-07-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2326390,2022-07-14,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2326391,2022-07-14,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2326392,2022-07-14,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2326393,2022-07-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326394,2022-07-14,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,41.0,41.0,41.0,0.0,0.0,,100.0 -2326395,2022-07-14,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2326396,2022-07-14,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326397,2022-07-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2326398,2022-07-14,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326399,2022-07-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,42,Bed Based Capacity,44.0,44.0,42.0,2.0,0.0,,,,,,95.45, -2326400,2022-07-14,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326401,2022-07-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326402,2022-07-14,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,282,Room Based Capacity,,,,,,269.0,271.0,269.0,0.0,2.0,,100.0 -2326403,2022-07-14,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2326404,2022-07-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326405,2022-07-14,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2326406,2022-07-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2326407,2022-07-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326408,2022-07-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326409,2022-07-14,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2326410,2022-07-14,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326411,2022-07-14,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2326412,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,58.0,70.0,54.0,4.0,12.0,,,,,,93.1, -2326413,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326414,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326415,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2326416,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2326417,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,264,Room Based Capacity,,,,,,232.0,235.0,232.0,0.0,3.0,,100.0 -2326418,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,319,Room Based Capacity,,,,,,280.0,287.0,279.0,1.0,7.0,,99.64 -2326419,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2326420,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2326421,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2326422,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2326423,2022-07-14,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,51.0,48.0,0.0,3.0,,,,,,100.0, -2326424,2022-07-14,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2326425,2022-07-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,38,Room Based Capacity,,,,,,37.0,40.0,37.0,0.0,3.0,,100.0 -2326426,2022-07-14,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326427,2022-07-14,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2326428,2022-07-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2326429,2022-07-14,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2326430,2022-07-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,7,Bed Based Capacity,11.0,11.0,7.0,4.0,0.0,,,,,,63.64, -2326431,2022-07-14,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2326432,2022-07-14,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2326433,2022-07-14,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326434,2022-07-14,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326435,2022-07-14,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2326436,2022-07-14,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2326437,2022-07-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326438,2022-07-14,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2326439,2022-07-14,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2326440,2022-07-14,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2326441,2022-07-14,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2326442,2022-07-14,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,185,Room Based Capacity,,,,,,63.0,76.0,63.0,0.0,13.0,,100.0 -2326443,2022-07-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2326444,2022-07-14,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,23.0,23.0,20.0,3.0,0.0,,86.96 -2326445,2022-07-14,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2326446,2022-07-14,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2326447,2022-07-14,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326448,2022-07-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2326449,2022-07-14,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2326450,2022-07-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,36.0,34.0,0.0,2.0,,,,,,100.0, -2326451,2022-07-14,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326452,2022-07-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2326453,2022-07-14,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2326454,2022-07-14,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,56.0,56.0,0.0,0.0,,,,,,100.0, -2326455,2022-07-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2326456,2022-07-14,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2326457,2022-07-14,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2326458,2022-07-14,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2326459,2022-07-14,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326460,2022-07-14,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2326461,2022-07-14,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326462,2022-07-14,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2326463,2022-07-14,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2326464,2022-07-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326465,2022-07-14,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2326466,2022-07-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326467,2022-07-14,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326468,2022-07-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326469,2022-07-14,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326470,2022-07-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326471,2022-07-14,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326472,2022-07-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,314,Room Based Capacity,,,,,,80.0,80.0,79.0,1.0,0.0,,98.75 -2326473,2022-07-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2326474,2022-07-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2326475,2022-07-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2326476,2022-07-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2326477,2022-07-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,450,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2326478,2022-07-15,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2326479,2022-07-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,143.0,152.0,143.0,0.0,9.0,,100.0 -2326480,2022-07-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2326481,2022-07-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2326482,2022-07-15,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2326483,2022-07-15,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2326484,2022-07-15,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2326485,2022-07-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,81.0,83.0,80.0,1.0,2.0,,98.77 -2326486,2022-07-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,11.0,12.0,9.0,2.0,1.0,,81.82 -2326487,2022-07-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2326488,2022-07-15,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326489,2022-07-15,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2326490,2022-07-15,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,142,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2326491,2022-07-15,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,100,Room Based Capacity,,,,,,100.0,100.0,100.0,0.0,0.0,,100.0 -2326492,2022-07-15,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,129,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2326493,2022-07-15,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,136,Room Based Capacity,,,,,,46.0,40.0,46.0,0.0,0.0,,100.0 -2326494,2022-07-15,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2326495,2022-07-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2326496,2022-07-15,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2326497,2022-07-15,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326498,2022-07-15,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2326499,2022-07-15,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2326500,2022-07-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,151,Room Based Capacity,,,,,,103.0,118.0,103.0,0.0,15.0,,100.0 -2326501,2022-07-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,4,Room Based Capacity,,,,,,5.0,30.0,3.0,2.0,25.0,,60.0 -2326502,2022-07-15,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,28.0,30.0,21.0,7.0,2.0,,75.0 -2326503,2022-07-15,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2326504,2022-07-15,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2326505,2022-07-15,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2326506,2022-07-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,51.0,51.0,37.0,14.0,0.0,,,,,,72.55, -2326507,2022-07-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2326508,2022-07-15,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,22.0,22.0,18.0,4.0,0.0,,,,,,81.82, -2326509,2022-07-15,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2326510,2022-07-15,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,27.0,27.0,21.0,6.0,0.0,,,,,,77.78, -2326511,2022-07-15,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2326512,2022-07-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2326513,2022-07-15,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2326514,2022-07-15,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2326515,2022-07-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2326516,2022-07-15,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2326517,2022-07-15,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,53,Bed Based Capacity,54.0,54.0,53.0,1.0,0.0,,,,,,98.15, -2326518,2022-07-15,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2326519,2022-07-15,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326520,2022-07-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,50.0,45.0,0.0,5.0,,,,,,100.0, -2326521,2022-07-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,216,Room Based Capacity,,,,,,214.0,245.0,205.0,9.0,31.0,,95.79 -2326522,2022-07-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2326523,2022-07-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2326524,2022-07-15,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2326525,2022-07-15,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2326526,2022-07-15,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2326527,2022-07-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326528,2022-07-15,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2326529,2022-07-15,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2326530,2022-07-15,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326531,2022-07-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,37.0,34.0,2.0,1.0,,,,,,94.44, -2326532,2022-07-15,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326533,2022-07-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326534,2022-07-15,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326535,2022-07-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326536,2022-07-15,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,285,Room Based Capacity,,,,,,271.0,271.0,271.0,0.0,0.0,,100.0 -2326537,2022-07-15,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,45.0,44.0,1.0,0.0,,,,,,97.78, -2326538,2022-07-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326539,2022-07-15,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2326540,2022-07-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,25.0,25.0,22.0,3.0,0.0,,,,,,88.0, -2326541,2022-07-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326542,2022-07-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326543,2022-07-15,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,45,Room Based Capacity,,,,,,45.0,47.0,45.0,0.0,2.0,,100.0 -2326544,2022-07-15,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326545,2022-07-15,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2326546,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,56.0,70.0,54.0,2.0,14.0,,,,,,96.43, -2326547,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326548,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326549,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2326550,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2326551,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,266,Room Based Capacity,,,,,,235.0,235.0,235.0,0.0,0.0,,100.0 -2326552,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,321,Room Based Capacity,,,,,,281.0,287.0,281.0,0.0,6.0,,100.0 -2326553,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2326554,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2326555,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2326556,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2326557,2022-07-15,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,51.0,48.0,0.0,3.0,,,,,,100.0, -2326558,2022-07-15,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2326559,2022-07-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,32.0,40.0,31.0,1.0,8.0,,96.88 -2326560,2022-07-15,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,15.0,13.0,0.0,2.0,,,,,,100.0, -2326561,2022-07-15,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2326562,2022-07-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,44.0,44.0,43.0,1.0,0.0,,,,,,97.73, -2326563,2022-07-15,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,17.0,17.0,12.0,5.0,0.0,,,,,,70.59, -2326564,2022-07-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326565,2022-07-15,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2326566,2022-07-15,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,16,Bed Based Capacity,19.0,19.0,16.0,3.0,0.0,,,,,,84.21, -2326567,2022-07-15,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326568,2022-07-15,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326569,2022-07-15,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2326570,2022-07-15,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2326571,2022-07-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326572,2022-07-15,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2326573,2022-07-15,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2326574,2022-07-15,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2326575,2022-07-15,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2326576,2022-07-15,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,185,Room Based Capacity,,,,,,63.0,76.0,63.0,0.0,13.0,,100.0 -2326577,2022-07-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2326578,2022-07-15,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,20.0,23.0,20.0,0.0,3.0,,100.0 -2326579,2022-07-15,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2326580,2022-07-15,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2326581,2022-07-15,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326582,2022-07-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,131,Room Based Capacity,,,,,,131.0,131.0,131.0,0.0,0.0,,100.0 -2326583,2022-07-15,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2326584,2022-07-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2326585,2022-07-15,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326586,2022-07-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2326587,2022-07-15,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2326588,2022-07-15,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,56.0,56.0,0.0,0.0,,,,,,100.0, -2326589,2022-07-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2326590,2022-07-15,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2326591,2022-07-15,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2326592,2022-07-15,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2326593,2022-07-15,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326594,2022-07-15,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2326595,2022-07-15,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326596,2022-07-15,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2326597,2022-07-15,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2326598,2022-07-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326599,2022-07-15,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2326600,2022-07-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326601,2022-07-15,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326602,2022-07-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2326603,2022-07-15,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326604,2022-07-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326605,2022-07-15,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326606,2022-07-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,317,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2326607,2022-07-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2326608,2022-07-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2326609,2022-07-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2326610,2022-07-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2326611,2022-07-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,450,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2326612,2022-07-16,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2326613,2022-07-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,143.0,152.0,143.0,0.0,9.0,,100.0 -2326614,2022-07-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2326615,2022-07-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2326616,2022-07-16,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2326617,2022-07-16,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2326618,2022-07-16,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2326619,2022-07-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,80,Room Based Capacity,,,,,,82.0,83.0,80.0,2.0,1.0,,97.56 -2326620,2022-07-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,18,Room Based Capacity,,,,,,11.0,12.0,9.0,2.0,1.0,,81.82 -2326621,2022-07-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2326622,2022-07-16,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326623,2022-07-16,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,12,Bed Based Capacity,12.0,12.0,12.0,0.0,0.0,,,,,,100.0, -2326624,2022-07-16,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,142,Room Based Capacity,,,,,,73.0,86.0,73.0,0.0,13.0,,100.0 -2326625,2022-07-16,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2326626,2022-07-16,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,129,Room Based Capacity,,,,,,36.0,43.0,36.0,0.0,7.0,,100.0 -2326627,2022-07-16,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,136,Room Based Capacity,,,,,,46.0,40.0,46.0,0.0,0.0,,100.0 -2326628,2022-07-16,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2326629,2022-07-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,36.0,36.0,34.0,2.0,0.0,,,,,,94.44, -2326630,2022-07-16,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2326631,2022-07-16,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326632,2022-07-16,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2326633,2022-07-16,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2326634,2022-07-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,103.0,118.0,102.0,1.0,15.0,,99.03 -2326635,2022-07-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,30.0,4.0,1.0,25.0,,80.0 -2326636,2022-07-16,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,28.0,30.0,20.0,8.0,2.0,,71.43 -2326637,2022-07-16,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2326638,2022-07-16,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2326639,2022-07-16,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2326640,2022-07-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,51.0,51.0,37.0,14.0,0.0,,,,,,72.55, -2326641,2022-07-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2326642,2022-07-16,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2326643,2022-07-16,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2326644,2022-07-16,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,27.0,27.0,22.0,5.0,0.0,,,,,,81.48, -2326645,2022-07-16,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2326646,2022-07-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2326647,2022-07-16,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2326648,2022-07-16,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2326649,2022-07-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2326650,2022-07-16,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,42,Room Based Capacity,,,,,,42.0,42.0,42.0,0.0,0.0,,100.0 -2326651,2022-07-16,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326652,2022-07-16,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2326653,2022-07-16,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326654,2022-07-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,50.0,44.0,0.0,6.0,,,,,,100.0, -2326655,2022-07-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,216,Room Based Capacity,,,,,,214.0,245.0,205.0,9.0,31.0,,95.79 -2326656,2022-07-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2326657,2022-07-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2326658,2022-07-16,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2326659,2022-07-16,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2326660,2022-07-16,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,43,Bed Based Capacity,45.0,50.0,43.0,2.0,5.0,,,,,,95.56, -2326661,2022-07-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326662,2022-07-16,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,41.0,41.0,40.0,1.0,0.0,,97.56 -2326663,2022-07-16,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2326664,2022-07-16,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326665,2022-07-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2326666,2022-07-16,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326667,2022-07-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326668,2022-07-16,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326669,2022-07-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326670,2022-07-16,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,285,Room Based Capacity,,,,,,271.0,271.0,271.0,0.0,0.0,,100.0 -2326671,2022-07-16,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2326672,2022-07-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326673,2022-07-16,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2326674,2022-07-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,25.0,25.0,21.0,4.0,0.0,,,,,,84.0, -2326675,2022-07-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326676,2022-07-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326677,2022-07-16,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2326678,2022-07-16,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326679,2022-07-16,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,107,Room Based Capacity,,,,,,93.0,94.0,93.0,0.0,1.0,,100.0 -2326680,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,70.0,56.0,0.0,14.0,,,,,,100.0, -2326681,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326682,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326683,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2326684,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2326685,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,267,Room Based Capacity,,,,,,235.0,235.0,235.0,0.0,0.0,,100.0 -2326686,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,319,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2326687,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2326688,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2326689,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,128,Bed Based Capacity,129.0,130.0,128.0,1.0,1.0,,,,,,99.22, -2326690,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2326691,2022-07-16,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,51.0,48.0,0.0,3.0,,,,,,100.0, -2326692,2022-07-16,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2326693,2022-07-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,40.0,31.0,0.0,9.0,,100.0 -2326694,2022-07-16,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,15.0,13.0,0.0,2.0,,,,,,100.0, -2326695,2022-07-16,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2326696,2022-07-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326697,2022-07-16,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2326698,2022-07-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326699,2022-07-16,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2326700,2022-07-16,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2326701,2022-07-16,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326702,2022-07-16,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326703,2022-07-16,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2326704,2022-07-16,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2326705,2022-07-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326706,2022-07-16,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2326707,2022-07-16,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2326708,2022-07-16,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2326709,2022-07-16,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2326710,2022-07-16,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,185,Room Based Capacity,,,,,,63.0,76.0,63.0,0.0,13.0,,100.0 -2326711,2022-07-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2326712,2022-07-16,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,20.0,23.0,20.0,0.0,3.0,,100.0 -2326713,2022-07-16,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2326714,2022-07-16,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,73,Room Based Capacity,,,,,,73.0,73.0,73.0,0.0,0.0,,100.0 -2326715,2022-07-16,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326716,2022-07-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,131.0,131.0,130.0,1.0,0.0,,99.24 -2326717,2022-07-16,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,224,Bed Based Capacity,225.0,225.0,224.0,1.0,0.0,,,,,,99.56, -2326718,2022-07-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,35.0,36.0,35.0,0.0,1.0,,,,,,100.0, -2326719,2022-07-16,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326720,2022-07-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2326721,2022-07-16,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2326722,2022-07-16,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,56.0,56.0,0.0,0.0,,,,,,100.0, -2326723,2022-07-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2326724,2022-07-16,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2326725,2022-07-16,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2326726,2022-07-16,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2326727,2022-07-16,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326728,2022-07-16,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2326729,2022-07-16,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326730,2022-07-16,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2326731,2022-07-16,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2326732,2022-07-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326733,2022-07-16,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2326734,2022-07-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326735,2022-07-16,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326736,2022-07-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2326737,2022-07-16,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326738,2022-07-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326739,2022-07-16,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326740,2022-07-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16892,COSTI - Hotel Program - Dixon (Refugee Families),Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,317,Room Based Capacity,,,,,,80.0,80.0,80.0,0.0,0.0,,100.0 -2326741,2022-07-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1320.0,COSTI Hotel Program Dixon,640 Dixon Rd.,M9W 1J1,Toronto,ON,16891,COSTI - Hotel Program - Dixon (Refugee Singles),Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,50,Room Based Capacity,,,,,,25.0,25.0,25.0,0.0,0.0,,100.0 -2326742,2022-07-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1051.0,COSTI Reception Centre,100 Lippincott St,M5S 2P1,Toronto,ON,12251,COSTI Reception Centre CITY Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,8.0,8.0,8.0,0.0,0.0,,,,,,100.0, -2326743,2022-07-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15252,COSTI Uptown Hotel - Women's Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,1,Room Based Capacity,,,,,,1.0,1.0,1.0,0.0,0.0,,100.0 -2326744,2022-07-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,15372,COSTI Uptown Hotel COVID-19 - Family Program,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,253,Room Based Capacity,,,,,,78.0,100.0,78.0,0.0,22.0,,100.0 -2326745,2022-07-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,13751,COSTI Uptown Hotel Family Program,Families,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,450,Room Based Capacity,,,,,,135.0,118.0,135.0,0.0,0.0,,100.0 -2326746,2022-07-17,24,COSTI Immigrant Services,40,COSTI Reception Centre,1114.0,COSTI Uptown Hotel Program,55 Hallcrown Pl,M2J 4R1,North York,ON,16535,COSTI Uptown Hotel Program - Refugee Singles,Mixed Adult,Emergency,Motel/Hotel Shelter,Temporary Refugee Response,13,Room Based Capacity,,,,,,13.0,13.0,13.0,0.0,0.0,,100.0 -2326747,2022-07-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1160.0,CONC Etobicoke Hotel Program,445 Rexdale Blvd,M9W 6P8,Etobicoke,ON,16111,CONC Etobicoke Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,149,Room Based Capacity,,,,,,143.0,152.0,143.0,0.0,9.0,,100.0 -2326748,2022-07-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1172.0,CONC West End Hotel Program,14 Roncesvalles Ave,M6R 2K3,Toronto,ON,15711,CONC Men's Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2326749,2022-07-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1029.0,CONC Men's Shelter Lansdowne Ave,973 Lansdowne Ave,M6H 3Z5,Toronto,ON,12011,Christie Ossington Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,33,Bed Based Capacity,33.0,33.0,33.0,0.0,0.0,,,,,,100.0, -2326750,2022-07-17,14,Christie Ossington Neighbourhood Centre,22,Christie Ossington Men's Hostel,1102.0,CONC Men's Shelter Bloor St W,850 Bloor St W,M6G 1M2,Toronto,ON,13611,Christie Ossington Men's Hostel South,Men,Emergency,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,15.0,14.0,0.0,1.0,,,,,,100.0, -2326751,2022-07-17,23,"Christie Refugee Welcome Centre, Inc.",39,Christie Refugee Welcome Centre,1052.0,Christie Refugee Welcome Centre,43 Christie St,M6G 3B1,Toronto,ON,12233,Christie Refugee Welcome Centre - Settlement and Support,Families,Emergency,Shelter,Base Shelter and Overnight Services System,62,Room Based Capacity,,,,,,24.0,30.0,24.0,0.0,6.0,,100.0 -2326752,2022-07-17,1,City of Toronto,53,Birkdale Residence,1070.0,SSHA Birkdale Residence,1229 Ellesmere Rd,M1P 4V8,Toronto,ON,12351,Birkdale Residence - Bedded Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,210,Room Based Capacity,,,,,,64.0,65.0,64.0,0.0,1.0,,100.0 -2326753,2022-07-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16671,SSHA North York West Hotel - North - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,79,Room Based Capacity,,,,,,82.0,83.0,79.0,3.0,1.0,,96.34 -2326754,2022-07-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16691,SSHA North York West Hotel - North – Co-ed,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,17,Room Based Capacity,,,,,,11.0,12.0,9.0,2.0,1.0,,81.82 -2326755,2022-07-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16311,SSHA North York West Hotel Program - Couples,Families,Emergency,Motel/Hotel Shelter,COVID-19 Response,28,Room Based Capacity,,,,,,14.0,14.0,14.0,0.0,0.0,,100.0 -2326756,2022-07-17,1,City of Toronto,53,Birkdale Residence,1103.0,SSHA North York West Hotel Program,1677 Wilson Ave,M3L 1A5,North York,ON,16271,SSHA North York West Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326757,2022-07-17,1,City of Toronto,60,Downsview Dells,1009.0,SSHA Downsview Dells,1651 Sheppard Ave W,M3M 2X4,Toronto,ON,11815,Downsview Dells Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,12.0,12.0,11.0,1.0,0.0,,,,,,91.67, -2326758,2022-07-17,1,City of Toronto,83,Expansion Sites,1181.0,SSHA Roehampton Hotel Program,808 Mt Pleasant Rd,M4P 2L2,Toronto,ON,15991,Roehampton Residence,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,140,Room Based Capacity,,,,,,72.0,86.0,72.0,0.0,14.0,,100.0 -2326759,2022-07-17,1,City of Toronto,83,Expansion Sites,1194.0,Scarborough Women's Shelter - Milner,20 Milner Business Ct,M1B 3M6,Scarborough,ON,16471,Scarborough Women's Shelter - Milner,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,99,Room Based Capacity,,,,,,99.0,100.0,99.0,0.0,1.0,,100.0 -2326760,2022-07-17,1,City of Toronto,2,Family Residence,1065.0,SSHA Family Residence,4222 Kingston Rd,M1E 2M6,Toronto,ON,12311,Family Residence - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,131,Room Based Capacity,,,,,,37.0,43.0,37.0,0.0,6.0,,100.0 -2326761,2022-07-17,1,City of Toronto,2,Family Residence,1066.0,SSHA Scarborough Hotel Program 3,4674 Kingston Rd,M1E 2P9,Toronto,ON,12392,SSHA Scarborough Hotel 3 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,136,Room Based Capacity,,,,,,46.0,40.0,46.0,0.0,0.0,,100.0 -2326762,2022-07-17,1,City of Toronto,2,Family Residence,1067.0,SSHA Scarborough Hotel Program 4,4540 Kingston Rd,M1E 2N8,Toronto,ON,12391,SSHA Scarborough Hotel 4 - Family Program,Families,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,52,Room Based Capacity,,,,,,20.0,20.0,20.0,0.0,0.0,,100.0 -2326763,2022-07-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,11831,Fort York Residence Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,35,Bed Based Capacity,36.0,36.0,35.0,1.0,0.0,,,,,,97.22, -2326764,2022-07-17,1,City of Toronto,62,Fort York Residence,1123.0,SSHA North Hotel Program,3600 Steeles Ave W,L4L 8P5,Vaughan,ON,14051,Fort York Residence North Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,69,Room Based Capacity,,,,,,67.0,51.0,65.0,2.0,0.0,,97.01 -2326765,2022-07-17,1,City of Toronto,62,Fort York Residence,1011.0,SSHA Fort York Residence,38 Bathurst St,M5V 3W3,Toronto,ON,12711,Fort York SRO Units Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326766,2022-07-17,1,City of Toronto,94,Progress Shelter,1360.0,Progress Avenue Shelter,705 Progress Ave,M1H 2X1,Toronto,ON,16951,Progress Shelter,Men,Emergency,Shelter,Base Shelter and Overnight Services System,63,Bed Based Capacity,63.0,63.0,63.0,0.0,0.0,,,,,,100.0, -2326767,2022-07-17,1,City of Toronto,54,Robertson House,1069.0,Robertson House,291 Sherbourne St,M5A 2R9,Toronto,ON,12331,Robertson House - Main Program,Families,Emergency,Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,35.0,37.0,35.0,0.0,2.0,,100.0 -2326768,2022-07-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16551,SSHA Etobicoke Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,150,Room Based Capacity,,,,,,102.0,118.0,102.0,0.0,16.0,,100.0 -2326769,2022-07-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,16058,SSHA Isolation Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,5,Room Based Capacity,,,,,,5.0,30.0,4.0,1.0,25.0,,80.0 -2326770,2022-07-17,1,City of Toronto,82,SSHA Etobicoke Hotel Program,1163.0,SSHA Etobicoke Hotel Program,,,,,15391,SSHA Recovery Program,Mixed Adult,Emergency,Isolation/Recovery Site,COVID-19 Response,22,Room Based Capacity,,,,,,28.0,30.0,20.0,8.0,2.0,,71.43 -2326771,2022-07-17,1,City of Toronto,59,Scarborough Village Residence,1155.0,SSHA Scarborough Hotel Program 1,4584 Kingston Rd,M1E 2P4,Scarborough,ON,15673,SSHA Scarborough Hotel 1 - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,23.0,23.0,23.0,0.0,0.0,,100.0 -2326772,2022-07-17,1,City of Toronto,59,Scarborough Village Residence,1151.0,SSHA Scarborough Village Residence,3306 Kingston Rd,M1M 1P8,Toronto,ON,14811,Scarborough Village Residence Main Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,93,Bed Based Capacity,93.0,93.0,93.0,0.0,0.0,,,,,,100.0, -2326773,2022-07-17,1,City of Toronto,3,Seaton House,1154.0,SSHA Junction Place,731 Runnymede Rd,M6N 3V7,Toronto,ON,15171,Junction Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,50,Bed Based Capacity,50.0,50.0,50.0,0.0,0.0,,,,,,100.0, -2326774,2022-07-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,11812,Seaton House - Annex Harm Reduction & Managed Alcohol Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,51.0,51.0,37.0,14.0,0.0,,,,,,72.55, -2326775,2022-07-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15051,Seaton House - Fourth Floor Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,81,Bed Based Capacity,81.0,81.0,81.0,0.0,0.0,,,,,,100.0, -2326776,2022-07-17,1,City of Toronto,3,Seaton House,1008.0,SSHA Seaton House,339 George St,M5A 2N2,Toronto,ON,15191,Seaton House - Infirmary Bedded Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,17,Bed Based Capacity,22.0,22.0,17.0,5.0,0.0,,,,,,77.27, -2326777,2022-07-17,1,City of Toronto,3,Seaton House,1190.0,SSHA Downtown Response Program,76 Church St,M5C 2G1,Toronto,ON,15751,Seaton House Hostel Response Program,Men,Emergency,Shelter,COVID-19 Response,53,Bed Based Capacity,53.0,53.0,53.0,0.0,0.0,,,,,,100.0, -2326778,2022-07-17,1,City of Toronto,6,Streets To Homes,1004.0,Streets to Homes Assessment and Referral Centre (SHARC),129 Peter St,M5V 2H3,Toronto,ON,12952,Streets to Homes Bedded Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,27.0,27.0,25.0,2.0,0.0,,,,,,92.59, -2326779,2022-07-17,1,City of Toronto,4,Women's Residence,1124.0,SSHA Downtown Hotel Program,77 Ryerson Ave,M5T 2V4,Toronto,ON,14631,SSHA Downtown Hotel Women's Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,64.0,66.0,63.0,1.0,2.0,,98.44 -2326780,2022-07-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,12471,Women's Residence Extreme Weather Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,4.0,9.0,4.0,0.0,5.0,,,,,,100.0, -2326781,2022-07-17,1,City of Toronto,4,Women's Residence,1005.0,SSHA Womens' Residence,674 Dundas St W,M5H 1H9,Toronto,ON,11798,Womens' Residence - Main Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,74,Bed Based Capacity,74.0,74.0,74.0,0.0,0.0,,,,,,100.0, -2326782,2022-07-17,13,Cornerstone Place,21,Cornerstone Place,1028.0,Cornerstone Place,616 Vaughan Rd,M6C 2R5,Toronto,ON,11971,Cornerstone Place,Men,Emergency,Shelter,Base Shelter and Overnight Services System,21,Bed Based Capacity,21.0,21.0,21.0,0.0,0.0,,,,,,100.0, -2326783,2022-07-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,13371,Covenant House - Transitional Safe Beds for women,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,1,Bed Based Capacity,2.0,2.0,1.0,1.0,0.0,,,,,,50.0, -2326784,2022-07-17,12,Covenant House Toronto,20,Covenant House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15551,Covenant House - Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,41,Room Based Capacity,,,,,,42.0,42.0,41.0,1.0,0.0,,97.62 -2326785,2022-07-17,12,Covenant House Toronto,20,Covenant House,1026.0,Covenant House Gerrard St E,20 Gerrard St E,M5B 2P3,Toronto,ON,11951,Covenant House Residence,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326786,2022-07-17,12,Covenant House Toronto,20,Covenant House,1027.0,Covenant House McGill St,21 McGill St,M5B 1H3,Toronto,ON,11955,Covenant House Rights of Passage,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,28.0,28.0,0.0,0.0,,,,,,100.0, -2326787,2022-07-17,6,Dixon Hall,80,351 Lakeshore Respite Services,1149.0,Dixon Hall 351 Lake Shore Blvd E Respite,351 Lake Shore Blvd E,M5A 1C1,Toronto,ON,14791,Dixon Hall 351 Lake Shore Blvd E. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326788,2022-07-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1128.0,Dixon Hall 354 George St,354 George St,M5A 2N3,Scarborough,ON,15331,Dixon Hall - 354 George,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,50.0,43.0,0.0,7.0,,,,,,100.0, -2326789,2022-07-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1176.0,Dixon Hall Bond Place Hotel Program,65 Dundas St E,M5B 2G8,Toronto,ON,16091,Dixon Hall - Bond Place Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,216,Room Based Capacity,,,,,,214.0,245.0,205.0,9.0,31.0,,95.79 -2326790,2022-07-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1015.0,Dixon Hall Heyworth House,2714 Danforth Ave,M4C 1L7,Toronto,ON,11892,Dixon Hall - Heyworth House,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,41,Bed Based Capacity,41.0,41.0,41.0,0.0,0.0,,,,,,100.0, -2326791,2022-07-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15511,Dixon Hall Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,90,Room Based Capacity,,,,,,90.0,92.0,90.0,0.0,2.0,,100.0 -2326792,2022-07-17,6,Dixon Hall,9,Dixon Hall - Heyworth House,1177.0,Dixon Hall Downtown Hotel,56 Yonge St,M5E 1G5,Toronto,ON,15891,Dixon Hall Downtown Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,54,Room Based Capacity,,,,,,50.0,52.0,50.0,0.0,2.0,,100.0 -2326793,2022-07-17,6,Dixon Hall,14,Dixon Hall - Schoolhouse,1020.0,Dixon Hall Schoolhouse,349 George St,M5A 2N2,Toronto,ON,11897,Dixon Hall - Schoolhouse,Men,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,22.0,22.0,22.0,0.0,0.0,,,,,,100.0, -2326794,2022-07-17,11,Eva's Initiatives,19,Eva's Phoenix,1025.0,Eva's Phoenix,60 Brant St,M5V 3G9,Toronto,ON,11932,Eva's Phoenix,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,45.0,50.0,44.0,1.0,5.0,,,,,,97.78, -2326795,2022-07-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16932,Eva's Place Hotel,Mixed Adult,Emergency,Motel/Hotel Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326796,2022-07-17,11,Eva's Initiatives,18,Eva's Place,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,16611,Eva's Satellite Downtown Hotel Program.,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,40.0,41.0,40.0,0.0,1.0,,100.0 -2326797,2022-07-17,25,Fife House Foundation,41,Fife House Transitional Program,1053.0,Fife House Denison Ave,70 Denison Ave,M5T 2M8,Toronto,ON,12252,Fife House Denison Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,4,Bed Based Capacity,5.0,5.0,4.0,1.0,0.0,,,,,,80.0, -2326798,2022-07-17,25,Fife House Foundation,41,Fife House Transitional Program,1054.0,Fife House Sherbourne St,490 Sherbourne St,M4X 1K9,Toronto,ON,12253,Fife-Sherbourne Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326799,2022-07-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1099.0,Fred Victor Centre Transition to Housing Dundas St E,386 Dundas St E,M5A 2A5,Toronto,ON,13331,Fred Victor T2H Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,34,Bed Based Capacity,37.0,37.0,34.0,3.0,0.0,,,,,,91.89, -2326800,2022-07-17,26,Fred Victor Centre,58,FV Women's Transition to Housing,1081.0,Fred Victor Mary Sheffield House,512 Jarvis St,M4Y 2H6,Toronto,ON,13191,Fred Victor Transition to Housing Bedded Program,Women,Transitional,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,24.0,24.0,23.0,1.0,0.0,,,,,,95.83, -2326801,2022-07-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1007.0,Adelaide Resource Centre for Women,67 Adelaide St E,M5C 1K6,Toronto,ON,16391,Fred Victor The Phoenix Women's 24/7 Drop-In,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326802,2022-07-17,26,Fred Victor Centre,42,Fred Victor Women's Hostel,1193.0,Fred Victor Centre Fatima House,1059 College Street,M6H 1B1,Toronto,ON,12256,Fred Victor Women's Hostel Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,23,Bed Based Capacity,23.0,23.0,23.0,0.0,0.0,,,,,,100.0, -2326803,2022-07-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1055.0,Fred Victor Centre Bethlehem United Shelter,1161 Caledonia Rd,M6A 2W9,Toronto,ON,12254,Fred Victor Bethlehem United Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326804,2022-07-17,26,Fred Victor Centre,44,"Fred Victor, BUS",1130.0,Fred Victor Uptown Hotel Program,185 Yorkland Blvd,M2J 4R2,North York,ON,15631,Fred Victor Uptown Hotel Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,284,Room Based Capacity,,,,,,270.0,271.0,270.0,0.0,1.0,,100.0 -2326805,2022-07-17,26,Fred Victor Centre,72,Fred Victor-Better Living Centre,1152.0,Fred Victor Centre 1A Strachan Ave Respite,1A Strachan Ave,M6K 3C3,Toronto,ON,14931,Fred Victor 1A Strachan Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,45,Bed Based Capacity,45.0,45.0,45.0,0.0,0.0,,,,,,100.0, -2326806,2022-07-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16252,Friends of Ruby - Emergency Housing,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326807,2022-07-17,39,Friends of Ruby,85,Friends of Ruby,1187.0,Friends of Ruby ,257 Dundas St E,M5A 1Z8,Toronto,ON,16251,Friends of Ruby - Transitional Housing,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,28.0,28.0,25.0,3.0,0.0,,,,,,89.29, -2326808,2022-07-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11899,Good Shepherd - D.A.R.E.,Men,Transitional,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,25.0,25.0,19.0,6.0,0.0,,,,,,76.0, -2326809,2022-07-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1022.0,Good Shepherd Centre,412 Queen St E,M5A 1T3,Toronto,ON,11900,Good Shepherd - Emergency/Resettlement,Men,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326810,2022-07-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1021.0,Good Shepherd Centre Barrett House,35 Sydenham St,M5A 4H5,Toronto,ON,11898,Good Shepherd Barrett House - Men's Program,Men,Transitional,Shelter,Base Shelter and Overnight Services System,5,Bed Based Capacity,5.0,5.0,5.0,0.0,0.0,,,,,,100.0, -2326811,2022-07-17,10,Good Shepherd Ministries,16,Good Shepherd Centre,1168.0,Good Shepherd Centre West End Hotel Program,335 Jarvis St,M5B 2C2,Toronto,ON,15531,Good Shepherd Centre West End Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,46,Room Based Capacity,,,,,,46.0,47.0,46.0,0.0,1.0,,100.0 -2326812,2022-07-17,15,Homes First Society,68,HFS - Kennedy Shelter,1108.0,HFS Kennedy Rd Women's Shelter,702 Kennedy Rd,M1K 2B5,Toronto,ON,13591,Homes First Society- Kennedy Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,46,Bed Based Capacity,46.0,50.0,46.0,0.0,4.0,,,,,,100.0, -2326813,2022-07-17,15,Homes First Society,25,HFS - Savard's Womens' Shelter,1167.0,HFS Downtown Hotel Program,60 York St,M5J 1S8,Toronto,ON,15492,Homes First Society Downtown Hotel - Mixed Adult Program,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,106,Room Based Capacity,,,,,,93.0,94.0,92.0,1.0,1.0,,98.92 -2326814,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14831,545 Lake Shore Blvd W. Couples,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,51,Bed Based Capacity,55.0,70.0,51.0,4.0,15.0,,,,,,92.73, -2326815,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14951,545 Lake Shore Blvd W. Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326816,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1150.0,HFS 545 Lake Shore Blvd W Shelter,545 Lake Shore Blvd W,M5V 1A3,Toronto,ON,14832,545 Lake Shore Blvd W. Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, -2326817,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1195.0,HFS - Lawrence East Shelter,4117 Lawrence Ave E,M1E 2S2,Scarborough,ON,16491,HFS - Lawrence East Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,55,Bed Based Capacity,55.0,55.0,55.0,0.0,0.0,,,,,,100.0, -2326818,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1220.0,HFS - Metro Strachan,22 Metropolitan Rd,M1R 2T5,Toronto,ON,16651,HFS - Metro Strachan - Co-ed,Mixed Adult,Transitional,Motel/Hotel Shelter,Base Shelter and Overnight Services System,83,Room Based Capacity,,,,,,83.0,86.0,83.0,0.0,3.0,,100.0 -2326819,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1191.0,45 The Esplanade,45 The Esplanade,M5E 1W2,Toronto,ON,16331,HFS 45 The Esplanade,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,267,Room Based Capacity,,,,,,235.0,235.0,235.0,0.0,0.0,,100.0 -2326820,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,16011,HFS Scarborough Hotel Program - Mixed Adult,Mixed Adult,Emergency,Motel/Hotel Shelter,COVID-19 Response,319,Room Based Capacity,,,,,,279.0,287.0,279.0,0.0,8.0,,100.0 -2326821,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1031.0,HFS St. Clair Ave E Shelter,3576 St Clair Ave E,M1K 1M2,Toronto,ON,12012,Homes First Society - Scarborough Shelter,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,37,Bed Based Capacity,37.0,37.0,37.0,0.0,0.0,,,,,,100.0, -2326822,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,16911,Homes First Society - Willowdale Centre - Co-Ed,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,70,Bed Based Capacity,70.0,70.0,70.0,0.0,0.0,,,,,,100.0, -2326823,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15111,Homes First Society - Willowdale Centre - Men,Men,Emergency,Shelter,Base Shelter and Overnight Services System,129,Bed Based Capacity,129.0,130.0,129.0,0.0,1.0,,,,,,100.0, -2326824,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1153.0,HFS Willowdale Centre,5800 Yonge St,M2M 3T3,North York,ON,15112,Homes First Society - Willowdale Centre - Women,Women,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,40.0,39.0,0.0,1.0,,,,,,100.0, -2326825,2022-07-17,15,Homes First Society,24,HFS - Scarborough Shelter,1200.0,HFS Placer,101 Placer Ct,M2H 3H9,Toronto,ON,16631,Homes First Society Placer – Mixed Adult Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,48,Bed Based Capacity,48.0,51.0,48.0,0.0,3.0,,,,,,100.0, -2326826,2022-07-17,9,Horizon for Youth,13,Horizons for Youth,1019.0,Horizons for Youth,422 Gilbert Ave,M6E 4X3,Toronto,ON,11896,Horizons for Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,18,Bed Based Capacity,18.0,18.0,18.0,0.0,0.0,,,,,,100.0, -2326827,2022-07-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1179.0,Multiple Youth & Adult Agencies Scarborough Hotel Program,2035 Kennedy Rd,M1T 3G2,Scarborough,ON,15731,Kennedy House Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,40.0,31.0,0.0,9.0,,100.0 -2326828,2022-07-17,32,Kennedy House Youth Services,57,Kennedy House Youth Shelter,1080.0,Kennedy House Youth Shelter,1076 Pape Ave,M4K 3W5,Toronto,ON,13151,Kennedy House Youth Shelter Bedded Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,13,Bed Based Capacity,13.0,15.0,13.0,0.0,2.0,,,,,,100.0, -2326829,2022-07-17,35,Margaret's Housing and Community Support Services,67,Margaret's Toronto East Drop-In,1118.0,Margaret's 21 Park Rd Respite ,21 Park Rd,M4W 2N1,Toronto,ON,15031,Margaret's 21 Park Rd. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,27.0,27.0,0.0,0.0,,,,,,100.0, -2326830,2022-07-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1002.0,Na-Me-Res,14 Vaughan Rd,M6G 2N1,Toronto,ON,11794,Na-Me-Res (Native Men's Residence),Men,Emergency,Shelter,Base Shelter and Overnight Services System,44,Bed Based Capacity,44.0,44.0,44.0,0.0,0.0,,,,,,100.0, -2326831,2022-07-17,2,Na-Me-Res (Native Men's Residence),1,Na-Me-Res,1013.0,Sagatay ,26 Vaughan Rd,M6G 2C4,Toronto,ON,11871,Sagatay,Men,Transitional,Shelter,Base Shelter and Overnight Services System,11,Bed Based Capacity,17.0,17.0,11.0,6.0,0.0,,,,,,64.71, -2326832,2022-07-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1018.0,Native Child & Family Services Toronto,558 Bathurst St,M5S 2P9,Toronto,ON,11895,Native Child & Family Services Toronto,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,8,Bed Based Capacity,11.0,11.0,8.0,3.0,0.0,,,,,,72.73, -2326833,2022-07-17,8,Native Child & Family Services Toronto,12,Eagles Nest Transition House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15611,Native Child Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,12,Room Based Capacity,,,,,,14.0,14.0,12.0,2.0,0.0,,85.71 -2326834,2022-07-17,33,Sistering: A Women's Place,65,Sistering,1104.0,Sistering,962 Bloor St W,M6H 1L6,Toronto,ON,16371,Sistering Overnight Women's Program,Women,Emergency,24-Hour Women's Drop-in,Base Shelter and Overnight Services System,18,Bed Based Capacity,19.0,19.0,18.0,1.0,0.0,,,,,,94.74, -2326835,2022-07-17,19,Society of St.Vincent De Paul,34,SVDP - Amelie House,1050.0,SVDP Amelie House,126 Pape Ave,M4M 2V8,Toronto,ON,12232,St.Vincent De Paul - Amelie House - Women's Shelter,Women,Transitional,Shelter,Base Shelter and Overnight Services System,15,Bed Based Capacity,15.0,15.0,15.0,0.0,0.0,,,,,,100.0, -2326836,2022-07-17,19,Society of St.Vincent De Paul,38,SVDP - Elisa House,1049.0,SVDP Elisa House,60 Newcastle St,M8Y 1A3,Toronto,ON,12231,St.Vincent De Paul - Elisa House,Women,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326837,2022-07-17,19,Society of St.Vincent De Paul,37,SVDP - Mary's Home,1048.0,SVDP Mary's Home,70 Gerrard St E,M5B 1G6,Toronto,ON,12211,St.Vincent De Paul - Mary's Home - Emergency Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,26.0,19.0,0.0,7.0,,,,,,100.0, -2326838,2022-07-17,19,Society of St.Vincent De Paul,31,SVDP - St. Clare's Residence,1039.0,SVDP St. Clare's Residence,3410 Bayview Ave,M2M 3S3,Toronto,ON,12111,St.Vincent De Paul - St. Clare's Residence - Transitional Housing,Women,Transitional,Shelter,Base Shelter and Overnight Services System,26,Bed Based Capacity,27.0,30.0,26.0,1.0,3.0,,,,,,96.3, -2326839,2022-07-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1105.0,St. Felix Centre 25 Augusta Ave. Respite ,25 Augusta Ave,M5T 2K7,Toronto,ON,15071,St. Felix Centre 25 Augusta Ave. Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326840,2022-07-17,34,St. Felix Social Ministries Outreach,66,St. Felix Centre,1148.0,St. Felix Centre 69 Fraser Ave. Respite ,69 Fraser Ave,M6K 1E9,Toronto,ON,14611,St. Felix Centre 69 Fraser Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,43,Bed Based Capacity,43.0,43.0,43.0,0.0,0.0,,,,,,100.0, -2326841,2022-07-17,18,St. Simon's Shelter Inc.,30,St. Simon's Shelter,1192.0,St. Simon's Clubbe House,556 Sherbourne St,M4X 1L4,Toronto,ON,16351,St. Simon's Clubbe House,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,31,Room Based Capacity,,,,,,31.0,32.0,31.0,0.0,1.0,,100.0 -2326842,2022-07-17,22,Street Haven At The Crossroads,36,Street Haven,1045.0,Street Haven,87 Pembroke St,M5A 2N9,Toronto,ON,12195,Street Haven - Emergency Hostel,Women,Emergency,Shelter,Base Shelter and Overnight Services System,27,Bed Based Capacity,27.0,28.0,27.0,0.0,1.0,,,,,,100.0, -2326843,2022-07-17,22,Street Haven At The Crossroads,36,Street Haven,1180.0,Street Haven Downtown Hotel Program,26 Gerrard St E,M5B 1G3,Toronto,ON,15972,Street Haven Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,47,Room Based Capacity,,,,,,33.0,33.0,33.0,0.0,0.0,,100.0 -2326844,2022-07-17,28,The MUC Shelter Corporation,47,Sojourn House,1132.0,Sojourn House Hotel Program,165 Grange Ave,M5T 2V5,Toronto,ON,14251,Sojourn House - Refugee Family Hotel Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,185,Room Based Capacity,,,,,,63.0,76.0,63.0,0.0,13.0,,100.0 -2326845,2022-07-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12273,Sojourn House Bedded Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,67,Bed Based Capacity,67.0,67.0,67.0,0.0,0.0,,,,,,100.0, -2326846,2022-07-17,28,The MUC Shelter Corporation,47,Sojourn House,1059.0,Sojourn House Ontario St,101 Ontario St,M5A 2V2,Toronto,ON,12871,Sojourn House Transitional Housing Program,Families,Transitional,Shelter,Base Shelter and Overnight Services System,55,Room Based Capacity,,,,,,20.0,23.0,20.0,0.0,3.0,,100.0 -2326847,2022-07-17,7,The Salvation Army of Canada,28,Salvation Army - Evangeline Res,1036.0,SA Evangeline Residence,2808 Dundas St W,M6P 1Y5,Toronto,ON,12053,Salvation Army - Evangeline Residence - Women's Ministry,Women,Emergency,Shelter,Base Shelter and Overnight Services System,49,Bed Based Capacity,49.0,49.0,49.0,0.0,0.0,,,,,,100.0, -2326848,2022-07-17,7,The Salvation Army of Canada,11,Salvation Army - Florence Booth,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15811,Salvation Army Florence Booth Hotel Program,Women,Emergency,Motel/Hotel Shelter,COVID-19 Response,72,Room Based Capacity,,,,,,72.0,73.0,72.0,0.0,1.0,,100.0 -2326849,2022-07-17,7,The Salvation Army of Canada,29,Salvation Army - Gateway,1037.0,SA Gateway,107 Jarvis St,M5C 2H4,Toronto,ON,12071,Salvation Army - Gateway - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,54,Bed Based Capacity,54.0,54.0,54.0,0.0,0.0,,,,,,100.0, -2326850,2022-07-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1166.0,SA Scarborough Hotel Program,50 Estate Dr,M1H 2Z1,Scarborough,ON,15491,SA Scarborough Hotel - Men's Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,130,Room Based Capacity,,,,,,131.0,131.0,130.0,1.0,0.0,,99.24 -2326851,2022-07-17,7,The Salvation Army of Canada,45,Salvation Army - Maxwell Meighen,1057.0,Maxwell Meighen Centre,135 Sherbourne St,M5A 2R5,Toronto,ON,12258,Salvation Army - Maxwell Meighen - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,225,Bed Based Capacity,225.0,225.0,225.0,0.0,0.0,,,,,,100.0, -2326852,2022-07-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1126.0,SA New Hope Leslieville,29A Leslie St,M4M 3C3,Toronto,ON,14091,Salvation Army - New Hope - Men's Hostel,Men,Emergency,Shelter,Base Shelter and Overnight Services System,36,Bed Based Capacity,36.0,36.0,36.0,0.0,0.0,,,,,,100.0, -2326853,2022-07-17,7,The Salvation Army of Canada,73,Salvation Army - New Hope Leslie,1175.0,SA North Hotel Program,30 Norfinch Dr,M3N 1X1,North York,ON,15871,Salvation Army New Hope Hotel Program,Men,Emergency,Motel/Hotel Shelter,COVID-19 Response,76,Room Based Capacity,,,,,,76.0,77.0,76.0,0.0,1.0,,100.0 -2326854,2022-07-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14571,Salvation Army - Islington Seniors' Shelter Men's Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,39,Bed Based Capacity,39.0,39.0,39.0,0.0,0.0,,,,,,100.0, -2326855,2022-07-17,7,The Salvation Army of Canada,77,Salvation Army Islington Seniors,1146.0,SA Islington Seniors' Shelter,2671 Islington Ave,M9V 2X6,Toronto,ON,14572,Salvation Army - Islington Seniors' Shelter Women's Program,Women,Emergency,Shelter,Base Shelter and Overnight Services System,28,Bed Based Capacity,28.0,30.0,28.0,0.0,2.0,,,,,,100.0, -2326856,2022-07-17,5,The Scott Mission Inc.,8,Scott Mission Men's Ministry,1300.0,The Scott Mission - Kensington location,346 Spadina Ave.,M5T 1J5,Toronto,ON,11891,Scott Mission - Men's Ministry Overnight Program,Men,Emergency,Shelter,Base Shelter and Overnight Services System,56,Bed Based Capacity,56.0,56.0,56.0,0.0,0.0,,,,,,100.0, -2326857,2022-07-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,12274,Toronto Community Hostel (Families),Families,Emergency,Shelter,Base Shelter and Overnight Services System,10,Room Based Capacity,,,,,,3.0,3.0,3.0,0.0,0.0,,100.0 -2326858,2022-07-17,29,Toronto Community Hostel,48,Toronto Community Hostel,1120.0,Toronto Community Hostel (MUC),191 Spadina Rd,M5R 2T9,Toronto,ON,13932,Toronto Community Hostel (Singles),Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,6,Bed Based Capacity,6.0,6.0,6.0,0.0,0.0,,,,,,100.0, -2326859,2022-07-17,20,Turning Point Youth Services,33,Turning Point Youth Services,1041.0,Turning Point Youth Services ,95 Wellesley St E,M4Y 2X9,Toronto,ON,12151,Turning Point Youth Services Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,16,Bed Based Capacity,16.0,16.0,16.0,0.0,0.0,,,,,,100.0, -2326860,2022-07-17,36,Warden Woods Community Centre,71,Scarborough Cold Weather Drop-IN,1115.0,Warden Woods 705 Progress Ave Respite ,705 Progress Ave,M1H 2X1,Toronto,ON,15091,Warden Woods 705 Progress Ave Respite,Mixed Adult,Emergency,24-Hour Respite Site,Base Shelter and Overnight Services System,34,Bed Based Capacity,34.0,34.0,34.0,0.0,0.0,,,,,,100.0, -2326861,2022-07-17,16,Women's Hostels Inc.,27,Nellie's,1280.0,,,,,,12051,Nellie's Women's Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326862,2022-07-17,4,WoodGreen Red Door Family Shelter,7,Red Door Family Shelter,1001.0,Red Door Family Shelter,189B Booth Ave,M4M 2M5,Toronto,ON,11791,Red Door - Family Shelter,Families,Emergency,Shelter,Base Shelter and Overnight Services System,91,Room Based Capacity,,,,,,26.0,27.0,25.0,1.0,1.0,,96.15 -2326863,2022-07-17,3,YMCA of Greater Toronto,5,YMCA House,1096.0,Vanauley Street YMCA Emergency Shelter,7 Vanauley St,M5T 2V9,Toronto,ON,13291,YMCA House-Vanauley,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326864,2022-07-17,3,YMCA of Greater Toronto,5,YMCA House,1198.0,Multiple Youth Agencies Downtown Hotel Program,92 Peter St,M5V 2G5,Toronto,ON,15591,YMCA Youth Hotel Program,Youth,Emergency,Motel/Hotel Shelter,COVID-19 Response,40,Room Based Capacity,,,,,,42.0,42.0,40.0,2.0,0.0,,95.24 -2326865,2022-07-17,3,YMCA of Greater Toronto,64,YMCA Sprott House,1101.0,YMCA Sprott House ,21 Walmer Rd,M5R 2W7,Toronto,ON,13451,YMCA Sprott House,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,24,Bed Based Capacity,25.0,25.0,24.0,1.0,0.0,,,,,,96.0, -2326866,2022-07-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12277,YWCA - Adult Women Shelter,Women,Emergency,Shelter,Base Shelter and Overnight Services System,25,Bed Based Capacity,25.0,25.0,25.0,0.0,0.0,,,,,,100.0, -2326867,2022-07-17,17,YWCA Toronto,50,YWCA - First Stop Woodlawn,1062.0,YWCA 1st Stop Woodlawn ,80 Woodlawn Ave E,M4T 1C1,Toronto,ON,12278,YWCA - Youth Shelter,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,24.0,24.0,22.0,2.0,0.0,,,,,,91.67, -2326868,2022-07-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14651,YWCA Davenport - Adult,Women,Emergency,Shelter,Base Shelter and Overnight Services System,19,Bed Based Capacity,19.0,19.0,19.0,0.0,0.0,,,,,,100.0, -2326869,2022-07-17,17,YWCA Toronto,78,YWCA-348 Davenport,1129.0,YWCA Davenport Shelter,348 Davenport Road,M5R 1K6,Toronto,ON,14671,YWCA Davenport - Youth,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,20,Bed Based Capacity,20.0,20.0,20.0,0.0,0.0,,,,,,100.0, -2326870,2022-07-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12292,Youth without Shelter Emergency Shelter Program,Youth,Emergency,Shelter,Base Shelter and Overnight Services System,22,Bed Based Capacity,23.0,23.0,22.0,1.0,0.0,,,,,,95.65, -2326871,2022-07-17,31,Youth Without Shelter,52,Youth Without Shelter,1064.0,Youth Without Shelter ,6 Warrendale Ct,M9V 1P9,Etobicoke,ON,12291,Youth without Shelter Stay In School Program,Youth,Transitional,Shelter,Base Shelter and Overnight Services System,14,Bed Based Capacity,14.0,14.0,14.0,0.0,0.0,,,,,,100.0, -2326872,2022-07-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14891,YouthLink Emergency Program,Mixed Adult,Emergency,Shelter,Base Shelter and Overnight Services System,10,Bed Based Capacity,10.0,10.0,10.0,0.0,0.0,,,,,,100.0, -2326873,2022-07-17,38,YouthLink,81,YouthLink Shelter,1147.0,YouthLink ,747 Warden Ave,M1L 4A1,Scarborough,ON,14911,YouthLink Transitional Program,Mixed Adult,Transitional,Shelter,Base Shelter and Overnight Services System,31,Bed Based Capacity,31.0,31.0,31.0,0.0,0.0,,,,,,100.0, diff --git a/05_src/data/slides_data/delay_reasons.csv b/05_src/data/slides_data/delay_reasons.csv deleted file mode 100644 index 95eda06bf..000000000 --- a/05_src/data/slides_data/delay_reasons.csv +++ /dev/null @@ -1,201 +0,0 @@ -rmenu_code,code_description,sub_or_srt -EUAC,Air Conditioning,SUB -EUAL,Alternating Current,SUB -EUATC,ATC RC&S Equipment,SUB -EUBK,Brakes,SUB -EUBO,Body,SUB -EUCA,Compressed Air,SUB -EUCD,Consequential Delay (2nd Delay Same Fault),SUB -EUCH,Chopper Control,SUB -EUCO,Couplers,SUB -EUDO,Door Problems - Faulty Equipment,SUB -EUECD,ECD / Line Mechanic Related Prob.,SUB -EUHV,High Voltage,SUB -EULT,Lighting System,SUB -EULV,Low Voltage,SUB -EUME,RC&S Maintenance Error - (Human),SUB -EUNEA,No Equipment Available,SUB -EUNT,Equipment - No Trouble Found,SUB -EUO,RC&S Other,SUB -EUOE,Rail Cars & Shops Opr. Error,SUB -EUOPO,OPTO RC&S Non-Train Door Monitoring,SUB -EUPI,Propulsion System,SUB -EUSC,Speed Control Equipment ,SUB -EUTL,Trainline System,SUB -EUTM,Traction Motors,SUB -EUTR,Trucks,SUB -EUTRD,TR Cab Doors,SUB -EUVA,Warning Alarm Systems,SUB -EUVE,Work Vehicle,SUB -EUYRD,Yard/Carhouse Related Problems,SUB -MUATC,ATC Project,SUB -MUCL,Divisional Clerk Related,SUB -MUD,Door Problems - Passenger Related,SUB -MUDD,Door Problems - Debris Related,SUB -MUEC,Misc. Engineering & Construction Related Problems,SUB -MUESA,No Operator Immediately Available,SUB -MUFM,Force Majeure,SUB -MUFS,Fire/Smoke Plan B - Source External to TTC,SUB -MUGD,Miscellaneous General Delays,SUB -MUI,Injured or ill Customer (On Train) - Transported,SUB -MUIE,Injured Employee,SUB -MUIR,Injured or ill Customer (On Train) - Medical Aid Refused,SUB -MUIRS,Injured or ill Customer (In Station) - Medical Aid Refused,SUB -MUIS,Injured or ill Customer (In Station) - Transported,SUB -MULD,Labour Dispute - Subway,SUB -MUNOA,No Operator Immediately Available - Not E.S.A. Related ,SUB -MUO,Miscellaneous Other,SUB -MUODC,Overhead Door Contact,SUB -MUPAA,Passenger Assistance Alarm Activated - No Trouble Found,SUB -MUPLA,Fire/Smoke Plan A,SUB -MUPLB,Fire/Smoke Plan B - Source TTC,SUB -MUPLC,Fire/Smoke Plan C,SUB -MUPR1,Priority One - Train in Contact With Person,SUB -MUSAN,Unsanitary Vehicle,SUB -MUSC,Miscellaneous Speed Control,SUB -MUTD,Training Department Related Delays,SUB -MUTO,Misc. Transportation Other - Employee Non-Chargeable,SUB -MUWEA,Weather Reports / Related Delays,SUB -MUWR,Work Refusal,SUB -PUATC,ATC Signals Other,SUB -PUCBI,Central Logic Controller Failure,SUB -PUCSC,Signal Control Problem - Signals,SUB -PUCSS,Central Office Signalling System,SUB -PUDCS,Data Communications System Failure,SUB -PUMEL,Escalator/Elevator Incident,SUB -PUMO,Station Other,SUB -PUMST,Station Stairway Incident ,SUB -PUOPO,OPTO (COMMS) Train Door Monitoring,SUB -PUSAC,Signals Axle Counter Block Failure,SUB -PUSBE,Beacon Failure,SUB -PUSCA,SCADA Related Problems ,SUB -PUSCR,Subway Car Radio Fault ,SUB -PUSEA,EAS Failure ,SUB -PUSI,Signals or Related Components Failure ,SUB -PUSIO,Smart IO Failure,SUB -PUSIS,Signals Track Weather Related,SUB -PUSLC,Signals Line Countroller Failure,SUB -PUSNT,Signal Problem - No Trouble,SUB -PUSO,S/E/C Department Other,SUB -PUSRA,Subway Radio System Fault ,SUB -PUSSW,Track Switch Failure - Signal Related Problem,SUB -PUSTC,Signals - Track Circuit Problems,SUB -PUSTP,Traction Power or Related Components Failure,SUB -PUSTS,Signals - Train Stops,SUB -PUSWZ,Work Zone Problems - Signals,SUB -PUSZC,Signals Zone Countroller Failure,SUB -PUTCD,T & S Contractor Problems,SUB -PUTD,Track Level Debris - Controllable,SUB -PUTDN ,Debris At Track Level - Uncontrollable,SUB -PUTIJ,Insulated Joint Related Problem,SUB -PUTIS,Ice / Snow Related Problems,SUB -PUTNT,T&S Related Problem - NTF,SUB -PUTO,T&S Other,SUB -PUTOE,T & S Operator Related Problems,SUB -PUTR,Rail Related Problem,SUB -PUTS,Structure Related Problem,SUB -PUTSC,Signal Control Problem - Track,SUB -PUTSM,Track Switch Failure - Track Related Problem,SUB -PUTTC,Track Circuit Problems - Re: Defective Bolts/Bonding,SUB -PUTTP,Traction Power Rail Related,SUB -PUTWZ,Work Zone Problems - Track,SUB -SUAE,Assault / Employee Involved,SUB -SUAP,Assault / Patron Involved,SUB -SUBT,Bomb Threat,SUB -SUCOL,Collector Booth Alarm Activated,SUB -SUDP,Disorderly Patron,SUB -SUEAS,Emergency Alarm Station Activation,SUB -SUG,Graffiti / Scratchiti,SUB -SUO,Passenger Other,SUB -SUPOL,Held By Polce - Non-TTC Related,SUB -SUROB,Robbery,SUB -SUSA,Sexual Assault,SUB -SUSP,Suspicious Package,SUB -SUUT,Unauthorized at Track Level,SUB -TUATC,ATC Operator Related,SUB -TUCC,Transit Control Related Problems,SUB -TUDOE,Doors Open in Error,SUB -TUKEY,Two Drum Switch Keys Activated,SUB -TUML,Mainline Storage,SUB -TUMVS,Operator Violated Signal,SUB -TUNIP,Operator Not In Position,SUB -TUNOA,No Operator Immediately Available ,SUB -TUO,Transportation Department - Other,SUB -TUOPO,OPTO Operator Related,SUB -TUOS,Operator Overshot Platform,SUB -TUS,Crew Unable to Maintain Schedule,SUB -TUSC,Operator Overspeeding,SUB -TUSET,Train Controls Improperly Shut Down,SUB -TUST,Storm Trains,SUB -TUSUP,Supervisory Error,SUB -ERAC,Air Conditioning,SRT -ERBO,Body,SRT -ERCD,Consequential Delay (2nd Delay Same Fault),SRT -ERCO,Couplers,SRT -ERDB,Disc Brakes,SRT -ERDO,Door Problems - Faulty Equipment,SRT -ERHV,High Voltage,SRT -ERLT,Lighting System,SRT -ERLV,Low Voltage,SRT -ERME,RC&S Maintenance Error - (Human),SRT -ERNEA,No Equipment Available,SRT -ERNT,Equipment - No Trouble Found,SRT -ERO,RC&S Other,SRT -ERPR,Propulsion System,SRT -ERRA,Radio,SRT -ERTB,Track Brakes,SRT -ERTC,Train Control - VOBC,SRT -ERTL,Trainline System,SRT -ERTR,Trucks,SRT -ERVE,Vehicle,SRT -ERWA,Warning Alarm Systems,SRT -ERWS,Wind Shield,SRT -MRCL,Divisional Clerk Related,SRT -MRD,Door Problems - Passenger Related,SRT -MRDD,Door Problems - Debris Related,SRT -MREC,Misc. Engineering & Construction Related Problems,SRT -MRESA,No Operator Immediately Available,SRT -MRFS,Fire/Smoke Plan B - Source External to TTC,SRT -MRIE,Injured Employee,SRT -MRLD,Labour Dispute - Subway,SRT -MRNOA,No Operator Immediately Available - Not E.S.A. Related ,SRT -MRO,Miscellaneous Other,SRT -MRPAA,Passenger Assistance Alarm Activated - No Trouble Found,SRT -MRPLA,Fire/Smoke Plan A,SRT -MRPLB,Fire/Smoke Plan B,SRT -MRPLC,Fire/Smoke Plan C,SRT -MRPR1,Priority One - Train in Contact With Person,SRT -MRSAN,Unsanitary Vehicle,SRT -MRSTM,Scheduled Track Maintenance,SRT -MRTO,Timeout,SRT -MRUI,Injured or ill Customer (On Train) - Transported,SRT -MRUIR,Injured or ill Customer (On Train) - Medical Aid Refused,SRT -MRWEA,Weather Reports / Related Delays,SRT -PREL,Escalator/Elevator Incident,SRT -PRO,Other,SRT -PRS,VCC/RCIU/CCR,SRT -PRSA,Axle Counter Related,SRT -PRSL,Loop Related Failures,SRT -PRSO,Signals Other,SRT -PRSP,Signals Power Supply Related,SRT -PRST,Station Stairway Incident ,SRT -PRSW,Switch Related,SRT -PRTST,Signals - Train Stops,SRT -PRW,Rail Defect/Fastenings/Power Rail,SRT -SRAE,Assault / Employee Involved,SRT -SRAP,Assault / Patron Involved,SRT -SRBT,Bomb Threat,SRT -SRCOL,Collector Booth Alarm Activated,SRT -SRDP,Disorderly Patron,SRT -SREAS,Emergency Alarm Station Activation,SRT -SRO,Passenger Other,SRT -SRSA,Sexual Assault,SRT -SRSP,Suspicious Package,SRT -SRUT,Unauthorized at Track Level,SRT -TRDOE,Doors Open in Error,SRT -TRNIP,Operator Not In Position,SRT -TRNOA,No Operator Immediately Available ,SRT -TRO,Transportation Department - Other,SRT -TRSET,Train Controls Improperly Shut Down,SRT -TRST,Storm Trains,SRT -TRTC,Transit Control Related Problems,SRT diff --git a/05_src/data/slides_data/neighbourhood_profiles_2016_140_model.csv b/05_src/data/slides_data/neighbourhood_profiles_2016_140_model.csv deleted file mode 100644 index 7115debbf..000000000 --- a/05_src/data/slides_data/neighbourhood_profiles_2016_140_model.csv +++ /dev/null @@ -1,2384 +0,0 @@ -_id,Category,Topic,Data Source,Characteristic,City of Toronto,Agincourt North,Agincourt South-Malvern West,Alderwood,Annex,Banbury-Don Mills,Bathurst Manor,Bay Street Corridor,Bayview Village,Bayview Woods-Steeles,Bedford Park-Nortown,Beechborough-Greenbrook,Bendale,Birchcliffe-Cliffside,Black Creek,Blake-Jones,Briar Hill-Belgravia,Bridle Path-Sunnybrook-York Mills,Broadview North,Brookhaven-Amesbury,Cabbagetown-South St. James Town,Caledonia-Fairbank,Casa Loma,Centennial Scarborough,Church-Yonge Corridor,Clairlea-Birchmount,Clanton Park,Cliffcrest,Corso Italia-Davenport,Danforth,Danforth East York,Don Valley Village,Dorset Park,Dovercourt-Wallace Emerson-Junction,Downsview-Roding-CFB,Dufferin Grove,East End-Danforth,Edenbridge-Humber Valley,Eglinton East,Elms-Old Rexdale,Englemount-Lawrence,Eringate-Centennial-West Deane,Etobicoke West Mall,Flemingdon Park,Forest Hill North,Forest Hill South,Glenfield-Jane Heights,Greenwood-Coxwell,Guildwood,Henry Farm,High Park North,High Park-Swansea,Highland Creek,Hillcrest Village,Humber Heights-Westmount,Humber Summit,Humbermede,Humewood-Cedarvale,Ionview,Islington-City Centre West,Junction Area,Keelesdale-Eglinton West,Kennedy Park,Kensington-Chinatown,Kingsview Village-The Westway,Kingsway South,Lambton Baby Point,L'Amoreaux,Lansing-Westgate,Lawrence Park North,Lawrence Park South,Leaside-Bennington,Little Portugal,Long Branch,Malvern,Maple Leaf,Markland Wood,Milliken,Mimico (includes Humber Bay Shores),Morningside,Moss Park,Mount Dennis,Mount Olive-Silverstone-Jamestown,Mount Pleasant East,Mount Pleasant West,New Toronto,Newtonbrook East,Newtonbrook West,Niagara,North Riverdale,North St. James Town,Oakridge,Oakwood Village,O'Connor-Parkview,Old East York,Palmerston-Little Italy,Parkwoods-Donalda,Pelmo Park-Humberlea,Playter Estates-Danforth,Pleasant View,Princess-Rosethorn,Regent Park,Rexdale-Kipling,Rockcliffe-Smythe,Roncesvalles,Rosedale-Moore Park,Rouge,Runnymede-Bloor West Village,Rustic,Scarborough Village,South Parkdale,South Riverdale,St.Andrew-Windfields,Steeles,Stonegate-Queensway,Tam O'Shanter-Sullivan,Taylor-Massey,The Beaches,Thistletown-Beaumond Heights,Thorncliffe Park,Trinity-Bellwoods,University,Victoria Village,Waterfront Communities-The Island,West Hill,West Humber-Clairville,Westminster-Branson,Weston,Weston-Pelham Park,Wexford/Maryvale,Willowdale East,Willowdale West,Willowridge-Martingrove-Richview,Woburn,Woodbine Corridor,Woodbine-Lumsden,Wychwood,Yonge-Eglinton,Yonge-St.Clair,York University Heights,Yorkdale-Glen Park -1,Neighbourhood Information,Neighbourhood Information,City of Toronto,Neighbourhood Number,,129,128,20,95,42,34,76,52,49,39,112,127,122,24,69,108,41,57,30,71,109,96,133,75,120,33,123,92,66,59,47,126,93,26,83,62,9,138,5,32,11,13,44,102,101,25,65,140,53,88,87,134,48,8,21,22,106,125,14,90,110,124,78,6,15,114,117,38,105,103,56,84,19,132,29,12,130,17,135,73,115,2,99,104,18,50,36,82,68,74,121,107,54,58,80,45,23,67,46,10,72,4,111,86,98,131,89,28,139,85,70,40,116,16,118,61,63,3,55,81,79,43,77,136,1,35,113,91,119,51,37,7,137,64,60,94,100,97,27,31 -2,Neighbourhood Information,Neighbourhood Information,City of Toronto,TSNS2020 Designation,,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,NIA,No Designation,No Designation,NIA,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,Emerging Neighbourhood,No Designation,NIA,No Designation,No Designation,No Designation,NIA,NIA,Emerging Neighbourhood,No Designation,No Designation,NIA,No Designation,No Designation,NIA,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,Emerging Neighbourhood,NIA,NIA,No Designation,NIA,No Designation,No Designation,NIA,NIA,No Designation,NIA,No Designation,No Designation,Emerging Neighbourhood,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,Emerging Neighbourhood,No Designation,No Designation,No Designation,No Designation,NIA,No Designation,NIA,NIA,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,NIA,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,No Designation,NIA,No Designation,NIA,No Designation,No Designation,No Designation,No Designation,NIA,NIA,NIA,No Designation,No Designation,Emerging Neighbourhood,No Designation,No Designation,NIA,No Designation,NIA,NIA,No Designation,No Designation,NIA,No Designation,NIA,No Designation,Emerging Neighbourhood,NIA,NIA,No Designation,No Designation,No Designation,No Designation,NIA,No Designation,No Designation,No Designation,No Designation,No Designation,NIA,Emerging Neighbourhood -3,Population,Population and dwellings,Census Profile 98-316-X2016001,"Population, 2016","2,731,571","29,113","23,757","12,054","30,526","27,695","15,873","25,797","21,396","13,154","23,236","6,577","29,960","22,291","21,737","7,727","14,257","9,266","11,499","17,757","11,669","9,955","10,968","13,362","31,340","26,984","16,472","15,935","14,133","9,666","17,180","27,051","25,003","36,625","35,052","11,785","21,381","15,535","22,776","9,456","22,372","18,588","11,848","21,933","12,806","10,732","30,491","14,417","9,917","15,723","22,162","23,925","12,494","16,934","10,948","12,416","15,545","14,365","13,641","43,965","14,366","11,058","17,123","17,945","22,000","9,271","7,985","43,993","16,164","14,607","15,179","16,828","15,559","10,084","43,794","10,111","10,554","26,572","33,964","17,455","20,506","13,593","32,954","16,775","29,658","11,463","16,097","23,831","31,180","11,916","18,615","13,845","21,210","18,675","9,233","13,826","34,805","10,722","7,804","15,818","11,051","10,803","10,529","22,246","14,974","20,923","46,496","10,070","9,941","16,724","21,849","27,876","17,812","24,623","25,051","27,446","15,683","21,567","10,360","21,108","16,556","7,607","17,510","65,913","27,392","33,312","26,274","17,992","11,098","27,917","50,434","16,936","22,156","53,485","12,541","7,865","14,349","11,817","12,528","27,593","14,804" -4,Population,Population and dwellings,Census Profile 98-316-X2016001,"Population, 2011","2,615,060","30,279","21,988","11,904","29,177","26,918","15,434","19,348","17,671","13,530","23,185","6,488","27,876","21,856","22,057","7,763","14,302","8,713","11,563","17,787","12,053","9,851","10,487","13,093","28,349","24,770","14,612","15,703","13,743","9,444","16,712","26,739","24,363","34,631","34,659","11,449","20,839","14,943","22,829","9,550","22,086","18,810","10,927","22,168","12,474","10,926","31,390","14,083","9,816","11,333","21,292","21,740","13,097","17,656","10,583","12,525","15,853","14,108","13,091","38,084","14,027","10,638","17,058","18,495","21,723","9,170","7,921","44,919","14,642","14,541","15,070","17,011","12,050","9,632","45,086","10,197","10,436","27,167","26,541","17,587","16,306","13,145","32,788","15,982","28,593","10,900","16,423","23,052","21,274","12,191","17,832","13,497","21,073","18,316","9,118","13,746","34,617","8,710","7,653","16,144","11,197","10,007","10,488","22,267","15,050","20,631","45,912","9,632","9,951","16,609","21,251","25,642","17,958","25,017","24,691","27,398","15,594","21,130","10,138","19,225","16,802","7,782","17,182","43,361","26,547","34,100","25,446","18,170","12,010","27,018","45,041","15,004","21,343","53,350","11,703","7,826","13,986","10,578","11,652","27,713","14,687" -5,Population,Population and dwellings,Census Profile 98-316-X2016001,Population Change 2011-2016,4.50%,-3.90%,8.00%,1.30%,4.60%,2.90%,2.80%,33.30%,21.10%,-2.80%,0.20%,1.40%,7.50%,2.00%,-1.50%,-0.50%,-0.30%,6.30%,-0.60%,-0.20%,-3.20%,1.10%,4.60%,2.10%,10.60%,8.90%,12.70%,1.50%,2.80%,2.40%,2.80%,1.20%,2.60%,5.80%,1.10%,2.90%,2.60%,4.00%,-0.20%,-1.00%,1.30%,-1.20%,8.40%,-1.10%,2.70%,-1.80%,-2.90%,2.40%,1.00%,38.70%,4.10%,10.10%,-4.60%,-4.10%,3.40%,-0.90%,-1.90%,1.80%,4.20%,15.40%,2.40%,3.90%,0.40%,-3.00%,1.30%,1.10%,0.80%,-2.10%,10.40%,0.50%,0.70%,-1.10%,29.10%,4.70%,-2.90%,-0.80%,1.10%,-2.20%,28.00%,-0.80%,25.80%,3.40%,0.50%,5.00%,3.70%,5.20%,-2.00%,3.40%,46.60%,-2.30%,4.40%,2.60%,0.70%,2.00%,1.30%,0.60%,0.50%,23.10%,2.00%,-2.00%,-1.30%,8.00%,0.40%,-0.10%,-0.50%,1.40%,1.30%,4.50%,-0.10%,0.70%,2.80%,8.70%,-0.80%,-1.60%,1.50%,0.20%,0.60%,2.10%,2.20%,9.80%,-1.50%,-2.20%,1.90%,52.00%,3.20%,-2.30%,3.30%,-1.00%,-7.60%,3.30%,12.00%,12.90%,3.80%,0.30%,7.20%,0.50%,2.60%,11.70%,7.50%,-0.40%,0.80% -6,Population,Population and dwellings,Census Profile 98-316-X2016001,Total private dwellings,"1,179,057","9,371","8,535","4,732","18,109","12,473","6,418","18,436","10,111","4,895","9,052","2,796","11,293","9,637","7,671","3,269","6,080","3,478","5,812","6,667","6,761","3,935","5,833","4,439","21,983","9,529","6,881","6,094","5,903","4,108","7,275","10,196","8,995","16,248","14,244","5,815","9,535","6,606","8,199","3,344","8,858","6,977","4,727","7,964","5,784","5,353","10,423","6,443","4,044","6,646","11,541","11,526","3,907","6,642","4,261","4,288","5,390","6,865","5,312","19,911","6,431","4,575","6,885","9,745","8,159","3,710","3,217","15,486","6,943","5,622","6,017","6,712","8,095","5,145","13,936","3,696","4,348","7,825","20,486","6,044","12,513","5,386","10,220","7,715","18,495","5,657","6,470","9,416","19,660","5,306","10,109","5,586","9,235","7,713","3,960","6,862","13,921","3,860","3,767","5,703","3,958","5,183","3,989","9,487","7,305","10,702","13,730","3,987","3,726","6,133","12,085","12,732","6,685","8,032","10,896","10,384","6,452","9,926","3,472","7,225","7,562","3,826","7,562","47,209","10,318","11,045","10,454","8,061","4,559","10,462","23,901","8,054","8,721","19,098","5,620","3,604","6,185","6,103","7,475","11,051","5,847" -7,Population,Population and dwellings,Census Profile 98-316-X2016001,Private dwellings occupied by usual residents,"1,112,929","9,120","8,136","4,616","15,934","12,124","6,089","15,074","9,532","4,698","8,607","2,650","10,766","9,198","7,324","3,125","5,737","3,241","5,663","6,482","6,442","3,680","5,406","4,379","19,680","9,246","6,554","5,902","5,489","3,925","7,022","9,968","8,777","15,320","13,121","5,436","9,180","6,254","7,912","3,219","8,247","6,863","4,583","7,830","5,446","4,951","9,917","6,053","3,991","6,362","11,023","10,877","3,700","6,398","4,136","3,897","5,052","6,566","5,168","19,328","6,029","4,182","6,576","8,735","7,782","3,584","3,121","15,037","6,588","5,418","5,749","6,436","7,427","4,815","13,426","3,556","4,309","7,681","17,781","5,879","11,554","5,177","9,875","7,438","17,497","5,372","6,114","8,960","18,774","5,008","9,558","5,282","8,687","7,468","3,790","6,334","13,315","3,710","3,576","5,519","3,861","4,960","3,846","9,055","6,887","10,054","13,389","3,818","3,650","5,923","11,390","12,073","6,428","7,819","10,377","10,063","6,272","9,428","3,280","7,123","6,910","3,393","7,412","40,756","9,986","10,285","10,234","7,600","4,226","10,106","22,304","7,549","8,509","18,436","5,454","3,449","5,887","5,676","7,012","10,170","5,344" -8,Population,Population and dwellings,Census Profile 98-316-X2016001,Population density per square kilometre,"4,334","3,929","3,034","2,435","10,863","2,775","3,377","14,097","4,195","3,240","4,209","3,614","4,011","3,765","6,282","8,134","7,791","1,040","6,764","5,045","8,335","6,464","5,683","2,479","23,044","3,632","3,979","2,273","7,478","8,554","7,881","6,441","4,146","9,819","2,337","8,540","8,038","2,840","7,051","3,306","6,466","2,171","6,582","9,026","8,054","4,380","5,864","8,582","2,673","6,047","11,726","4,893","2,403","3,148","3,981","1,570","3,565","7,682","7,031","2,712","5,442","6,467","4,770","11,806","4,356","3,593","4,697","6,144","3,038","6,407","4,685","3,596","12,859","4,584","4,948","4,012","3,614","2,830","4,915","3,041","14,753","6,442","7,291","5,411","21,969","3,342","3,926","5,070","10,156","6,770","44,321","7,444","9,511","3,780","3,997","9,601","4,691","2,547","8,671","5,273","2,138","16,880","4,229","4,414","9,851","4,500","1,260","6,333","4,734","5,395","9,583","3,136","2,430","5,436","3,199","5,073","15,528","6,058","3,130","6,787","9,570","5,395","3,710","8,943","2,856","1,117","7,339","7,197","7,601","2,724","10,087","5,820","4,007","4,345","7,838","6,722","8,541","7,162","10,708","2,086","2,451" -9,Population,Population and dwellings,Census Profile 98-316-X2016001,Land area in square kilometres,630.2,7.41,7.83,4.95,2.81,9.98,4.7,1.83,5.1,4.06,5.52,1.82,7.47,5.92,3.46,0.95,1.83,8.91,1.7,3.52,1.4,1.54,1.93,5.39,1.36,7.43,4.14,7.01,1.89,1.13,2.18,4.2,6.03,3.73,15,1.38,2.66,5.47,3.23,2.86,3.46,8.56,1.8,2.43,1.59,2.45,5.2,1.68,3.71,2.6,1.89,4.89,5.2,5.38,2.75,7.91,4.36,1.87,1.94,16.21,2.64,1.71,3.59,1.52,5.05,2.58,1.7,7.16,5.32,2.28,3.24,4.68,1.21,2.2,8.85,2.52,2.92,9.39,6.91,5.74,1.39,2.11,4.52,3.1,1.35,3.43,4.1,4.7,3.07,1.76,0.42,1.86,2.23,4.94,2.31,1.44,7.42,4.21,0.9,3,5.17,0.64,2.49,5.04,1.52,4.65,36.89,1.59,2.1,3.1,2.28,8.89,7.33,4.53,7.83,5.41,1.01,3.56,3.31,3.11,1.73,1.41,4.72,7.37,9.59,29.81,3.58,2.5,1.46,10.25,5,2.91,5.53,12.31,1.6,1.17,1.68,1.65,1.17,13.23,6.04 -10,Population,Age characteristics,Census Profile 98-316-X2016001,Children (0-14 years),"398,135","3,840","3,075","1,760","2,360","3,605","2,325","1,695","2,415","1,515","4,555","1,120","4,550","3,345","4,600","1,405","1,855","1,435","1,470","3,360",800,"1,490","1,200","2,150","1,260","4,565","2,765","2,575","1,910","1,675","3,020","4,065","4,250","4,480","5,725","1,285","3,735","2,120","4,180","1,805","4,805","2,635","1,695","4,385","2,060","1,365","5,790","2,460","1,295","2,505","2,850","3,540","1,545","2,115","1,450","2,155","2,945","2,165","2,310","5,820","2,190","1,610","2,775","1,315","4,240","1,580","1,695","6,120","2,420","3,280","2,845","3,285","1,400","1,335","7,910","1,500","1,340","3,675","3,505","2,880","1,540","2,395","7,090","2,980","2,380","1,610","1,585","2,810","2,055","1,960","2,290","2,865","3,130","3,110","1,470","1,280","5,840","1,745","1,150","2,050","1,770","1,635","1,640","3,505","2,300","2,625","7,960","2,050","1,940","3,365","2,115","3,975","2,645","3,150","4,060","3,885","2,950","3,825","1,730","5,600","1,745",565,"2,630","3,650","4,635","5,060","3,440","3,100","1,675","4,215","5,920","1,785","3,555","9,625","2,325","1,165","1,860","1,800","1,210","4,045","1,960" -11,Population,Age characteristics,Census Profile 98-316-X2016001,Youth (15-24 years),"340,270","3,705","3,360","1,235","3,750","2,730","1,940","6,860","2,505","1,635","3,210",855,"4,605","2,440","3,290",885,"1,655","1,425","1,040","2,460","1,035","1,220","1,080","1,850","5,060","3,495","1,910","2,145","1,545",920,"1,450","3,280","3,155","3,925","4,340","1,065","2,210","1,805","3,130","1,440","3,030","2,405","1,460","3,060","1,500","1,355","4,520","1,305","1,065","2,330","1,890","2,125","1,925","2,170","1,140","1,720","2,225","1,610","1,645","4,695","1,465","1,430","2,175","3,350","3,020","1,100",905,"5,730","2,105","1,670","2,095","2,175","1,605","1,130","6,620","1,265","1,165","3,195","3,010","2,690","2,060","1,815","5,240","1,705","2,520","1,390","2,185","3,325","2,415","1,170","2,265","1,680","2,275","2,385",915,"1,465","4,680","1,370",735,"2,080","1,580","1,775","1,355","2,740","1,305","2,185","6,700",960,"1,405","2,360","2,275","2,445","2,540","2,685","2,495","3,225","1,690","2,075","1,410","2,455","1,630","1,485","2,030","7,840","3,950","5,445","3,355","2,225","1,415","3,650","6,940","2,230","2,625","7,660","1,035",675,"1,320","1,225",920,"4,750","1,870" -12,Population,Age characteristics,Census Profile 98-316-X2016001,Working Age (25-54 years),"1,229,555","11,305","9,965","5,220","15,040","10,810","6,655","13,065","10,310","4,490","8,410","2,750","12,050","9,075","8,525","3,605","6,740","3,090","5,680","7,625","5,855","4,570","4,555","5,030","18,780","11,940","7,470","6,070","6,930","4,370","7,930","11,860","10,485","19,790","15,045","6,680","9,990","5,940","9,180","3,700","8,385","6,910","5,025","9,185","5,390","4,235","11,590","7,240","3,370","8,045","11,660","11,570","4,620","6,060","3,790","4,855","6,445","7,005","6,050","20,640","7,470","4,790","7,120","8,760","8,635","3,245","3,310","17,210","7,590","5,980","5,870","6,455","9,385","4,705","17,865","4,110","3,600","10,565","17,695","6,840","12,530","5,930","13,615","7,620","17,100","5,215","6,860","10,410","23,320","5,490","10,350","6,050","9,535","7,855","4,035","7,845","14,780","4,645","3,725","6,470","3,825","5,575","4,300","9,255","7,990","7,925","18,510","4,605","3,615","6,685","12,440","15,025","6,800","9,500","10,660","10,675","7,580","9,590","4,160","9,020","9,210","3,590","7,170","45,105","10,765","13,845","10,865","7,785","5,275","11,380","25,850","7,480","8,140","21,945","6,165","3,790","6,420","5,860","5,960","12,290","5,860" -13,Population,Age characteristics,Census Profile 98-316-X2016001,Pre-retirement (55-64 years),"336,670","4,230","3,265","1,825","3,480","3,555","2,030","1,760","2,540","1,825","3,075",885,"3,535","3,520","2,425",940,"1,925","1,525","1,435","2,185","1,715","1,350","1,465","1,955","3,235","3,360","1,935","2,445","1,740","1,195","2,135","3,145","3,330","3,935","4,380","1,235","2,805","2,385","2,825","1,255","2,430","2,855","1,600","2,335","1,725","1,530","3,605","1,765","1,555","1,390","2,585","2,870","2,020","2,265","1,510","1,315","1,760","1,650","1,720","5,400","1,750","1,435","2,510","1,795","2,550","1,345","1,050","5,930","1,910","1,725","2,115","2,340","1,325","1,520","5,535","1,205","1,735","4,030","4,620","2,355","2,495","1,760","3,475","2,020","3,030","1,580","2,155","3,110","1,885","1,645","1,970","1,595","2,590","2,650","1,280","1,260","4,265","1,390",970,"2,020","1,855","1,100","1,520","3,090","1,690","3,030","6,690","1,215","1,115","2,095","2,475","3,120","2,625","3,515","3,660","3,510","1,750","3,140","1,195","1,665","1,625",650,"2,270","4,680","3,785","3,990","3,500","2,430","1,415","3,940","5,460","2,070","2,905","6,245","1,625","1,150","1,595","1,325","1,540","2,965","1,810" -14,Population,Age characteristics,Census Profile 98-316-X2016001,Seniors (65+ years),"426,945","6,045","4,105","2,015","5,910","6,975","2,940","2,420","3,615","3,685","3,980",965,"5,250","3,910","2,870",895,"2,100","1,785","1,865","2,130","2,250","1,325","2,675","2,385","3,010","3,630","2,375","2,695","2,015","1,515","2,655","4,700","3,780","4,515","5,535","1,515","2,650","3,290","3,505","1,275","3,725","3,765","2,060","2,980","2,135","2,260","5,005","1,640","2,635","1,460","3,180","3,800","2,395","4,305","3,045","2,380","2,160","1,940","1,890","7,405","1,500","1,785","2,550","2,705","3,585","1,995","1,025","8,990","2,160","1,935","2,235","2,550","1,855","1,405","5,890","2,030","2,705","5,115","5,160","2,695","1,900","1,685","3,560","2,455","4,605","1,525","3,320","4,165","1,510","1,660","1,740","1,655","3,700","2,690","1,520","1,960","5,250","1,590","1,220","3,195","2,025",730,"1,730","3,655","1,680","5,140","6,625","1,245","1,865","2,225","2,540","3,330","3,235","5,755","4,165","6,160","1,705","2,955","1,880","2,365","2,350","1,320","3,405","4,635","4,240","4,980","5,130","2,445","1,325","4,715","6,270","3,370","4,905","8,010","1,380","1,095","3,150","1,600","2,905","3,530","3,295" -15,Population,Age characteristics,Census Profile 98-316-X2016001,Older Seniors (85+ years),"66,000",925,555,320,"1,040","1,640",710,330,610,740,660,145,900,630,370,115,310,245,255,285,305,165,395,160,250,660,400,370,300,195,365,665,790,595,870,175,310,665,560,145,955,565,505,285,350,325,700,200,540,135,550,755,190,630,950,260,260,280,245,"1,480",175,230,330,480,575,325,140,"1,345",360,265,315,400,255,140,445,380,535,880,565,355,140,265,300,260,940,140,670,685,95,140,220,255,540,430,230,290,775,205,195,355,325,50,300,480,185,750,685,195,365,430,360,520,410,955,750,"1,220",270,265,350,425,330,305,570,365,625,615,"1,000",395,150,905,830,655,885,"1,130",170,125,880,165,470,400,775 -16,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 0 to 04 years,"69,895",660,575,360,445,570,435,470,455,205,675,180,770,570,745,270,345,180,295,530,155,270,185,310,340,800,510,380,370,325,610,715,645,880,955,255,720,270,690,275,785,395,320,750,325,165,865,570,220,485,535,595,230,330,235,335,510,370,415,1140,480,275,490,275,735,195,270,1020,415,500,335,410,295,255,1225,255,185,750,725,495,355,400,1125,510,550,320,265,515,610,370,515,500,605,550,255,240,960,270,195,295,240,265,285,620,440,380,1200,380,300,565,455,900,330,535,710,685,560,650,265,995,355,115,450,1080,750,800,650,545,285,695,1195,355,620,1625,460,225,325,300,220,755,320 -17,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 05 to 09 years,"69,350",695,540,270,365,660,355,230,395,260,795,195,790,580,800,245,315,240,250,610,135,240,210,355,155,755,520,445,340,310,510,750,775,790,1015,215,585,345,770,290,790,460,290,755,390,220,1060,415,225,445,505,655,260,405,250,380,505,415,400,970,375,285,485,235,780,275,305,1040,435,655,515,610,255,225,1385,260,255,655,570,520,265,420,1295,530,375,295,265,470,265,350,350,475,520,490,285,225,1055,300,205,385,300,255,270,575,440,450,1445,330,325,605,325,685,500,580,770,680,560,665,300,1060,315,85,480,465,800,915,560,565,305,740,1005,310,625,1705,400,180,350,305,220,685,315 -18,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 10 to 14 years,"64,945",660,460,225,325,675,415,130,410,320,880,170,775,535,785,215,305,325,215,545,110,235,225,400,135,775,450,475,300,220,415,680,730,670,945,190,525,450,695,335,770,470,285,730,365,270,1045,265,225,340,395,575,305,440,260,360,480,340,335,845,275,260,480,195,680,325,280,1025,370,575,590,680,180,205,1430,255,260,530,470,485,180,405,1195,465,305,235,280,515,165,295,310,460,490,570,250,200,1045,275,210,350,390,285,290,590,355,490,1405,295,340,550,330,450,545,485,655,620,425,620,325,805,270,85,440,285,820,950,555,460,290,740,865,265,610,1600,330,180,310,280,195,635,370 -19,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 15 to 19 years,"74,240",840,780,285,465,715,490,585,520,385,880,210,955,585,765,245,365,410,215,580,135,300,230,495,440,895,480,585,305,195,350,710,720,665,1020,200,540,470,780,360,810,640,350,790,360,310,1115,305,290,415,375,500,420,525,265,440,545,315,395,975,330,345,555,360,760,300,280,1385,435,475,540,580,215,215,1580,310,295,685,500,555,240,405,1310,420,390,290,415,730,180,305,385,475,525,575,245,200,1175,345,190,485,400,365,345,695,310,485,1665,235,380,585,360,515,695,620,640,770,350,520,315,675,220,170,485,570,1040,1250,785,500,330,905,1290,415,680,1815,275,160,260,255,145,900,485 -20,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 20 to 24 years,"97,415",1015,1000,355,1215,700,530,2485,735,445,765,215,1370,650,840,210,455,345,290,620,365,365,295,460,1810,965,490,540,445,245,385,965,870,1260,1185,320,590,450,820,400,720,635,385,820,390,360,1100,380,280,810,495,515,565,605,325,455,610,425,435,1390,410,395,570,1315,775,235,190,1565,610,370,495,520,540,355,1770,350,295,940,955,825,795,475,1365,405,765,440,690,1000,880,320,785,405,595,630,245,470,1225,365,180,585,415,525,355,710,340,540,1825,210,340,645,705,740,670,775,640,920,485,500,410,610,525,590,535,3100,1005,1680,970,605,415,1030,2000,705,705,2310,255,200,385,345,260,1615,500 -21,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 25 to 29 years,"113,905",1015,1045,355,2080,645,465,2115,1075,405,405,225,1135,530,725,255,575,205,420,595,555,365,445,375,2800,875,565,400,675,315,415,1045,750,2140,1115,690,575,480,655,295,605,515,515,770,365,380,900,505,215,1025,1065,925,510,500,240,430,545,650,510,1940,560,360,550,1375,715,155,195,1530,615,270,350,295,1255,400,1585,320,240,1115,1670,650,1435,500,1195,485,1825,450,780,925,3265,310,1250,405,735,600,250,1040,1150,330,290,545,235,625,370,720,605,620,1565,220,280,490,1400,1045,490,905,675,915,625,485,330,695,1115,585,560,7875,835,1420,830,665,435,955,2715,790,655,2010,335,235,595,530,630,1545,465 -22,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 30 to 34 years,"108,895",835,820,410,1610,735,485,1695,1040,285,450,200,995,600,635,285,550,125,500,565,550,430,405,305,2450,905,660,430,665,355,630,885,770,2160,1130,830,770,425,625,260,600,475,420,750,355,320,810,605,200,880,1215,1090,360,360,290,355,460,625,505,2075,690,405,475,995,635,150,195,1230,655,280,315,260,1215,420,1430,290,175,855,1930,505,1500,480,1035,530,2125,430,610,780,3400,405,1215,490,815,515,270,910,1050,375,290,495,190,555,335,765,735,585,1420,325,220,440,1475,1510,350,715,745,775,695,630,330,800,1035,410,510,6580,750,1140,875,605,500,890,2665,780,570,1730,510,315,620,605,620,1105,425 -23,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 35 to 39 years,"94,070",680,625,455,1055,735,580,1010,805,230,590,205,835,675,580,320,515,145,465,525,560,370,300,345,1675,935,605,325,625,390,760,880,765,1690,1195,655,875,385,655,260,635,480,340,715,400,230,780,685,210,690,980,935,315,315,265,345,500,520,515,1720,640,365,495,630,620,230,265,1035,600,455,365,420,830,385,1160,305,240,675,1525,475,1210,435,980,630,1405,405,415,725,2195,445,1030,475,760,620,325,590,1065,340,340,405,245,465,315,745,705,525,1315,405,210,460,1045,1385,360,555,835,720,660,750,335,745,770,315,570,3725,690,960,730,575,475,800,2015,555,590,1585,565,340,535,450,410,875,430 -24,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 40 to 44 years,"86,535",760,610,420,835,815,435,560,685,310,665,170,840,740,585,305,460,220,455,505,500,325,265,365,1210,840,540,470,485,390,770,950,765,1340,1065,460,870,415,625,225,550,460,340,680,410,275,710,650,285,510,845,830,250,430,265,375,440,510,430,1440,600,365,485,505,620,285,280,1135,580,590,445,580,570,340,1300,295,265,705,1185,420,950,415,1030,645,1010,405,405,715,1285,445,735,500,745,580,340,450,1050,335,290,490,305,355,310,685,605,530,1275,440,240,520,850,1285,480,640,970,750,620,815,295,805,665,210,515,2255,735,935,760,545,385,860,1620,530,605,1585,545,295,425,395,365,775,395 -25,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 45 to 49 years,"90,860",890,760,440,850,1010,535,500,605,390,760,225,950,835,660,265,505,285,460,535,600,365,335,460,1205,1065,515,600,465,340,665,910,820,1230,1185,380,835,520,730,300,565,610,380,660,400,340,955,540,330,400,755,840,345,595,310,375,510,470,440,1405,535,395,605,480,670,325,290,1350,535,640,570,725,435,350,1350,360,355,755,1125,520,1020,425,1100,635,825,395,475,775,875,475,730,525,790,705,365,445,1175,400,305,555,395,405,345,720,675,680,1445,410,245,535,810,1115,655,825,960,860,600,925,355,780,555,175,565,1675,875,1065,805,610,370,915,1575,470,745,1675,505,300,480,390,405,775,505 -26,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 50 to 54 years,"98,735",1160,970,515,920,1110,605,540,620,430,845,220,1010,1020,680,295,540,395,430,660,725,405,345,540,1405,1140,550,670,555,365,635,950,1005,1285,1400,325,880,605,800,360,585,780,435,740,410,365,1075,525,360,440,715,805,480,600,385,480,565,435,510,1460,605,460,750,465,780,385,290,1760,575,570,585,760,385,430,1530,400,430,980,1260,615,1060,520,1065,625,860,455,575,845,705,550,810,530,725,745,450,390,1325,470,320,650,475,440,415,875,580,765,1695,400,335,630,780,1105,720,935,1055,990,525,880,370,595,515,190,625,1405,1100,1240,865,685,460,1150,1550,500,740,1840,515,325,450,385,360,960,495 -27,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 55 to 59 years,"88,145",1060,850,540,855,930,565,475,560,450,790,210,945,915,640,255,495,375,365,565,610,360,340,500,1065,945,500,685,475,305,500,785,885,1105,1215,355,765,575,735,350,555,745,445,625,395,345,950,445,375,335,665,740,480,505,390,330,495,385,425,1410,455,400,655,465,665,330,250,1435,485,470,565,610,380,445,1420,350,420,965,1255,645,895,460,970,480,730,420,530,835,520,435,595,500,660,720,335,345,1130,360,270,485,515,360,445,815,450,720,1680,330,265,520,745,900,660,805,965,870,480,770,355,440,485,175,580,1235,1000,1070,870,645,445,1080,1295,465,770,1700,425,300,355,285,295,855,475 -28,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 60 to 64 years,"72,270",925,710,390,755,730,385,375,555,375,670,230,765,810,465,190,365,350,285,470,455,290,330,410,840,695,405,540,375,260,450,635,635,830,925,280,580,515,615,235,460,610,320,465,345,355,720,390,325,285,575,620,480,485,310,300,350,330,360,1160,385,290,565,375,575,290,230,1300,395,340,455,470,270,340,1205,225,375,960,985,515,685,410,750,405,555,350,490,620,380,355,415,360,540,545,255,305,830,275,220,420,400,250,300,695,450,670,1515,240,215,440,585,695,600,805,780,740,405,685,245,350,345,150,480,955,835,840,755,540,310,860,1115,455,630,1340,340,250,365,320,330,585,360 -29,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 65 to 69 years,"60,360",925,630,300,780,715,380,295,475,405,560,120,650,640,380,150,315,280,295,305,415,210,340,420,650,525,355,470,275,265,385,605,525,660,725,220,485,420,445,185,420,490,240,435,340,325,605,250,265,235,450,540,455,520,280,255,315,295,270,915,290,255,375,315,470,265,165,1125,330,315,350,385,245,255,1040,190,305,795,840,400,480,225,610,380,540,255,420,525,300,300,345,245,460,415,250,250,670,205,210,435,295,170,265,500,315,665,1250,220,165,320,450,615,520,790,640,635,265,555,240,275,330,145,390,785,610,770,650,370,225,585,955,410,560,995,240,195,315,250,335,485,330 -30,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 70 to 74 years,"42,320",590,425,205,640,570,225,285,345,315,400,125,495,420,285,85,165,205,190,210,280,155,310,315,420,345,220,245,180,190,265,445,355,480,495,170,295,290,320,140,285,350,160,320,205,225,455,170,225,145,310,365,330,420,190,230,205,200,185,670,175,165,240,175,360,200,105,785,210,200,285,295,205,170,690,170,250,485,630,280,260,185,415,275,360,175,285,400,170,175,175,150,365,270,140,185,500,155,130,330,215,105,145,395,170,565,785,125,165,205,265,355,385,560,395,510,155,350,180,195,230,110,290,565,400,585,380,210,145,455,665,290,430,800,145,110,240,200,330,340,255 -31,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 75 to 79 years,"32,730",490,350,155,485,505,200,200,265,310,270,65,435,245,245,70,135,145,140,155,180,110,230,230,255,235,165,175,180,125,205,415,230,370,490,130,180,230,265,105,220,310,145,245,120,170,425,125,210,120,200,235,220,375,195,250,190,145,155,500,95,125,205,215,290,145,65,750,160,145,160,160,160,105,475,180,190,355,405,235,170,130,280,170,285,130,245,330,125,140,110,120,300,185,125,180,395,145,95,315,160,50,130,305,120,400,470,75,125,155,185,245,250,465,330,470,125,185,155,180,175,95,275,340,360,410,430,160,90,355,505,235,380,645,80,100,185,85,205,310,250 -32,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 10 to 14 years,"62,165",595,475,255,355,600,330,105,350,270,820,180,765,575,730,175,300,295,230,540,110,245,230,375,145,705,395,470,290,240,400,590,685,600,925,180,575,395,690,325,785,455,260,690,345,285,975,285,235,335,390,555,300,325,255,370,450,355,365,845,280,270,440,160,655,275,260,1025,350,530,600,620,200,180,1380,235,270,500,460,445,195,385,1210,465,285,195,260,435,185,290,310,460,440,490,235,190,1020,310,175,380,340,305,270,555,355,515,1360,295,325,545,290,490,535,490,560,615,370,640,270,735,230,80,395,315,805,855,515,460,275,690,855,235,545,1545,275,155,255,300,155,615,345 -33,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 80 to 84 years,"25,670",380,240,105,335,435,165,150,230,255,250,90,355,200,175,50,100,105,90,130,125,60,140,135,185,210,145,170,130,95,165,300,220,270,455,95,130,210,195,80,195,295,125,170,90,120,365,110,205,70,140,155,120,255,195,215,140,80,110,460,65,130,160,210,240,130,50,610,125,100,115,120,110,65,260,180,190,315,285,165,85,80,215,115,185,80,220,285,45,90,55,80,235,150,85,125,340,140,60,200,135,35,120,195,90,305,280,65,160,110,125,190,170,410,230,455,85,135,155,140,180,90,185,220,220,315,260,110,85,280,350,205,380,585,70,55,210,80,170,245,250 -34,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 85 to 89 years,"15,665",210,155,65,230,340,110,80,150,165,145,25,230,125,95,30,70,80,70,85,75,50,105,50,85,140,95,85,95,45,100,160,145,160,245,50,60,160,130,45,150,145,80,95,65,90,225,55,120,40,90,120,45,175,140,115,90,55,65,295,45,60,95,125,160,70,20,350,100,65,85,90,65,40,150,105,125,210,170,105,35,60,120,60,135,30,150,160,25,45,50,40,140,100,60,95,210,55,40,125,80,15,75,105,40,200,130,50,100,95,75,140,125,220,150,265,50,80,70,70,85,65,120,110,135,195,200,75,35,215,225,145,245,330,35,35,150,30,105,145,155 -35,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 90 to 94 years,"6,185",100,45,35,80,175,80,35,75,55,60,10,80,55,40,15,30,25,20,30,20,20,35,15,15,60,40,35,20,25,35,60,80,60,85,20,25,65,40,10,105,50,45,25,35,40,70,10,55,0,60,85,20,70,100,20,35,25,20,145,10,15,40,45,60,45,10,135,30,30,30,30,35,10,40,35,50,100,50,25,20,15,25,15,75,10,55,65,0,15,15,25,45,40,25,25,90,20,15,30,50,10,25,45,20,65,60,15,40,50,15,50,40,105,100,115,20,15,35,40,35,20,55,35,65,55,95,30,5,65,70,75,85,115,20,10,70,20,35,35,60 -36,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 95 to 99 years,"1,280",25,20,10,25,20,20,0,10,20,15,0,10,25,5,5,5,10,0,10,10,5,10,10,10,15,10,10,0,5,5,15,15,15,20,0,5,15,5,0,30,15,15,0,5,5,5,0,10,0,20,15,5,15,15,5,5,5,0,30,0,0,5,5,5,5,0,30,15,5,0,5,0,0,5,5,10,20,0,10,10,5,0,0,25,5,10,10,0,5,5,0,10,0,0,5,5,0,0,15,5,0,5,10,0,20,10,10,10,10,5,10,10,10,10,15,0,0,10,10,10,10,15,5,20,10,35,5,5,20,15,15,5,20,0,0,15,5,10,0,20 -37,Population,Age characteristics,Census Profile 98-316-X2016001,Male: 100 years and over,125,0,0,0,5,5,5,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,5,0,5,0,0,0,0,5,5,0,0,5,5,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,5,5,0,0,0,0,0,15,5,5,5,0,5,0,0,0,0,0,0,0,0,0 -38,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 0 to 04 years,"66,105",620,530,320,480,500,400,500,405,185,605,190,735,510,755,255,340,160,255,530,160,235,165,340,325,790,460,355,335,295,595,655,720,870,1025,235,680,295,620,270,815,380,255,745,295,195,895,490,185,450,550,550,220,260,205,355,485,350,420,1070,430,245,425,240,690,250,270,1010,405,445,335,405,275,250,1175,240,165,630,750,440,310,405,1065,505,515,295,280,465,580,310,420,485,560,470,210,210,835,290,175,280,210,265,280,560,355,370,1160,365,320,495,385,800,280,500,670,635,555,595,270,990,335,110,425,1050,665,735,610,590,270,640,1085,340,545,1530,445,240,305,300,230,680,285 -39,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 05 to 09 years,"65,680",620,495,325,400,600,365,235,405,265,780,200,710,570,785,245,260,240,225,595,125,260,190,365,175,730,430,450,265,280,500,665,695,690,860,205,650,365,700,305,855,465,290,710,325,215,950,440,200,435,470,605,225,350,245,345,525,335,375,950,360,270,435,215,700,270,320,1000,440,570,480,570,200,225,1295,255,200,605,525,500,230,385,1200,505,355,265,240,400,250,340,365,480,510,535,230,225,920,305,195,345,280,255,245,590,385,415,1370,375,330,590,345,645,460,560,680,660,490,665,300,1000,255,95,440,455,795,815,535,470,250,715,925,290,605,1650,420,190,315,325,200,660,325 -40,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 15 to 19 years,"71,285",865,690,290,550,660,405,790,425,365,840,205,900,555,820,205,390,340,230,595,160,245,220,450,585,810,460,505,325,210,365,690,760,760,1000,170,525,415,795,330,790,540,320,690,360,325,1115,280,245,380,410,510,390,450,250,385,500,330,355,970,305,325,505,380,740,300,220,1250,430,460,565,595,195,205,1590,290,285,700,520,600,270,465,1275,460,420,255,415,640,215,260,355,405,505,535,200,190,1120,330,150,450,380,375,290,615,270,545,1600,250,345,545,360,490,580,605,585,725,385,565,325,575,255,160,495,555,920,1060,725,490,295,760,1385,400,590,1575,260,135,250,245,165,855,430 -41,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 20 to 24 years,"97,330",975,895,310,1520,650,510,3005,815,435,725,225,1385,635,860,225,460,325,310,680,370,315,330,445,2205,805,490,505,455,265,340,895,810,1255,1145,375,560,475,720,345,715,595,405,765,400,365,1190,340,255,725,610,615,545,580,295,445,560,540,445,1405,400,380,535,1300,740,255,210,1530,635,350,500,475,650,350,1660,310,295,850,1030,695,740,470,1290,415,940,405,675,955,1155,285,740,395,640,630,230,610,1165,325,205,555,390,510,370,730,375,620,1610,260,330,585,835,705,600,685,620,800,465,505,340,600,635,560,530,3590,965,1455,875,625,375,945,2255,705,650,1970,255,175,425,380,350,1395,455 -42,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 25 to 29 years,"119,040",1005,975,350,2265,745,480,2440,1145,410,475,235,1155,555,845,235,500,215,480,660,490,370,520,340,2745,915,595,410,670,305,395,970,840,2255,1130,840,570,420,785,300,700,455,475,810,440,430,965,545,200,1005,1255,1130,430,505,285,410,580,790,535,2040,650,385,565,1350,700,165,180,1520,695,280,435,305,1470,415,1640,310,240,1035,1860,660,1350,520,1215,555,2155,455,730,915,3610,370,1030,445,730,590,225,1320,1170,350,350,510,195,585,340,735,770,705,1610,255,310,555,1570,1180,535,870,620,925,650,600,355,815,1200,560,570,7885,915,1365,820,675,410,895,3075,820,595,2040,390,235,680,705,750,1280,525 -43,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 30 to 34 years,"115,675",935,835,430,1675,860,575,1645,1170,285,645,240,1130,635,805,330,585,170,545,730,450,405,500,350,2035,1010,690,375,650,415,665,985,895,2165,1310,820,865,475,795,325,780,485,440,840,515,415,1040,690,230,915,1380,1175,335,355,310,390,595,775,595,1995,820,385,595,920,785,160,265,1360,695,350,400,340,1165,415,1535,310,240,945,1865,570,1345,520,1220,645,2260,465,595,915,3380,465,1010,585,880,600,285,945,1210,380,320,480,205,565,350,800,815,670,1505,370,335,580,1410,1570,435,750,785,870,785,780,390,960,1050,375,625,5820,850,1195,955,750,520,855,2655,755,670,2015,560,330,620,575,695,1110,495 -44,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 35 to 39 years,"102,240",775,715,450,1040,895,615,825,860,310,785,260,925,715,730,355,600,205,500,715,375,380,365,400,1065,1045,770,450,610,435,840,1115,920,1685,1430,560,930,440,830,295,910,525,380,870,505,350,995,750,245,695,1010,1055,315,450,300,410,580,615,490,1810,725,405,575,580,740,260,335,1160,735,560,470,515,780,380,1455,370,245,730,1425,585,890,525,1210,735,1495,470,490,935,1930,525,790,610,880,715,370,535,1295,370,335,455,260,410,325,810,695,615,1465,465,330,605,960,1475,490,610,985,875,685,905,330,890,665,230,685,3100,835,1070,1075,650,465,910,2185,590,705,1900,600,390,510,520,440,970,480 -45,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 40 to 44 years,"95,860",910,745,445,915,975,575,530,760,385,835,225,945,870,735,330,570,290,495,655,315,345,325,445,780,1015,690,570,495,400,730,1080,945,1355,1285,420,935,515,820,310,880,540,370,790,525,360,1045,625,330,530,895,955,315,605,340,400,525,565,485,1520,585,385,600,465,745,335,320,1380,640,655,605,665,510,335,1540,360,320,785,1270,505,655,465,1240,705,1150,425,505,860,1165,465,585,510,860,650,330,435,1360,375,290,560,370,380,360,705,650,670,1545,460,340,600,800,1205,640,805,985,885,645,900,310,770,550,165,610,1875,890,1040,1020,625,440,930,1910,510,680,1780,595,335,505,455,420,870,490 -46,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 45 to 49 years,"100,065",1060,885,430,855,1170,650,555,780,535,985,270,1030,895,780,325,645,410,470,720,315,410,360,505,685,1035,650,645,520,335,720,1075,900,1200,1405,390,930,615,870,375,770,760,465,770,550,390,1185,575,350,490,765,905,435,705,375,425,570,545,470,1560,530,390,660,475,785,380,365,1795,625,755,635,835,415,390,1610,400,405,920,1170,610,550,530,1215,725,1020,410,615,975,810,475,605,495,785,765,390,430,1405,450,295,690,435,385,420,830,585,735,1695,440,410,610,680,1115,850,955,985,970,520,955,360,640,550,180,665,1515,1110,1150,1045,645,380,1035,2005,545,755,1850,540,320,535,445,425,955,570 -47,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 50 to 54 years,"103,670",1290,975,515,935,1115,630,665,750,520,985,280,1090,1045,795,305,660,425,465,765,405,415,390,595,730,1130,655,735,510,340,675,1005,1115,1250,1420,320,945,645,960,400,790,825,490,755,500,400,1130,535,410,475,745,935,530,645,430,460,590,500,585,1670,545,475,750,545,830,430,320,1930,620,575,675,770,365,440,1745,405,435,1090,1390,695,550,600,1130,695,950,465,640,1050,715,545,575,455,795,765,450,360,1505,445,285,650,530,380,400,870,535,855,1980,420,370,625,680,1025,780,980,1045,1140,565,950,395,515,510,180,675,1390,1170,1230,1080,765,425,1220,1870,610,855,1885,520,350,475,420,430,1075,580 -48,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 55 to 59 years,"94,660",1165,915,485,915,1005,605,500,775,525,885,250,990,990,730,315,595,435,400,675,335,400,355,550,740,950,575,675,505,325,615,915,955,1080,1295,330,825,655,785,370,750,845,445,670,530,405,1105,500,435,420,700,800,530,635,400,365,500,460,505,1515,495,415,705,515,660,365,315,1700,560,530,575,720,330,400,1560,355,515,1075,1250,650,460,530,985,585,895,410,610,890,525,485,550,425,730,760,370,300,1280,445,260,570,535,275,425,860,450,810,1865,350,365,610,640,825,720,985,1040,1005,490,860,310,495,410,160,620,1325,1080,1125,1005,665,365,1095,1695,590,835,1790,465,315,435,360,440,890,510 -49,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 60 to 64 years,"81,600",1070,795,400,940,895,470,425,660,475,730,185,830,810,610,190,470,370,400,470,315,295,430,495,605,775,460,550,395,290,565,800,850,905,945,270,635,625,665,285,670,670,390,575,455,420,830,440,430,350,650,705,525,635,410,310,420,460,445,1320,420,330,570,430,640,360,255,1515,470,400,525,540,340,335,1360,270,420,1025,1150,550,460,365,780,550,870,390,515,775,435,375,425,320,655,630,315,315,1040,305,230,535,415,220,355,720,340,845,1620,290,280,520,515,685,640,930,865,895,375,815,290,375,405,185,570,1160,880,950,875,580,290,895,1370,565,670,1415,400,280,450,355,465,640,475 -50,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 65 to 69 years,"70,180",985,690,325,950,955,415,445,585,520,660,155,795,690,470,165,400,290,330,365,375,215,490,420,460,630,430,465,310,240,470,790,565,705,785,260,515,490,565,230,535,580,305,560,405,425,760,300,325,285,590,635,455,680,310,325,365,380,340,1130,320,305,445,385,540,335,200,1440,350,355,410,425,270,275,1215,230,370,875,945,450,345,315,675,470,750,265,500,655,340,330,330,260,565,440,270,285,850,225,200,520,325,145,255,635,295,830,1320,230,225,360,450,565,570,945,650,800,290,625,255,380,325,165,515,965,740,825,825,465,250,720,1120,510,685,1240,265,190,385,345,485,565,390 -51,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 70 to 74 years,"51,285",690,450,210,700,790,275,320,440,400,505,110,580,450,355,110,255,215,240,245,265,165,355,345,330,390,270,325,240,175,315,575,385,560,630,190,335,350,490,165,380,420,200,410,270,295,610,190,295,195,400,465,325,545,295,305,245,245,255,880,150,225,310,305,400,265,135,1080,255,260,265,355,230,180,855,215,310,515,660,340,215,235,460,350,645,180,360,470,220,215,225,235,465,315,160,250,705,160,135,420,220,90,195,480,210,705,870,145,200,245,280,330,415,625,415,705,175,430,195,280,250,155,420,675,575,605,535,275,170,510,790,390,500,1005,175,125,330,245,395,440,345 -52,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 75 to 79 years,"43,430",575,405,180,565,730,280,250,355,400,390,90,545,345,330,80,240,175,180,235,185,130,245,250,270,330,220,230,220,130,270,500,365,515,600,165,235,325,375,140,375,435,185,345,200,220,600,165,305,145,300,365,180,520,295,300,265,180,195,745,125,190,270,310,375,175,105,1020,205,165,175,215,220,110,585,265,285,470,505,275,135,160,350,240,475,170,350,405,120,165,155,160,430,250,140,205,555,215,120,360,175,50,160,360,165,520,540,100,250,205,255,270,310,550,420,740,200,230,185,250,295,130,435,410,420,490,605,270,125,490,630,365,545,910,135,115,315,125,300,410,355 -53,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 80 to 84 years,"34,965",485,350,210,425,650,285,170,315,330,305,60,500,290,235,55,170,115,140,200,130,115,165,110,185,315,175,235,170,100,220,390,355,355,505,110,165,305,280,100,355,360,210,225,140,155,475,115,280,120,245,315,125,375,335,245,180,125,135,620,95,165,210,305,345,155,60,825,150,130,155,200,160,95,320,220,275,420,335,195,80,115,245,195,390,130,270,400,85,120,125,130,320,210,135,170,440,135,80,270,180,30,155,320,130,395,380,85,215,195,185,240,205,450,360,630,150,165,170,210,215,140,325,320,295,390,455,195,90,415,410,325,535,745,100,80,275,95,225,345,355 -54,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 85 to 89 years,"25,135",350,205,130,345,615,265,135,230,265,260,45,350,250,130,50,130,90,105,110,115,60,160,65,100,220,140,140,130,70,130,250,290,230,365,60,125,245,225,60,320,230,200,110,125,125,275,80,225,60,210,280,75,230,350,105,95,95,110,580,85,105,125,170,220,100,60,555,120,95,125,145,90,55,170,140,220,310,210,140,40,90,105,100,350,55,260,240,45,50,80,85,210,160,85,115,330,85,75,135,120,25,125,200,75,260,290,70,130,150,150,190,165,365,270,480,110,100,145,165,135,80,215,145,210,215,385,150,65,365,320,255,370,430,90,50,335,70,160,140,290 -55,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 90 to 94 years,"13,500",160,100,70,260,360,165,50,115,180,140,60,155,140,80,15,55,30,50,40,65,30,70,25,35,175,85,75,45,35,60,125,190,100,120,35,80,145,125,25,250,100,115,35,90,40,105,45,100,20,130,215,35,105,285,20,40,65,40,315,30,40,50,100,105,85,40,230,80,55,70,90,50,30,70,80,105,155,95,65,25,60,55,55,250,35,135,150,20,25,55,95,105,95,50,40,100,25,40,50,60,5,55,110,40,155,150,50,65,80,65,75,65,165,175,275,60,40,70,100,60,80,135,70,135,110,235,95,40,190,165,125,155,200,30,15,210,35,100,50,190 -56,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 95 to 99 years,"3,475",60,20,5,90,105,45,5,25,55,35,0,65,40,15,5,10,15,5,0,20,5,20,5,0,45,20,15,10,0,20,45,55,30,35,5,20,45,35,5,75,5,40,5,45,25,20,10,20,5,30,45,5,30,55,5,5,25,10,90,5,5,5,10,10,15,5,50,15,10,5,35,10,10,20,5,20,80,25,20,5,30,0,25,85,5,45,40,0,0,15,25,25,20,15,15,30,5,10,10,10,10,15,25,10,35,55,5,15,20,35,60,15,50,35,60,15,15,15,45,10,35,35,20,40,25,60,25,0,60,25,25,20,50,0,10,85,0,40,10,45 -57,Population,Age characteristics,Census Profile 98-316-X2016001,Female: 100 years and over,650,10,0,5,25,20,10,0,0,10,10,0,10,5,15,5,0,0,0,0,0,0,10,0,0,5,5,0,0,5,0,15,5,0,0,0,5,5,10,0,15,0,5,5,5,0,5,0,5,0,5,5,0,0,10,0,0,0,0,30,0,0,0,5,0,10,0,0,5,0,0,5,0,5,0,5,5,10,5,0,5,5,0,0,20,5,10,10,0,0,0,0,5,5,10,0,0,5,5,0,0,0,0,5,0,0,10,0,0,5,5,0,0,15,5,10,5,0,5,0,0,10,10,5,5,5,5,10,0,5,0,10,10,15,0,5,20,0,5,0,10 -58,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001,Occupied private dwellings by structural type of dwelling,"1,112,930",9125,8135,4620,15935,12125,6080,15075,9535,4700,8610,2655,10765,9205,7320,3130,5735,3245,5665,6480,6440,3685,5410,4380,19680,9250,6550,5905,5495,3925,7020,9975,8780,15310,13125,5435,9180,6255,7915,3220,8245,6865,4585,7830,5450,4950,9910,6050,3990,6365,11030,10875,3695,6400,4135,3900,5055,6560,5170,19325,6030,4185,6580,8745,7785,3585,3120,15045,6590,5425,5745,6440,7430,4815,13415,3555,4310,7685,17770,5875,11550,5170,9870,7440,17490,5375,6120,8960,18770,5005,9555,5280,8695,7470,3790,6330,13315,3710,3575,5520,3860,4960,3850,9065,6890,10045,13385,3820,3650,5920,11390,12075,6425,7810,10375,10060,6275,9425,3280,7130,6905,3400,7415,40760,9985,10290,10225,7600,4225,10105,22310,7550,8505,18435,5455,3445,5885,5675,7015,10175,5345 -59,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Single-detached house,"269,675",3345,2790,2840,645,3485,2105,5,2025,1565,4820,665,3870,4900,680,495,1610,2275,850,1790,160,1680,875,3510,10,3135,2405,3380,1240,685,2900,2120,2130,1635,4330,310,1770,2555,1535,990,1905,3925,965,0,1470,1685,415,965,2175,495,1370,2655,3100,1650,1680,525,575,1850,1020,5175,740,1670,1805,70,2175,2310,1270,3685,2355,3110,3420,3565,270,1480,3475,1635,1780,3900,2255,2280,65,955,1655,2160,475,1555,2760,2530,35,815,5,1050,2795,3030,2220,355,2555,1795,630,1010,3295,5,1775,2765,675,2450,7625,2025,1150,1105,200,865,3245,3725,5790,3080,600,2590,1575,0,385,125,1250,255,3220,3870,870,1620,505,5290,3385,2030,3600,6310,885,1885,920,1400,520,1235,2165 -60,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Apartment in a building that has five or more storeys,"493,275",2120,3145,255,8165,6270,2055,14800,5900,1775,1995,665,4850,945,4065,470,2395,590,3325,3745,3375,165,2680,0,18055,1965,2315,1335,0,330,880,5630,3770,2265,3085,1335,2085,2405,4965,1375,3030,1785,3160,6425,3430,2025,3405,515,1090,5330,6515,3585,0,1940,1975,710,1585,1705,2880,12345,720,665,2835,4630,4760,790,700,6760,3335,205,925,525,2955,1135,3175,800,2025,1970,10810,2130,8240,2495,6165,2275,14785,1180,2590,4400,15645,700,8845,3175,1525,2395,520,310,6710,535,925,1475,440,3630,460,3260,1720,4990,1015,0,1965,3980,7170,2175,1745,2715,1035,4860,4840,640,680,6660,295,1125,3235,39265,3485,2265,7735,4405,500,1865,16100,4630,3740,9330,690,610,1295,1995,4315,5505,1185 -61,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Other attached dwelling,"349,880",3645,2200,1525,7125,2370,1925,280,1610,1365,1790,1325,2040,3350,2585,2155,1730,380,1495,950,2910,1835,1850,865,1595,4145,1830,1185,4245,2905,3235,2215,2880,11420,5695,3795,5320,1290,1425,845,3320,1165,450,1395,540,1235,6110,4575,725,535,3120,4635,590,2805,490,2655,2895,3015,1270,1790,4575,1845,1940,4045,850,485,1160,4605,900,2095,1415,2340,4205,2195,6780,1115,500,1795,4710,1465,3245,1725,2065,3005,2235,2635,765,2030,3100,3480,705,1050,4375,2050,1045,5670,4045,1375,2030,3030,125,1325,1610,3030,4485,2595,4755,1795,535,845,4015,9030,1440,1380,3550,2135,830,6185,1020,455,6240,2140,2930,1230,3285,4150,1620,1585,3220,2950,2810,895,1165,2785,3885,950,3680,2275,2175,3430,1990 -62,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Semi-detached house,"71,225",805,330,545,1185,285,165,0,120,495,45,80,290,425,660,815,155,40,440,240,460,435,265,160,25,1015,10,55,1230,1240,1700,360,335,2050,925,500,1950,85,120,70,30,360,95,180,15,65,3285,1480,140,0,600,515,5,825,60,1790,1135,265,375,125,980,425,350,215,130,70,545,925,30,885,110,795,460,80,1275,175,5,550,285,25,135,150,160,1620,185,215,10,605,110,1305,0,140,1260,130,170,960,1355,510,580,1805,5,50,30,1055,995,485,1145,760,210,30,150,2390,175,185,100,165,195,1450,300,0,715,215,305,40,450,295,555,205,1220,15,65,140,530,285,1555,325,880,465,450,1360,80 -63,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Row house,"61,630",1440,515,85,595,740,45,15,880,200,65,15,325,40,1140,370,75,230,80,25,630,20,200,485,220,1045,15,435,105,30,35,1415,1560,1140,645,110,595,130,510,515,265,605,230,565,30,40,1350,335,300,435,130,290,15,1070,65,85,455,0,145,650,565,10,125,600,315,50,185,2415,0,30,35,75,605,90,3540,95,285,610,915,920,630,335,1040,140,200,260,30,550,860,360,100,200,20,145,0,295,1370,260,60,270,40,505,430,240,320,260,1855,50,5,270,355,1660,540,555,440,920,185,340,50,85,890,285,365,560,1445,1310,470,160,300,360,845,250,345,240,300,20,290,60,220,775,600 -64,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Apartment or flat in a duplex,"48,540",645,695,330,455,40,640,0,75,100,315,90,1075,880,155,170,385,30,150,135,160,440,155,150,45,725,555,470,610,215,550,145,510,1135,425,400,485,40,585,200,510,125,60,5,110,70,330,360,180,15,410,565,545,155,180,95,80,155,380,250,510,395,680,245,170,30,95,420,185,185,230,45,240,230,1220,205,40,520,355,310,110,210,755,180,100,200,380,375,315,315,20,440,685,285,425,410,125,350,200,110,55,10,480,465,430,345,1170,240,85,170,210,685,120,355,245,670,195,465,375,0,875,185,180,80,735,1850,145,230,210,1470,250,300,255,1750,190,285,395,310,130,280,465 -65,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Apartment in a building that has fewer than five storeys,"165,630",735,610,560,4795,1315,1070,240,520,570,1260,1130,340,1960,630,795,1100,80,815,540,1640,940,1225,60,1280,1315,1255,160,2235,1410,945,305,465,6875,3720,2700,2240,1035,195,65,2510,75,55,645,385,1050,1150,2360,95,80,1985,3240,30,755,190,685,1210,2595,270,750,2510,1005,695,2930,220,335,335,830,655,1005,1015,1420,2835,1795,655,635,170,95,3145,205,2350,1035,90,1055,1755,1965,330,495,1770,1460,575,250,2390,1485,455,3890,1185,240,1170,825,15,735,670,1275,2715,1505,575,735,240,355,3280,4195,595,285,2765,340,240,3925,295,375,3385,1410,2060,535,635,685,455,990,1475,1105,1650,195,35,490,1810,320,2080,1445,1370,995,830 -66,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Other single-attached house,"2,860",15,65,0,90,0,15,10,5,0,115,0,20,40,5,15,5,0,0,0,20,0,0,0,30,50,10,60,65,25,15,0,5,220,5,95,40,0,10,0,0,5,10,0,0,0,0,30,0,5,10,25,0,0,0,0,0,0,100,5,10,0,80,55,0,0,0,15,15,0,5,0,45,10,85,0,5,30,10,5,30,5,0,5,5,5,0,0,50,40,0,15,10,0,5,130,15,10,15,20,10,25,0,0,20,5,20,10,0,0,5,85,5,0,5,30,25,15,5,0,365,50,15,20,30,5,0,5,15,5,20,0,0,10,25,5,35,0,0,0,5 -67,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Movable dwelling,95,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,10,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 -68,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001,Private households by household size,"1,112,930",9125,8140,4620,15925,12125,6095,15075,9530,4695,8610,2650,10760,9200,7330,3130,5740,3240,5665,6485,6435,3680,5405,4375,19670,9245,6555,5905,5490,3925,7020,9965,8780,15320,13120,5435,9185,6260,7915,3220,8250,6860,4585,7830,5450,4950,9925,6055,3990,6360,11020,10880,3700,6400,4135,3900,5055,6570,5170,19320,6030,4180,6570,8740,7785,3580,3120,15035,6590,5415,5750,6435,7425,4820,13430,3555,4305,7685,17775,5880,11555,5180,9880,7435,17495,5370,6115,8960,18780,5010,9560,5285,8680,7465,3785,6330,13320,3710,3575,5520,3865,4960,3845,9060,6885,10050,13390,3815,3650,5925,11390,12065,6425,7815,10375,10060,6270,9430,3280,7120,6915,3395,7410,40750,9985,10280,10235,7595,4225,10110,22305,7545,8510,18445,5450,3455,5890,5680,7020,10165,5345 -69,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, 1 person,"359,955",1350,1610,1105,7885,4360,1660,7605,3195,975,2390,870,2805,2960,1660,965,1720,625,2440,1545,3320,835,2275,505,11415,1905,2040,1495,1285,1195,2015,2115,2110,4655,3415,2015,3165,1785,1785,635,2830,1430,1285,1975,1930,2005,1955,1955,1120,1790,4745,4200,415,1480,1200,635,855,2535,1310,6655,1990,1155,2000,4095,1760,850,810,3000,1875,1270,1465,1785,2925,1870,2110,765,1180,925,8220,1205,6855,1455,1510,2650,9670,2200,1585,2145,10090,1655,4525,1785,2655,2215,1125,2235,3375,750,1450,1025,560,2155,985,2985,2705,4155,1635,840,890,1535,5835,4340,1310,1255,3025,2425,1895,3255,570,1920,2155,1445,2650,22030,2795,1800,2750,2805,1195,2535,7390,2660,2165,4220,1860,1105,2075,2365,3465,2660,1355 -70,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, 2 persons,"333,425",2370,2325,1440,5220,3820,1790,5330,3260,1505,2415,765,3190,2860,1820,955,1625,1010,1750,1760,2175,1075,1905,1345,6580,2525,1885,1605,1790,1100,2180,2990,2325,5020,3665,1840,2715,2045,2100,885,2010,2140,1365,2040,1560,1595,2410,1800,1340,1985,3555,3410,930,1950,1305,1015,1345,2050,1565,6405,1860,1135,1735,2580,2285,1205,920,4210,2145,1455,1690,1725,2710,1575,3035,1025,1455,1960,5925,1600,3410,1435,2045,2170,5390,1620,1930,2740,6640,1545,2830,1220,2565,2265,1165,2225,3890,995,1055,1630,1245,1400,1045,2485,2095,3380,2895,1135,1065,1500,3360,3860,1980,2305,3300,2990,1770,2920,880,1630,2350,1150,2140,14470,2530,2430,3100,2075,1115,2775,7200,2445,2600,4855,1620,1150,1870,1695,2425,2825,1615 -71,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, 3 persons,"175,720",1995,1680,885,1540,1755,1095,1410,1610,935,1190,475,1850,1460,1355,525,1070,550,765,1335,580,760,555,925,1200,1875,1075,1090,1135,720,1290,2195,1720,2675,2430,775,1485,1020,1565,665,1240,1340,875,1360,770,490,1985,1055,660,1210,1335,1450,765,1305,710,720,965,830,955,2960,970,740,1075,990,1400,550,550,3065,1090,955,850,1005,945,695,2670,680,720,1640,2010,1080,765,1065,2010,1080,1520,740,1160,1795,1380,740,1200,860,1645,1225,640,945,2545,715,435,1190,750,575,700,1545,925,1005,2575,745,710,1040,1165,1800,1225,1675,1765,1890,1135,1315,645,1065,1145,450,1150,2900,1770,2020,1985,1210,800,1880,4025,1180,1495,3395,900,585,875,710,595,1860,1010 -72,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, 4 persons,"146,580",1750,1335,795,885,1515,970,575,1000,820,1515,320,1465,1320,1215,410,820,600,515,1045,265,645,435,1015,345,1755,895,1080,835,640,1095,1715,1430,1905,2095,510,1305,905,1390,535,970,1290,685,1255,745,490,1780,825,585,880,1050,1300,725,1055,590,735,940,800,810,2225,815,680,995,570,1235,695,585,2610,970,1275,1145,1375,560,485,2655,665,675,1460,1160,1075,330,705,2075,1205,720,525,935,1375,505,775,640,755,1225,1110,600,595,2225,755,460,970,935,440,655,1210,805,980,3095,840,575,1005,680,1385,1195,1260,1710,1600,970,1405,565,1105,755,240,915,970,1585,1985,1480,865,660,1630,2650,885,1400,3200,820,440,750,690,395,1495,780 -73,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, 5 or more persons,"97,245",1645,1175,390,390,675,575,145,470,480,1110,225,1465,605,1260,265,485,460,190,780,95,370,245,590,135,1195,665,625,455,265,450,955,1190,1065,1520,290,505,480,1075,500,1200,655,375,1210,435,370,1780,420,285,505,330,520,850,605,320,800,920,365,540,1095,400,475,780,485,1110,275,255,2160,510,465,590,565,285,185,2940,420,285,1680,450,915,205,525,2215,325,200,275,515,915,165,290,370,660,610,660,265,335,1285,495,175,705,380,385,450,835,370,525,3170,255,405,840,350,705,720,1320,590,1170,500,525,615,1415,495,115,560,385,1320,2050,945,640,460,1270,1050,380,840,2775,250,175,330,220,135,1325,590 -74,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001,Number of persons in private households,"2,691,665",28820,23480,12030,28645,27000,15585,25605,21130,12660,23115,6370,29100,21685,21555,7690,14215,9185,11325,17705,10990,9905,10785,13340,30320,26300,16425,15800,14080,9595,17075,26835,24380,36290,35000,11710,21010,15190,22250,9445,21880,18525,11465,21915,12675,10615,30215,14375,9650,15710,21810,23350,12475,16910,10115,12410,15535,14225,13605,43235,14080,11040,17100,17460,21980,9165,7980,43500,16065,14560,15115,16650,15050,10065,43765,9855,10450,26065,33320,17155,18450,13260,32820,16755,28925,11285,15530,23635,30435,11675,18360,13605,20965,18505,9215,13765,34720,10715,7645,15805,11045,10670,10355,22240,14865,20615,46065,10070,9750,16440,20655,27035,17675,24275,24885,27030,15485,21435,10120,20845,16225,6675,17180,65620,26955,32890,26065,17690,11090,27555,50245,16730,22145,53010,12425,7845,13200,11805,12380,27560,14030 -75,"Families, households and marital status",Household and dwelling characteristics,Census Profile 98-316-X2016001, Average household size,2.42,3.16,2.88,2.6,1.8,2.23,2.56,1.7,2.22,2.7,2.68,2.4,2.7,2.36,2.94,2.46,2.48,2.83,2,2.73,1.71,2.69,2,3.05,1.54,2.84,2.51,2.68,2.56,2.44,2.43,2.69,2.78,2.37,2.67,2.15,2.29,2.43,2.81,2.93,2.65,2.7,2.5,2.8,2.33,2.14,3.04,2.37,2.42,2.47,1.98,2.15,3.37,2.64,2.45,3.18,3.07,2.17,2.63,2.24,2.33,2.64,2.6,2,2.82,2.56,2.56,2.89,2.44,2.69,2.63,2.59,2.03,2.09,3.26,2.77,2.43,3.39,1.87,2.92,1.6,2.56,3.32,2.25,1.65,2.1,2.54,2.64,1.62,2.33,1.92,2.57,2.42,2.48,2.43,2.17,2.61,2.89,2.14,2.86,2.86,2.15,2.69,2.45,2.16,2.05,3.44,2.64,2.67,2.77,1.81,2.24,2.75,3.11,2.4,2.69,2.47,2.27,3.09,2.93,2.35,1.97,2.32,1.61,2.7,3.2,2.55,2.33,2.62,2.73,2.25,2.22,2.6,2.87,2.28,2.27,2.24,2.08,1.76,2.71,2.62 -76,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001,Marital status for the population aged 15 years and over,"2,333,435",25275,20690,10285,28160,24085,13550,24100,18985,11635,18680,5455,25405,18955,17135,6320,12400,7820,10020,14395,10875,8465,9765,11215,30085,22420,13705,13355,12230,7995,14160,22975,20745,32155,29310,10500,17645,13415,18595,7650,17565,15960,10150,17545,10750,9370,24700,11960,8625,13220,19295,20380,10950,14820,9500,10260,12595,12205,11325,38155,12175,9445,14345,16620,17770,7690,6285,37875,13750,11325,12330,13545,14160,8745,35895,8610,9215,22885,30470,14585,18970,11200,25860,13790,27290,9705,14520,21025,29120,9960,16330,10975,18080,15560,7760,12555,28970,8975,6645,13770,9270,9170,8895,18750,12670,18310,38545,8020,8005,13360,19725,23890,15165,21470,20985,23560,12730,17750,8630,15510,14810,7040,14880,62265,22745,28265,22845,14890,9425,23700,44520,15145,18595,43845,10215,6700,12495,10010,11320,23545,12845 -77,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Married or living common law,"1,181,360",14200,11205,5735,12275,13240,7110,9305,10545,6565,10890,2290,13310,9905,7025,3240,6210,4855,4730,6690,4590,4585,5275,6955,10880,12120,7360,7245,6480,4405,8180,12825,10765,15640,14540,5025,9245,7325,8835,3530,8245,8940,5045,9100,5645,5135,10485,6270,4780,7090,9890,10915,6185,8360,4730,5515,6245,6155,5650,20215,6305,4815,6820,5470,8780,4900,3510,20130,7690,7225,7505,8050,6105,4295,18350,4560,5215,12810,15295,7305,6690,4850,12905,7865,11720,4330,7615,10960,12870,5435,6465,5340,8895,7820,4270,5535,14645,4875,3400,7670,5880,3690,4390,8865,6295,10105,21595,5035,3395,6435,7170,12215,8870,12485,12100,12840,6670,10220,4480,8865,6960,2650,6950,26455,10385,14540,11835,6260,4555,12065,24115,8000,10145,23035,5590,3600,5840,5380,5705,10420,6235 -78,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Married,"1,011,185",13535,10400,4995,8880,12035,6450,7005,9425,6255,10130,1950,12090,8140,6190,2515,5365,4605,3675,5830,2875,3925,4315,6430,6555,10770,6575,6350,5370,3690,7005,12000,9950,11695,12830,3510,7475,6480,8045,3130,7575,8270,4410,8355,4955,4440,9505,4800,4260,6275,7290,8305,5870,8025,4245,5215,5665,4880,5100,17190,4870,4160,6065,4075,7965,4500,3060,19095,6870,6665,6860,7290,3960,3345,17195,4190,4740,12195,11755,6695,4045,4070,12160,6640,8360,3425,7070,10115,7315,4190,4980,4745,7520,6615,3630,3720,13020,4370,2635,7235,5510,2820,3880,7515,4315,8480,20390,4270,3145,5835,4775,8885,8320,11960,10595,12010,5880,8160,4100,8235,5095,1920,6140,16505,9015,13600,10810,5165,3810,10870,21545,7245,9310,21320,4400,2845,4620,4300,4365,9160,5525 -79,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Living common law,"170,175",670,805,740,3385,1195,655,2305,1115,305,765,340,1215,1765,830,725,840,235,1050,865,1715,660,960,520,4320,1345,790,900,1115,720,1175,840,810,3945,1720,1510,1780,845,775,395,665,670,635,760,685,695,985,1470,515,810,2600,2610,315,330,480,300,580,1270,550,3015,1430,660,740,1395,825,405,445,1035,825,560,655,745,2150,945,1150,370,480,615,3560,605,2655,790,745,1235,3355,905,545,840,5555,1255,1480,595,1380,1205,645,1815,1635,505,770,445,370,865,515,1345,1975,1630,1190,765,250,595,2400,3330,550,540,1515,820,790,2065,375,615,1870,725,820,9910,1355,940,1010,1100,745,1180,2570,745,840,1720,1190,755,1220,1080,1340,1265,710 -80,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Not married and not living common law,"1,152,075",11075,9475,4550,15890,10850,6440,14790,8440,5075,7790,3160,12110,9045,10110,3090,6195,2975,5300,7695,6285,3875,4485,4260,19190,10305,6340,6115,5740,3585,5975,10150,9990,16510,14770,5480,8400,6095,9765,4120,9325,7015,5110,8440,5100,4235,14210,5690,3840,6145,9420,9465,4770,6460,4760,4750,6355,6040,5675,17940,5875,4625,7535,11155,8980,2790,2775,17760,6060,4100,4815,5505,8050,4460,17565,4055,3995,10080,15155,7285,12270,6350,12955,5920,15555,5375,6900,10070,16250,4520,9870,5640,9190,7755,3490,7005,14310,4095,3250,6095,3395,5480,4500,9885,6375,8210,16945,2990,4610,6925,12560,11690,6300,8985,8880,10730,6060,7530,4155,6655,7850,4390,7925,35820,12365,13730,11010,8625,4865,11650,20385,7140,8445,20800,4625,3100,6655,4630,5605,13120,6610 -81,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Never married,"806,270",7355,6605,3005,12060,6420,4010,12810,5910,3260,5420,2020,8295,5765,6730,2195,4155,2170,3620,5265,4685,2690,3085,3150,16215,7120,4320,4120,4120,2450,3980,6895,6580,12370,9730,4195,5585,3810,6560,2825,5905,4570,3280,5830,3430,3025,9190,4015,2185,4750,6425,6410,3680,4255,2500,3220,4270,4390,3815,11785,4275,3100,5030,8625,5970,1860,1885,11665,4355,2865,3550,3835,6355,2935,12730,2630,2405,6610,9745,5210,9455,4315,9290,4140,11040,3545,4845,6770,13585,3300,7525,3860,6055,5285,2350,5645,9715,2795,2330,4210,2430,4140,2975,6255,4580,5480,12380,2170,3010,4665,9295,8345,4545,5765,5615,6760,4200,4940,2730,4500,6115,3515,4960,30210,8295,10045,6590,5555,3430,7840,15635,4865,5280,14385,3145,2095,4340,3410,3805,9685,4115 -82,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Separated,"68,715",570,460,270,550,620,385,350,410,245,380,360,720,620,905,205,410,130,365,685,285,250,200,180,645,635,395,390,335,230,350,560,670,875,1190,275,620,425,665,315,600,400,395,620,285,200,1175,350,210,315,545,535,205,320,290,295,515,340,405,1180,340,325,530,455,690,140,195,1065,270,230,240,300,325,315,1220,245,190,490,1165,460,660,540,1045,305,840,415,275,615,700,235,580,415,675,555,225,250,965,255,180,275,155,355,315,820,410,385,1055,145,375,535,785,630,310,420,575,625,425,560,285,450,275,125,600,1255,945,825,790,755,355,730,940,330,605,1400,330,205,380,255,260,845,385 -83,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Divorced,"152,000",1460,1325,595,1885,1715,1015,1105,1120,610,1050,535,1380,1465,1390,435,920,335,835,1070,805,480,680,465,1755,1235,905,795,620,500,855,1425,1345,1860,2135,600,1430,835,1280,575,1460,905,700,1050,875,580,2150,835,580,640,1475,1400,350,800,665,550,895,820,800,2555,835,600,1130,1190,1220,330,420,2525,835,590,590,755,720,800,1970,505,610,1545,2855,795,1520,955,1445,985,2330,895,770,1445,1580,650,1215,795,1345,1075,500,555,2090,540,415,775,310,690,660,1630,880,1340,1620,345,560,945,1670,1745,790,1340,1435,1520,875,1410,490,870,735,360,1195,3375,1740,1420,1995,1480,630,1495,2230,945,1105,2405,745,505,910,660,905,1490,875 -84,"Families, households and marital status",Marital status,Census Profile 98-316-X2016001, Widowed,"125,100",1690,1080,685,1380,2100,1030,540,1005,975,925,255,1705,1190,1070,255,680,345,480,685,515,450,525,465,580,1320,720,805,635,405,785,1280,1400,1405,1720,405,765,1025,1265,405,1350,1150,735,945,520,425,1705,490,870,430,975,1130,535,1085,1305,685,660,500,640,2400,430,595,835,885,1085,465,280,2490,590,420,440,605,645,400,1640,670,780,1440,1395,795,645,535,1170,490,1355,515,1015,1265,380,330,550,570,1105,855,415,550,1555,510,320,820,495,290,555,1175,490,1010,1895,335,675,785,805,975,645,1455,1255,1830,555,620,650,820,735,400,1165,985,1385,1450,1645,835,440,1605,1565,1025,1445,2645,405,300,1035,300,640,1120,1235 -85,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001,Census families in private households by family size,"718,755",8430,6650,3480,6710,7600,4315,5100,6070,3795,6085,1745,7860,6075,5650,2100,3905,2645,2945,4905,2590,2815,2880,4010,5915,7350,4355,4420,3995,2560,4850,7635,6730,9445,9685,2935,5705,4390,6105,2570,5255,5465,3210,5720,3295,2800,8260,3880,2850,4155,5720,6280,3510,4960,2920,3465,4275,3605,3775,12040,3785,3045,4575,3380,5940,2680,2240,12385,4375,4055,4160,4550,3560,2695,11920,2800,3055,7575,8865,4670,3865,3630,8625,4495,6745,2890,4265,6520,7115,3140,3955,3380,5695,5010,2575,3205,9655,3050,1940,4565,3315,2460,2885,6015,3685,5510,12870,2885,2740,4365,4495,7240,5130,7195,7110,7715,4060,5935,2805,5065,4045,1405,4635,14415,7295,8865,7300,4550,2970,7575,13770,4460,6315,14395,3435,2195,3485,3065,3160,7005,3940 -86,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 2 persons,"344,110",3570,2970,1605,4475,3925,1945,3550,3255,1790,2425,830,3610,2940,2220,1005,1840,1085,1625,2060,1870,1235,1780,1630,4680,2915,1960,1815,1950,1105,2240,3300,2755,4945,4375,1725,2645,2120,2455,1040,2150,2380,1460,2205,1500,1525,3375,1850,1460,1900,3295,3300,1335,2295,1430,1390,1735,1805,1730,6390,1890,1350,2010,2070,2640,1200,935,5415,2090,1435,1635,1705,2175,1500,4330,1215,1480,3210,5600,1900,2830,1580,2850,2025,4560,1525,2015,3110,5430,1480,2155,1305,2695,2325,1225,1915,4155,1260,970,2035,1340,1225,1255,2840,1900,3165,4415,1165,1220,1685,2715,3870,2160,3335,3305,3595,1715,2855,1155,1665,2315,895,2220,11035,3070,3450,3520,2190,1305,3295,6805,2350,2850,5930,1645,1125,1820,1555,2130,3150,1835 -87,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 3 persons,"174,600",2390,1835,900,1195,1760,1115,965,1570,1005,1190,490,1915,1430,1455,505,1095,565,710,1380,420,810,490,975,850,2005,1070,1110,1040,665,1260,2205,1860,2390,2520,615,1460,1015,1630,700,1215,1420,855,1350,735,450,2230,985,655,1140,1210,1360,920,1400,710,810,1100,780,940,2835,910,815,1145,735,1370,540,530,3370,985,950,840,995,780,630,3040,720,720,2140,1905,1160,610,1055,2255,1035,1390,685,1135,1800,1160,695,960,865,1590,1175,615,660,2515,775,400,1290,755,515,760,1515,810,955,3215,715,705,1085,970,1710,1280,2030,1730,1965,1085,1285,715,1060,905,290,1165,2275,1865,2300,1980,1170,800,1950,3875,1090,1515,3675,840,565,765,680,535,1845,1035 -88,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 4 persons,"143,250",1875,1325,755,805,1500,925,485,980,790,1565,300,1460,1330,1160,405,770,620,475,1015,225,605,420,1055,280,1780,870,1080,775,610,1085,1620,1450,1620,2005,470,1250,890,1365,510,960,1265,665,1260,740,525,1755,795,560,800,1005,1265,845,1010,585,820,905,780,785,2095,790,650,995,395,1175,685,565,2590,960,1285,1170,1365,500,450,2860,655,670,1650,1110,1065,255,680,2135,1180,665,510,885,1210,450,770,580,755,1105,1050,580,505,2145,765,435,965,920,400,620,1160,740,965,3600,825,555,975,610,1300,1215,1445,1675,1540,920,1390,615,1120,645,175,875,845,1525,2145,1330,765,620,1605,2525,820,1420,3200,780,410,680,665,380,1395,740 -89,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 5 or more persons,"56,795",605,520,220,215,435,320,105,255,210,885,135,885,365,810,180,220,365,130,455,70,180,190,360,90,650,445,400,230,175,270,495,665,485,790,130,355,355,665,325,935,405,230,905,320,290,905,245,175,310,220,360,400,250,195,435,545,240,320,715,195,230,420,175,770,245,200,1010,340,385,515,490,115,110,1680,210,185,575,270,550,160,305,1390,260,125,165,225,395,85,190,255,465,305,455,160,115,850,260,130,270,300,330,250,495,240,435,1645,180,260,605,210,365,470,405,395,605,335,410,320,1205,170,40,370,245,820,950,470,420,245,715,550,210,510,1620,160,95,195,170,115,610,330 -90,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Couples without children,"250,085",2520,2095,1175,3830,3015,1385,2950,2570,1375,1975,420,2600,2080,1065,695,1195,940,1190,1095,1600,815,1565,1305,4130,1935,1430,1310,1370,865,1685,2345,1750,3720,2705,1375,1855,1565,1345,610,1370,1740,950,1410,1110,1330,1700,1340,1115,1415,2665,2710,1040,1665,1000,940,1015,1390,985,4840,1425,890,1210,1540,1685,1045,635,3635,1600,1135,1360,1325,1780,1085,2585,805,1135,2225,4450,1220,2395,835,1725,1625,3720,990,1520,2215,4765,1170,1560,825,1785,1520,890,1585,2660,845,800,1465,1115,835,800,1795,1485,2800,3060,920,595,975,1955,3020,1660,2455,2530,2505,1130,2250,805,1140,1855,740,1380,9825,1815,2400,2415,1245,865,2190,5230,1905,2060,3895,1190,830,1320,1290,1850,1955,1245 -91,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001,Total number of census families in private households,"718,755",8425,6640,3490,6700,7605,4310,5110,6070,3795,6085,1750,7875,6070,5655,2095,3905,2640,2940,4915,2590,2815,2880,4020,5905,7350,4350,4410,3990,2560,4850,7630,6730,9465,9690,2935,5705,4380,6105,2575,5255,5450,3215,5720,3295,2800,8245,3875,2850,4165,5725,6280,3510,4955,2920,3465,4275,3605,3780,12040,3785,3050,4580,3385,5940,2675,2235,12385,4375,4060,4160,4560,3555,2695,11925,2795,3060,7570,8875,4675,3855,3620,8625,4495,6745,2890,4260,6525,7115,3140,3960,3375,5690,5005,2575,3195,9670,3060,1935,4565,3305,2465,2885,6020,3680,5520,12865,2890,2740,4355,4500,7240,5125,7200,7110,7720,4060,5930,2805,5055,4045,1405,4630,14415,7290,8860,7305,4555,2965,7565,13765,4455,6315,14400,3430,2200,3475,3065,3160,7000,3930 -92,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Total couple families,"566,155",6770,5275,2815,5805,6350,3430,4305,5040,3105,5290,1050,6250,4810,3265,1565,2985,2350,2300,3180,2215,2220,2560,3430,5140,5735,3535,3530,3170,2150,4020,6155,5105,7585,6910,2445,4490,3545,4190,1690,3815,4390,2395,4360,2715,2495,4915,3045,2320,3385,4845,5325,2995,4025,2210,2635,2955,2985,2685,9730,3080,2335,3265,2520,4160,2405,1725,9525,3695,3565,3685,3955,2945,2100,8775,2160,2570,5980,7245,3475,3140,2285,6080,3875,5605,2110,3560,5170,6230,2650,3015,2535,4270,3765,2085,2715,7120,2385,1670,3715,2905,1740,2100,4285,3075,4925,10390,2495,1590,3035,3360,5855,4255,5855,5935,6075,3165,5040,2115,4190,3340,1190,3330,12725,4955,6890,5575,2920,2205,5790,11425,3820,4950,10950,2755,1770,2730,2640,2775,4920,2935 -93,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Married couples,"481,125",6430,4880,2450,4110,5755,3105,3160,4480,2955,4905,880,5640,3910,2850,1210,2555,2240,1775,2745,1355,1880,2085,3165,2985,5070,3140,3075,2605,1795,3425,5740,4690,5610,6055,1685,3595,3125,3790,1490,3490,4070,2080,3985,2375,2140,4405,2315,2060,2975,3535,4015,2840,3860,1965,2490,2665,2360,2410,8230,2375,2010,2890,1820,3750,2205,1500,9020,3280,3280,3365,3575,1870,1625,8200,1975,2330,5680,5470,3175,1810,1900,5710,3255,3940,1660,3285,4755,3455,2020,2270,2240,3580,3160,1765,1810,6305,2130,1280,3495,2720,1310,1840,3605,2090,4095,9800,2110,1465,2740,2165,4185,3980,5585,5185,5665,2765,3995,1925,3875,2405,815,2925,7770,4275,6420,5080,2365,1830,5190,10140,3435,4540,10100,2160,1395,2120,2105,2095,4290,2575 -94,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Common-law couples,"85,030",335,400,370,1690,600,330,1150,570,150,380,170,605,880,410,360,420,115,525,440,860,330,480,260,2155,665,395,445,555,360,585,415,400,1975,860,760,885,420,390,200,340,330,315,365,345,350,495,740,265,405,1300,1305,155,165,235,150,295,630,275,1515,715,325,370,700,410,200,225,515,415,280,325,370,1075,475,580,180,240,315,1775,305,1325,395,375,620,1675,445,275,420,2780,620,740,295,690,600,315,905,820,255,385,220,185,435,255,680,985,815,610,385,125,300,1205,1665,275,260,760,410,395,1035,180,305,940,365,415,4960,670,465,505,545,375,595,1275,380,415,860,595,375,615,535,675,635,355 -95,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Total lone-parent families by sex of parent,"152,600",1655,1365,665,895,1245,875,790,1020,690,795,695,1630,1265,2370,535,920,290,645,1730,380,610,315,590,750,1615,810,885,825,410,840,1470,1620,1880,2775,495,1220,835,1930,885,1430,1060,820,1360,575,305,3340,835,530,775,885,965,515,935,715,820,1320,615,1090,2300,700,715,1305,870,1775,270,515,2855,685,495,475,605,620,595,3145,640,490,1575,1615,1200,725,1340,2535,615,1130,780,700,1350,885,490,940,850,1430,1235,485,485,2560,670,270,845,405,720,780,1735,615,605,2470,390,1150,1325,1135,1390,875,1350,1180,1625,890,895,695,870,700,215,1295,1690,2345,1965,1730,1640,765,1775,2340,640,1370,3455,675,430,750,425,390,2075,1005 -96,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Female parent,"128,545",1295,1110,535,725,1035,720,700,875,585,655,625,1365,1020,2045,450,800,245,530,1545,325,500,265,495,645,1350,690,740,680,315,680,1245,1405,1535,2305,395,1030,680,1685,770,1265,865,690,1170,495,260,2890,690,440,685,750,805,385,805,615,695,1135,530,940,1930,560,590,1115,725,1520,225,455,2420,565,400,390,475,500,480,2680,530,405,1250,1350,1030,625,1140,2170,495,955,655,595,1155,760,390,800,745,1220,1065,385,385,2215,560,215,705,325,630,640,1445,500,490,2020,315,1035,1160,965,1110,735,1065,945,1370,770,715,585,735,560,170,1110,1395,2025,1620,1490,1400,650,1485,2025,550,1150,2935,565,365,635,335,330,1765,850 -97,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Male parent,"24,055",355,250,135,170,205,165,90,145,115,130,70,275,245,325,75,140,40,115,200,55,105,55,95,105,260,125,140,145,90,155,225,210,335,465,100,195,160,255,110,165,200,125,190,75,45,460,145,90,95,135,150,125,145,100,125,190,85,155,370,135,120,190,140,250,45,60,445,115,95,80,130,120,115,465,105,90,340,265,160,100,195,370,120,160,125,115,195,135,95,135,100,215,170,100,100,345,115,55,150,75,90,140,300,105,110,460,75,115,160,165,280,135,290,230,245,120,185,115,135,150,40,190,290,315,320,245,230,110,300,325,90,215,505,110,65,115,95,65,310,155 -98,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001,Couple census families in private households,"566,155",6775,5280,2820,5810,6355,3435,4310,5040,3110,5295,1050,6245,4810,3280,1565,2980,2360,2305,3175,2215,2220,2565,3425,5150,5740,3545,3535,3165,2160,4015,6165,5100,7585,6905,2445,4485,3545,4185,1685,3820,4400,2390,4355,2725,2490,4905,3045,2320,3375,4830,5320,3000,4025,2210,2640,2960,2985,2685,9740,3090,2340,3275,2520,4170,2410,1730,9535,3690,3555,3690,3955,2935,2100,8775,2160,2570,5985,7250,3475,3135,2285,6085,3880,5620,2110,3555,5165,6230,2645,3015,2530,4265,3760,2085,2715,7120,2380,1665,3710,2900,1745,2100,4275,3080,4915,10395,2495,1585,3040,3365,5850,4250,5860,5930,6075,3165,5030,2110,4180,3345,1190,3330,12720,4955,6895,5585,2920,2200,5790,11430,3815,4955,10960,2755,1770,2730,2640,2765,4925,2935 -99,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, Couples with children,"316,070",4250,3180,1645,1975,3335,2055,1360,2465,1725,3315,635,3650,2725,2215,875,1785,1415,1110,2090,610,1395,995,2125,1020,3810,2110,2230,1795,1290,2325,3805,3355,3880,4205,1075,2645,1980,2840,1085,2455,2655,1445,2940,1605,1165,3200,1705,1210,1955,2175,2605,1960,2360,1215,1700,1945,1595,1700,4900,1660,1455,2065,985,2485,1370,1090,5885,2095,2420,2325,2635,1170,1015,6190,1345,1430,3740,2805,2255,740,1450,4365,2255,1895,1115,2025,2950,1460,1475,1460,1710,2490,2255,1200,1135,4445,1540,865,2245,1805,915,1300,2490,1595,2130,7330,1575,990,2065,1410,2840,2600,3400,3420,3575,2035,2780,1310,3050,1485,450,1940,2890,3140,4490,3160,1675,1340,3595,6195,1910,2905,7055,1565,935,1405,1350,925,2960,1700 -100,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 1 child,"133,440",1910,1485,710,995,1475,880,810,1305,795,945,285,1520,1115,795,365,860,455,545,860,325,660,420,775,680,1540,850,870,845,520,1030,1830,1395,1860,1765,500,1105,790,1055,435,820,1125,650,995,600,370,1260,725,525,940,995,1080,795,1170,525,585,700,615,695,2260,735,635,790,510,920,450,405,2645,835,790,700,815,605,495,2185,545,600,1660,1540,815,420,650,1525,855,1150,505,960,1440,980,555,705,620,1195,865,485,540,1790,595,320,1075,635,325,525,1075,655,780,2500,595,380,715,690,1315,1015,1670,1430,1590,850,1045,490,840,690,240,840,1905,1175,1710,1515,715,575,1460,3255,925,1150,2710,670,455,590,550,455,1260,775 -101,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 2 children,"130,765",1770,1210,725,775,1445,865,460,920,740,1505,240,1310,1260,815,360,715,590,445,840,220,575,385,1000,255,1655,820,1000,725,590,1035,1515,1340,1530,1735,440,1195,835,1190,385,785,1170,590,1110,700,510,1280,740,520,730,970,1200,785,965,535,725,760,740,705,1980,750,600,885,335,960,675,515,2330,920,1240,1115,1325,465,420,2500,600,650,1545,1040,945,190,550,1735,1150,620,455,855,1125,420,740,515,670,1005,960,550,475,1890,705,425,910,885,300,540,980,705,920,3290,800,410,820,535,1200,1140,1350,1615,1420,865,1355,535,1030,620,165,770,785,1280,1940,1215,625,550,1475,2410,790,1300,2855,735,395,630,640,370,1180,630 -102,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 3 or more children,"51,865",560,480,210,220,415,310,95,240,200,875,105,820,360,590,160,205,360,120,380,65,165,190,340,90,605,440,365,225,165,260,465,630,485,710,130,345,350,610,260,840,360,205,825,310,285,665,235,160,285,205,340,390,220,150,390,475,235,300,660,185,220,375,135,600,250,170,910,340,390,520,480,100,100,1510,195,185,555,245,495,120,255,1110,250,125,150,215,385,70,185,230,420,285,420,160,110,775,240,125,255,275,285,235,425,220,425,1545,180,195,535,195,325,460,380,380,555,320,400,290,1175,165,45,330,210,690,850,440,345,210,670,520,205,450,1495,160,85,185,165,105,525,290 -103,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001,Lone-parent census families in private households,"152,595",1650,1360,670,895,1255,880,795,1020,695,790,695,1630,1270,2380,525,925,285,645,1730,375,605,315,590,760,1610,815,880,830,400,840,1470,1625,1865,2765,490,1220,835,1925,885,1430,1060,820,1365,570,305,3350,830,535,780,890,970,515,940,710,825,1320,615,1085,2305,695,715,1310,860,1770,265,510,2850,680,490,470,600,620,595,3150,640,495,1590,1610,1200,720,1340,2535,615,1135,780,705,1355,885,490,945,845,1425,1250,485,485,2560,675,270,855,405,720,785,1740,610,595,2470,395,1155,1315,1140,1375,870,1345,1175,1635,895,900,695,870,700,220,1290,1685,2350,1960,1735,1630,765,1775,2345,640,1365,3460,685,430,745,425,395,2080,1000 -104,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 1 child,"94,025",1040,860,430,645,910,570,595,690,410,450,410,1015,870,1160,315,640,140,440,970,270,420,215,325,555,980,540,515,580,245,560,955,1010,1225,1685,350,795,555,1115,425,795,640,515,800,385,195,1670,505,350,500,640,585,295,635,440,445,720,415,750,1545,470,470,805,535,955,150,300,1770,485,295,270,375,405,415,1740,410,350,980,1155,665,440,750,1130,400,830,530,495,885,650,310,600,465,915,795,325,335,1495,420,175,565,225,390,460,1050,420,370,1370,245,625,710,760,855,510,875,785,1090,590,595,350,535,455,160,840,1210,1260,1050,1115,955,440,1100,1575,435,785,2030,445,295,500,265,295,1195,595 -105,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 2 children,"41,160",485,345,190,205,285,235,165,260,210,250,200,405,315,655,140,230,105,170,515,100,145,65,195,165,465,220,250,185,135,225,375,470,520,755,110,350,230,575,270,385,295,205,345,135,80,970,250,120,200,200,290,140,235,185,235,390,155,245,575,170,170,355,230,440,90,130,730,145,170,140,185,175,135,860,165,115,475,380,350,190,400,735,185,245,185,175,365,185,145,255,240,380,320,130,115,725,185,80,215,130,185,225,435,150,175,715,125,320,375,290,405,270,360,310,370,230,250,220,230,205,50,315,370,700,600,475,450,215,495,595,175,385,955,170,110,185,130,80,590,260 -106,"Families, households and marital status",Household type,Census Profile 98-316-X2016001, Non-census-family households,"427,975",1645,2060,1290,9325,4730,1960,10015,3630,1125,2600,985,3460,3310,2080,1125,2050,665,2765,1845,3875,1025,2550,565,13805,2345,2345,1685,1685,1450,2315,2690,2485,6325,4050,2615,3590,1980,2160,790,3200,1610,1500,2380,2195,2180,2445,2320,1225,2360,5365,4690,560,1695,1325,780,1120,3020,1620,7600,2375,1355,2305,5545,2145,940,920,3640,2310,1395,1620,1905,4000,2185,2640,930,1310,1150,9085,1520,7725,1715,2005,2985,10785,2555,2065,2825,11735,1935,5670,2065,3230,2635,1290,3255,4010,860,1675,1300,630,2550,1150,3370,3270,4565,1940,985,1015,1770,6970,5115,1510,1480,3405,2855,2350,3565,720,2290,3100,2020,2955,26475,3140,2500,3285,3230,1460,3030,8965,3240,2440,5160,2090,1310,2510,2645,3865,3640,1625 -107,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001, 3 or more children,"17,415",125,150,40,45,55,75,30,70,65,85,80,210,75,555,75,55,45,30,240,15,35,30,75,35,150,55,125,65,20,60,140,150,120,345,25,75,60,230,190,265,125,105,210,50,30,730,60,55,90,40,95,80,75,90,140,205,50,95,165,60,70,150,95,385,15,80,365,50,35,60,55,40,45,530,60,25,140,85,185,100,195,660,30,45,65,40,105,55,40,90,140,130,110,30,40,330,75,20,65,40,145,100,260,45,50,385,25,205,235,80,135,90,105,80,170,70,55,120,110,30,10,150,100,385,305,140,230,100,180,170,30,185,455,55,20,65,35,10,305,140 -108,"Families, households and marital status",Family characteristics,Census Profile 98-316-X2016001,Persons not in census families in private households,"602,860",3885,4005,1930,11730,5690,2960,13120,4635,1795,3410,1350,5460,4270,3645,1520,3100,915,3355,2915,4715,1695,3085,1030,16785,3905,3320,2390,2760,2030,3060,4535,3930,10120,6510,3860,4485,2515,3475,1380,4385,2335,2080,3515,2855,2575,4890,3245,1610,3585,6490,5760,1495,2760,1715,1550,2245,3910,2495,9710,3385,2065,3410,8550,3520,1120,1200,6745,3300,1705,1955,2255,5800,2790,5515,1575,1685,3610,10635,2670,9025,2535,4225,3575,12300,3250,3360,5035,13880,2560,7450,2835,4780,3705,1760,5315,5755,1445,2090,2550,900,3210,1765,4615,4435,5315,4570,1350,1520,2605,8805,7065,2210,3640,4345,4580,3355,4210,1485,3115,5405,3095,3735,31995,4665,5335,5270,4405,2300,4870,12005,4430,3390,8705,2630,1765,3460,3120,4430,6880,2535 -109,"Families, households and marital status",Household type,Census Profile 98-316-X2016001,Private households by household type,"1,112,930",9130,8135,4615,15935,12125,6090,15075,9525,4695,8605,2650,10765,9200,7325,3125,5735,3245,5665,6480,6445,3680,5405,4380,19675,9250,6560,5900,5485,3930,7015,9970,8775,15320,13120,5435,9175,6260,7915,3215,8245,6865,4585,7830,5440,4955,9920,6055,3990,6360,11020,10880,3705,6400,4135,3900,5050,6560,5160,19340,6030,4185,6580,8740,7780,3585,3120,15030,6590,5415,5750,6425,7430,4815,13415,3555,4310,7675,17785,5885,11555,5175,9875,7435,17495,5370,6115,8960,18785,5015,9555,5280,8685,7475,3790,6325,13315,3715,3580,5520,3865,4960,3845,9055,6885,10060,13390,3820,3650,5930,11395,12070,6420,7820,10380,10065,6270,9430,3280,7130,6910,3395,7410,40755,9975,10295,10230,7600,4225,10100,22300,7550,8510,18430,5450,3450,5885,5680,7010,10170,5345 -110,"Families, households and marital status",Household type,Census Profile 98-316-X2016001, One-census-family households,"653,360",6600,5550,3180,6525,7190,3965,5015,5735,3370,5930,1580,6785,5710,4875,1925,3475,2515,2855,4390,2540,2500,2825,3620,5830,6480,4070,4045,3635,2395,4555,6960,5875,8550,8490,2715,5480,4170,5425,2295,4870,5055,2965,5180,3205,2750,6745,3590,2680,3860,5595,6095,2790,4450,2700,2805,3610,3490,3355,11425,3510,2615,3985,3020,5345,2630,2170,10505,4180,3990,4110,4500,3305,2580,9730,2460,2950,5610,8540,4065,3790,3305,7155,4400,6655,2750,3845,5765,6970,3010,3820,3065,5225,4680,2420,2965,8965,2655,1865,3910,3160,2360,2520,5370,3550,5445,10150,2780,2530,3970,4335,6700,4725,5585,6825,6730,3810,5780,2325,4640,3600,1345,4295,14160,6420,6805,6620,4195,2580,6635,12955,4165,5820,12255,3295,2085,3285,3000,3130,6090,3510 -111,"Families, households and marital status",Household type,Census Profile 98-316-X2016001, Without children in a census family,"226,080",1795,1660,1050,3745,2835,1250,2905,2445,1180,1920,370,2215,1945,850,640,1060,895,1160,930,1570,700,1535,1140,4085,1620,1330,1165,1230,810,1575,2045,1450,3365,2320,1275,1775,1485,1130,540,1245,1580,855,1205,1075,1310,1295,1245,1040,1315,2605,2630,775,1440,910,715,805,1350,835,4580,1335,760,1025,1410,1465,1010,615,2910,1520,1110,1330,1305,1655,1035,1875,700,1085,1530,4315,1015,2375,750,1210,1590,3685,950,1325,1925,4720,1125,1515,720,1610,1400,820,1485,2395,720,760,1185,1040,800,670,1570,1440,2755,2105,870,525,855,1890,2825,1480,1810,2390,2090,1045,2195,625,995,1650,705,1275,9705,1545,1660,2170,1135,745,1855,4845,1760,1880,3125,1145,785,1245,1250,1830,1675,1065 -112,"Families, households and marital status",Household type,Census Profile 98-316-X2016001, With children in a census family,"427,275",4795,3890,2130,2785,4370,2710,2110,3305,2185,4010,1210,4570,3770,4015,1285,2425,1615,1700,3455,970,1795,1295,2475,1740,4855,2735,2880,2405,1595,2990,4915,4410,5190,6170,1440,3705,2685,4290,1750,3620,3475,2115,3985,2125,1445,5445,2340,1635,2545,2995,3460,2015,3005,1790,2080,2810,2145,2520,6865,2185,1860,2965,1615,3860,1610,1555,7600,2665,2880,2765,3205,1640,1540,7835,1760,1865,4095,4225,3050,1420,2545,5930,2825,2980,1805,2515,3840,2255,1885,2315,2340,3620,3275,1595,1490,6560,1940,1105,2715,2125,1555,1845,3800,2110,2700,8025,1905,2005,3105,2450,3875,3240,3785,4435,4620,2760,3595,1705,3635,1950,640,3015,4460,4870,5155,4455,3065,1825,4785,8100,2410,3935,9140,2160,1295,2040,1750,1295,4430,2440 -113,"Families, households and marital status",Household type,Census Profile 98-316-X2016001, Multiple-census-family households,"31,600",885,525,150,80,200,165,45,160,210,75,80,515,175,380,85,205,60,45,260,25,155,25,190,40,420,135,180,180,80,145,330,425,430,595,110,105,105,340,140,180,205,120,260,40,25,730,140,85,140,60,90,340,250,115,315,325,55,205,305,130,210,285,170,290,20,35,900,90,35,20,25,125,60,1070,165,55,905,165,290,35,155,705,50,35,70,210,375,75,60,65,160,230,160,70,110,345,190,35,320,75,50,175,320,70,35,1300,50,105,190,80,260,195,750,130,465,115,75,235,205,210,35,170,130,425,985,335,170,185,450,385,145,235,1020,65,60,95,30,15,445,205 -114,"Families, households and marital status",Household type,Census Profile 98-316-X2016001, One-person households,"359,960",1350,1615,1105,7885,4350,1660,7610,3205,970,2380,865,2810,2945,1660,965,1720,630,2440,1545,3320,825,2275,500,11420,1900,2040,1490,1285,1190,2015,2115,2115,4645,3395,2020,3175,1790,1790,630,2825,1435,1285,1975,1930,2005,1950,1955,1120,1790,4750,4195,420,1485,1205,640,860,2535,1310,6650,1985,1150,2005,4095,1750,845,815,2990,1875,1275,1470,1775,2925,1875,2120,765,1185,925,8210,1205,6850,1455,1520,2650,9680,2205,1590,2145,10085,1660,4530,1790,2660,2210,1130,2230,3370,745,1450,1020,550,2155,985,2980,2700,4160,1630,840,890,1530,5835,4335,1310,1255,3015,2425,1900,3260,570,1915,2155,1445,2645,22030,2790,1790,2745,2805,1200,2545,7395,2650,2175,4220,1860,1110,2075,2365,3465,2665,1355 -115,"Families, households and marital status",Household type,Census Profile 98-316-X2016001, Two-or-more person non-census-family households,"68,010",290,445,185,1430,375,300,2395,435,150,220,125,660,360,420,150,330,40,325,295,560,195,285,60,2395,445,315,185,390,260,305,560,370,1670,635,600,410,190,375,150,375,180,210,410,275,170,490,360,105,565,625,490,140,220,125,140,265,495,305,950,405,210,295,1450,395,80,105,635,440,125,135,130,1075,310,520,165,125,250,870,320,880,260,510,335,1120,355,475,675,1655,275,1140,275,575,415,170,1020,620,115,225,275,70,395,160,385,580,415,300,145,125,240,1135,785,205,220,380,430,450,300,150,370,945,575,305,4440,355,705,540,430,265,485,1575,580,275,950,230,205,435,280,395,975,275 -116,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Total population (age 15+) by family characteristics,"2,294,785","24,990","20,395","10,265","26,295","23,385","13,265","23,940","18,725","11,150","18,555","5,255","24,610","18,350","16,960","6,280","12,355","7,740","9,880","14,345","10,195","8,420","9,585","11,195","29,100","21,740","13,660","13,250","12,170","7,950","14,050","22,760","20,135","31,835","29,255","10,425","17,290","13,085","18,075","7,640","17,090","15,905","9,770","17,545","10,615","9,260","24,420","11,915","8,365","13,205","18,980","19,815","10,925","14,800","8,665","10,260","12,590","12,070","11,295","37,400","12,000","9,425","14,320","16,150","17,745","7,590","6,275","37,385","13,650","11,275","12,275","13,350","13,655","8,725","35,890","8,370","9,110","22,385","29,835","14,280","17,025","10,860","25,745","13,780","26,550","9,675","13,955","20,830","28,395","9,730","16,065","10,755","17,845","15,395","7,740","12,495","28,890","8,975","6,495","13,755","9,275","9,045","8,725","18,735","12,575","18,000","38,110","8,025","7,825","13,080","18,575","23,135","15,045","21,130","20,845","23,145","12,530","17,620","8,400","15,250","14,485","6,170","14,550","61,990","22,390","27,850","22,650","14,610","9,415","23,335","44,340","14,935","18,580","43,400","10,110","6,685","11,340","10,000","11,175","23,525","12,060" -117,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Persons living alone (total),"359,955","1,355","1,625","1,105","7,880","4,360","1,655","7,610","3,195",975,"2,390",865,"2,810","2,965","1,660",965,"1,725",620,"2,440","1,550","3,315",825,"2,270",500,"11,420","1,910","2,040","1,490","1,285","1,195","2,020","2,115","2,115","4,655","3,420","2,020","3,175","1,785","1,795",640,"2,820","1,430","1,290","1,975","1,930","2,000","1,955","1,950","1,120","1,790","4,745","4,200",425,"1,480","1,210",630,855,"2,540","1,310","6,655","1,985","1,150","2,010","4,095","1,760",850,815,"2,985","1,880","1,270","1,470","1,770","2,930","1,875","2,110",765,"1,180",910,"8,205","1,195","6,855","1,450","1,510","2,660","9,675","2,200","1,590","2,150","10,075","1,660","4,525","1,780","2,650","2,210","1,115","2,230","3,365",745,"1,455","1,025",555,"2,160",985,"2,985","2,695","4,170","1,640",840,890,"1,530","5,835","4,330","1,305","1,240","3,025","2,430","1,905","3,255",575,"1,915","2,160","1,445","2,650","22,035","2,790","1,800","2,745","2,805","1,200","2,535","7,380","2,650","2,170","4,220","1,865","1,105","2,070","2,370","3,475","2,660","1,350" -118,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Persons living alone (per cent),15.70%,5.40%,8.00%,10.80%,30.00%,18.60%,12.50%,31.80%,17.10%,8.70%,12.90%,16.50%,11.40%,16.20%,9.80%,15.40%,14.00%,8.00%,24.70%,10.80%,32.50%,9.80%,23.70%,4.50%,39.20%,8.80%,14.90%,11.30%,10.60%,15.00%,14.40%,9.30%,10.50%,14.60%,11.70%,19.40%,18.40%,13.60%,9.90%,8.40%,16.50%,9.00%,13.20%,11.30%,18.20%,21.60%,8.00%,16.40%,13.40%,13.60%,25.00%,21.20%,3.90%,10.00%,14.00%,6.10%,6.80%,21.00%,11.60%,17.80%,16.50%,12.20%,14.00%,25.40%,9.90%,11.20%,13.00%,8.00%,13.80%,11.30%,12.00%,13.30%,21.50%,21.50%,5.90%,9.10%,13.00%,4.10%,27.50%,8.40%,40.30%,13.40%,5.90%,19.30%,36.40%,22.70%,11.40%,10.30%,35.50%,17.10%,28.20%,16.60%,14.90%,14.40%,14.40%,17.90%,11.70%,8.30%,22.40%,7.50%,6.00%,23.90%,11.30%,15.90%,21.40%,23.20%,4.30%,10.50%,11.40%,11.70%,31.40%,18.70%,8.70%,5.90%,14.50%,10.50%,15.20%,18.50%,6.90%,12.60%,14.90%,23.40%,18.20%,35.60%,12.50%,6.50%,12.10%,19.20%,12.80%,10.90%,16.60%,17.70%,11.70%,9.70%,18.50%,16.50%,18.30%,23.70%,31.10%,11.30%,11.20% -119,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Population age 65+ by family characteristics,"402,050","5,780","3,850","2,005","4,910","6,335","2,720","2,365","3,385","3,230","3,890",840,"4,615","3,380","2,710",880,"2,100","1,740","1,820","2,125","1,985","1,315","2,565","2,385","2,945","3,225","2,380","2,660","2,000","1,510","2,595","4,505","3,215","4,365","5,530","1,500","2,445","2,950","3,025","1,280","3,290","3,730","1,700","2,980","2,015","2,245","4,820","1,640","2,420","1,460","2,925","3,290","2,390","4,295","2,245","2,375","2,150","1,840","1,885","6,725","1,475","1,780","2,535","2,545","3,580","1,900","1,035","8,565","2,075","1,875","2,165","2,380","1,470","1,400","5,865","1,815","2,610","4,625","5,090","2,485","1,635","1,475","3,570","2,445","3,900","1,530","2,845","3,995","1,415","1,590","1,595","1,455","3,535","2,555","1,510","1,955","5,200","1,585","1,115","3,185","2,020",715,"1,595","3,655","1,665","4,990","6,305","1,245","1,700","1,965","2,085","2,905","3,195","5,415","4,090","5,770","1,555","2,870","1,680","2,105","2,235",975,"3,110","4,600","4,015","4,670","4,955","2,210","1,325","4,400","6,155","3,200","4,905","7,705","1,375","1,090","2,175","1,605","2,770","3,550","2,680" -120,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Persons age 65+ living alone (total),"107,215",795,520,440,"1,765","1,990",805,"1,045",750,615,"1,220",255,955,995,710,300,575,315,650,495,940,275,825,250,"1,480",635,715,775,355,525,750,885,710,890,"1,255",390,990,755,670,240,"1,390",820,475,850,725,760,"1,055",540,720,335,"1,295","1,130",185,"1,090",655,345,335,630,430,"1,940",395,515,645,"1,040",805,460,315,"1,690",540,545,500,710,270,435,815,375,715,500,"1,895",425,845,395,535,975,"2,155",685,635,885,510,485,805,565,"1,125",725,405,465,"1,355",265,395,505,360,300,365,"1,270",660,"1,740",670,255,450,515,"1,020",845,535,725,"1,150","1,415",515,905,300,795,395,290,"1,070","1,790","1,045",635,"1,570",880,280,970,"1,430","1,105","1,390","1,745",500,360,690,595,"1,025",720,610 -121,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Persons age 65+ living alone (per cent),26.70%,13.80%,13.50%,22.00%,36.00%,31.40%,29.60%,44.20%,22.20%,19.00%,31.40%,30.40%,20.70%,29.40%,26.20%,34.10%,27.40%,18.10%,35.70%,23.30%,47.40%,20.90%,32.20%,10.50%,50.30%,19.70%,30.00%,29.10%,17.80%,34.80%,28.90%,19.60%,22.10%,20.40%,22.70%,26.00%,40.50%,25.60%,22.20%,18.80%,42.30%,22.00%,27.90%,28.50%,36.00%,33.90%,21.90%,32.90%,29.80%,23.00%,44.30%,34.40%,7.70%,25.40%,29.20%,14.50%,15.60%,34.20%,22.80%,28.90%,26.80%,28.90%,25.40%,40.90%,22.50%,24.20%,30.40%,19.70%,26.00%,29.10%,23.10%,29.80%,18.40%,31.10%,13.90%,20.70%,27.40%,10.80%,37.20%,17.10%,51.70%,26.80%,15.00%,39.90%,55.30%,44.80%,22.30%,22.20%,36.00%,30.50%,50.50%,38.80%,31.80%,28.40%,26.80%,23.80%,26.10%,16.70%,35.40%,15.90%,17.80%,42.00%,22.90%,34.80%,39.60%,34.90%,10.60%,20.50%,26.50%,26.20%,48.90%,29.10%,16.70%,13.40%,28.10%,24.50%,33.10%,31.50%,17.90%,37.80%,17.70%,29.70%,34.40%,38.90%,26.00%,13.60%,31.70%,39.80%,21.10%,22.10%,23.20%,34.50%,28.30%,22.70%,36.40%,33.00%,31.70%,37.10%,37.00%,20.30%,22.80% -122,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Population age 85+ by family characteristics,"51,925",735,440,320,535,"1,145",550,305,475,455,590,100,625,375,260,115,310,230,225,290,190,155,320,160,240,405,405,365,300,190,340,545,385,520,870,170,235,420,345,140,710,520,265,285,250,320,645,200,415,135,385,445,190,635,410,260,270,190,240,"1,030",170,230,335,405,570,245,140,"1,170",295,230,265,275,180,140,455,305,470,550,535,235,95,150,310,255,420,140,405,585,85,120,140,170,450,340,225,295,745,205,125,350,330,50,235,485,185,650,505,195,270,225,185,335,395,710,680,930,170,225,230,260,305,110,415,360,465,450,885,260,155,745,745,550,890,950,170,125,295,165,355,385,460 -123,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Persons age 85+ living alone (total),"20,105",190,95,110,265,540,235,170,180,160,290,40,205,170,85,55,130,95,95,90,95,60,165,35,135,120,180,140,80,80,145,190,130,135,290,60,135,155,105,40,390,190,105,130,140,175,180,75,195,40,215,195,20,255,190,55,70,90,80,415,45,85,100,200,175,105,60,350,125,110,120,140,45,60,90,100,200,100,235,75,50,55,60,145,305,80,145,220,35,45,85,70,185,155,80,90,265,65,65,90,120,20,90,190,70,330,70,65,85,80,105,115,105,190,290,375,70,105,90,135,80,40,180,195,195,115,430,135,50,250,260,260,415,345,70,40,125,85,180,125,160 -124,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Persons age 85+ living alone (per cent),38.70%,25.90%,21.60%,34.40%,49.50%,47.20%,42.70%,55.70%,37.90%,35.20%,49.20%,40.00%,32.80%,45.30%,32.70%,47.80%,41.90%,41.30%,42.20%,31.00%,50.00%,38.70%,51.60%,21.90%,56.30%,29.60%,44.40%,38.40%,26.70%,42.10%,42.70%,34.90%,33.80%,26.00%,33.30%,35.30%,57.50%,36.90%,30.40%,28.60%,54.90%,36.50%,39.60%,45.60%,56.00%,54.70%,27.90%,37.50%,47.00%,29.60%,55.80%,43.80%,10.50%,40.20%,46.30%,21.20%,25.90%,47.40%,33.30%,40.30%,26.50%,37.00%,29.90%,49.40%,30.70%,42.90%,42.90%,29.90%,42.40%,47.80%,45.30%,50.90%,25.00%,42.90%,19.80%,32.80%,42.60%,18.20%,43.90%,31.90%,52.60%,36.70%,19.40%,56.90%,72.60%,57.10%,35.80%,37.60%,41.20%,37.50%,60.70%,41.20%,41.10%,45.60%,35.60%,30.50%,35.60%,31.70%,52.00%,25.70%,36.40%,40.00%,38.30%,39.20%,37.80%,50.80%,13.90%,33.30%,31.50%,35.60%,56.80%,34.30%,26.60%,26.80%,42.70%,40.30%,41.20%,46.70%,39.10%,51.90%,26.20%,36.40%,43.40%,54.20%,41.90%,25.60%,48.60%,51.90%,32.30%,33.60%,34.90%,47.30%,46.60%,36.30%,41.20%,32.00%,42.40%,51.50%,50.70%,32.50%,34.80% -125,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Population age 20-34 by family characteristics,"648,685","5,780","5,550","2,215","10,000","4,345","3,030","13,320","6,005","2,270","3,465","1,345","7,145","3,595","4,700","1,535","3,120","1,380","2,510","3,820","2,715","2,220","2,490","2,270","13,660","5,400","3,475","2,640","3,530","1,880","2,825","5,730","4,930","11,185","7,000","3,865","3,885","2,720","4,405","1,910","4,120","3,165","2,635","4,740","2,470","2,205","5,985","3,060","1,365","5,355","5,990","5,430","2,730","2,920","1,740","2,495","3,340","3,805","3,020","10,835","3,485","2,305","3,290","7,145","4,350","1,120","1,240","8,725","3,920","1,905","2,505","2,190","6,270","2,350","9,640","1,890","1,490","5,750","8,995","3,920","6,840","2,955","7,260","3,035","10,075","2,640","4,075","5,500","15,500","2,135","5,995","2,705","4,400","3,545","1,500","5,260","6,965","2,140","1,635","3,155","1,645","3,340","2,120","4,475","3,660","3,690","9,545","1,635","1,815","3,295","7,300","6,700","3,040","4,695","4,100","5,210","3,710","3,490","2,150","4,480","5,525","2,820","3,335","34,810","5,300","8,240","5,315","3,940","2,650","5,550","15,380","4,540","3,815","12,020","2,275","1,490","3,300","3,150","3,300","8,035","2,835" -126,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Single young adults (age 20-34) living at home (total),"86,935",95,410,110,"2,875",510,170,"3,915","1,150",85,210,125,685,295,170,145,270,45,445,225,635,145,535,40,"4,535",245,410,115,295,170,215,325,305,"1,380",430,620,415,250,170,60,280,75,220,240,310,450,150,300,45,740,"1,195","1,035",65,85,85,60,110,750,195,"1,545",480,125,180,"1,445",160,40,100,230,515,135,240,195,"1,405",380,230,85,60,90,"2,225",170,"2,190",235,170,485,"2,875",370,400,385,"5,130",330,"1,275",215,400,240,125,800,450,90,370,100,40,685,115,295,655,685,160,120,80,145,"1,910",945,140,110,345,215,345,485,45,265,800,600,305,"11,740",255,320,240,395,225,345,"2,675",625,125,565,295,120,490,745,935,710,210 -127,"Families, households and marital status",Family characteristics of adults,Catalogue no. 98-400-X2016030,Single young adults (age 20-34) living at home (per cent),13.40%,1.60%,7.40%,5.00%,28.80%,11.70%,5.60%,29.40%,19.20%,3.70%,6.10%,9.30%,9.60%,8.20%,3.60%,9.50%,8.70%,3.30%,17.70%,5.90%,23.40%,6.50%,21.50%,1.80%,33.20%,4.50%,11.80%,4.40%,8.40%,9.00%,7.60%,5.70%,6.20%,12.30%,6.10%,16.00%,10.70%,9.20%,3.90%,3.10%,6.80%,2.40%,8.40%,5.10%,12.60%,20.40%,2.50%,9.80%,3.30%,13.80%,20.00%,19.10%,2.40%,2.90%,4.90%,2.40%,3.30%,19.70%,6.50%,14.30%,13.80%,5.40%,5.50%,20.20%,3.70%,3.60%,8.10%,2.60%,13.10%,7.10%,9.60%,8.90%,22.40%,16.20%,2.40%,4.50%,4.00%,1.60%,24.70%,4.30%,32.00%,8.00%,2.30%,16.00%,28.50%,14.00%,9.80%,7.00%,33.10%,15.50%,21.30%,8.00%,9.10%,6.80%,8.30%,15.20%,6.50%,4.20%,22.60%,3.20%,2.40%,20.50%,5.40%,6.60%,17.90%,18.60%,1.70%,7.30%,4.40%,4.40%,26.20%,14.10%,4.60%,2.30%,8.40%,4.10%,9.30%,13.90%,2.10%,5.90%,14.50%,21.30%,9.20%,33.70%,4.80%,3.90%,4.50%,10.00%,8.50%,6.20%,17.40%,13.80%,3.30%,4.70%,13.00%,8.10%,14.90%,23.70%,28.30%,8.80%,7.40% -128,Language,Knowledge of official languages,Census Profile 98-316-X2016001,Knowledge of official languages for the total population excluding institutional residents,"2,704,415","28,850","23,730","12,030","29,880","27,480","15,635","25,740","21,250","12,745","23,210","6,370","29,505","21,870","21,560","7,685","14,215","9,240","11,380","17,720","11,285","9,910","10,865","13,345","30,920","26,310","16,425","15,860","14,095","9,605","17,105","26,840","24,390","36,365","35,030","11,740","21,090","15,200","22,575","9,450","22,060","18,530","11,480","21,935","12,670","10,725","30,255","14,380","9,655","15,725","22,105","23,455","12,485","16,925","10,360","12,410","15,545","14,235","13,615","43,425","14,095","11,040","17,105","17,590","21,990","9,270","7,980","43,970","16,160","14,610","15,180","16,690","15,440","10,085","43,775","10,025","10,450","26,265","33,385","17,155","18,860","13,270","32,830","16,775","29,270","11,315","15,555","23,640","30,575","11,695","18,405","13,635","20,980","18,645","9,220","13,800","34,790","10,720","7,755","15,805","11,050","10,690","10,355","22,250","14,900","20,895","46,090","10,065","9,760","16,570","20,905","27,385","17,785","24,300","24,955","27,050","15,495","21,525","10,120","20,855","16,300","7,070","17,195","65,780","26,990","33,000","26,095","17,730","11,095","27,640","50,285","16,895","22,145","53,310","12,450","7,845","13,345","11,805","12,530","27,595","14,055" -129,Language,Knowledge of official languages,Census Profile 98-316-X2016001, English only,"2,323,235","21,645","19,225","10,840","23,430","23,825","13,860","21,950","18,500","10,900","20,245","5,760","26,625","19,640","19,140","6,220","12,505","7,275","9,835","15,980","8,980","8,515","8,655","12,225","25,730","23,695","14,910","14,355","11,530","7,740","14,235","23,265","21,865","29,225","31,525","9,355","17,850","13,295","20,480","8,705","20,135","16,655","10,255","18,945","11,135","9,030","26,695","11,840","8,865","13,840","18,105","18,865","11,510","14,160","9,300","11,000","13,935","12,165","12,515","37,925","11,875","9,555","15,540","13,305","19,695","7,945","6,580","35,665","14,265","12,115","12,080","14,020","12,225","8,960","39,670","8,980","9,280","18,450","28,850","15,750","15,430","11,960","29,050","13,890","24,590","9,980","13,375","20,900","25,680","9,000","16,120","12,210","17,745","16,495","8,065","10,690","30,240","9,715","6,080","13,380","9,715","9,030","9,405","19,535","11,655","16,680","41,965","8,065","8,885","14,885","17,805","21,575","14,740","17,865","21,955","22,960","13,940","17,845","9,125","18,450","12,185","5,660","15,070","55,440","24,560","30,165","23,015","16,075","9,370","24,880","43,255","14,550","20,040","48,150","10,375","6,695","10,690","9,640","10,115","24,950","12,405" -130,Language,Knowledge of official languages,Census Profile 98-316-X2016001, French only,"2,725",15,5,0,10,20,10,25,20,15,10,15,40,15,20,10,20,5,10,30,5,15,5,10,30,40,20,5,30,10,25,25,25,10,20,15,15,20,65,0,25,10,10,30,10,5,35,10,10,20,25,5,5,5,5,10,25,10,30,45,5,15,10,15,35,15,10,75,10,15,15,0,10,5,50,10,0,10,10,25,40,10,25,10,15,15,5,20,10,0,45,25,20,40,10,20,55,5,5,15,0,10,25,20,20,5,30,15,10,65,20,25,15,20,30,25,25,15,5,25,10,5,45,50,60,40,20,40,30,40,40,10,55,70,15,15,20,20,5,30,15 -131,Language,Knowledge of official languages,Census Profile 98-316-X2016001, English and French,"245,695","1,235","1,060",890,"6,015","2,895","1,050","3,080","1,780","1,060","2,705",275,"1,320","1,910",690,"1,010",940,"1,765","1,225",765,"2,040",520,"2,140",935,"4,745","1,585","1,085","1,170","1,375","1,410","2,200","2,000","1,205","4,230","1,415","1,555","2,830","1,510","1,300",440,"1,395","1,435",780,"1,350","1,380","1,610",840,"1,760",705,"1,030","3,595","4,305",680,"1,170",720,385,510,"1,875",640,"4,080","1,830",470,915,"1,895","1,420","1,285","1,295","2,250","1,510","2,345","2,995","2,605","2,030",950,"1,975",415,965,740,"3,545",905,"3,000",670,"1,230","2,730","4,200","1,030","1,010","1,325","4,445","2,275","1,720",785,"1,920","1,575",940,"2,420","3,495",495,"1,530","1,155","1,165","1,005",605,"1,345","2,600","4,100","2,565","1,885",345,"1,105","2,265","3,575","2,360",790,"2,435","1,425",980,"3,630",440,"1,025","2,130","1,175","1,345","9,335","1,780","1,295","1,530",955,730,"1,745","3,800","1,335","1,425","2,515","1,760",910,"1,990","2,045","2,315","1,210",785 -132,Language,Knowledge of official languages,Census Profile 98-316-X2016001, Neither English nor French,"132,765","5,945","3,430",295,420,760,705,700,955,780,240,330,"1,510",305,"1,710",450,755,190,310,955,265,865,70,170,405,985,405,325,"1,170",440,650,"1,550","1,300","2,885","2,070",810,410,380,730,300,510,430,435,"1,595",145,85,"2,680",775,85,835,390,265,290,"1,580",335,"1,000","1,075",195,435,"1,350",385,995,640,"2,360",850,35,105,"5,965",370,130,80,60,"1,170",170,"2,105",625,200,"7,065",960,485,385,615,"2,515",140,470,280,"1,160","1,395",450,410,515,620,"1,290",545,210,700,"1,005",495,140,"1,270",165,640,320,"1,350",640,90,"1,505",100,520,525,805,"2,220",660,"5,625",535,"2,655",545,45,550,"1,360","1,975",225,725,950,600,"1,485","1,515",665,970,975,"3,220",995,635,"2,575",295,220,650,100,90,"1,400",850 -133,Language,First official language spoken,Census Profile 98-316-X2016001,First official language spoken for the total population excluding institutional residents,"2,704,420","28,850","23,730","12,030","29,875","27,480","15,630","25,735","21,250","12,740","23,215","6,370","29,505","21,870","21,570","7,685","14,220","9,240","11,380","17,720","11,290","9,905","10,865","13,345","30,915","26,310","16,420","15,860","14,105","9,605","17,100","26,835","24,395","36,365","35,030","11,735","21,090","15,200","22,575","9,450","22,055","18,525","11,475","21,935","12,680","10,725","30,255","14,390","9,655","15,720","22,105","23,450","12,475","16,920","10,360","12,405","15,540","14,235","13,615","43,420","14,095","11,050","17,105","17,585","21,990","9,265","7,985","43,955","16,165","14,605","15,180","16,685","15,440","10,085","43,770","10,025","10,455","26,265","33,385","17,160","18,865","13,260","32,830","16,770","29,285","11,310","15,560","23,640","30,585","11,705","18,405","13,635","20,980","18,655","9,225","13,810","34,795","10,720","7,755","15,815","11,045","10,685","10,360","22,250","14,900","20,895","46,080","10,065","9,760","16,565","20,900","27,370","17,785","24,310","24,955","27,060","15,500","21,535","10,120","20,855","16,300","7,070","17,195","65,780","26,985","33,000","26,095","17,725","11,095","27,630","50,285","16,890","22,140","53,310","12,445","7,850","13,345","11,810","12,525","27,590","14,055" -134,Language,First official language spoken,Census Profile 98-316-X2016001, English,"2,508,815","22,595","19,990","11,570","28,440","25,880","14,605","24,210","19,680","11,595","22,530","5,945","27,540","21,120","19,595","7,010","13,170","8,715","10,765","16,520","10,580","8,865","10,490","12,985","29,245","24,770","15,710","15,285","12,610","8,885","15,970","24,555","22,645","32,655","32,475","10,630","20,195","14,410","21,275","9,055","21,220","17,675","10,790","19,780","12,210","10,380","27,270","13,275","9,405","14,510","20,920","22,385","12,010","14,945","9,840","11,295","14,270","13,695","12,920","40,840","13,375","9,865","16,175","14,750","20,510","9,025","7,605","37,135","15,410","14,120","14,715","16,255","13,920","9,695","41,030","9,285","9,970","19,055","31,410","16,355","17,605","12,455","29,850","16,035","27,675","10,770","14,105","21,740","29,130","11,035","17,245","12,680","19,290","17,660","8,815","12,740","32,565","10,095","7,410","14,120","10,660","9,675","9,835","20,470","13,820","20,110","43,925","9,665","9,130","15,575","19,575","24,405","16,560","18,430","23,755","23,880","14,560","20,795","9,410","19,120","13,975","6,660","15,915","62,455","25,725","31,090","23,935","16,725","9,920","26,020","45,780","15,560","21,030","49,905","11,765","7,430","12,345","11,340","12,065","25,800","12,970" -135,Language,First official language spoken,Census Profile 98-316-X2016001,Official language minority (percentage),1.90%,0.90%,1.00%,1.10%,2.90%,2.40%,1.70%,2.60%,2.10%,2.10%,1.70%,1.40%,1.30%,1.90%,1.00%,2.70%,1.40%,3.10%,2.20%,1.20%,3.50%,1.50%,2.40%,1.20%,3.70%,1.70%,1.60%,1.30%,2.00%,2.70%,2.50%,2.00%,1.50%,2.00%,1.10%,2.20%,2.20%,2.10%,2.10%,0.80%,1.30%,1.70%,1.50%,1.90%,2.00%,2.00%,0.90%,2.10%,1.50%,1.90%,3.00%,2.80%,1.10%,1.70%,1.30%,0.70%,1.00%,2.10%,1.50%,2.20%,2.00%,1.30%,1.40%,2.40%,2.20%,2.10%,2.80%,1.50%,1.80%,2.10%,2.20%,2.00%,2.00%,1.80%,1.30%,0.80%,2.00%,0.60%,2.50%,1.50%,4.20%,1.20%,1.20%,3.00%,3.20%,2.00%,1.20%,1.50%,3.00%,2.00%,3.00%,1.90%,1.60%,2.10%,1.80%,2.50%,2.80%,0.90%,2.40%,1.90%,1.60%,3.10%,1.60%,1.60%,2.70%,2.80%,1.10%,2.60%,0.90%,2.30%,2.20%,2.60%,2.40%,0.90%,2.20%,1.60%,2.00%,2.90%,1.30%,1.40%,2.00%,2.50%,2.70%,3.20%,2.00%,1.00%,1.80%,1.70%,1.80%,1.90%,1.90%,1.50%,1.80%,1.20%,2.90%,2.20%,2.40%,2.60%,2.60%,1.20%,1.30% -136,Language,First official language spoken,Census Profile 98-316-X2016001, French,"39,795",150,150,100,735,445,190,525,260,150,325,65,265,370,160,185,130,220,190,135,355,105,215,135,975,330,190,155,205,230,375,300,255,595,250,230,400,215,385,60,215,195,100,290,185,160,215,275,125,190,535,530,90,150,75,40,115,250,150,670,225,110,175,345,345,170,175,405,205,255,285,290,265,145,410,55,135,55,675,195,710,110,240,405,750,205,85,185,810,200,455,195,250,315,145,290,665,70,165,165,125,280,130,245,335,515,345,225,55,290,400,665,270,115,425,285,215,570,105,170,290,150,350,"1,845",435,225,295,235,155,365,540,155,305,485,325,140,265,245,265,245,125 -137,Language,First official language spoken,Census Profile 98-316-X2016001, English and French,"24,865",220,200,65,285,420,140,310,375,230,125,40,205,80,135,40,170,130,105,130,80,70,90,70,305,235,125,110,130,65,125,470,245,255,245,80,110,200,215,45,145,210,155,275,140,95,125,65,40,205,250,275,100,250,120,75,85,100,110,585,105,85,140,130,305,50,95,520,190,100,100,90,90,65,295,60,150,170,350,160,180,95,265,185,400,65,205,325,210,55,200,165,160,145,65,75,580,60,40,265,95,100,70,210,100,165,315,70,55,185,135,100,320,165,240,265,190,115,70,240,75,30,200,545,245,225,375,120,90,300,800,200,185,395,55,60,85,120,120,180,120 -138,Language,First official language spoken,Census Profile 98-316-X2016001, Neither English nor French,"130,940","5,890","3,395",290,415,740,700,700,935,760,240,330,"1,485",300,"1,680",450,750,175,310,930,265,865,70,160,390,970,405,310,"1,160",435,635,"1,525","1,255","2,855","2,040",800,395,360,725,295,490,425,430,"1,580",140,85,"2,650",775,80,820,385,265,285,"1,560",325,990,"1,065",190,430,"1,325",385,990,625,"2,345",835,35,105,"5,905",360,130,85,55,"1,165",170,"2,035",625,200,"6,990",950,480,380,610,"2,455",130,460,280,"1,155","1,375",445,410,510,605,"1,285",535,205,695,980,490,140,"1,255",165,630,320,"1,325",640,90,"1,495",100,515,520,800,"2,190",645,"5,575",530,"2,620",530,45,545,"1,335","1,955",230,720,930,575,"1,445","1,495",650,945,945,"3,170",980,620,"2,530",290,220,640,100,85,"1,370",845 -139,Language,First official language spoken,Census Profile 98-316-X2016001,Official language minority (number),"52,230",265,245,130,880,655,260,675,445,265,385,90,370,410,220,205,205,290,255,205,395,145,260,165,"1,130",445,255,200,280,260,430,535,370,725,385,260,455,315,485,80,285,315,175,425,250,210,280,295,140,295,665,660,135,285,130,85,155,305,205,970,280,145,240,420,490,190,225,660,295,300,335,335,310,180,565,85,205,145,845,260,795,165,385,500,950,230,190,355,905,235,555,265,330,385,170,340,960,100,185,300,175,330,165,360,395,595,495,265,85,385,465,715,420,210,540,420,310,630,135,285,330,175,460,"2,110",545,325,475,300,195,520,945,255,395,665,360,170,315,305,320,330,185 -140,Language,Mother tongue,Census Profile 98-316-X2016001,Mother tongue for the total population excluding institutional residents,"2,704,415","28,845","23,740","12,035","29,880","27,480","15,630","25,740","21,255","12,740","23,215","6,375","29,510","21,870","21,560","7,685","14,215","9,240","11,380","17,720","11,285","9,905","10,870","13,345","30,915","26,320","16,420","15,865","14,110","9,605","17,105","26,850","24,395","36,355","35,025","11,740","21,095","15,195","22,575","9,450","22,065","18,525","11,470","21,930","12,675","10,730","30,250","14,385","9,660","15,725","22,105","23,455","12,475","16,920","10,365","12,415","15,540","14,235","13,610","43,420","14,090","11,040","17,105","17,585","21,990","9,275","7,985","43,960","16,160","14,605","15,185","16,690","15,440","10,085","43,780","10,025","10,460","26,270","33,380","17,170","18,865","13,265","32,825","16,765","29,285","11,310","15,565","23,640","30,580","11,700","18,405","13,635","20,975","18,655","9,225","13,815","34,785","10,720","7,755","15,805","11,045","10,690","10,360","22,250","14,895","20,900","46,085","10,070","9,760","16,560","20,910","27,385","17,790","24,305","24,950","27,060","15,495","21,530","10,120","20,850","16,300","7,070","17,195","65,790","26,985","32,995","26,095","17,725","11,100","27,625","50,290","16,890","22,150","53,310","12,445","7,845","13,345","11,810","12,530","27,590","14,050" -141,Language,Mother tongue,Census Profile 98-316-X2016001, Single responses,"2,598,230","27,740","22,720","11,675","29,110","26,450","15,000","24,790","20,505","12,290","22,630","6,080","28,120","21,390","20,520","7,425","13,505","9,025","10,925","16,955","10,990","9,420","10,635","12,905","29,875","24,975","15,680","15,375","13,565","9,300","16,555","25,370","22,910","35,100","33,335","11,390","20,565","14,795","21,290","9,040","21,040","17,905","11,020","20,470","12,250","10,535","28,755","13,960","9,435","14,665","21,500","22,920","11,965","16,345","10,015","11,795","14,790","13,765","12,815","41,790","13,640","10,550","16,265","17,085","20,865","9,155","7,730","41,970","15,660","14,395","14,940","16,430","14,965","9,810","41,445","9,440","10,180","25,325","32,270","16,300","18,230","12,650","31,010","16,340","28,335","10,985","15,075","22,500","29,635","11,475","17,370","12,865","20,155","17,990","8,940","13,445","33,205","10,270","7,565","15,240","10,770","10,190","9,940","21,370","14,525","20,495","43,880","9,855","9,285","15,605","20,010","26,680","17,255","23,435","24,290","25,735","14,580","21,205","9,640","19,390","15,875","6,915","16,205","63,355","25,835","31,300","24,855","17,105","10,605","26,170","48,510","16,320","21,270","50,360","12,185","7,650","12,925","11,495","12,240","26,190","13,395" -142,Language,Mother tongue,Census Profile 98-316-X2016001, Official languages,"1,411,345","7,185","7,215","7,465","21,355","14,390","6,870","11,065","7,580","4,695","17,100","3,480","12,545","16,950","10,505","5,125","5,590","6,215","6,385","8,380","8,290","3,965","8,460","9,265","18,880","13,065","8,800","10,470","6,720","6,455","11,100","8,205","9,795","19,865","15,215","6,840","15,910","8,425","11,275","4,980","12,875","9,845","5,445","6,455","7,870","8,220","13,745","9,815","7,250","4,870","13,975","16,205","6,745","5,000","4,780","4,620","6,425","9,850","6,575","21,900","9,275","4,240","8,375","8,530","9,945","7,220","5,485","13,900","8,460","11,500","12,285","13,730","9,645","6,680","21,335","3,875","6,005","5,355","19,590","9,230","12,485","7,035","13,055","12,630","17,815","7,460","4,200","6,645","21,260","8,950","7,915","5,820","11,045","11,450","5,870","9,390","17,965","5,245","5,900","4,980","7,110","4,925","5,745","10,735","10,430","16,285","24,480","7,600","4,800","8,350","12,000","18,380","8,740","4,665","14,985","9,720","6,420","18,745","4,485","5,195","9,325","4,550","8,255","41,250","16,945","15,020","7,670","10,530","5,300","13,840","14,055","5,925","11,745","23,050","9,840","5,530","8,680","8,720","9,480","11,590","6,000" -143,Language,Mother tongue,Census Profile 98-316-X2016001, English,"1,375,905","7,070","7,080","7,360","20,645","13,985","6,710","10,610","7,380","4,575","16,805","3,420","12,340","16,600","10,355","4,955","5,475","6,015","6,215","8,275","7,935","3,875","8,255","9,135","17,950","12,770","8,625","10,335","6,555","6,245","10,745","7,965","9,615","19,345","15,010","6,630","15,525","8,240","10,970","4,930","12,695","9,670","5,355","6,240","7,705","8,060","13,575","9,555","7,130","4,720","13,495","15,700","6,665","4,870","4,710","4,580","6,365","9,605","6,460","21,280","9,060","4,150","8,220","8,210","9,675","7,055","5,330","13,590","8,275","11,260","12,020","13,450","9,390","6,540","21,045","3,835","5,880","5,305","18,940","9,095","11,830","6,955","12,860","12,250","17,125","7,270","4,125","6,495","20,505","8,750","7,535","5,665","10,810","11,140","5,730","9,095","17,410","5,185","5,745","4,855","7,005","4,695","5,635","10,520","10,100","15,785","24,205","7,390","4,745","8,145","11,625","17,745","8,505","4,580","14,565","9,480","6,240","18,200","4,405","5,060","9,035","4,405","7,965","39,530","16,580","14,825","7,435","10,325","5,185","13,540","13,580","5,785","11,470","22,645","9,515","5,405","8,445","8,485","9,230","11,385","5,900" -144,Language,Mother tongue,Census Profile 98-316-X2016001, French,"35,440",120,140,105,705,410,165,450,200,120,300,60,200,355,125,175,105,200,170,100,350,100,200,130,920,300,180,145,165,215,355,235,200,510,215,210,385,185,310,45,180,175,85,210,165,155,175,265,130,145,485,500,80,130,65,35,65,240,110,605,210,90,155,320,265,160,150,325,185,240,270,290,250,145,305,35,125,60,660,145,655,80,180,380,700,195,70,150,755,195,385,155,230,310,135,295,545,55,160,135,115,240,120,215,330,495,280,210,50,205,370,615,235,95,415,230,180,555,85,130,280,140,290,"1,735",360,185,240,205,115,300,465,140,265,400,325,120,230,240,260,195,100 -145,Language,Mother tongue,Census Profile 98-316-X2016001, Non-official languages,"1,186,885","20,570","15,505","4,205","7,755","12,060","8,140","13,725","12,920","7,590","5,520","2,610","15,565","4,445","10,015","2,300","7,910","2,830","4,535","8,575","2,700","5,455","2,180","3,640","11,000","11,900","6,885","4,905","6,855","2,845","5,455","17,155","13,120","15,230","18,115","4,550","4,645","6,370","10,025","4,060","8,175","8,060","5,575","14,025","4,385","2,315","15,010","4,145","2,190","9,795","7,520","6,715","5,220","11,355","5,230","7,175","8,365","3,920","6,235","19,890","4,370","6,305","7,885","8,565","10,925","1,930","2,255","28,075","7,205","2,905","2,650","2,685","5,315","3,125","20,120","5,570","4,175","19,965","12,675","7,060","5,740","5,610","17,970","3,710","10,525","3,530","10,880","15,840","8,375","2,520","9,450","7,040","9,110","6,560","3,065","4,055","15,245","5,035","1,650","10,250","3,650","5,265","4,200","10,635","4,090","4,215","19,390","2,250","4,490","7,250","8,020","8,305","8,525","18,790","9,315","16,015","8,160","2,460","5,150","14,190","6,555","2,360","7,950","22,100","8,895","16,280","17,180","6,580","5,300","12,320","34,475","10,390","9,530","27,315","2,355","2,120","4,250","2,780","2,755","14,605","7,390" -146,Language,Mother tongue,Census Profile 98-316-X2016001, Aboriginal languages,420,5,0,10,25,0,0,5,0,0,0,5,0,5,5,0,5,0,5,0,5,5,0,0,15,5,0,5,5,5,0,0,0,0,5,5,15,0,5,0,0,0,0,5,0,0,0,5,0,0,5,0,0,0,5,0,0,5,5,0,5,5,0,0,5,0,0,0,5,0,0,0,0,0,5,5,0,0,0,0,20,5,0,5,0,0,5,5,5,5,5,15,10,5,5,0,10,5,5,0,0,0,0,5,0,0,0,5,0,0,10,20,0,0,0,0,10,0,5,0,0,0,5,0,5,5,0,0,10,5,0,0,0,0,15,5,0,0,0,5,0 -147,Language,Mother tongue,Census Profile 98-316-X2016001, Algonquian languages,310,5,0,5,30,0,0,0,0,0,0,0,0,5,0,0,15,0,0,5,5,10,0,0,15,0,0,0,5,10,0,0,0,0,0,5,5,0,5,0,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,10,5,0,0,0,5,0,0,0,0,10,5,5,5,5,0,5,0,5,0,0,0,5,0,5,0,0,0,5,0,15,10,0,0,0,5,5,0,0,0,0,5,5,0,5,5,0,0,10,0,0,0,0,0,10,0,0,5,0,5,0 -148,Language,Mother tongue,Census Profile 98-316-X2016001, Blackfoot,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,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 -149,Language,Mother tongue,Census Profile 98-316-X2016001, Cree-Montagnais languages,90,0,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0 -150,Language,Mother tongue,Census Profile 98-316-X2016001, Eastern Algonquian languages,20,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,5,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -151,Language,Mother tongue,Census Profile 98-316-X2016001, Ojibway-Potawatomi languages,200,5,0,0,20,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,0,0,10,5,0,0,0,0,0,0,0,0,0,5,10,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,10,5,0,0,0,0,5,0,0,0,5,5,0,0,0,0,0,0,5,0,0,0,5,0,5,0,0,0,0,5,0,0,0,0,5,0,5,5,0,0,0,0,0,0,5,0,0,0,5,0,5,0,5,0,5,0,0,0,5,0,5,0,0,5,0,0,0 -152,Language,Mother tongue,Census Profile 98-316-X2016001," Algonquian languages, n.i.e.",5,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,5,0,0,0,0,0,0,0,5,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,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,0,0,0,0,0,0,0,0,0,0 -153,Language,Mother tongue,Census Profile 98-316-X2016001, Athabaskan languages,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0 -154,Language,Mother tongue,Census Profile 98-316-X2016001, Northern Athabaskan languages,10,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,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,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0 -155,Language,Mother tongue,Census Profile 98-316-X2016001, Babine (Wetsuwet'en),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -156,Language,Mother tongue,Census Profile 98-316-X2016001, Beaver,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -157,Language,Mother tongue,Census Profile 98-316-X2016001, Carrier,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -158,Language,Mother tongue,Census Profile 98-316-X2016001, Chilcotin,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -159,Language,Mother tongue,Census Profile 98-316-X2016001, Dene,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -160,Language,Mother tongue,Census Profile 98-316-X2016001, Dogrib (Tlicho),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -161,Language,Mother tongue,Census Profile 98-316-X2016001, Gwich'in,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -162,Language,Mother tongue,Census Profile 98-316-X2016001, Sarsi (Sarcee),5,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,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,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0 -163,Language,Mother tongue,Census Profile 98-316-X2016001, Sekani,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -164,Language,Mother tongue,Census Profile 98-316-X2016001, Slavey-Hare languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -165,Language,Mother tongue,Census Profile 98-316-X2016001, North Slavey (Hare),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -166,Language,Mother tongue,Census Profile 98-316-X2016001, South Slavey,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -167,Language,Mother tongue,Census Profile 98-316-X2016001," Slavey, n.o.s.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -168,Language,Mother tongue,Census Profile 98-316-X2016001, Tahltan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -169,Language,Mother tongue,Census Profile 98-316-X2016001, Kaska (Nahani),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -170,Language,Mother tongue,Census Profile 98-316-X2016001, Tahltan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -171,Language,Mother tongue,Census Profile 98-316-X2016001, Tutchone languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -172,Language,Mother tongue,Census Profile 98-316-X2016001, Northern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -173,Language,Mother tongue,Census Profile 98-316-X2016001, Southern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -174,Language,Mother tongue,Census Profile 98-316-X2016001," Athabaskan languages, n.i.e.",5,0,0,0,0,0,0,0,0,0,5,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,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,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,0,0,0,0 -175,Language,Mother tongue,Census Profile 98-316-X2016001, Haida,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -176,Language,Mother tongue,Census Profile 98-316-X2016001, Inuit languages,20,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,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -177,Language,Mother tongue,Census Profile 98-316-X2016001, Inuinnaqtun (Inuvialuktun),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -178,Language,Mother tongue,Census Profile 98-316-X2016001, Inuktitut,20,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,0,0,0,0,0,0,0,5,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,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -179,Language,Mother tongue,Census Profile 98-316-X2016001," Inuit languages, n.i.e.",5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -180,Language,Mother tongue,Census Profile 98-316-X2016001, Iroquoian languages,10,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,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,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -181,Language,Mother tongue,Census Profile 98-316-X2016001, Cayuga,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -182,Language,Mother tongue,Census Profile 98-316-X2016001, Mohawk,10,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,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,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -183,Language,Mother tongue,Census Profile 98-316-X2016001, Oneida,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -184,Language,Mother tongue,Census Profile 98-316-X2016001," Iroquoian languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -185,Language,Mother tongue,Census Profile 98-316-X2016001, Kutenai,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -186,Language,Mother tongue,Census Profile 98-316-X2016001, Michif,5,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,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 -187,Language,Mother tongue,Census Profile 98-316-X2016001, Salish languages,5,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -188,Language,Mother tongue,Census Profile 98-316-X2016001, Comox,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -189,Language,Mother tongue,Census Profile 98-316-X2016001, Halkomelem,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -190,Language,Mother tongue,Census Profile 98-316-X2016001, Lillooet,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -191,Language,Mother tongue,Census Profile 98-316-X2016001, Okanagan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -192,Language,Mother tongue,Census Profile 98-316-X2016001, Shuswap (Secwepemctsin),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -193,Language,Mother tongue,Census Profile 98-316-X2016001, Squamish,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -194,Language,Mother tongue,Census Profile 98-316-X2016001, Straits,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -195,Language,Mother tongue,Census Profile 98-316-X2016001, Thompson (Ntlakapamux),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -196,Language,Mother tongue,Census Profile 98-316-X2016001," Salish languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -197,Language,Mother tongue,Census Profile 98-316-X2016001, Siouan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -198,Language,Mother tongue,Census Profile 98-316-X2016001, Dakota,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -199,Language,Mother tongue,Census Profile 98-316-X2016001, Stoney,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -200,Language,Mother tongue,Census Profile 98-316-X2016001," Siouan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -201,Language,Mother tongue,Census Profile 98-316-X2016001, Tlingit,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -202,Language,Mother tongue,Census Profile 98-316-X2016001, Tsimshian languages,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -203,Language,Mother tongue,Census Profile 98-316-X2016001, Gitxsan (Gitksan),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -204,Language,Mother tongue,Census Profile 98-316-X2016001, Nisga'a,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -205,Language,Mother tongue,Census Profile 98-316-X2016001, Tsimshian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -206,Language,Mother tongue,Census Profile 98-316-X2016001, Wakashan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -207,Language,Mother tongue,Census Profile 98-316-X2016001, Haisla,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -208,Language,Mother tongue,Census Profile 98-316-X2016001, Heiltsuk,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -209,Language,Mother tongue,Census Profile 98-316-X2016001, Kwakiutl (Kwak'wala),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -210,Language,Mother tongue,Census Profile 98-316-X2016001, Nuu-chah-nulth (Nootka),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -211,Language,Mother tongue,Census Profile 98-316-X2016001," Wakashan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -212,Language,Mother tongue,Census Profile 98-316-X2016001," Aboriginal languages, n.o.s.",55,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,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,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,5,5 -213,Language,Mother tongue,Census Profile 98-316-X2016001, Non-Aboriginal languages,"1,186,465","20,565","15,510","4,210","7,715","12,050","8,130","13,725","12,915","7,590","5,520","2,610","15,570","4,450","10,015","2,295","7,895","2,825","4,535","8,570","2,705","5,455","2,180","3,645","10,990","11,920","6,880","4,900","6,850","2,830","5,460","17,155","13,120","15,230","18,110","4,540","4,645","6,365","10,020","4,055","8,165","8,060","5,575","14,015","4,385","2,305","15,000","4,140","2,185","9,795","7,510","6,715","5,225","11,340","5,230","7,175","8,365","3,910","6,230","19,895","4,365","6,305","7,885","8,560","10,925","1,930","2,250","28,070","7,210","2,900","2,650","2,695","5,305","3,125","20,105","5,555","4,175","19,980","12,665","7,055","5,730","5,605","17,950","3,710","10,515","3,530","10,875","15,845","8,370","2,525","9,440","7,035","9,100","6,560","3,060","4,065","15,250","5,030","1,650","10,250","3,655","5,265","4,190","10,640","4,095","4,220","19,390","2,255","4,485","7,260","8,000","8,305","8,510","18,780","9,320","16,005","8,150","2,455","5,145","14,195","6,545","2,365","7,950","22,090","8,890","16,275","17,185","6,580","5,295","12,315","34,470","10,400","9,530","27,295","2,330","2,115","4,250","2,775","2,760","14,600","7,390" -214,Language,Mother tongue,Census Profile 98-316-X2016001, Afro-Asiatic languages,"65,540",275,245,65,505,525,400,"1,220",380,165,300,185,600,115,"1,895",225,190,115,140,530,130,55,130,125,815,680,415,145,85,90,130,825,975,525,625,95,290,220,490,660,660,390,360,980,355,140,845,125,60,870,410,200,135,250,335,500,445,190,390,"1,420",245,110,570,400,"2,220",35,160,"1,210",290,75,105,90,130,95,650,80,100,140,480,300,950,575,"4,655",140,615,220,210,450,525,45,"1,085",800,450,350,55,105,"1,415",190,55,450,65,585,345,750,120,245,495,150,620,415,585,230,310,495,155,595,545,80,680,925,95,105,"1,030","1,560",610,700,655,"1,045",280,"1,140","1,280",245,580,840,105,65,175,165,150,625,250 -215,Language,Mother tongue,Census Profile 98-316-X2016001, Berber languages,130,5,0,0,0,0,0,5,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,10,0,0,5,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5 -216,Language,Mother tongue,Census Profile 98-316-X2016001, Kabyle,55,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 -217,Language,Mother tongue,Census Profile 98-316-X2016001," Berber languages, n.i.e.",75,0,0,0,0,0,0,5,10,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5 -218,Language,Mother tongue,Census Profile 98-316-X2016001, Cushitic languages,"12,355",20,25,15,15,20,0,40,10,15,5,115,45,0,340,70,15,0,15,275,15,0,5,10,65,45,5,10,0,0,0,15,45,55,145,5,15,60,125,465,205,170,90,180,0,5,315,10,0,25,20,25,5,55,185,70,100,10,25,545,15,25,125,100,"1,755",0,85,145,5,0,0,0,20,0,90,15,0,15,15,45,250,355,600,10,45,100,5,10,25,5,130,205,30,45,0,5,60,40,0,10,15,220,100,310,5,0,115,5,475,45,60,35,25,5,0,65,30,0,90,20,10,5,40,90,105,235,0,800,60,50,25,5,300,155,5,10,25,5,0,180,85 -219,Language,Mother tongue,Census Profile 98-316-X2016001, Bilen,75,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,0,0,0,0,0,10,0 -220,Language,Mother tongue,Census Profile 98-316-X2016001, Oromo,860,0,0,0,5,0,0,5,5,0,0,0,5,0,10,15,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,5,10,30,5,15,5,15,5,35,0,0,30,0,0,5,0,0,0,0,0,0,0,5,5,5,0,0,15,5,0,25,0,15,0,10,5,0,0,0,0,5,0,0,5,0,0,5,5,45,25,0,0,10,15,0,0,5,0,30,55,25,25,0,0,5,10,0,0,0,15,15,20,0,0,10,0,15,5,10,0,5,0,0,5,10,0,0,5,5,0,0,10,5,0,0,25,10,10,10,0,5,20,5,0,5,0,0,15,20 -221,Language,Mother tongue,Census Profile 98-316-X2016001, Somali,"11,375",20,20,10,10,20,0,30,5,15,5,120,40,0,340,65,10,0,15,280,15,0,5,10,55,40,10,15,0,5,0,10,35,55,110,5,15,60,100,460,175,175,95,150,0,0,295,10,0,20,20,20,10,55,180,55,60,5,25,520,15,20,105,90,"1,740",0,80,145,5,0,5,0,15,0,80,10,0,20,20,45,195,330,595,0,25,90,0,10,25,5,95,140,10,25,0,10,65,30,0,5,15,215,85,295,5,5,95,0,450,45,25,35,20,5,0,55,15,0,90,15,5,5,40,70,90,245,5,775,50,25,15,0,295,135,5,10,25,5,5,145,60 -222,Language,Mother tongue,Census Profile 98-316-X2016001," Cushitic languages, n.i.e.",50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 -223,Language,Mother tongue,Census Profile 98-316-X2016001, Semitic languages,"52,845",255,225,50,490,510,395,"1,170",365,150,300,65,545,110,"1,545",155,175,105,120,250,115,50,125,115,735,630,405,140,85,80,115,815,925,460,495,90,275,160,360,195,455,220,260,795,350,135,530,120,55,850,385,175,125,185,150,435,345,185,360,865,235,90,445,310,445,45,70,"1,065",295,70,95,85,120,85,535,70,100,125,460,245,700,225,"4,055",145,580,110,215,445,490,35,935,590,420,305,50,90,"1,345",145,55,450,50,355,220,440,110,230,400,150,145,360,530,180,280,485,150,535,515,75,590,890,90,100,990,"1,465",520,450,660,235,215,"1,095","1,255",235,280,680,100,50,150,160,150,430,165 -224,Language,Mother tongue,Census Profile 98-316-X2016001, Amharic,"6,430",0,10,0,60,35,10,25,15,5,0,20,80,30,15,45,30,0,20,70,5,0,10,25,60,290,10,30,15,30,30,10,60,120,35,10,85,25,110,25,50,10,5,150,15,0,35,35,15,30,75,25,20,0,30,10,20,15,105,65,5,25,160,35,55,0,20,35,10,0,0,5,20,15,110,15,0,0,65,50,265,45,75,15,65,15,5,15,70,10,360,240,95,105,5,15,45,15,15,5,0,110,15,65,20,15,100,5,35,120,225,40,10,0,15,15,230,5,15,70,15,15,80,165,215,25,10,70,80,60,10,0,20,130,35,10,50,0,20,25,15 -225,Language,Knowledge of languages,Census Profile 98-316-X2016001, Haida,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -226,Language,Mother tongue,Census Profile 98-316-X2016001, Arabic,"29,825",250,200,35,225,395,110,"1,070",325,130,65,15,380,50,475,50,45,75,80,70,75,10,45,75,525,160,90,55,55,40,75,730,780,175,245,50,130,70,175,75,80,145,190,510,65,45,140,35,25,780,200,120,80,150,60,180,145,45,170,665,45,25,155,215,270,30,20,945,170,20,35,65,60,50,365,30,65,115,310,170,280,55,"1,310",75,380,75,180,165,305,30,340,180,70,120,35,45,"1,210",55,30,415,35,170,75,115,65,155,230,15,50,180,170,90,195,460,75,475,145,50,175,725,40,50,875,"1,095",180,175,140,95,50,980,"1,130",145,115,470,40,25,50,85,80,250,65 -227,Language,Mother tongue,Census Profile 98-316-X2016001, Assyrian Neo-Aramaic,"4,840",5,0,0,0,20,5,0,5,0,0,0,0,5,945,5,5,0,5,10,0,5,5,0,5,0,0,5,0,0,0,0,10,0,90,0,0,0,0,60,0,5,30,5,5,0,240,0,0,10,0,0,5,0,0,120,80,5,0,20,0,0,0,0,15,0,0,30,5,0,0,5,0,10,10,5,5,0,20,10,0,0,"2,210",5,5,0,0,0,15,0,0,0,10,0,0,5,10,20,0,5,0,0,90,5,0,0,0,0,10,0,0,5,5,10,15,20,0,0,320,5,0,0,0,0,5,140,15,5,5,5,5,0,20,10,0,0,0,0,0,50,0 -228,Language,Mother tongue,Census Profile 98-316-X2016001, Chaldean Neo-Aramaic,695,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,5,0,0,5,5,0,0,40,0,0,0,0,0,0,0,0,105,25,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,0,0,0,0,10,0,0,0,0,0,0,0,0,0,15,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,60,0,0,0,0,5,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,5,5 -229,Language,Mother tongue,Census Profile 98-316-X2016001, Harari,755,0,0,0,5,5,0,5,0,0,0,0,25,5,5,10,0,0,0,5,0,0,0,0,5,35,0,5,0,0,0,10,35,0,5,0,5,0,20,5,15,0,0,20,0,0,0,5,5,0,5,0,10,0,5,0,0,5,15,0,0,5,50,5,5,0,0,10,0,0,0,0,0,0,20,0,0,0,0,5,20,10,0,0,0,0,0,0,5,0,45,50,0,0,0,0,15,0,0,0,0,0,0,0,0,5,25,0,20,10,10,10,0,0,0,5,30,0,0,5,5,0,0,10,25,0,0,5,0,0,0,0,10,20,5,0,0,0,5,0,5 -230,Language,Mother tongue,Census Profile 98-316-X2016001, Hebrew,"4,350",0,5,0,160,40,250,70,25,25,225,0,0,0,0,5,25,40,10,0,10,0,60,0,65,5,290,5,15,10,0,25,0,35,0,10,10,5,5,0,265,0,0,5,250,90,0,20,0,10,10,15,0,20,0,0,0,90,0,20,5,0,0,35,5,0,5,0,95,40,35,10,20,5,0,5,0,0,25,0,15,0,0,50,90,10,25,250,65,5,25,0,65,20,5,15,5,5,5,5,5,5,5,0,5,50,10,5,0,0,20,15,55,0,15,5,0,15,0,5,15,30,0,90,5,0,480,0,5,0,90,80,5,5,10,5,30,65,40,20,20 -231,Language,Mother tongue,Census Profile 98-316-X2016001, Maltese,"1,430",5,5,10,0,5,5,0,5,0,5,0,5,5,0,5,10,0,0,5,5,5,0,0,15,0,5,15,5,0,0,0,10,10,10,5,0,50,0,10,0,50,25,5,0,0,0,5,5,5,40,25,0,5,30,5,0,15,0,65,150,0,5,0,35,10,20,0,5,5,5,0,10,5,0,5,30,0,35,0,0,15,20,0,5,0,5,5,5,0,5,0,10,0,0,5,15,0,5,10,15,5,15,145,10,10,5,115,5,0,0,0,0,0,25,0,10,5,10,5,0,5,10,10,5,35,0,15,5,5,10,0,70,10,5,0,5,5,0,0,0 -232,Language,Mother tongue,Census Profile 98-316-X2016001, Tigrigna,"4,150",0,5,0,35,10,15,20,5,5,5,20,40,10,15,45,60,0,15,90,10,30,0,0,55,125,5,20,15,5,15,15,35,100,105,10,45,5,65,35,40,10,0,110,15,0,60,20,10,10,40,15,10,5,15,0,50,25,80,65,25,30,65,5,35,0,10,20,5,5,0,0,10,5,20,15,5,0,20,10,105,95,45,0,35,5,0,0,30,0,160,130,180,70,5,5,45,20,5,5,0,55,10,100,10,5,30,0,25,50,100,25,0,20,5,10,105,0,10,80,10,0,30,75,75,35,10,45,65,40,15,0,40,45,20,10,15,0,5,75,40 -233,Language,Mother tongue,Census Profile 98-316-X2016001," Semitic languages, n.i.e.",375,5,0,0,0,5,0,5,0,0,0,0,5,0,25,0,0,0,0,5,0,0,0,0,5,0,10,0,0,0,0,0,0,5,0,0,0,5,0,5,5,0,0,0,5,0,5,0,0,0,5,0,0,0,0,10,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,75,0,0,0,0,0,20,0,10,5,0,5,0,0,5,5,0,0,0,0,5,5,0,0,5,0,0,0,10,0,0,0,0,0,5,0,10,0,0,0,0,15,0,15,5,0,10,5,0,0,5,5,0,0,0,0,5,5,0 -234,Language,Mother tongue,Census Profile 98-316-X2016001," Afro-Asiatic languages, n.i.e.",200,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,5,5,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,5,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,15,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,5,0,0,5,5,5,5,0,0,0,0,10,0 -235,Language,Mother tongue,Census Profile 98-316-X2016001, Austro-Asiatic languages,"26,160",125,145,30,65,45,65,95,65,65,15,115,110,70,"1,765",60,140,10,25,940,85,120,45,35,160,105,85,50,150,40,60,55,125,630,"1,560",180,40,45,65,215,85,65,60,80,20,15,"3,075",120,25,30,70,95,65,35,50,350,770,30,55,265,355,245,105,340,135,25,30,150,50,35,20,30,220,70,155,175,30,115,175,90,220,495,270,5,60,65,40,100,180,60,105,45,210,65,35,80,85,500,20,45,40,350,130,"1,055",175,20,125,50,205,35,465,515,30,115,105,95,20,45,110,20,130,40,35,315,115,265,55,460,405,95,170,70,95,175,60,35,105,25,30,930,410 -236,Language,Mother tongue,Census Profile 98-316-X2016001, Khmer (Cambodian),"1,365",5,5,0,0,0,0,10,5,0,0,5,5,0,295,0,5,5,0,10,5,0,5,0,10,5,0,0,5,0,0,0,5,5,75,0,0,5,0,20,5,0,5,10,0,5,350,0,0,0,0,0,0,0,0,5,25,0,0,5,10,0,0,10,5,0,0,5,0,5,0,5,0,0,5,5,0,15,10,0,5,5,15,0,5,0,0,0,0,0,10,5,15,0,0,0,0,10,0,10,0,15,5,35,5,5,5,0,5,5,5,20,5,0,5,0,0,0,5,0,0,5,0,20,10,20,10,20,0,0,15,5,5,0,10,0,0,0,5,55,10 -237,Language,Mother tongue,Census Profile 98-316-X2016001, Vietnamese,"24,775",125,140,35,60,45,70,80,50,60,15,110,105,80,"1,480",55,140,15,25,925,80,115,40,35,145,105,85,50,140,35,50,50,120,640,"1,485",185,40,35,70,200,95,70,60,80,15,15,"2,725",125,15,25,75,95,70,35,50,340,745,35,50,260,350,245,110,325,130,30,30,160,40,30,20,25,215,70,165,170,25,100,160,80,205,490,255,10,70,55,45,95,175,65,90,50,190,65,40,70,100,495,15,35,40,335,120,"1,025",180,15,125,50,200,30,470,490,30,100,95,105,20,45,100,20,120,30,45,300,90,245,45,435,405,90,165,60,90,170,45,35,110,30,25,880,400 -238,Language,Mother tongue,Census Profile 98-316-X2016001," Austro-Asiatic languages, n.i.e",20,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0 -239,Language,Mother tongue,Census Profile 98-316-X2016001, Austronesian languages,"99,755",920,670,300,175,755,"1,395",255,495,140,"1,175",260,"1,855",440,630,55,"1,985",70,350,775,325,605,95,415,530,"1,840","2,265",465,225,50,260,"1,470","2,180",395,"3,070",105,440,155,"1,970",325,"2,815",270,400,"1,480","1,125",255,975,150,225,810,255,175,480,200,105,185,635,"1,010","1,515","1,080",315,510,"1,665",290,385,55,95,"1,550",730,145,235,150,120,300,"2,955",915,110,665,665,"1,250",275,570,565,245,640,380,425,"3,145",395,55,"1,855",495,"1,395",720,280,50,"1,465",330,60,375,70,235,325,460,165,195,"2,470",65,280,730,875,265,285,420,285,"1,440",455,105,175,"1,065",75,60,790,715,"1,460","1,125","4,195",445,145,"2,225",640,255,400,"2,685",95,190,245,130,155,"1,680",830 -240,Language,Mother tongue,Census Profile 98-316-X2016001, Bikol,320,5,5,0,0,0,0,0,5,0,0,0,5,0,0,0,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,10,0,0,5,0,0,0,0,10,0,5,5,5,0,5,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,5,0,0,5,0,0,5,30,5,0,5,0,0,0,10,0,0,5,0,0,10,0,0,0,0,10,0,0,0,10,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,5,15,0,0,5,0,0,5,5,5,0,10,5,0,0,0,5,0,10,0,0,0,5,0,10,0 -241,Language,Mother tongue,Census Profile 98-316-X2016001, Cebuano,"3,390",10,30,0,0,35,70,0,10,5,40,5,75,10,40,0,150,0,25,25,10,25,0,10,15,70,65,15,5,5,5,75,55,10,95,0,35,5,75,25,90,20,5,55,50,10,30,0,10,20,10,10,5,15,0,5,25,25,70,30,5,25,90,5,20,5,10,30,30,5,10,5,5,10,105,20,15,5,15,20,10,10,10,5,25,15,10,100,10,0,90,20,55,20,15,0,60,15,5,15,5,5,10,10,10,5,35,10,10,25,40,5,5,0,0,40,5,0,0,35,0,0,35,20,50,65,160,30,5,65,10,0,5,65,5,10,10,0,5,70,20 -242,Language,Mother tongue,Census Profile 98-316-X2016001, Fijian,30,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0 -243,Language,Mother tongue,Census Profile 98-316-X2016001, Hiligaynon,"1,695",10,25,5,0,20,15,5,5,5,30,15,25,15,10,5,45,0,5,0,0,10,0,5,15,30,45,15,0,0,10,25,30,20,65,0,5,0,40,0,45,5,10,30,30,5,20,0,0,15,5,0,10,5,10,0,15,10,30,25,15,10,30,5,5,0,0,25,5,0,0,5,0,0,15,25,5,5,0,5,10,5,5,5,20,0,5,70,0,0,35,5,50,10,0,0,40,0,0,25,0,5,0,15,0,0,5,0,15,15,5,5,10,5,5,20,0,5,5,15,0,5,20,10,20,5,75,0,5,35,10,5,15,15,0,0,5,5,5,35,20 -244,Language,Mother tongue,Census Profile 98-316-X2016001, Ilocano,"7,135",40,30,25,5,40,115,0,20,15,80,40,100,25,40,0,245,0,15,70,10,70,5,5,20,160,250,35,10,5,10,85,130,25,330,0,35,5,115,40,340,10,20,115,130,15,135,15,0,15,10,15,20,10,0,45,75,95,80,75,25,40,100,10,40,0,5,55,35,5,15,5,5,5,140,110,5,20,30,50,0,50,65,15,30,20,25,360,10,0,165,35,125,45,10,0,100,15,0,20,0,5,15,10,0,15,115,0,40,10,40,10,25,25,20,100,30,5,10,45,0,5,35,15,65,70,545,30,15,150,15,5,30,135,0,20,15,0,10,145,90 -245,Language,Mother tongue,Census Profile 98-316-X2016001, Malagasy,15,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,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -246,Language,Mother tongue,Census Profile 98-316-X2016001, Malay,"1,930",20,20,5,25,15,5,55,45,25,5,0,20,10,0,0,5,0,5,5,5,5,0,15,50,5,10,10,5,5,5,50,10,15,5,5,10,5,5,0,5,10,10,30,0,5,5,5,10,40,10,0,5,25,0,0,0,5,10,20,5,5,5,35,15,5,5,65,15,10,10,15,5,15,40,10,0,45,45,15,25,0,25,15,10,0,45,15,25,0,25,10,20,0,10,5,20,5,0,25,10,10,10,15,15,15,15,0,0,5,5,0,10,70,15,50,10,5,0,15,10,5,5,75,10,10,10,5,5,25,110,20,0,25,5,5,0,5,10,20,0 -247,Language,Mother tongue,Census Profile 98-316-X2016001," Pampangan (Kapampangan, Pampango)",720,5,15,0,0,5,15,0,0,0,20,0,5,0,0,0,5,5,0,0,0,0,0,0,5,10,20,5,0,0,0,15,15,0,10,0,5,0,15,5,20,0,0,25,15,0,5,0,5,5,5,0,10,0,0,0,10,5,15,5,5,5,5,0,0,0,0,5,0,0,0,0,0,0,25,10,0,0,5,20,5,5,0,0,5,0,0,15,5,0,20,0,10,0,0,0,10,0,0,0,0,0,20,5,0,5,25,0,0,5,0,0,0,5,5,5,0,0,0,5,0,0,5,5,20,5,30,5,0,10,5,0,0,25,0,5,0,0,0,5,10 -248,Language,Mother tongue,Census Profile 98-316-X2016001, Pangasinan,320,5,0,0,0,0,5,0,0,0,5,0,10,0,0,0,10,0,0,5,0,5,0,0,5,10,5,0,0,0,0,10,5,0,15,0,0,0,0,0,15,0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,5,5,10,0,0,0,0,5,0,0,5,0,0,5,0,5,0,10,0,0,5,5,0,0,0,0,0,0,0,5,0,0,0,10,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,10,0,5,10,0,0,0,0,0,5,5,0,0,0,0,0,0,0,10,10,10,5,0,5,0,0,0,5,0,5,0,0,0,10,0 -249,Language,Mother tongue,Census Profile 98-316-X2016001," Tagalog (Pilipino, Filipino)","83,230",805,560,260,145,640,"1,155",190,410,95,985,195,"1,595",370,530,55,"1,485",70,290,655,285,480,90,380,405,"1,530","1,850",400,195,40,235,"1,190","1,880",320,"2,505",95,320,140,"1,710",255,"2,250",235,360,"1,215",885,210,765,135,215,705,205,130,425,150,90,125,510,855,"1,280",905,260,420,"1,410",235,315,45,75,"1,365",635,140,190,120,110,270,"2,605",740,95,570,565,"1,130",230,485,455,210,530,330,320,"2,515",355,50,"1,510",425,"1,115",645,250,45,"1,190",280,50,285,55,200,260,405,130,160,"2,225",60,205,645,775,235,250,330,245,"1,220",385,95,155,930,65,40,675,570,"1,275",930,"3,280",380,120,"1,910",475,210,340,"2,360",80,155,210,110,125,"1,355",680 -250,Language,Mother tongue,Census Profile 98-316-X2016001, Waray-Waray,210,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,15,0,5,0,0,0,0,0,0,5,0,0,0,0,0,5,5,0,5,0,5,0,10,0,15,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,5,5,0,0,5,0,10,5,0,0,5,5,0,0,0,0,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,10,5,0,0,5,0,0,0,5,0,0,0,0,0,10,0 -251,Language,Mother tongue,Census Profile 98-316-X2016001," Austronesian languages, n.i.e.",760,0,5,0,0,10,5,0,0,0,10,5,0,5,5,0,15,0,5,10,0,15,0,0,5,15,10,5,0,0,0,20,5,0,25,0,15,0,15,0,30,5,0,5,5,10,15,5,0,0,0,5,0,0,5,5,5,0,15,10,0,15,15,0,5,0,5,5,5,0,0,0,0,0,10,5,0,5,0,5,0,5,0,5,10,5,25,40,5,0,10,5,10,5,0,0,20,0,0,5,0,0,5,5,5,0,10,0,5,0,0,0,5,0,0,10,5,10,0,10,0,0,0,0,5,10,80,5,5,15,0,0,0,10,0,0,0,0,5,25,15 -252,Language,Mother tongue,Census Profile 98-316-X2016001, Creole languages,"3,015",20,20,0,10,10,0,15,15,15,5,20,35,15,60,5,10,0,0,30,5,5,5,0,15,15,0,15,0,5,5,20,30,25,115,5,15,10,80,20,15,5,20,20,5,0,80,5,5,20,15,5,10,5,5,5,45,10,55,40,5,15,25,10,145,0,10,40,15,0,5,0,5,5,85,5,0,5,20,45,20,30,190,10,20,10,5,10,5,5,5,10,15,10,5,0,35,20,0,10,0,15,10,20,5,10,80,0,30,115,15,20,10,5,15,65,10,0,5,15,0,5,25,25,150,75,10,40,10,30,20,10,40,110,10,10,5,10,5,85,10 -253,Language,Mother tongue,Census Profile 98-316-X2016001, Haitian Creole,165,10,0,0,0,0,0,0,0,0,0,0,0,5,15,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,5,0,0,0,0,0,5,0,0,5,0,0,0,0,5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,10,0,0,5,0,15,0,0,0,0,5,5,0,0,15,0,0,0,5,0,0,0 -254,Language,Mother tongue,Census Profile 98-316-X2016001," Creole, n.o.s.","1,825",10,15,0,10,5,0,5,0,15,0,10,25,0,20,0,15,0,0,20,0,5,0,0,15,10,0,5,5,5,0,15,15,15,40,0,5,10,55,10,10,0,5,20,0,0,25,10,0,10,5,5,10,0,0,10,25,5,35,10,5,0,15,5,125,0,5,20,10,0,0,5,5,0,75,5,0,0,5,25,5,20,125,5,0,5,5,10,10,0,5,0,10,5,0,0,30,10,0,5,0,5,5,5,0,5,60,0,0,95,15,10,10,5,5,55,5,0,0,10,5,0,15,5,120,45,5,10,0,10,20,5,35,75,5,0,5,0,0,45,5 -255,Language,Mother tongue,Census Profile 98-316-X2016001," Creole languages, n.i.e.","1,025",5,5,0,0,5,0,5,15,0,5,10,5,5,25,0,0,0,0,20,5,5,10,5,10,5,0,10,5,0,10,5,15,0,55,5,10,5,10,15,10,5,5,5,0,5,50,0,0,15,5,0,0,0,0,5,20,0,20,25,0,10,10,0,25,0,0,5,10,5,0,0,5,0,10,0,0,5,15,15,5,10,20,0,5,10,0,0,0,0,10,0,10,0,0,0,15,10,0,5,0,5,5,10,5,0,25,0,30,5,15,5,0,0,5,10,0,0,5,0,0,0,5,10,25,20,5,30,0,20,5,5,10,30,0,5,0,0,0,30,10 -256,Language,Mother tongue,Census Profile 98-316-X2016001, Dravidian languages,"67,055","2,530","1,195",40,80,215,60,170,145,95,10,105,"2,175",100,495,10,70,5,60,210,75,25,20,450,310,540,50,460,15,10,35,500,"2,490",250,210,45,70,15,"2,685",70,55,70,140,845,25,15,335,40,95,790,110,30,"1,450",160,10,175,285,25,"1,310",410,20,60,975,70,195,10,15,"3,080",120,20,15,15,15,30,"5,635",130,30,"1,325",125,"1,865",145,75,"1,220",35,360,30,105,95,125,0,"1,015",270,45,225,15,5,470,145,10,190,30,475,110,75,150,50,"8,625",5,130,"1,505",350,60,130,255,60,"1,485",500,15,200,290,20,25,395,450,"1,030",865,110,265,30,"1,120",480,90,230,"5,415",25,10,20,65,50,"1,065",95 -257,Language,Mother tongue,Census Profile 98-316-X2016001, Kannada,730,0,0,5,5,20,0,15,10,0,5,0,10,0,0,0,0,0,0,0,5,0,0,5,15,5,0,5,0,0,0,10,10,0,5,0,5,0,5,0,0,0,10,20,0,0,0,5,0,30,20,0,0,5,0,0,0,5,25,25,0,5,0,15,5,0,0,15,15,0,0,0,0,5,15,0,5,0,5,15,5,0,0,5,35,0,10,0,5,0,20,0,0,0,0,0,5,5,0,5,0,0,10,5,5,5,20,0,0,0,0,0,5,5,0,30,30,0,0,15,0,0,0,35,5,20,10,0,0,0,30,5,5,10,0,0,0,10,0,5,0 -258,Language,Mother tongue,Census Profile 98-316-X2016001, Malayalam,"4,560",40,70,5,10,20,10,25,20,10,0,10,85,0,10,5,0,0,0,10,5,0,0,25,25,40,0,25,0,0,0,75,80,20,10,0,10,0,130,5,5,20,20,20,0,0,20,0,15,130,15,0,120,15,10,15,25,0,50,80,0,0,85,10,35,0,5,235,5,0,0,10,0,5,125,25,5,30,30,260,10,10,95,5,45,5,20,20,25,0,65,35,10,10,0,5,45,20,5,15,5,5,20,25,15,10,255,5,10,140,35,0,10,10,25,95,25,5,20,20,0,5,40,55,90,135,10,10,0,65,95,20,75,500,0,0,10,15,5,30,5 -259,Language,Mother tongue,Census Profile 98-316-X2016001, Tamil,"57,530","2,435","1,080",30,55,140,45,100,90,70,5,95,"2,000",85,465,5,60,0,45,195,60,25,5,420,165,445,35,410,0,15,40,325,"2,330",220,175,40,50,5,"2,445",50,35,35,100,735,20,20,300,30,85,295,65,10,"1,315",130,10,135,255,15,965,210,15,60,845,35,150,5,5,"2,795",55,15,15,10,10,15,"5,465",100,20,"1,275",70,"1,540",115,50,"1,085",25,150,15,55,60,65,5,765,185,25,195,5,5,380,125,5,155,5,465,75,50,125,30,"8,230",5,120,"1,305",260,35,80,230,25,"1,205",200,5,160,235,5,10,305,225,910,635,55,255,25,"1,025",230,40,150,"4,685",15,5,5,30,25,965,85 -260,Language,Mother tongue,Census Profile 98-316-X2016001, Telugu,"4,125",50,50,5,10,45,5,20,15,10,5,0,85,10,5,0,0,5,10,5,0,0,5,5,85,40,5,15,10,0,0,90,70,0,15,5,10,10,110,10,0,0,15,65,5,0,15,0,5,315,15,10,10,15,0,25,0,0,285,80,0,0,30,15,30,0,0,45,45,0,0,0,0,15,40,15,0,10,25,40,5,5,40,5,125,5,25,20,45,0,160,45,5,20,0,0,50,5,5,5,10,5,5,0,15,5,105,0,0,65,50,0,25,10,20,155,245,0,20,35,5,0,45,100,20,75,25,0,0,35,115,20,15,205,0,0,0,10,10,70,5 -261,Language,Mother tongue,Census Profile 98-316-X2016001," Dravidian languages, n.i.e.",100,0,0,0,5,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,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,5,5,0,15,0,0,0,0,0,0,0 -262,Language,Mother tongue,Census Profile 98-316-X2016001, Hmong-Mien languages,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -263,Language,Mother tongue,Census Profile 98-316-X2016001, Indo-European languages,"589,415","1,840","3,030","3,300","4,350","5,835","4,920","3,770","5,060","2,525","2,910","1,680","6,305","2,710","3,135","1,100","4,825","1,325","3,230","4,990","1,290","4,325","1,330","2,065","4,940","6,360","3,100","2,920","5,775","1,880","3,610","6,950","4,690","10,315","10,645","3,220","2,550","5,230","3,555","2,320","3,530","6,040","3,775","8,860","2,230","1,290","7,500","1,750","1,415","4,070","5,365","5,240","2,170","2,635","4,340","5,620","5,395","2,070","2,150","12,900","2,575","5,005","3,285","1,755","6,735","1,485","1,595","6,875","3,520","1,610","1,520","1,625","3,570","2,265","7,295","4,030","3,320","1,105","8,510","2,605","2,510","3,065","9,425","2,325","6,395","2,150","4,140","7,150","4,855","1,195","3,790","4,550","5,920","4,230","2,090","2,765","8,235","3,395","1,115","3,755","2,780","2,270","2,895","7,275","2,275","2,490","5,830","1,655","2,805","3,820","3,010","2,055","3,560","1,635","7,535","4,230","5,615","1,665","3,545","11,000","3,475","1,095","4,570","10,465","4,355","11,800","9,780","3,470","3,940","5,620","11,705","4,505","6,885","14,260","1,165","1,070","2,745","1,555","1,690","6,955","4,800" -264,Language,Mother tongue,Census Profile 98-316-X2016001, Albanian,"8,500",0,5,60,55,170,40,25,50,25,45,15,45,40,5,5,550,0,305,15,30,40,10,5,45,160,45,30,25,20,115,115,55,30,70,15,15,195,50,15,90,110,180,50,230,30,20,10,20,20,50,35,15,40,150,0,10,15,15,355,45,10,20,20,270,15,5,40,10,15,35,30,10,45,20,25,60,0,305,5,20,105,20,20,95,30,20,55,30,5,25,10,60,165,80,5,95,80,30,10,125,10,35,75,10,25,15,10,10,10,20,20,55,0,300,25,85,0,20,135,0,5,110,65,30,75,100,90,5,265,40,15,375,130,10,20,35,20,25,90,85 -265,Language,Mother tongue,Census Profile 98-316-X2016001, Armenian,"7,845",75,70,10,40,205,30,50,165,85,55,0,35,10,25,0,10,40,0,5,10,0,0,20,50,30,20,20,15,0,5,505,135,15,20,10,0,15,40,0,30,25,10,60,20,15,20,5,0,110,15,20,20,95,15,5,10,5,40,45,5,0,10,5,45,0,0,"1,755",30,20,30,25,5,5,15,5,0,20,15,30,25,0,45,40,70,0,65,65,10,5,15,5,0,20,0,5,610,15,5,305,5,5,0,15,5,30,35,0,10,15,20,15,95,130,25,500,15,5,0,15,5,10,160,105,30,10,110,10,0,325,150,60,15,55,0,5,5,25,25,90,10 -266,Language,Mother tongue,Census Profile 98-316-X2016001, Balto-Slavic languages,"120,445",125,285,"1,700","1,100","1,475","2,080",785,685,435,670,55,580,535,275,120,965,295,"1,005",285,345,105,390,430,"1,335",640,970,465,190,225,675,"1,075",335,780,590,340,420,"2,340",435,350,935,"3,325","1,945","1,235",725,430,275,270,380,455,"3,010","3,080",325,435,"1,710",95,205,385,255,"6,370",735,125,330,385,"1,140",720,875,535,"1,150",480,445,440,350,"1,335",305,140,"2,330",80,"3,815",280,660,290,255,805,"1,970","1,165",595,"3,180","1,275",265,660,155,475,825,355,345,"1,360",230,240,575,"1,245",205,545,"1,080","1,035",685,425,885,100,385,"1,235",455,570,205,"4,485",395,470,475,250,660,330,185,565,"2,695",630,445,"6,715",350,170,610,"1,885","1,280","1,615",900,235,250,315,430,535,785,275 -267,Language,Mother tongue,Census Profile 98-316-X2016001, Baltic languages,"3,490",0,5,20,50,50,15,10,25,10,10,0,5,10,5,10,10,10,15,0,15,10,15,10,30,15,15,10,10,10,5,5,5,35,10,20,30,70,5,5,0,70,40,15,15,20,5,15,15,5,260,220,5,15,35,5,10,10,5,235,50,0,0,5,30,55,45,25,30,30,25,25,15,30,5,0,65,0,65,10,10,10,0,25,35,20,15,25,20,20,5,5,10,5,5,5,40,15,15,5,75,0,10,50,30,30,5,90,0,5,20,0,15,0,150,10,5,40,5,5,15,15,30,70,25,15,55,15,10,20,55,25,45,20,30,10,5,15,20,20,10 -268,Language,Mother tongue,Census Profile 98-316-X2016001, Latvian,"1,605",0,5,5,35,45,0,15,10,0,0,0,0,15,0,10,0,5,15,5,5,10,15,10,15,5,5,0,5,15,10,10,5,10,5,5,20,10,5,0,0,25,0,20,0,10,5,5,15,5,55,80,0,15,10,0,15,5,5,50,20,5,5,5,10,15,10,15,20,15,10,35,5,10,5,0,15,0,15,5,5,5,0,20,25,0,20,15,0,15,0,5,5,10,0,15,35,5,15,5,20,0,5,20,10,15,5,55,0,5,5,5,10,0,30,10,0,25,0,5,5,5,20,35,10,0,35,0,5,15,40,20,5,20,15,5,5,10,15,15,0 -269,Income,Income of households in 2015,Census Profile 98-316-X2016001," $150,000 to $199,999","77,810",595,475,560,"1,130",935,505,750,665,415,705,100,635,825,190,325,325,285,300,250,400,270,440,665,"1,025",730,475,565,485,465,830,645,430,"1,210",715,320,920,400,310,155,405,850,300,215,285,320,410,585,440,265,810,960,550,560,315,245,235,395,185,"1,430",535,250,280,405,455,410,305,880,550,615,545,615,480,330,765,225,465,510,"1,380",385,680,150,325,760,965,380,435,540,"1,555",495,235,125,600,555,385,530,890,355,285,460,515,175,240,410,515,820,"1,625",500,180,230,330,"1,235",540,525,"1,050",585,190,955,235,160,600,215,325,"3,520",565,755,460,305,280,705,"1,440",565,760,855,625,365,460,430,465,445,380 -270,Language,Mother tongue,Census Profile 98-316-X2016001, Lithuanian,"1,885",5,5,15,15,5,10,5,15,5,10,0,0,0,0,0,5,0,5,0,5,5,0,5,5,0,5,0,10,0,0,5,0,20,10,20,10,55,0,5,0,50,40,0,10,0,5,10,10,0,195,140,0,0,25,0,0,5,0,195,25,0,0,0,15,30,35,0,15,15,0,5,5,15,0,0,50,0,55,5,5,0,5,10,5,15,5,10,20,5,5,0,5,0,0,5,20,10,5,0,45,0,5,40,15,10,5,40,0,0,20,5,10,0,115,0,5,0,5,0,0,5,5,30,10,10,35,5,0,5,0,10,40,0,5,5,5,0,5,10,0 -271,Language,Mother tongue,Census Profile 98-316-X2016001, Slavic languages,"116,955",125,280,"1,675","1,055","1,420","2,065",780,655,430,655,55,575,525,280,115,960,290,990,270,335,95,370,415,"1,300",630,960,455,190,215,665,"1,065",330,755,575,315,395,"2,275",425,340,930,"3,260","1,905","1,210",710,415,265,255,365,450,"2,755","2,865",325,425,"1,675",90,200,380,255,"6,140",685,125,330,370,"1,120",665,825,510,"1,115",440,425,415,340,"1,310",295,150,"2,275",80,"3,730",270,640,285,255,780,"1,940","1,150",560,"3,150","1,255",250,645,150,460,815,350,335,"1,305",215,230,565,"1,180",200,535,"1,015","1,000",655,415,800,100,385,"1,220",450,560,205,"4,355",370,460,435,245,660,315,175,540,"2,635",605,435,"6,660",335,165,595,"1,825","1,250","1,560",885,205,250,300,410,510,770,280 -272,Language,Mother tongue,Census Profile 98-316-X2016001, Belarusan,195,0,5,0,0,0,10,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,5,5,0,0,0,0,0,0,0,0,10,0,0,0,0,5,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,5,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,5,5,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,5,0,0,0,0,0,0,5,0,10,0,0,5,0,0,0,0,0,0,0,0,15,0,0,0,0,5,5,0,0,0,0,0,0,0,0 -273,Language,Mother tongue,Census Profile 98-316-X2016001, Bosnian,"1,110",0,0,20,0,15,10,0,5,0,0,0,5,15,0,0,25,0,10,0,5,0,5,5,15,5,0,5,0,0,5,5,5,10,10,5,10,20,5,0,5,115,45,15,10,5,0,5,0,0,20,15,0,0,10,0,0,5,0,120,15,0,0,0,10,5,10,5,0,5,0,10,0,10,0,0,45,0,30,0,5,0,0,0,20,0,5,0,15,0,10,0,10,10,0,0,10,0,5,5,10,0,10,15,5,0,10,5,0,0,15,0,5,0,15,10,20,10,5,5,0,5,0,40,0,5,0,5,0,5,15,0,5,0,0,0,0,5,5,10,10 -274,Language,Mother tongue,Census Profile 98-316-X2016001, Bulgarian,"4,345",5,20,25,25,125,65,20,25,15,0,10,20,30,0,10,15,5,190,0,15,0,20,5,65,70,30,10,10,10,135,65,25,10,15,15,20,55,5,5,30,120,80,70,50,15,5,10,30,25,60,35,0,10,25,5,10,20,35,85,10,5,30,15,15,0,0,35,80,25,20,20,5,45,5,5,115,0,90,0,15,30,0,55,110,35,10,45,60,5,20,5,20,105,45,5,165,15,10,20,20,20,10,20,15,25,10,20,5,10,25,10,30,0,85,35,80,10,0,35,10,5,100,80,25,5,110,20,5,70,75,40,30,15,20,35,15,20,10,10,0 -275,Language,Mother tongue,Census Profile 98-316-X2016001, Croatian,"5,565",15,5,130,55,40,20,25,30,20,25,5,15,25,10,0,30,15,30,15,20,20,30,5,50,10,15,15,25,15,5,50,15,30,90,35,25,125,15,45,25,185,65,20,25,20,10,15,15,15,115,155,10,10,125,10,10,15,5,355,40,10,5,25,140,50,35,25,15,30,20,25,30,30,5,15,90,0,135,15,35,35,30,30,75,40,20,20,70,15,30,10,20,55,15,25,45,15,15,10,105,5,210,120,45,25,10,70,15,15,40,40,25,10,195,15,15,30,40,10,15,5,15,115,10,90,15,20,25,30,40,25,185,25,5,25,25,15,45,25,20 -276,Language,Mother tongue,Census Profile 98-316-X2016001, Czech,"2,860",10,5,20,45,55,15,15,20,15,25,0,5,20,50,5,10,10,25,0,20,0,15,25,25,15,10,20,15,0,20,20,20,30,25,15,30,30,25,10,10,35,35,35,15,20,30,15,30,5,45,65,10,15,30,0,15,5,20,75,25,5,5,25,20,10,20,15,20,25,20,10,5,20,60,5,25,5,60,10,10,5,5,20,40,10,10,20,30,10,15,5,20,25,5,25,50,10,5,20,10,5,5,15,45,35,35,10,0,20,75,25,10,0,70,10,0,40,10,15,20,10,0,120,25,10,55,5,0,10,30,10,15,125,5,0,15,15,15,5,5 -277,Language,Mother tongue,Census Profile 98-316-X2016001, Norwegian,225,0,0,0,5,0,0,0,0,0,10,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,5,0,5,5,0,0,0,0,0,0,0,0,5,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,5,5,0,0,0,0,0,5,0,5,0,0,0,15,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,5,0,0,0,0,5,0,5,0,0,0,0,0,15,0,5,0,0,0,0,5,0,5,0,0,0,5,0,5,5,0 -278,Language,Mother tongue,Census Profile 98-316-X2016001, Macedonian,"6,190",50,65,15,25,110,20,25,35,25,40,0,235,115,0,15,15,0,110,15,10,0,0,85,35,195,5,90,5,45,165,40,95,10,10,0,30,45,200,10,5,85,40,50,5,15,20,40,65,15,5,35,170,25,15,5,25,0,75,100,5,15,160,0,25,0,10,150,25,35,15,45,5,10,45,5,100,30,30,85,10,5,5,50,50,0,35,30,20,10,5,30,5,170,60,5,75,15,20,200,15,5,0,40,5,25,85,10,10,150,15,40,25,90,40,125,40,45,5,35,10,0,135,60,165,25,15,10,20,155,45,20,25,290,20,30,0,20,15,20,15 -279,Language,Mother tongue,Census Profile 98-316-X2016001, Polish,"25,060",15,45,680,255,190,125,135,75,55,115,5,125,85,65,25,85,30,70,145,55,25,65,175,245,85,85,150,50,35,55,115,55,220,155,85,95,505,80,150,140,730,415,60,60,75,70,40,105,45,770,"1,010",80,60,330,35,60,75,55,"1,405",240,40,45,90,410,175,240,60,85,70,55,65,120,595,115,35,420,15,"1,425",105,155,105,100,115,160,600,50,125,345,45,90,25,115,55,35,85,230,75,30,45,270,45,160,335,570,115,175,215,25,95,640,115,60,35,"1,480",70,65,95,100,70,95,35,55,475,205,145,195,115,40,115,125,95,480,185,55,25,50,70,70,130,50 -280,Language,Mother tongue,Census Profile 98-316-X2016001, Russian,"36,145",15,20,170,330,330,"1,545",335,340,235,305,10,70,90,90,35,500,140,80,55,125,30,160,50,615,115,690,70,40,40,85,550,50,195,185,65,75,320,40,35,555,375,275,245,380,145,75,40,50,275,750,390,15,200,255,5,40,160,10,"1,005",115,25,20,120,120,70,105,110,735,155,185,90,75,165,30,30,145,5,830,20,240,55,60,220,795,130,315,"2,645",455,50,275,45,170,105,35,70,410,35,45,145,110,95,45,135,90,215,55,45,10,35,180,120,265,35,600,60,110,85,20,95,50,65,100,"1,150",75,60,"5,755",55,35,90,"1,220",845,110,80,40,40,105,145,200,470,95 -281,Language,Mother tongue,Census Profile 98-316-X2016001, Serbian,"13,385",0,10,135,150,405,110,85,55,40,70,5,45,35,20,10,200,50,380,25,35,10,15,30,100,60,45,30,5,45,135,135,45,85,25,25,45,295,45,15,80,625,485,85,120,85,15,40,25,40,350,455,15,70,80,10,0,35,25,"1,080",45,10,30,25,50,70,85,55,40,50,65,85,25,140,15,0,755,0,270,5,75,0,5,210,470,50,45,65,135,40,135,10,20,130,125,35,210,20,55,65,215,10,15,80,50,80,30,60,5,15,90,60,90,10,480,30,85,45,10,65,25,20,90,270,25,20,130,30,0,70,135,85,110,40,35,60,20,75,85,20,40 -282,Language,Mother tongue,Census Profile 98-316-X2016001, Serbo-Croatian,"1,470",0,0,5,25,35,15,15,10,5,5,0,5,15,0,0,25,5,30,5,5,0,5,10,20,0,15,0,10,5,20,20,10,5,0,0,10,30,0,0,20,45,45,25,10,5,5,5,5,0,35,45,10,5,10,0,0,5,0,95,15,5,0,15,20,0,10,5,5,10,0,5,10,10,0,0,50,0,25,0,15,0,5,30,50,10,0,5,15,5,5,5,10,35,5,0,30,0,0,15,15,0,5,10,10,15,0,10,0,5,20,0,15,0,30,0,25,10,0,10,5,0,5,45,0,5,10,0,5,5,25,5,15,15,0,0,10,10,10,10,10 -283,Language,Mother tongue,Census Profile 98-316-X2016001, Slovak,"3,095",0,5,35,20,45,20,15,5,0,5,0,20,15,10,0,5,5,30,5,5,0,5,5,15,20,10,10,0,5,5,25,5,25,20,15,20,35,5,5,25,40,30,595,15,5,10,10,5,5,55,55,0,20,35,0,0,10,10,125,20,5,0,15,25,15,15,5,10,5,15,20,10,35,5,5,40,0,105,5,20,0,0,15,45,20,5,15,20,10,15,0,10,90,5,0,30,5,5,10,25,0,5,25,10,35,10,10,0,15,10,15,10,5,90,15,0,15,5,295,5,10,0,60,10,10,15,15,0,5,30,15,30,30,5,10,10,0,5,0,5 -284,Language,Mother tongue,Census Profile 98-316-X2016001, Slovene (Slovenian),"1,785",10,10,205,35,10,10,0,10,0,10,0,5,15,0,0,0,5,0,5,5,10,5,5,10,5,5,10,5,10,10,5,5,10,20,5,0,35,5,15,0,60,20,0,0,5,5,5,10,0,30,35,5,5,15,5,5,10,10,100,5,5,5,0,20,5,15,25,10,20,5,15,0,10,5,5,40,0,35,0,10,0,5,5,5,20,10,10,15,10,0,0,15,5,0,25,5,0,5,20,35,5,20,25,20,15,10,15,0,5,10,10,5,0,65,0,0,10,15,0,5,5,5,25,20,35,0,10,5,30,5,25,50,15,0,10,10,5,5,0,10 -285,Language,Mother tongue,Census Profile 98-316-X2016001, Ukrainian,"15,465",5,90,250,100,65,105,75,45,15,45,10,30,45,20,5,45,25,20,20,35,5,45,35,105,5,40,35,15,15,30,50,10,95,50,55,30,765,25,40,50,815,370,20,25,30,10,20,35,25,475,560,10,20,740,10,15,45,10,"1,595",150,5,15,35,245,235,280,35,75,20,35,30,60,235,0,40,450,0,695,15,40,45,20,30,110,180,55,175,75,35,50,0,45,20,20,45,55,30,10,15,345,10,40,205,125,70,20,340,15,15,90,35,30,5,"1,210",20,25,40,30,20,70,15,20,170,35,40,335,30,20,30,80,65,490,50,15,10,35,35,40,55,20 -286,Language,Mother tongue,Census Profile 98-316-X2016001," Slavic languages, n.i.e.",280,0,5,5,5,5,0,0,0,5,0,0,0,10,0,0,0,0,5,0,0,0,0,5,0,0,0,10,0,0,5,0,0,10,0,0,0,5,0,0,0,10,0,0,0,5,0,0,0,0,5,10,5,0,5,0,0,0,0,0,0,0,5,0,0,5,0,5,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,5,0,0,0,5,5,5,0,5,5,5,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,10,0,0,0,0,5,5,0,0,0,10,5,0,0,0 -287,Language,Mother tongue,Census Profile 98-316-X2016001, Celtic languages,275,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,0,5,0,0,0,5,5,0,0,0,0,0,5,5,0,5,0,0,10,0,5,0,5,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,5,0,5,5,0,0,5,0,5,0,0,0,0,0,0,5,5,10,0,5,0,5,0,0,0,0,10,10,0,0,0,0,0,5,0,0,25,10,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,10,5,0,5,0,0,15,0,0,0,0,0,0,5,5,5,0,5,0,0,5,5,0,0 -288,Language,Mother tongue,Census Profile 98-316-X2016001, Scottish Gaelic,80,0,0,0,0,0,0,5,0,0,0,0,0,5,0,5,5,0,0,0,5,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,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0 -289,Language,Mother tongue,Census Profile 98-316-X2016001, Welsh,85,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,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,5,5,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,5,0,0,0,0,5,5,0,0 -290,Language,Mother tongue,Census Profile 98-316-X2016001," Celtic languages, n.i.e.",110,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,5,5,0,0,5,0,5,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,20,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0 -291,Language,Mother tongue,Census Profile 98-316-X2016001, Swedish,700,0,5,5,30,10,0,0,0,0,0,0,5,5,0,5,0,15,5,5,0,0,15,5,15,0,5,5,20,5,5,5,0,15,0,5,15,5,0,0,0,0,0,0,5,0,0,0,0,5,10,10,0,10,0,0,0,10,0,15,5,0,0,5,0,25,5,5,10,5,0,10,5,5,5,0,0,0,5,5,10,0,0,0,20,0,0,0,15,5,5,5,5,0,0,15,5,0,10,5,0,0,0,5,5,30,0,5,0,0,5,10,5,0,15,0,0,20,0,5,5,10,0,45,5,0,0,0,0,0,5,5,0,5,5,5,10,5,5,0,0 -292,Language,Mother tongue,Census Profile 98-316-X2016001, Germanic languages,"22,310",75,105,100,495,375,190,185,140,165,515,20,200,240,55,70,45,150,80,60,170,15,210,160,320,100,205,210,80,105,125,175,110,195,100,75,210,200,130,70,500,220,100,95,170,205,45,125,240,60,365,410,75,180,105,50,40,145,65,365,120,25,75,115,140,185,110,160,170,185,175,220,85,135,90,45,140,30,395,130,180,45,70,210,345,100,105,230,260,140,80,45,115,175,80,130,265,40,105,65,165,35,80,145,160,385,195,120,35,130,140,215,220,65,300,145,55,405,95,45,115,95,120,640,215,135,360,80,20,165,275,205,195,395,125,70,155,150,200,80,50 -293,Language,Mother tongue,Census Profile 98-316-X2016001, Afrikaans,400,0,0,0,15,5,5,5,0,0,0,0,0,0,0,0,0,10,0,0,10,0,5,0,20,0,0,0,5,5,0,0,0,5,0,0,5,0,0,0,0,0,0,5,5,5,0,0,0,0,10,5,0,0,0,0,0,0,5,10,5,0,0,0,0,5,0,5,0,5,0,0,0,0,10,0,0,0,10,5,5,0,0,15,10,0,5,0,15,5,5,0,0,0,0,10,10,0,0,0,0,0,5,10,0,0,0,0,0,0,10,5,5,0,0,0,5,10,0,0,0,0,5,30,5,0,0,0,5,5,15,5,0,0,0,0,0,0,5,5,0 -294,Language,Mother tongue,Census Profile 98-316-X2016001, Danish,665,0,10,0,10,10,0,5,0,0,20,0,5,10,0,5,0,5,5,0,5,0,10,5,10,5,0,5,5,5,0,5,0,5,0,0,5,5,10,0,5,5,5,0,5,5,0,0,5,0,10,25,0,0,0,0,0,0,0,0,5,0,5,0,15,10,0,5,5,0,0,10,0,5,0,0,0,0,10,0,10,0,0,5,15,5,0,0,25,10,0,5,0,15,0,5,15,0,5,5,15,0,0,5,5,20,10,5,0,0,15,0,5,0,5,5,5,25,0,0,0,0,5,30,5,5,5,0,0,10,10,10,10,25,15,5,10,0,10,0,0 -295,Language,Mother tongue,Census Profile 98-316-X2016001, Dutch,"3,185",25,5,15,70,55,10,30,25,15,35,0,25,45,10,10,5,30,5,10,45,5,45,45,75,5,15,30,0,15,20,20,5,35,10,10,35,35,10,15,30,25,5,15,15,20,10,25,30,15,40,60,10,20,0,0,10,30,10,45,5,15,20,25,0,30,25,30,20,25,30,45,10,25,15,10,25,5,55,15,50,5,5,45,65,15,20,40,40,25,10,5,20,25,20,15,45,5,20,5,30,10,15,25,30,65,30,20,0,10,20,50,40,10,35,25,5,65,15,5,25,10,20,130,30,5,15,10,0,30,45,30,40,35,20,10,25,25,25,20,5 -296,Language,Mother tongue,Census Profile 98-316-X2016001, Frisian,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,5,0,0,0,0,0,0,0,0,5,5,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -297,Language,Mother tongue,Census Profile 98-316-X2016001, German,"14,520",55,85,80,305,260,35,115,80,85,205,10,150,165,35,50,25,90,70,50,100,10,100,105,175,85,60,160,50,65,85,105,80,130,80,55,145,155,110,45,85,185,75,75,65,85,35,75,195,35,280,320,60,110,100,45,35,65,45,285,90,15,55,70,115,140,80,130,80,135,105,140,55,95,45,30,110,15,300,105,95,30,55,135,220,70,70,100,165,100,40,30,85,135,55,70,175,40,70,40,115,15,60,115,120,245,130,100,30,115,105,145,95,50,240,115,45,270,80,40,85,65,100,385,165,115,80,65,15,130,165,110,165,315,95,50,100,90,115,50,35 -298,Language,Mother tongue,Census Profile 98-316-X2016001, Icelandic,60,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,5,0,0,0,0,0,0,0,0,5,0,0,5,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 -299,Language,Mother tongue,Census Profile 98-316-X2016001, Vlaams (Flemish),130,0,0,0,5,0,0,0,0,10,5,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,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,5,5,0,0,0,0,5,0 -300,Language,Mother tongue,Census Profile 98-316-X2016001, Yiddish,"2,350",0,0,0,55,35,140,20,30,55,265,0,0,0,0,0,5,20,0,0,0,5,40,0,5,0,130,0,5,5,0,35,0,0,5,0,0,5,0,0,375,0,0,5,85,90,0,5,5,0,0,5,0,50,0,0,0,50,0,0,5,0,0,10,0,0,5,0,45,10,20,0,0,0,0,0,0,0,5,0,5,0,5,10,10,0,15,80,0,0,10,0,10,0,0,5,5,0,0,5,0,0,0,0,0,20,0,0,0,0,5,10,75,0,0,0,0,10,0,0,0,0,0,15,0,0,270,0,5,0,40,45,0,0,0,0,5,15,30,5,5 -301,Language,Mother tongue,Census Profile 98-316-X2016001," Germanic languages, n.i.e.",35,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,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,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,5,0,0,0,0,0,0,5,0,10,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 -302,Language,Mother tongue,Census Profile 98-316-X2016001, Greek,"27,840",145,280,55,260,455,285,70,115,115,195,20,495,210,35,215,145,65,"1,080",40,40,65,35,105,85,555,180,160,85,505,"1,305",245,485,400,140,80,125,125,330,25,125,145,65,625,55,35,75,170,95,80,115,125,120,95,55,35,20,180,270,265,140,45,310,20,110,40,45,740,105,145,90,185,20,45,75,65,80,80,135,110,70,45,45,145,135,45,105,135,120,340,50,110,480,"1,020",980,160,580,50,415,740,80,15,60,155,65,110,135,150,30,120,30,120,110,275,130,485,75,95,45,300,30,45,775,245,215,115,40,60,85,"1,190",160,125,200,535,110,210,405,60,25,80,110 -303,Language,Mother tongue,Census Profile 98-316-X2016001, Indo-Iranian languages,"194,765","1,060","1,705",215,785,"2,010",550,"1,635","2,865","1,215",465,145,"4,135","1,010",480,460,130,460,280,620,235,90,200,835,"1,550","3,890",290,"1,590",185,410,585,"3,475","2,970","1,000",855,265,"1,115",220,"1,960",625,355,545,625,"6,170",210,175,750,725,370,"2,635",485,340,"1,195","1,235",205,"2,700","2,200",165,"1,175","1,765",200,345,"1,980",465,"2,395",65,70,"2,380","1,215",295,300,270,180,165,"6,195",620,110,755,"1,030","1,640",800,270,"7,370",420,"1,755",270,"2,610","2,230","1,020",110,"2,065","3,895",175,"1,315",225,135,"3,025",280,95,990,245,"1,640",775,420,230,465,"4,315",65,145,"2,665",520,530,"1,555",595,330,"1,955","4,335",150,"1,775","9,310",110,195,"2,120","3,700","2,350","8,935","1,190",310,170,"1,745","7,500","2,040","1,390","11,010",275,145,130,305,310,"2,170",340 -304,Language,Mother tongue,Census Profile 98-316-X2016001, Indo-Aryan languages,"138,625",910,"1,500",205,400,"1,065",245,985,435,230,100,140,"3,300",880,350,355,70,95,190,525,165,75,105,720,"1,015","3,555",145,"1,385",105,370,445,"1,200","2,275",860,555,230,995,140,"1,520",385,160,480,460,"4,245",75,75,525,630,290,"1,415",295,215,"1,045",600,160,"2,615","2,130",105,"1,055","1,380",185,335,"1,750",295,"1,985",50,50,"1,745",295,90,100,105,95,110,"5,705",585,80,635,670,"1,400",585,200,"6,870",160,645,235,295,315,645,85,"1,720","3,465",125,920,170,95,"1,615",230,65,540,170,"1,470",655,360,200,225,"3,825",40,110,"2,065",375,365,405,535,220,"1,535","4,065",90,"1,640","7,140",55,120,"1,445","2,405","1,895","8,710",370,210,150,"1,255","1,240",295,"1,250","9,700",240,115,80,115,130,"1,710",240 -305,Language,Mother tongue,Census Profile 98-316-X2016001, Bengali,"28,460",65,105,25,55,100,35,140,70,20,10,5,600,670,40,35,10,10,35,125,25,10,15,205,210,"2,130",25,"1,105",20,10,30,215,555,300,100,70,440,10,715,95,30,45,55,615,15,10,75,45,180,220,45,40,205,40,30,120,65,15,335,305,40,45,"1,180",70,240,5,10,200,50,5,0,15,10,5,545,15,5,30,60,235,210,70,245,30,100,55,70,40,60,15,240,"2,780",25,345,10,15,470,50,10,65,15,"1,160",85,105,45,50,430,10,25,740,70,100,80,30,25,135,"2,645",15,80,375,0,25,180,300,845,195,65,45,35,295,270,60,105,890,40,45,15,10,30,200,50 -306,Language,Mother tongue,Census Profile 98-316-X2016001, Gujarati,"26,400",170,465,125,60,275,85,70,60,45,30,65,960,25,25,200,5,25,10,190,20,0,15,75,65,75,25,25,15,205,155,270,530,110,145,15,35,20,125,30,15,45,40,"1,235",5,10,185,55,35,195,20,25,125,135,20,240,250,10,70,145,5,105,50,15,160,0,5,450,40,5,20,20,5,15,"1,595",365,20,145,140,275,45,20,"2,455",15,40,30,30,55,70,15,60,50,10,65,25,10,145,25,5,135,15,30,100,20,60,10,915,5,25,140,40,30,35,145,55,165,155,10,440,865,5,15,320,205,115,"1,815",70,15,10,100,120,30,175,"5,295",15,5,10,15,0,330,30 -307,Language,Mother tongue,Census Profile 98-316-X2016001, Hindi,"15,235",130,150,15,105,180,50,305,95,40,30,40,350,50,35,10,10,15,25,45,50,15,30,95,290,145,25,35,25,25,55,185,205,75,70,40,75,30,100,40,25,85,65,405,20,20,40,80,30,320,85,40,110,100,5,150,105,25,165,260,40,75,80,60,225,10,10,200,85,25,35,10,15,35,400,70,20,120,170,130,95,20,465,40,260,75,85,60,180,20,315,75,35,60,15,15,140,20,15,75,50,35,75,25,40,50,385,10,15,90,85,50,85,90,50,200,165,20,160,225,20,40,135,780,120,880,60,35,15,100,360,90,115,795,20,0,20,40,30,290,35 -308,Language,Mother tongue,Census Profile 98-316-X2016001, Kashmiri,75,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,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,5,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0 -309,Language,Mother tongue,Census Profile 98-316-X2016001, Konkani,745,10,10,0,0,20,0,0,5,0,0,0,10,10,0,0,0,0,0,5,10,0,0,15,10,5,0,0,0,0,0,20,10,10,0,5,0,0,10,0,0,15,20,15,0,5,0,0,0,15,10,0,30,5,0,5,5,0,0,10,0,10,0,0,5,5,0,45,10,0,5,0,0,5,20,5,0,35,5,5,0,0,20,0,5,5,5,5,0,0,5,10,0,0,5,0,10,0,0,20,0,0,0,5,0,0,20,0,0,5,5,15,0,10,0,25,10,0,0,0,0,0,5,20,5,10,0,0,5,10,10,5,5,20,0,0,0,0,5,10,0 -310,Language,Mother tongue,Census Profile 98-316-X2016001, Marathi,"1,760",25,15,0,10,20,10,30,15,5,0,5,25,10,5,0,5,5,10,5,5,0,15,10,65,5,10,0,0,0,5,65,30,0,0,10,5,0,0,5,5,15,5,10,0,0,0,5,5,80,20,10,15,30,0,0,5,0,35,30,0,5,10,5,10,0,0,30,20,5,5,10,5,0,45,5,0,0,20,5,10,0,30,10,40,5,5,0,25,5,50,5,10,5,0,0,15,0,0,15,5,5,5,5,5,20,45,0,0,5,0,0,0,5,0,60,35,0,5,10,5,10,15,65,10,35,20,5,5,20,70,10,35,130,5,5,0,10,0,10,0 -311,Language,Mother tongue,Census Profile 98-316-X2016001, Nepali,"2,540",5,5,10,10,10,0,25,15,5,5,0,45,15,0,0,0,0,15,0,0,0,0,0,10,130,5,25,0,0,0,5,35,0,15,0,5,5,115,0,10,0,10,15,0,0,0,10,0,20,10,0,5,10,5,10,10,10,110,65,15,5,55,5,0,0,0,15,0,5,0,5,0,5,10,0,0,0,15,10,0,0,5,5,20,0,0,20,10,0,600,35,0,15,0,10,15,0,0,0,0,35,10,10,5,0,5,0,0,40,55,0,0,0,0,5,210,0,0,15,5,0,15,15,170,20,40,0,5,65,5,5,10,35,10,0,0,0,0,15,0 -312,Language,Mother tongue,Census Profile 98-316-X2016001, Oriya (Odia),300,5,5,0,0,0,0,5,0,0,0,0,10,0,0,0,0,0,5,0,0,0,0,0,30,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,15,0,0,0,0,0,0,0,0,20,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,5,5,0,5,0,0,0,15,15,0,5,0,0,5,0,0,5,0,5,0,10,0,5,0,0,0,0,10,0,0,0,0,10,15,0,0,5,0,0,0,10,0,0,0,0,0,0,20,5,0,5,0,0,0,0,0,5,0 -313,Language,Mother tongue,Census Profile 98-316-X2016001, Punjabi (Panjabi),"19,965",105,165,15,50,40,30,85,30,25,10,0,200,40,115,30,15,15,5,30,15,15,10,75,80,145,35,40,35,30,40,95,125,185,90,35,105,35,80,65,15,65,35,140,5,20,150,110,10,75,25,20,195,55,40,975,715,10,35,155,40,30,60,35,320,10,10,115,20,10,10,20,10,20,695,70,5,110,120,125,60,40,"2,635",20,40,35,30,20,140,10,105,60,20,35,20,10,65,70,0,55,30,30,140,65,5,10,655,5,25,105,35,70,40,70,40,65,100,20,660,435,15,15,50,340,135,"4,925",20,40,70,90,60,25,200,440,30,20,25,10,20,265,70 -314,Language,Mother tongue,Census Profile 98-316-X2016001, Sindhi,"2,440",30,30,0,5,150,0,15,10,5,0,5,35,15,0,0,5,15,0,5,0,0,0,10,25,45,0,15,0,0,10,60,15,15,0,10,0,0,25,0,0,10,0,255,0,0,0,0,5,25,0,10,15,30,10,0,5,0,15,5,0,0,15,5,35,0,0,75,10,5,5,0,0,0,45,0,0,25,15,10,15,5,10,10,20,0,5,10,30,0,5,5,5,40,0,0,35,0,0,15,0,0,0,0,5,5,45,0,0,15,0,0,10,40,0,35,130,5,0,215,5,0,215,55,15,40,15,0,5,25,25,10,25,35,0,0,0,5,5,15,0 -315,Language,Mother tongue,Census Profile 98-316-X2016001, Sinhala (Sinhalese),"3,280",40,70,0,10,5,10,10,35,10,0,0,70,5,15,0,0,5,25,20,5,0,0,65,15,40,0,10,0,0,0,45,65,20,40,0,15,5,50,5,5,50,35,40,5,0,10,5,5,30,5,10,65,55,0,5,0,10,25,20,15,5,70,5,40,5,0,125,10,0,0,5,5,0,135,5,0,50,10,95,25,10,40,5,15,5,0,5,20,5,15,20,0,20,5,0,100,0,0,20,35,20,25,0,0,5,140,0,0,30,10,5,25,35,10,90,20,0,15,20,0,0,30,40,70,80,5,15,0,110,15,10,120,185,0,5,0,5,5,85,0 -316,Language,Mother tongue,Census Profile 98-316-X2016001, Urdu,"37,420",310,475,15,90,270,35,295,90,60,20,20,995,60,95,80,15,15,55,105,40,15,20,170,225,820,40,125,15,85,155,245,700,165,80,60,310,20,295,145,50,150,210,"1,535",10,5,70,315,30,435,45,50,280,135,55,"1,095",980,15,245,370,20,80,225,80,940,15,10,510,50,20,20,25,40,20,"2,205",50,20,140,120,500,125,35,945,20,90,30,60,85,130,5,295,405,20,310,80,30,635,60,20,120,35,155,215,110,30,60,"1,180",10,20,895,60,100,100,105,40,730,585,10,275,"4,965",15,30,485,570,425,715,75,55,15,450,280,55,445,"1,875",110,35,10,20,25,495,50 -317,Language,Mother tongue,Census Profile 98-316-X2016001, Iranian languages,"55,195",155,200,20,380,935,305,630,"2,420",990,360,5,810,125,130,95,60,360,90,85,65,20,95,120,520,330,145,195,85,40,115,"2,270",680,125,305,30,120,90,420,245,210,65,150,"1,845",135,110,230,90,85,"1,195",185,135,130,635,50,85,60,65,115,360,15,5,230,160,390,20,25,630,925,190,205,170,65,55,470,35,35,110,370,235,205,65,480,265,"1,110",30,"2,305","1,910",365,25,330,420,60,380,50,50,"1,400",50,30,455,75,160,115,50,35,235,465,20,30,585,145,160,"1,145",75,105,415,250,70,125,"2,095",45,65,660,"1,270",445,220,775,95,20,460,"6,260","1,745",130,"1,275",40,35,45,180,180,435,100 -318,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kutenai,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -319,Language,Mother tongue,Census Profile 98-316-X2016001, Kurdish,"1,650",5,0,0,5,30,45,10,10,10,10,0,5,20,0,0,15,10,5,25,5,5,0,0,10,20,10,35,5,0,5,120,35,5,90,0,15,15,5,5,10,0,5,10,20,5,0,5,0,50,5,0,5,5,0,0,0,5,10,15,0,0,15,5,5,0,0,50,0,0,0,0,5,10,10,15,5,0,10,0,5,0,15,5,20,0,25,35,0,0,5,10,15,15,0,0,85,0,5,25,5,5,0,0,0,5,5,0,0,20,0,0,15,5,10,15,20,0,10,55,0,0,60,10,15,5,15,0,0,65,50,5,5,20,0,0,0,0,5,45,20 -320,Language,Mother tongue,Census Profile 98-316-X2016001, Pashto,"4,355",50,35,0,0,0,5,10,20,10,0,0,285,0,15,55,0,0,5,0,5,0,0,0,10,45,0,10,0,0,30,35,95,20,20,5,10,5,60,0,30,15,10,455,5,0,50,15,5,60,0,0,40,0,5,5,30,0,25,20,0,0,25,20,25,0,0,50,5,0,0,0,0,0,150,0,0,10,5,55,25,5,115,10,5,0,0,5,5,0,60,70,0,40,0,0,70,0,0,5,0,65,15,5,0,0,55,0,0,95,5,25,5,10,0,50,40,0,10,995,0,5,40,15,50,30,15,10,0,65,10,0,10,275,0,0,0,0,0,40,15 -321,Language,Mother tongue,Census Profile 98-316-X2016001, Persian (Farsi),"49,190",100,175,15,365,895,250,620,"2,385",970,350,10,520,110,110,35,50,350,80,60,70,10,90,115,520,265,130,155,85,35,80,"2,105",550,100,190,20,105,65,350,240,165,45,135,"1,375",110,100,170,65,70,"1,095",180,130,95,620,35,80,35,55,85,325,15,5,190,150,365,25,25,550,925,195,210,155,65,50,300,20,35,90,345,180,185,65,355,250,"1,080",35,"2,275","1,870",375,30,270,350,40,320,45,50,"1,230",55,25,425,75,90,100,45,30,230,390,20,25,470,125,140,"1,120",60,85,345,195,70,110,"1,035",45,60,560,"1,240",375,185,745,80,20,335,"6,195","1,735",115,985,30,35,50,180,165,345,55 -322,Language,Mother tongue,Census Profile 98-316-X2016001," Indo-Iranian languages, n.i.e.",940,5,5,5,5,5,0,0,10,0,0,0,15,5,10,0,0,0,0,0,0,0,0,5,0,15,0,10,0,0,5,15,30,5,10,10,10,0,15,0,0,0,0,65,0,0,0,0,0,20,5,0,10,10,0,10,5,0,0,15,0,0,0,10,10,0,0,15,5,0,0,0,5,0,15,5,0,0,5,5,5,0,20,0,10,0,0,10,0,5,25,15,0,30,0,0,20,0,0,5,0,5,0,0,0,5,30,0,5,15,0,0,0,0,5,0,15,0,5,85,0,0,15,30,10,5,35,15,0,10,10,15,15,25,5,0,0,0,0,30,0 -323,Language,Mother tongue,Census Profile 98-316-X2016001, Italic (Romance) languages,"207,440",345,605,"1,155","1,605","1,160","1,735","1,005","1,060",475,950,"1,425",810,660,"2,260",230,"2,990",305,475,"3,960",460,"4,005",480,495,"1,555",975,"1,385",445,"5,200",615,785,"1,360",575,"7,925","8,870","2,435",645,"2,130",625,"1,225","1,490","1,685",845,640,815,395,"6,300",450,310,705,"1,315","1,210",415,540,"2,105","2,730","2,900","1,165",325,"3,735","1,315","4,455",565,750,"2,635",450,495,"1,265",830,470,440,480,"2,915",545,620,"3,125",600,155,"2,800",425,775,"2,310","1,605",675,"2,025",545,650,"1,265","2,140",315,885,340,"4,615",685,375,"1,990","2,300","2,705",235,"1,060",900,360,"1,395","5,375",770,790,700,420,"2,480",490,"1,045",705,930,360,"1,950",720,580,510,"1,355",540,"2,870",570,710,"2,995",895,"2,095","1,250","2,585","3,475","1,340","1,695",785,"3,070","1,220",400,365,"1,715",575,565,"3,655","3,935" -324,Language,Mother tongue,Census Profile 98-316-X2016001, Catalan,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,10,0,5,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0 -325,Language,Mother tongue,Census Profile 98-316-X2016001, Japanese,"7,015",50,40,15,175,120,25,290,120,30,30,0,60,20,10,25,20,25,60,10,50,15,25,5,160,75,15,25,50,50,80,100,25,170,35,45,55,30,15,10,15,25,20,35,25,40,10,50,20,55,90,90,20,75,0,0,0,60,15,125,40,20,35,100,15,15,10,55,50,65,35,55,50,10,10,5,15,20,100,20,70,20,15,75,150,15,60,75,85,50,65,25,75,55,35,65,90,0,40,50,35,25,10,25,30,80,10,25,5,10,40,85,80,30,45,35,40,35,5,20,65,65,45,300,20,20,15,20,20,30,455,100,20,60,50,45,40,50,55,30,35 -326,Language,Mother tongue,Census Profile 98-316-X2016001, Italian,"62,635",110,335,495,510,175,800,180,105,150,390,335,260,250,915,70,795,115,90,975,60,605,130,225,215,385,740,200,"1,495",415,390,75,175,"1,030","4,410",190,170,845,225,425,420,620,165,35,120,100,"2,850",130,90,35,205,265,255,40,"1,045","1,895","1,025",300,125,"1,095",180,640,265,60,"1,195",225,90,610,165,170,160,140,160,100,80,"1,895",205,40,680,75,135,195,635,120,225,75,315,550,265,100,55,110,"1,475",225,200,655,255,"1,400",70,570,460,25,395,620,105,160,220,150,"1,270",150,90,105,155,225,690,270,45,125,610,40,425,75,170,445,275,815,130,555,460,515,325,350,"1,645",385,125,125,505,105,110,"1,830","2,285" -327,Language,Mother tongue,Census Profile 98-316-X2016001, Portuguese,"59,360",45,70,425,375,125,220,215,130,50,95,790,125,120,140,60,"1,250",55,70,"1,340",100,"2,645",55,70,305,135,155,70,"2,715",55,125,100,90,"5,520","1,155","1,695",140,460,90,95,335,465,190,60,105,70,355,65,45,105,395,295,60,40,480,130,160,265,45,"1,090",685,"3,000",80,305,390,110,135,115,135,60,50,85,"2,385",155,95,600,160,20,825,45,140,"1,045",135,115,430,165,70,120,800,45,220,60,"1,750",90,50,985,170,545,35,125,200,70,135,"2,840",400,175,120,120,510,50,310,245,80,25,610,75,115,105,125,80,"2,220",305,65,595,110,200,85,850,"2,335",145,295,90,515,185,85,55,730,125,90,270,915 -328,Language,Mother tongue,Census Profile 98-316-X2016001, Romanian,"12,335",5,40,50,115,465,125,95,355,150,95,5,75,60,20,10,120,35,60,15,40,10,55,70,150,100,80,20,5,10,30,545,70,40,100,10,40,105,50,5,155,130,75,155,170,60,20,25,80,195,115,110,25,250,85,20,15,50,25,195,25,15,30,40,75,15,40,170,155,50,45,45,25,25,35,5,60,15,170,50,65,20,20,95,310,15,70,185,125,15,55,30,45,70,10,15,825,35,5,175,120,15,60,35,30,90,85,10,15,35,55,15,255,20,140,110,225,40,25,75,15,25,90,275,110,35,420,30,15,195,260,105,100,110,20,30,40,40,90,75,70 -329,Language,Mother tongue,Census Profile 98-316-X2016001, Spanish,"72,855",165,175,185,600,375,585,535,470,125,355,285,340,220,"1,175",85,805,110,260,"1,625",255,755,240,120,875,355,415,150,965,130,235,635,255,"1,300","3,215",540,295,710,250,695,570,470,420,395,420,175,"3,080",225,100,365,615,530,80,210,485,690,"1,690",550,145,"1,355",435,795,195,325,980,90,225,370,375,205,190,200,360,250,420,620,165,85,"1,130",230,430,"1,045",785,330,"1,050",285,200,400,935,170,555,135,"1,355",300,110,325,"1,035",725,125,200,140,250,805,"1,880",225,345,260,140,680,245,565,330,450,95,500,275,190,245,590,350,210,165,385,"1,680",395,"1,060",630,"1,145",670,485,825,240,815,560,175,155,440,300,285,"1,475",665 -330,Language,Mother tongue,Census Profile 98-316-X2016001," Italic (Romance) languages, n.i.e.",135,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,5,5,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,5,5,0,0,5,0,5,0,10,0,0,0,0,10,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,0,0,0,0,5,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5 -331,Language,Mother tongue,Census Profile 98-316-X2016001, Kartvelian languages,870,0,0,0,5,0,50,0,0,0,5,5,10,0,0,0,5,0,0,0,0,0,0,0,0,0,10,0,0,0,5,5,0,0,5,0,0,0,30,0,10,20,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,5,0,5,10,0,0,0,5,5,0,10,25,0,0,0,0,5,0,0,5,0,15,0,5,0,0,0,5,0,10,130,5,0,10,0,0,0,0,0,20,0,0,5,5,0,5,0,5,0,0,0,0,0,10,0,0,0,5,0,10,0,0,0,0,0,0,10,0,0,315,0,0,0,5,40,0,0,0,0,0,0,5,5,5 -332,Language,Mother tongue,Census Profile 98-316-X2016001, Georgian,870,0,0,0,0,0,60,0,0,0,5,5,10,0,0,0,5,0,0,0,0,0,5,0,0,0,10,0,0,0,5,0,0,0,0,5,5,0,25,0,10,20,0,0,0,5,0,0,0,0,10,5,0,0,0,0,0,0,0,10,10,0,0,0,0,5,0,10,25,0,5,0,0,5,0,0,5,0,10,0,0,0,0,0,5,5,10,125,5,0,5,0,0,0,0,0,20,0,0,5,0,0,5,0,5,5,0,0,0,0,10,0,0,0,5,0,5,0,0,0,0,0,0,10,0,0,325,0,0,0,5,35,0,0,0,0,0,0,0,10,0 -333,Language,Mother tongue,Census Profile 98-316-X2016001, Korean,"33,665",50,80,30,420,420,270,"1,120","1,395",620,145,5,160,35,20,20,60,120,55,35,105,10,40,35,640,85,215,30,60,50,65,740,40,260,95,85,115,180,40,35,105,360,205,180,70,45,15,45,25,380,295,175,60,470,105,15,75,125,25,"1,480",65,25,45,255,180,60,25,215,775,175,115,90,90,30,60,5,155,30,310,55,150,110,65,165,595,80,"1,630","1,925",260,30,295,20,110,70,30,90,475,30,35,190,215,50,15,65,55,165,55,30,5,30,90,70,665,95,135,195,160,40,25,75,60,135,95,830,60,75,790,60,25,165,"4,630","1,745",295,125,45,35,115,190,135,345,70 -334,Language,Mother tongue,Census Profile 98-316-X2016001, Mongolic languages,290,0,5,0,0,0,0,5,15,5,0,0,5,0,5,0,15,0,0,0,5,0,0,0,0,10,5,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,10,0,20,5,0,0,0,0,5,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,5,5,10,0,0,0,0,0,5,0,5,0,30,0,5,0,0,0,0,5,0,15,0,0,20,0,10,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,5,0,5,5,0,0,0,25,5,0,0,0,0,5,0,0,0,0 -335,Language,Mother tongue,Census Profile 98-316-X2016001, Mongolian,295,0,5,0,0,0,0,5,5,0,0,0,5,0,5,0,10,0,0,0,5,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,20,5,0,0,0,0,15,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,5,0,0,5,0,0,0,25,0,0,0,0,0,5,5,5,15,0,0,15,0,5,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,5,0,5,5,0,0,0,20,0,0,5,0,0,5,0,0,0,5 -336,Language,Mother tongue,Census Profile 98-316-X2016001, Niger-Congo languages,"13,780",25,50,10,40,75,25,25,45,30,20,60,65,35,815,45,30,0,25,365,25,5,15,20,100,130,35,35,35,15,20,60,80,75,405,15,45,40,205,200,160,30,40,155,20,0,665,25,10,30,20,35,35,35,90,135,320,15,50,180,15,30,75,35,280,0,40,130,10,5,5,10,25,25,255,35,5,15,80,110,175,245,"1,110",20,50,105,25,15,80,15,130,110,50,80,10,10,180,145,5,35,10,100,145,180,65,5,140,10,255,180,70,80,30,0,25,65,90,20,190,105,5,15,100,145,225,625,45,330,60,85,55,5,345,220,20,5,20,5,5,480,70 -337,Language,Mother tongue,Census Profile 98-316-X2016001, Akan (Twi),"4,345",0,25,5,0,5,5,5,10,15,0,15,10,0,400,10,5,0,0,120,0,0,0,5,20,10,10,10,0,5,5,10,15,10,170,0,10,25,25,85,55,10,10,10,0,0,355,10,0,5,10,5,0,25,55,85,90,5,15,70,0,0,20,0,55,0,15,20,0,0,0,0,5,5,60,20,0,0,10,35,30,70,550,10,15,10,0,10,15,0,15,15,15,5,5,0,30,85,0,0,0,10,60,30,0,0,35,5,150,35,10,5,5,5,0,10,5,0,100,0,0,0,10,15,85,310,10,85,10,5,10,5,150,55,5,5,0,0,5,135,15 -338,Language,Mother tongue,Census Profile 98-316-X2016001, Bamanankan,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,5,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,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -339,Language,Mother tongue,Census Profile 98-316-X2016001, Edo,675,0,0,0,0,0,5,0,0,0,0,5,0,0,70,0,5,0,0,25,0,0,0,0,5,0,5,5,0,0,0,0,5,0,35,0,5,0,15,10,5,0,0,0,0,0,75,0,0,0,0,0,0,0,5,10,35,0,5,5,0,0,5,0,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,5,10,80,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,15,10,0,0,0,0,10,15,5,0,0,0,0,0,0,0,10,0,0,0,0,0,15,20,10,15,5,0,0,0,35,0,0,0,0,0,0,25,5 -340,Language,Mother tongue,Census Profile 98-316-X2016001, Ewe,175,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,15,0,0,0,10,0,0,0,0,5,0,0,10,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,15,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,5,15,0,0,0,0,5,0,10,5,0,0,0,0,0,10,5 -341,Language,Mother tongue,Census Profile 98-316-X2016001," Fulah (Pular, Pulaar, Fulfulde)",165,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,5,5,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,10,0,0,0,0,0,5,0,0,0,0,0,0,0,10,0,0,0,5,5,0,0,0,5,5,0,5,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,15,0,5,0,0,0,0,0,0,5,0,0,10,5 -342,Language,Mother tongue,Census Profile 98-316-X2016001, Ga,200,0,0,0,5,0,0,0,0,0,0,0,10,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,5,0,0,5,0,5,0,0,5,0,0,0,0,0,0,10,0,0,0,5,0,0,35,0,5,0,10,0,0,5,0,0,0,0,0,0,10,0 -343,Language,Mother tongue,Census Profile 98-316-X2016001, Ganda,375,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,25,0,0,0,0,0,5,0,0,0,0,0,0,0,15,5,0,0,0,10,10,0,5,0,15,0,0,0,5,0,0,5,0,0,0,0,0,10,0,10,5,0,0,0,5,20,0,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,5,0,0,5,0,0,5,10,0,5,0,5,0,15,0,0,0,0,0,5,5,0,0,0,5,0,0,0,5,10,0,0,0,15,0,10,0,25,5,5,0,0,0,10,0,0,0,0,0,5,5 -344,Language,Mother tongue,Census Profile 98-316-X2016001, Igbo,745,0,0,5,0,0,0,0,5,0,0,5,0,5,30,5,5,0,5,10,0,5,0,0,0,5,5,0,0,0,5,5,5,20,25,0,0,0,5,10,5,0,0,0,0,0,25,0,0,0,5,0,0,5,0,10,45,0,0,5,0,0,5,0,15,0,5,5,0,0,0,0,5,5,30,10,0,0,0,5,10,15,80,0,0,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,15,0,0,5,0,5,5,0,10,5,10,0,0,5,0,5,0,0,0,5,15,0,50,0,15,0,0,5,0,25,10,0,0,0,0,0,35,0 -345,Language,Mother tongue,Census Profile 98-316-X2016001, Lingala,285,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,5,0,10,5,0,0,0,5,0,0,0,0,0,15,0,0,0,5,10,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,10,5,0,0,5,0,10,10,15,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,5,0,0,5,0,10,0,5,25,0,10,0,0,0,0,5,0,0,5,0,0,0,0,15,5,0,0,0,0,0,0,5,5,0,0,0,0,0,5,0 -346,Language,Mother tongue,Census Profile 98-316-X2016001, Rundi (Kirundi),265,0,5,0,5,0,0,0,0,0,0,0,10,0,10,15,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,15,0,0,0,0,0,0,0,5,0,20,10,0,15,0,0,15,0,0,5,0,5,10,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,5,10,5,5,0,0,5,0,0,0,5,0,0,0,0,0,5,0 -347,Language,Mother tongue,Census Profile 98-316-X2016001, Kinyarwanda (Rwanda),290,0,0,0,5,5,5,0,0,0,0,5,10,0,5,0,0,0,0,5,0,0,0,0,10,15,0,5,0,0,0,0,10,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,5,0,0,0,0,5,5,5,0,0,0,5,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,5,0,0,5,0,10,0,0,5,0,10,0,0,0,0,5,5,0,0,0,0,5,0,5,0,5,0,0,0,0,0,5,0,0,0,5,5,0,0,5,0,0,5,10,5,0,0,15,0,0,5,0,0,0,0,0,0,0,0,5,0 -348,Language,Mother tongue,Census Profile 98-316-X2016001, Shona,390,0,0,0,5,5,0,0,5,0,0,0,5,0,0,0,0,0,0,10,0,0,5,0,0,5,0,5,0,0,0,5,5,10,5,0,0,0,5,0,5,5,0,20,5,0,5,0,5,0,5,0,10,5,0,10,5,5,0,10,0,5,0,0,5,0,0,5,0,0,0,0,5,0,5,0,0,0,5,10,0,5,15,0,5,5,0,0,5,0,5,0,0,0,0,0,15,0,0,0,0,0,5,0,0,0,20,0,5,0,0,5,0,0,5,5,5,0,5,0,0,0,10,5,0,5,5,0,5,25,0,0,10,5,0,0,0,0,0,0,0 -349,Language,Mother tongue,Census Profile 98-316-X2016001, Swahili,"2,230",10,10,0,20,20,0,5,20,15,5,10,35,5,150,15,5,0,0,25,5,0,0,10,30,30,0,10,0,0,0,10,10,15,35,5,5,5,60,25,35,5,5,55,0,5,65,5,0,15,0,0,0,0,15,5,5,0,10,10,0,10,20,5,75,0,10,35,0,0,0,5,5,0,40,0,5,0,20,25,70,25,65,0,10,10,10,0,20,0,25,35,5,15,0,0,45,0,0,0,0,45,20,55,0,0,10,0,35,25,5,30,5,5,5,20,25,0,15,50,0,0,25,25,30,35,10,40,10,15,10,0,15,55,0,0,0,0,0,55,10 -350,Language,Mother tongue,Census Profile 98-316-X2016001, Wolof,120,0,0,0,5,0,0,5,0,0,0,0,0,5,0,0,0,0,0,10,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,5,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0 -351,Language,Mother tongue,Census Profile 98-316-X2016001, Yoruba,"1,585",5,10,0,10,0,5,10,0,0,0,5,5,10,95,0,0,0,0,35,0,0,0,5,10,10,10,0,0,0,5,10,20,0,45,5,5,5,25,35,15,0,0,0,10,0,80,0,0,5,0,0,10,0,0,15,70,0,0,20,0,0,0,10,35,0,5,15,0,0,0,0,0,5,35,0,0,0,5,5,5,50,155,0,0,10,10,0,5,0,0,15,10,10,0,5,15,25,0,5,0,0,20,15,5,0,20,5,10,5,5,5,5,0,5,5,0,5,15,5,5,0,5,10,25,75,15,60,5,5,5,5,60,20,0,0,0,5,0,100,15 -352,Language,Mother tongue,Census Profile 98-316-X2016001," Niger-Congo languages, n.i.e.","1,900",5,0,5,0,10,5,5,5,5,0,0,5,5,40,0,0,0,10,75,5,5,5,0,10,15,5,0,10,5,5,10,15,15,60,5,15,5,35,5,25,5,5,35,5,0,40,0,0,0,5,5,5,0,15,10,35,10,10,30,5,0,20,0,45,5,5,25,5,0,5,0,5,5,40,5,0,0,10,15,20,40,105,5,0,20,0,0,10,0,15,20,15,20,5,0,35,15,0,5,0,20,15,20,35,5,20,0,25,25,20,15,5,0,5,15,10,0,15,20,5,10,15,25,45,45,5,55,5,15,15,0,40,30,10,5,5,5,0,80,10 -353,Language,Mother tongue,Census Profile 98-316-X2016001, Nilo-Saharan languages,235,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,10,5,0,0,0,5,5,0,0,0,0,0,0,0,5,0,0,0,0,5,0,10,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,0,5,0,0,5,0,5,0,0,5,5,0,0,0,0,10,0,10,0,0,0,0,5,0,0,0,0,0,0,5,10,0,0,0,0,0,5,5,10,0,0,5,5,10,0,0,0,0,0,0,0,0,0,0,0 -354,Language,Mother tongue,Census Profile 98-316-X2016001, Dinka,35,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 -355,Language,Mother tongue,Census Profile 98-316-X2016001," Nilo-Saharan languages, n.i.e.",200,0,5,0,5,0,0,5,0,0,0,0,0,0,5,0,5,0,5,0,0,0,0,0,0,5,0,0,0,0,0,5,0,5,0,0,0,0,5,0,10,5,0,5,5,0,0,0,5,0,5,0,5,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,10,0,10,0,0,0,0,5,0,0,5,10,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,5,10,0,5,0,0,0,0,10,10,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,5 -356,Language,Mother tongue,Census Profile 98-316-X2016001, Sign languages,565,5,10,0,5,10,0,5,5,0,5,0,10,0,10,0,0,20,0,5,0,10,0,0,5,0,0,0,5,5,0,5,10,5,5,0,5,0,10,5,10,5,0,0,0,0,15,0,0,5,0,5,5,0,5,5,0,0,0,0,0,10,15,0,0,0,0,20,0,0,5,0,0,0,10,0,5,5,0,0,15,10,10,0,5,0,0,10,10,0,10,0,0,0,5,0,0,0,0,10,0,0,0,10,0,0,10,0,0,0,5,0,0,0,15,30,0,5,0,5,0,0,0,5,0,5,0,0,10,5,5,0,15,10,5,0,0,5,0,15,0 -357,Language,Mother tongue,Census Profile 98-316-X2016001, American Sign Language,210,0,0,0,5,0,0,5,5,0,0,5,0,0,5,0,0,10,5,0,0,0,0,0,5,0,0,0,0,0,0,5,5,5,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,5,0,0,0,5,0,5,0,10,0,0,0,0,0,0,0,20,0,0,5,0,0,0,0,0,0,0,5,5,5,0,5,0,0,0,5,0,5,0,5,0,5,0,0,0,5,0,5,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0 -358,Language,Mother tongue,Census Profile 98-316-X2016001, Quebec Sign Language,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -359,Language,Mother tongue,Census Profile 98-316-X2016001," Sign languages, n.i.e",355,10,0,0,0,10,0,0,0,0,5,0,15,0,10,5,0,10,0,0,0,0,0,0,5,10,0,0,10,0,0,0,10,15,20,5,0,5,10,5,0,5,0,0,0,0,10,0,0,0,0,5,0,5,0,0,0,0,0,5,0,0,5,0,5,5,0,0,0,0,0,0,0,0,20,0,0,15,5,0,0,5,5,0,10,0,0,5,0,0,5,0,0,0,5,0,0,0,0,5,0,0,5,10,5,5,5,0,0,5,0,5,0,0,0,5,10,0,5,0,10,0,0,5,0,0,0,0,0,10,0,0,5,15,0,0,0,0,0,10,0 -360,Language,Mother tongue,Census Profile 98-316-X2016001, Sino-Tibetan languages,"250,960","14,670","9,955",340,"1,540","3,430",430,"6,450","4,895","3,695",620,75,"3,990",725,790,690,280,"1,000",370,445,535,165,295,420,"3,065","1,815",400,610,365,595,"1,065","5,915","2,325","2,280",690,655,830,275,740,120,305,615,285,965,200,360,"1,215","1,745",210,"2,605",520,475,755,"7,265",70,110,260,205,595,"1,510",620,210,"1,000","5,185",320,120,100,"14,490","1,365",615,445,450,"1,000",230,"2,840",105,275,"16,510","1,700",645,"1,035",260,275,500,"1,135",390,"4,020","2,305","1,625",995,850,615,590,440,410,820,"2,150",225,235,"4,960",310,"1,105",110,505,730,670,"1,450",195,100,310,"2,210","4,795","3,100","15,665",680,"7,590",530,320,110,310,"2,565",790,615,"6,760",585,525,625,200,315,"1,370","14,470","3,100",410,"3,225",660,590,590,435,300,"1,600",655 -361,Language,Mother tongue,Census Profile 98-316-X2016001, Chinese languages,"245,285","14,670","9,935",190,"1,530","3,430",415,"6,440","4,895","3,690",620,60,"3,970",710,620,685,275,990,340,445,515,125,290,410,"3,050","1,765",360,600,355,585,"1,035","5,900","2,300","2,120",680,610,810,260,725,105,300,580,255,955,195,350,"1,210","1,725",210,"2,590",495,455,750,"7,255",70,100,255,200,565,"1,300",490,205,965,"5,170",300,110,100,"14,450","1,365",625,435,440,"1,000",165,"2,825",95,260,"16,510","1,145",635,"1,005",230,245,495,"1,125",235,"4,015","2,290","1,605",985,775,595,580,445,370,815,"2,140",225,230,"4,960",300,"1,095",105,470,410,665,"1,440",195,100,300,510,"4,775","3,085","15,655",420,"7,585",500,315,100,310,"2,560",785,595,"6,715",575,510,620,195,235,"1,360","14,455","3,090",380,"3,195",655,565,580,430,295,"1,570",650 -362,Language,Mother tongue,Census Profile 98-316-X2016001, Cantonese,"114,670","9,525","5,065",105,620,"1,405",110,"1,380","2,110","1,475",280,45,"1,625",460,430,485,130,400,205,315,270,55,125,180,955,875,140,255,180,415,785,"1,945","1,195","1,360",415,365,515,120,345,40,125,250,85,405,55,125,915,"1,315",95,765,185,215,360,"2,810",25,65,175,110,290,460,260,135,570,"2,310",120,75,40,"6,415",455,325,205,270,670,50,"1,710",75,85,"9,995",470,230,530,160,140,295,400,85,"1,625",655,770,605,215,415,340,235,260,550,845,155,150,"1,265",100,405,60,340,250,245,865,120,70,165,270,"2,975","1,150","7,735",215,"3,385",265,165,55,160,"1,290",290,265,"2,445",275,245,205,120,155,480,"4,920",950,185,"1,530",465,375,420,185,120,630,365 -363,Language,Mother tongue,Census Profile 98-316-X2016001, Hakka,"2,855",275,110,10,15,15,0,10,40,20,10,0,55,15,0,5,10,5,10,0,5,5,0,5,20,20,5,15,0,0,5,40,70,10,10,5,5,0,35,5,5,5,0,0,0,10,10,25,5,15,0,5,30,45,0,0,0,5,20,5,0,0,35,15,0,5,5,185,15,10,5,0,10,5,80,5,0,375,25,10,10,5,10,10,15,0,25,20,25,5,20,15,0,10,5,15,15,0,10,30,5,5,0,0,5,0,80,0,0,5,5,30,15,210,10,110,10,0,0,5,5,0,20,35,15,5,5,0,5,20,55,40,0,35,5,15,0,5,0,10,15 -364,Language,Mother tongue,Census Profile 98-316-X2016001, Mandarin,"111,405","4,215","4,150",70,745,"1,810",265,"4,615","2,415","2,010",290,10,"2,085",180,70,155,110,505,90,70,195,45,140,205,"1,755",745,185,315,155,125,175,"3,620",915,595,125,200,245,115,260,40,145,265,150,465,135,210,90,275,90,"1,670",250,195,300,"4,000",35,5,35,65,205,695,170,50,280,"2,415",130,30,45,"7,130",810,240,210,160,235,90,850,10,150,"5,235",540,355,385,45,40,165,640,125,"2,055","1,415",705,285,445,130,215,135,85,210,"1,145",45,45,"3,440",185,580,35,80,110,365,375,50,5,115,170,"1,345","1,775","6,800",160,"3,630",185,110,35,105,"1,115",395,280,"3,765",240,210,350,50,60,755,"8,595","1,800",175,"1,445",120,140,125,210,160,730,220 -365,Language,Mother tongue,Census Profile 98-316-X2016001, Min Dong,445,50,20,0,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,10,0,0,0,0,5,0,0,0,5,50,0,0,0,55,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,5,0,0,5,0,0,0,0,0,0,35,5,60,5,0,0,0,0,0,35,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,5 -366,Language,Mother tongue,Census Profile 98-316-X2016001," Min Nan (Chaochow, Teochow, Fukien, Taiwanese)","6,120",260,205,10,45,80,20,90,110,60,20,0,35,25,70,10,15,40,5,55,15,10,5,0,55,25,15,0,5,15,20,100,25,55,90,20,10,10,35,0,5,20,5,30,5,10,145,55,0,20,25,10,20,120,5,25,25,5,15,35,20,10,10,140,10,0,0,275,35,25,10,20,50,10,60,5,10,425,25,5,25,10,10,10,15,15,120,115,35,60,25,5,10,15,5,10,45,20,15,95,15,10,5,30,25,10,65,20,5,10,30,210,45,410,5,140,5,10,10,5,85,15,5,145,5,15,35,5,10,30,300,95,10,30,35,10,25,10,0,110,25 -367,Language,Mother tongue,Census Profile 98-316-X2016001, Wu (Shanghainese),"2,665",105,95,0,25,35,10,60,60,55,0,0,40,10,0,10,0,20,0,0,15,0,10,5,45,25,0,20,10,5,15,65,20,25,10,5,0,5,25,0,0,10,0,15,5,5,5,10,5,30,5,10,15,100,0,0,0,0,5,20,5,0,5,40,5,0,5,130,30,0,5,0,5,5,35,0,10,125,25,0,5,0,0,0,15,5,55,30,30,5,15,0,5,5,0,10,20,0,0,30,5,10,0,0,0,5,15,0,0,0,10,35,50,170,15,125,5,0,0,0,5,0,5,95,0,0,0,0,0,30,190,60,10,50,5,10,5,0,10,15,5 -368,Language,Mother tongue,Census Profile 98-316-X2016001," Chinese, n.o.s.","7,015",235,280,5,85,75,15,285,145,75,15,5,115,25,40,25,20,40,20,5,20,10,0,10,195,45,15,15,5,10,35,140,65,65,40,10,30,10,35,15,25,25,5,25,0,10,50,35,10,95,20,30,10,135,0,0,15,15,20,65,20,10,45,195,10,5,5,240,35,20,5,10,25,10,80,10,10,250,55,30,50,5,30,10,25,5,135,60,60,35,60,30,10,35,20,25,80,10,15,95,10,75,10,20,20,35,45,5,10,5,25,160,50,290,15,180,35,10,0,25,35,75,25,225,25,30,20,20,5,55,380,155,15,90,30,15,5,10,0,75,20 -369,Language,Mother tongue,Census Profile 98-316-X2016001," Chinese languages, n.i.e.",100,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,5,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,5,0,5,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 -370,Language,Mother tongue,Census Profile 98-316-X2016001, Tibeto-Burman languages,"5,670",5,15,155,10,0,25,5,0,10,5,15,20,10,175,0,0,0,35,0,10,35,5,0,15,55,35,5,15,15,30,15,15,150,20,40,25,15,15,15,10,35,30,15,5,10,15,10,0,25,30,5,0,20,0,5,5,0,35,200,135,15,35,20,25,0,0,35,0,5,5,0,10,70,15,0,20,10,565,5,30,20,30,0,5,150,10,10,15,10,65,5,10,0,45,5,15,5,0,5,0,5,5,35,335,0,15,0,5,10,"1,705",20,10,5,255,10,25,15,10,0,10,5,15,20,15,20,5,0,80,5,5,0,20,35,5,15,10,5,0,25,0 -371,Language,Mother tongue,Census Profile 98-316-X2016001, Burmese,605,0,20,5,0,5,10,5,0,10,5,5,5,0,5,0,5,0,15,0,0,5,0,0,0,5,5,0,5,5,20,10,0,50,5,5,0,0,10,10,0,5,0,10,0,0,5,10,0,10,5,0,0,20,0,5,5,5,15,15,0,0,10,15,5,0,0,10,0,5,0,0,0,0,5,0,0,10,5,0,5,0,15,0,10,0,10,0,0,0,10,0,5,0,10,0,5,0,0,5,0,0,0,0,15,0,5,0,0,0,0,5,0,0,5,10,0,0,5,0,0,5,0,10,0,15,10,0,0,10,0,0,0,15,0,5,5,5,0,20,0 -372,Language,Mother tongue,Census Profile 98-316-X2016001, Karenic languages,260,5,0,0,0,0,0,0,0,0,0,0,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0 -373,Language,Mother tongue,Census Profile 98-316-X2016001, Tibetan,"4,595",0,0,150,10,0,10,5,0,0,0,10,15,15,0,0,0,0,5,0,15,35,15,0,15,45,30,5,5,5,5,5,5,65,5,45,10,10,0,10,5,30,30,5,0,10,0,5,0,10,25,10,0,0,0,0,0,0,15,175,130,10,25,10,15,5,0,15,0,0,0,0,5,65,10,5,10,10,520,10,20,20,0,5,0,150,0,10,10,15,40,5,5,5,5,0,15,0,5,0,0,5,5,40,315,0,0,0,0,5,"1,705",10,10,0,250,5,25,15,0,5,5,0,20,10,5,5,0,5,75,10,15,0,35,5,0,10,5,0,0,15,0 -374,Language,Mother tongue,Census Profile 98-316-X2016001," Tibeto-Burman languages, n.i.e.",215,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,5,0,5,0,10,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,5,5,10,0,5,0,5,0,0,10,0,0,0,0,0,5,5,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,5,0,0,10,0 -375,Language,Mother tongue,Census Profile 98-316-X2016001, Tai-Kadai languages,"1,720",15,5,5,25,0,5,40,10,0,0,20,10,15,100,0,15,0,10,20,5,5,10,0,45,20,0,10,0,0,15,20,10,30,45,0,25,5,10,10,10,5,0,25,0,5,95,15,5,5,10,15,5,5,5,5,30,5,5,30,15,5,0,30,20,5,5,25,10,0,0,0,10,5,25,0,0,15,25,0,30,0,55,5,10,0,10,5,30,0,15,5,20,5,5,5,15,5,10,5,0,15,0,15,5,10,5,5,10,5,15,25,10,15,10,5,10,20,0,0,20,5,0,70,10,35,10,10,5,15,25,15,5,15,5,10,10,0,5,20,20 -376,Language,Mother tongue,Census Profile 98-316-X2016001, Lao,705,5,5,0,5,0,5,0,0,0,0,20,0,5,80,5,5,0,0,20,5,0,5,0,0,0,0,0,0,5,5,5,0,10,35,0,5,0,0,0,10,0,0,5,0,0,70,0,0,0,0,5,0,0,5,5,20,0,0,5,5,0,0,10,5,5,0,0,0,0,0,0,5,0,20,0,0,5,15,0,10,0,35,0,5,0,0,0,20,0,10,0,10,0,0,0,10,5,0,0,5,5,0,5,0,5,5,0,5,0,5,10,0,5,0,5,0,5,0,0,10,0,0,10,5,20,0,5,5,10,5,0,0,10,0,0,5,0,0,20,15 -377,Language,Mother tongue,Census Profile 98-316-X2016001, Thai,"1,005",10,0,5,10,10,5,35,10,0,0,0,10,15,5,0,5,5,10,0,5,0,10,0,50,15,5,5,0,5,5,20,5,15,5,0,10,5,0,5,5,10,5,15,0,5,20,5,0,0,10,5,5,5,5,5,0,15,5,25,10,5,0,25,5,0,0,20,5,0,0,0,10,0,10,0,0,0,25,0,15,5,20,5,15,0,15,5,15,5,10,0,15,5,5,5,10,0,5,0,0,10,0,5,0,0,0,0,10,5,10,10,10,10,5,5,10,5,0,0,10,5,0,50,10,10,0,0,0,0,20,15,0,10,5,10,0,0,5,5,0 -378,Language,Mother tongue,Census Profile 98-316-X2016001," Tai-Kadai languages, n.i.e",10,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,5,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,5,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,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -379,Language,Mother tongue,Census Profile 98-316-X2016001, Turkic languages,"10,680",20,10,20,145,165,325,180,130,75,90,30,95,20,135,20,90,55,130,130,25,70,30,10,120,55,85,40,30,15,45,280,60,70,435,20,70,55,20,10,50,35,150,295,75,25,80,15,15,70,110,25,5,55,20,45,60,20,30,210,20,35,30,30,100,15,20,100,60,40,60,30,15,10,30,40,30,10,130,5,55,85,55,45,240,30,85,220,95,15,95,40,100,40,30,10,225,15,30,75,15,20,35,85,10,80,10,15,15,15,60,35,170,20,85,60,115,40,25,240,20,30,110,255,35,90,275,25,30,210,330,100,80,50,25,10,30,25,30,605,45 -380,Language,Mother tongue,Census Profile 98-316-X2016001, Azerbaijani,915,0,0,0,5,5,40,20,15,20,5,0,0,0,0,0,5,5,5,5,0,0,0,0,10,0,15,5,0,0,5,65,0,0,5,0,0,0,5,0,10,0,5,10,0,0,5,0,0,15,5,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,5,10,0,0,0,0,0,5,0,0,0,10,0,0,0,0,5,20,0,35,75,5,0,10,5,0,5,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,20,10,0,0,5,0,0,10,0,5,5,15,0,0,105,0,0,0,120,30,15,0,0,0,0,0,0,5,5 -381,Language,Mother tongue,Census Profile 98-316-X2016001, Turkish,"8,835",10,10,15,140,155,275,140,100,65,70,25,70,10,120,15,75,50,125,125,20,75,20,10,105,55,65,35,30,15,35,175,60,60,435,20,55,45,10,10,40,25,120,205,70,20,85,10,15,45,85,30,0,45,20,30,65,15,30,150,20,40,35,20,80,15,20,80,45,35,70,35,10,10,25,35,25,10,125,10,50,80,50,45,200,30,45,95,90,20,80,20,95,35,25,0,190,10,30,60,10,15,40,85,5,65,5,15,15,10,50,35,150,15,50,55,90,30,20,190,10,25,105,220,25,85,105,15,25,170,180,60,70,60,20,15,30,30,25,590,40 -382,Language,Mother tongue,Census Profile 98-316-X2016001, Uyghur,240,5,0,0,0,5,5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,40,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,40,0,0,0,0,5,0,0,0,0,0,5,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,20,0,0,0,0,0,0,5,0,0,0,0,0,0,10,5,0,5,0,0,5,0,0,15,0,0,0,0,0,0,0,5,0,20,10,0,0,5,0,0,0,0,0,0,0 -383,Language,Mother tongue,Census Profile 98-316-X2016001, Uzbek,440,0,0,0,0,5,0,0,5,0,5,0,20,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,25,0,0,5,0,0,0,0,0,5,0,10,20,5,0,0,0,0,5,25,0,0,0,0,5,0,0,0,10,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,30,0,0,0,15,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,5,15,0,0,20,0,0,0,0,0,5,65,0,0,5,0,0,5,5,0,0,0,0,0,0,0 -384,Language,Mother tongue,Census Profile 98-316-X2016001," Turkic languages, n.i.e.",250,0,5,0,0,5,5,10,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,10,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,5,0,5,0,0,0,0,10,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,5,10,5,0,10,10,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,5,0,0,0,5,0,0,15,0,0,0,10,10,0,0,0,0,0,0,5,5,0 -385,Language,Mother tongue,Census Profile 98-316-X2016001, Uralic languages,"15,145",25,45,55,185,395,160,90,150,125,215,50,70,145,150,15,165,75,90,45,50,40,125,60,100,165,190,80,55,35,70,210,80,190,185,65,85,115,70,45,325,125,120,100,215,120,60,45,70,45,220,175,45,130,90,20,35,145,35,225,50,35,50,30,180,85,150,110,175,110,95,140,45,65,55,35,90,15,240,35,75,70,35,125,225,45,105,190,70,55,80,45,115,235,45,40,335,15,35,100,90,25,60,115,305,190,85,45,20,70,195,80,145,15,160,95,45,75,40,115,30,25,120,220,215,75,280,210,40,180,185,125,115,125,80,50,160,100,145,125,90 -386,Language,Mother tongue,Census Profile 98-316-X2016001, Estonian,"1,945",5,5,10,20,105,5,5,20,10,10,0,15,35,0,0,0,25,35,0,5,0,15,15,10,10,10,25,5,5,25,20,15,20,5,5,15,15,0,0,10,20,0,5,0,10,0,10,10,5,40,65,10,20,5,0,0,10,5,10,5,0,10,0,10,15,35,25,20,20,50,45,5,15,0,0,15,0,15,5,5,10,0,45,45,5,20,20,5,15,5,0,5,25,25,5,35,0,10,15,10,0,0,10,10,40,10,5,0,0,10,15,20,0,20,10,5,25,0,5,0,0,40,40,90,0,5,0,0,35,25,10,5,10,15,5,5,25,15,0,5 -387,Language,Mother tongue,Census Profile 98-316-X2016001, Finnish,"1,315",0,10,5,5,30,0,20,15,10,25,5,5,20,5,5,0,10,0,0,0,5,10,15,5,5,10,5,10,5,25,30,10,5,5,0,10,10,10,0,5,10,0,10,10,5,5,10,15,0,15,15,0,15,0,5,0,0,5,20,0,0,15,5,5,5,0,30,20,15,10,30,5,5,10,0,5,0,25,10,5,0,5,25,40,10,5,20,10,5,5,0,20,20,5,10,35,0,5,10,10,10,0,10,0,20,20,15,0,5,0,25,15,0,5,15,5,25,0,15,5,0,10,35,20,10,5,0,0,30,15,10,10,10,10,10,5,15,15,5,0 -388,Language,Mother tongue,Census Profile 98-316-X2016001, Hungarian,"11,885",25,20,45,150,255,155,60,110,95,180,45,55,105,145,10,160,50,45,45,40,25,110,30,80,140,185,40,35,25,30,150,65,175,165,50,70,90,60,45,305,95,115,85,200,110,60,30,45,40,160,115,30,100,80,20,30,125,40,205,30,35,30,20,175,65,125,70,140,70,35,75,35,45,40,25,70,20,185,30,60,75,25,60,145,35,65,150,55,25,75,40,100,185,20,30,245,15,15,80,80,15,50,100,290,140,65,20,25,60,190,45,115,0,135,65,25,50,45,95,15,15,70,150,110,75,270,210,35,120,150,100,105,100,45,35,150,65,110,120,75 -389,Language,Mother tongue,Census Profile 98-316-X2016001," Uralic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -390,Language,Mother tongue,Census Profile 98-316-X2016001," Other languages, n.i.e.",585,0,0,0,0,0,0,5,5,0,0,5,5,0,10,5,5,0,5,5,5,5,0,0,10,5,10,0,0,0,0,5,0,10,10,0,5,5,0,5,0,0,0,0,0,0,35,5,5,0,5,0,0,10,5,5,10,0,0,15,5,0,15,5,5,0,0,0,0,0,0,5,5,0,5,5,0,0,20,5,5,5,20,0,0,5,0,10,5,5,35,0,0,0,0,0,5,0,0,10,0,5,10,5,0,0,0,10,5,5,10,5,10,0,0,0,5,0,15,10,5,0,0,5,20,20,0,0,0,5,5,0,5,10,0,0,0,0,0,25,5 -391,Language,Mother tongue,Census Profile 98-316-X2016001, Multiple responses,"106,190","1,100","1,020",360,775,"1,025",625,955,755,455,590,290,"1,385",480,"1,035",255,725,210,455,765,295,490,225,440,"1,045","1,340",740,490,530,305,545,"1,470","1,480","1,270","1,695",345,535,400,"1,280",410,"1,005",625,450,"1,455",425,195,"1,480",420,215,"1,055",610,535,515,580,355,615,745,475,810,"1,625",455,490,830,490,"1,130",125,250,"1,995",495,205,245,270,485,275,"2,325",590,280,930,"1,110",870,630,615,"1,830",430,945,325,475,"1,155",955,230,"1,030",775,825,655,290,365,"1,575",445,195,570,280,495,415,880,370,405,"2,215",215,470,955,895,695,530,855,655,"1,330",915,320,490,"1,470",430,155,990,"2,435","1,150","1,685","1,250",620,495,"1,450","1,780",575,870,"2,965",270,205,420,305,295,"1,395",670 -392,Language,Mother tongue,Census Profile 98-316-X2016001, English and French,"7,550",25,50,30,155,95,20,75,45,30,40,0,45,75,60,50,40,20,40,35,65,20,50,30,120,35,30,55,35,55,65,70,50,135,50,45,95,30,50,15,60,45,20,50,35,45,55,85,20,40,95,95,30,25,25,20,25,60,25,120,65,20,40,70,65,25,25,75,20,40,55,40,75,35,70,30,25,15,100,45,90,30,45,80,115,30,25,30,130,35,55,40,65,50,30,90,125,10,20,35,15,45,25,40,60,65,110,45,20,65,90,125,25,20,70,75,45,100,10,30,65,30,60,285,85,55,35,35,40,70,75,35,50,120,65,50,75,40,65,70,15 -393,Language,Mother tongue,Census Profile 98-316-X2016001, English and non-official language,"92,620","1,015",930,310,545,865,575,800,650,370,510,280,"1,280",385,965,190,665,170,390,695,205,455,155,385,845,"1,230",685,405,460,230,440,"1,285","1,360","1,055","1,580",280,405,345,"1,180",395,915,535,405,"1,350",360,135,"1,375",315,195,980,455,405,455,505,315,580,680,385,735,"1,435",360,460,765,390,985,80,190,"1,820",445,160,165,200,385,225,"2,155",550,225,895,940,785,480,560,"1,700",295,750,265,415,"1,045",745,175,925,690,715,555,245,265,"1,295",430,150,495,250,420,370,800,275,290,"2,005",140,455,820,745,530,445,800,540,"1,205",835,200,450,"1,400",335,120,865,"1,930",990,"1,575","1,140",550,425,"1,290","1,580",500,765,"2,735",180,140,315,250,210,"1,280",625 -394,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Moose Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -395,Language,Mother tongue,Census Profile 98-316-X2016001, French and non-official language,"3,300",25,5,5,45,35,25,55,30,20,15,5,35,15,20,10,15,10,15,25,25,10,10,5,40,30,15,15,20,15,25,50,40,45,40,15,20,10,35,0,20,25,20,35,20,15,25,5,0,20,30,25,15,15,15,10,20,20,25,40,15,15,25,30,50,5,25,30,10,10,10,10,15,0,55,10,10,10,40,15,40,10,70,25,65,10,15,35,30,5,25,25,20,35,10,10,90,10,10,20,15,25,20,20,15,20,50,5,5,40,35,20,20,25,15,30,20,15,10,25,10,10,35,110,60,20,60,20,20,35,60,20,30,55,5,10,15,10,10,40,10 -396,Language,Mother tongue,Census Profile 98-316-X2016001," English, French and non-official language","2,715",25,25,20,25,30,15,30,40,35,20,10,35,15,5,10,5,10,5,5,5,5,15,20,30,20,10,5,5,10,20,70,30,20,30,5,5,15,25,0,20,20,10,25,5,10,25,20,10,20,20,15,15,20,5,10,15,10,15,35,10,5,10,25,20,5,10,80,10,10,15,20,15,10,50,5,10,15,45,20,15,15,20,20,15,10,15,30,50,5,30,10,25,10,10,5,60,0,10,20,5,15,10,10,5,20,50,15,5,35,25,25,25,25,25,40,15,15,15,20,5,10,35,95,20,35,20,20,10,70,45,10,20,60,10,5,10,10,10,15,10 -397,Language,Language spoken most often at home,Census Profile 98-316-X2016001,Language spoken most often at home for the total population excluding institutional residents,"2,704,420","28,850","23,735","12,025","29,875","27,475","15,635","25,740","21,255","12,740","23,215","6,370","29,500","21,880","21,570","7,690","14,215","9,240","11,380","17,720","11,295","9,905","10,870","13,350","30,915","26,305","16,425","15,860","14,105","9,605","17,100","26,850","24,390","36,355","35,020","11,730","21,090","15,200","22,570","9,445","22,060","18,530","11,470","21,930","12,675","10,725","30,245","14,385","9,655","15,725","22,105","23,455","12,475","16,925","10,365","12,410","15,540","14,235","13,610","43,430","14,090","11,040","17,110","17,585","21,985","9,275","7,985","43,955","16,165","14,610","15,175","16,690","15,435","10,080","43,775","10,025","10,460","26,260","33,375","17,160","18,860","13,260","32,830","16,775","29,275","11,315","15,560","23,640","30,585","11,700","18,400","13,640","20,985","18,645","9,215","13,805","34,790","10,720","7,755","15,805","11,045","10,690","10,360","22,260","14,905","20,900","46,090","10,065","9,765","16,560","20,915","27,375","17,790","24,305","24,950","27,055","15,495","21,525","10,125","20,855","16,305","7,065","17,195","65,785","26,985","32,995","26,095","17,725","11,100","27,625","50,285","16,895","22,145","53,310","12,445","7,845","13,345","11,805","12,530","27,595","14,055" -398,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Single responses,"2,458,470","25,820","21,225","11,215","28,675","25,055","14,065","23,900","19,295","11,600","21,975","5,780","25,855","20,935","18,975","7,245","12,205","8,850","10,335","15,745","10,795","8,645","10,555","12,430","29,165","23,280","14,650","14,745","12,905","9,065","16,085","23,275","20,655","33,875","30,820","11,030","20,050","14,190","19,575","8,500","19,665","16,910","10,275","18,270","11,570","10,390","26,420","13,585","9,205","13,330","20,905","22,440","11,140","15,220","9,365","10,710","13,670","13,335","11,785","39,725","13,230","9,890","14,970","16,520","19,155","9,030","7,505","38,965","14,940","14,220","14,775","16,245","14,670","9,485","37,915","8,680","9,810","23,640","31,165","15,190","17,805","11,920","28,105","16,100","27,445","10,610","13,930","20,515","29,295","11,330","15,825","11,670","19,060","17,185","8,650","13,270","31,125","9,605","7,440","14,055","10,485","9,495","9,460","20,120","14,235","20,205","40,545","9,715","8,605","14,410","19,135","26,195","16,425","21,910","23,375","23,620","13,360","21,145","8,825","17,205","15,555","6,770","15,010","62,260","24,345","28,550","22,230","16,325","9,990","24,235","45,295","15,380","20,170","45,830","12,000","7,445","12,615","11,305","12,075","24,205","12,505" -399,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Official languages,"1,756,685","9,745","9,905","9,225","25,735","18,845","9,580","16,220","11,065","6,580","19,775","4,235","15,830","18,980","11,735","5,880","7,670","7,430","8,020","10,385","9,670","5,380","9,835","10,850","24,540","16,160","11,200","12,080","8,920","7,540","13,270","11,790","12,370","24,980","20,000","8,420","17,765","11,175","13,225","6,185","15,500","12,765","7,035","9,080","9,360","9,610","16,265","11,335","8,305","7,160","17,380","19,880","8,240","7,335","6,755","5,905","8,005","11,620","7,920","29,160","11,115","5,800","10,065","10,975","12,845","8,505","6,505","18,445","10,870","13,190","13,805","15,450","11,825","7,970","24,510","5,475","7,660","7,490","25,200","11,135","15,305","8,370","15,450","14,615","22,475","8,870","6,430","9,955","26,440","10,195","10,590","7,030","13,775","13,855","7,285","11,210","22,515","7,045","6,785","7,200","9,000","6,155","7,115","13,700","12,085","18,770","28,795","8,950","5,925","9,965","14,605","21,140","11,460","7,005","18,870","12,665","8,005","20,565","5,670","7,320","11,340","5,675","10,455","53,960","19,385","18,440","10,985","12,465","6,790","17,195","22,135","8,695","15,465","28,215","10,980","6,410","10,380","10,270","11,060","15,105","8,420" -400,Language,Language spoken most often at home,Census Profile 98-316-X2016001, English,"1,739,620","9,690","9,840","9,195","25,405","18,645","9,520","16,005","10,955","6,505","19,635","4,210","15,705","18,835","11,645","5,800","7,615","7,320","7,940","10,335","9,535","5,345","9,780","10,810","24,135","16,005","11,125","12,025","8,835","7,415","13,080","11,670","12,265","24,755","19,910","8,310","17,600","11,075","13,000","6,160","15,440","12,690","6,995","8,940","9,290","9,530","16,175","11,210","8,255","7,075","17,115","19,655","8,215","7,265","6,740","5,885","7,965","11,540","7,845","28,885","11,030","5,755","10,000","10,820","12,650","8,425","6,425","18,205","10,805","13,095","13,685","15,340","11,745","7,930","24,325","5,450","7,610","7,480","24,960","11,030","14,980","8,325","15,340","14,425","22,185","8,810","6,390","9,900","26,105","10,120","10,355","6,935","13,670","13,710","7,250","11,080","22,225","7,010","6,715","7,135","8,945","5,995","7,050","13,585","11,925","18,585","28,655","8,835","5,900","9,835","14,450","20,860","11,355","6,980","18,725","12,535","7,895","20,315","5,615","7,260","11,220","5,605","10,255","53,190","19,165","18,345","10,860","12,365","6,745","17,020","21,875","8,645","15,295","27,995","10,795","6,345","10,280","10,170","10,950","14,985","8,350" -401,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Naskapi,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -402,Language,Language spoken most often at home,Census Profile 98-316-X2016001, French,"17,060",55,60,25,315,200,60,210,120,70,135,30,135,160,90,80,55,120,85,50,135,30,60,40,390,150,80,50,85,115,190,145,105,240,75,110,165,100,220,30,55,80,40,150,65,75,95,120,45,90,255,235,20,70,20,30,45,80,75,295,70,45,55,150,195,70,85,235,60,105,135,115,90,40,185,15,50,15,245,110,330,50,105,185,290,70,40,50,345,70,225,95,105,130,30,125,305,30,70,65,55,160,65,120,155,175,140,115,20,130,145,280,105,30,150,120,110,260,50,65,125,75,195,770,210,95,120,100,50,165,240,45,175,220,175,65,95,100,110,110,55 -403,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Non-official languages,"701,780","16,075","11,330","1,995","2,945","6,205","4,495","7,685","8,235","5,020","2,200","1,535","10,030","1,965","7,240","1,370","4,540","1,425","2,320","5,350","1,125","3,260",710,"1,580","4,635","7,115","3,450","2,670","3,990","1,515","2,815","11,480","8,305","8,885","10,830","2,610","2,280","3,010","6,345","2,315","4,165","4,140","3,240","9,195","2,210",790,"10,150","2,250",900,"6,165","3,530","2,550","2,905","7,885","2,615","4,800","5,660","1,710","3,855","10,550","2,110","4,085","4,905","5,540","6,300",535,995,"20,510","4,070","1,025",960,795,"2,840","1,520","13,385","3,210","2,155","16,145","5,945","4,060","2,495","3,550","12,645","1,490","4,965","1,740","7,490","10,560","2,845","1,140","5,240","4,635","5,290","3,335","1,365","2,060","8,605","2,560",660,"6,850","1,495","3,335","2,335","6,415","2,165","1,430","11,745",770,"2,680","4,440","4,540","5,055","4,960","14,900","4,500","10,955","5,360",580,"3,160","9,875","4,215","1,095","4,560","8,295","4,975","10,105","11,245","3,860","3,200","7,040","23,160","6,675","4,705","17,615","1,030","1,045","2,240","1,040","1,010","9,100","4,085" -404,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Aboriginal languages,110,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,5,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,5,5,0,0,0,0,0,0,0,5,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0 -405,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Algonquian languages,55,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 -406,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Blackfoot,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -407,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Cree-Montagnais languages,15,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,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,5,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,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 -408,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Atikamekw,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -409,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Montagnais (Innu),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,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 -410,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Northern East Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -411,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Plains Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -412,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Southern East Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -413,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Swampy Cree,5,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,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,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -414,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Woods Cree,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -415,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Cree, n.o.s.",10,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,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,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -416,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Eastern Algonquian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -417,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Malecite,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -418,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Mi'kmaq,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -419,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ojibway-Potawatomi languages,35,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,5,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,5,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0 -420,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Algonquin,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -421,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ojibway,30,0,0,0,5,0,0,5,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,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,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -422,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Oji-Cree,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -423,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ottawa (Odawa),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,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,0 -424,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Algonquian languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -425,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Athabaskan languages,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,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 -426,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Northern Athabaskan languages,5,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,5,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -427,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $60,000 to $69,999","114,460",865,825,690,"1,460","1,425",685,"1,250","1,070",530,855,230,"1,135","1,145",430,330,520,340,480,575,620,455,550,705,"1,940","1,140",700,695,700,395,805,"1,015",805,"1,710","1,250",580,985,730,655,320,690,"1,075",560,580,545,520,745,645,500,570,"1,220","1,305",630,755,490,410,455,585,455,"2,430",735,460,560,600,830,450,310,"1,380",715,550,550,640,810,485,"1,410",350,610,735,"1,945",625,940,445,750,750,"1,780",475,630,735,"2,400",510,540,335,810,745,420,720,"1,510",510,365,605,540,360,430,875,635,940,"2,015",485,270,480,825,"1,205",700,780,"1,240",985,480,985,340,470,720,315,665,"4,870",995,"1,170",805,640,465,"1,215","2,195",735,"1,055","1,665",600,420,620,595,720,895,530 -428,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Babine (Wetsuwet'en),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -429,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Beaver,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -430,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Carrier,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -431,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Chilcotin,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -432,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Dene,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,5,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -433,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Dogrib (Tlicho),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -434,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Gwich'in,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -435,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Sarsi (Sarcee),5,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,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,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0 -436,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Sekani,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -437,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Slavey-Hare languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -438,Language,Language spoken most often at home,Census Profile 98-316-X2016001, North Slavey (Hare),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -439,Language,Language spoken most often at home,Census Profile 98-316-X2016001, South Slavey,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -440,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Slavey, n.o.s.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -441,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tahltan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -442,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kaska (Nahani),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -443,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tahltan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -444,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tutchone languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -445,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Northern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -446,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Southern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -447,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Athabaskan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -448,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Haida,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -449,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Inuit languages,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,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,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,0,0,0,0,0,0 -450,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Inuinnaqtun (Inuvialuktun),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -451,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Inuktitut,5,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -452,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Inuit languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -453,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Iroquoian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -454,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Cayuga,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -455,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Mohawk,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,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 -456,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Oneida,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -457,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Iroquoian languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -458,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kutenai,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -459,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Michif,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -460,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Salish languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -461,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Comox,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -462,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Halkomelem,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -463,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Lillooet,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -464,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Okanagan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -465,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Shuswap (Secwepemctsin),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -466,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Squamish,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -467,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Straits,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -468,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Thompson (Ntlakapamux),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -469,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Salish languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -470,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Siouan languages,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,0,5,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 -471,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Dakota,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,0,5,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 -472,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Stoney,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -473,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Siouan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -474,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tlingit,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -475,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tsimshian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -476,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Gitxsan (Gitksan),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -477,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Nisga'a,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -478,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tsimshian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -479,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Wakashan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -480,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Haisla,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -481,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Heiltsuk,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -482,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kwakiutl (Kwak'wala),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -483,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Nuu-chah-nulth (Nootka),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -484,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Wakashan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -485,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Aboriginal languages, n.o.s.",40,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,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -486,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Non-Aboriginal languages,"701,675","16,065","11,335","1,990","2,935","6,195","4,500","7,680","8,235","5,020","2,195","1,535","10,030","1,960","7,240","1,370","4,535","1,415","2,320","5,350","1,125","3,270",715,"1,580","4,635","7,115","3,455","2,670","3,980","1,525","2,815","11,475","8,305","8,890","10,845","2,610","2,275","3,010","6,345","2,310","4,165","4,140","3,245","9,195","2,205",790,"10,145","2,245",905,"6,175","3,520","2,550","2,900","7,885","2,615","4,805","5,660","1,715","3,850","10,555","2,105","4,090","4,905","5,540","6,305",525,995,"20,515","4,070","1,030",960,800,"2,840","1,520","13,395","3,205","2,155","16,140","5,945","4,050","2,495","3,550","12,655","1,485","4,970","1,735","7,500","10,555","2,845","1,145","5,235","4,630","5,295","3,345","1,355","2,060","8,615","2,565",660,"6,855","1,495","3,335","2,345","6,410","2,155","1,430","11,745",760,"2,675","4,440","4,535","5,050","4,960","14,895","4,495","10,970","5,350",575,"3,155","9,890","4,210","1,100","4,560","8,285","4,970","10,095","11,255","3,850","3,200","7,040","23,160","6,675","4,695","17,600","1,025","1,035","2,235","1,035","1,005","9,110","4,080" -487,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Afro-Asiatic languages,"36,560",135,130,20,180,225,160,745,185,60,90,110,340,50,"1,435",150,75,30,50,335,40,25,40,40,375,385,175,75,30,45,35,460,555,200,360,50,140,85,305,360,320,180,220,575,215,45,505,55,30,545,210,65,55,110,190,365,305,55,235,810,95,65,365,215,"1,400",15,95,670,135,15,40,25,35,30,380,50,45,55,165,150,520,375,"3,565",35,260,110,125,265,190,10,530,440,235,205,20,20,790,65,15,230,15,360,230,435,50,90,255,60,440,235,270,75,115,305,35,345,380,20,455,725,40,35,670,590,320,465,335,700,130,660,690,125,320,460,55,15,75,50,60,335,100 -488,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Berber languages,40,0,0,0,0,0,0,5,5,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,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,0,0,0,0,0 -489,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kabyle,20,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,0,0,0,0,0,0,0,5,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,5,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,0,0,0,0,0,0,0,0 -490,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Berber languages, n.i.e.",20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,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,5,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,0,0,0,0,0,0,0,0,5,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 -491,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Cushitic languages,"7,490",20,5,0,5,5,0,20,0,5,5,70,15,0,265,50,5,0,5,180,5,5,0,0,40,15,5,0,0,5,5,10,15,30,95,5,0,35,85,265,170,110,60,85,0,0,175,5,0,20,15,10,5,15,105,55,55,0,10,330,5,10,85,60,"1,175",0,65,85,0,0,0,0,5,0,60,5,0,5,10,20,155,260,405,0,10,50,0,5,10,0,70,85,10,15,0,0,30,15,0,5,10,145,80,190,5,0,40,5,340,25,25,10,10,15,0,20,20,0,60,20,0,5,15,20,70,150,0,575,30,20,15,0,190,90,0,5,10,0,0,105,40 -492,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Bilen,40,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,0,0,0,0,0,0,0,0,0,0,0,0,5,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,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,5,0,0,0,0,0,0,0,0,0,0,0,10,0 -493,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Oromo,500,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,5,0,15,0,5,5,10,0,30,0,0,10,0,0,5,0,0,0,5,0,0,0,5,0,5,0,0,10,0,0,10,0,15,0,10,0,0,0,0,0,0,0,15,0,0,0,0,5,35,10,0,0,0,5,0,0,0,0,20,30,10,10,0,0,0,0,0,0,0,10,25,10,0,0,10,0,15,0,0,0,0,0,0,5,0,0,0,10,0,0,0,0,15,0,0,20,0,5,5,0,0,10,0,0,0,0,0,0,15 -494,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Somali,"6,930",15,5,0,5,0,0,20,0,5,0,75,20,0,270,35,0,0,5,175,5,0,5,0,30,5,5,0,0,0,5,10,15,25,75,0,0,35,75,265,135,110,65,75,0,0,170,0,0,15,5,5,0,10,100,55,25,5,10,320,5,15,65,65,"1,155",0,50,80,0,0,0,0,0,0,40,5,0,0,0,15,120,245,415,0,5,50,0,0,10,0,50,50,10,0,0,0,25,15,0,5,10,130,60,170,0,0,30,0,320,15,5,5,0,15,0,10,15,0,60,5,0,5,10,15,55,155,0,550,25,15,10,5,190,75,5,0,5,0,0,95,20 -495,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Cushitic languages, n.i.e.",25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,15,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 -496,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Waray-Waray,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -497,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Semitic languages,"28,920",125,125,15,180,220,155,720,175,50,90,30,310,45,"1,155",105,70,25,45,155,45,25,40,50,345,365,170,75,30,50,35,455,530,175,280,45,150,45,215,90,155,85,150,485,215,45,325,50,30,525,190,65,55,100,75,320,250,55,210,470,90,55,280,140,215,10,30,575,135,20,35,35,30,30,305,50,40,55,165,130,365,110,"3,140",35,255,55,125,260,175,10,450,355,225,195,20,20,755,45,20,225,10,215,140,255,35,75,210,60,105,200,250,60,100,300,40,330,370,20,395,710,45,30,650,565,250,315,335,125,105,655,670,130,135,370,60,20,70,55,60,225,65 -498,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Amharic,"3,425",0,0,0,30,25,0,10,5,0,0,15,40,15,0,30,5,0,10,50,5,0,0,5,25,180,5,10,5,15,10,10,45,50,20,0,45,10,65,5,30,5,0,90,10,0,15,30,10,15,40,5,5,0,5,10,5,10,60,35,5,20,110,15,15,0,5,15,0,0,5,0,10,0,60,10,0,0,15,10,160,30,45,5,45,10,5,5,35,5,170,140,60,65,0,10,20,5,5,0,0,65,10,35,5,0,45,5,30,70,125,15,10,0,10,5,155,0,5,40,5,5,50,90,100,20,5,40,35,25,5,0,10,65,25,5,35,0,10,5,10 -499,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Arabic,"16,490",120,125,15,90,190,45,680,160,45,20,5,230,35,375,30,15,15,30,40,15,5,15,30,260,80,35,40,15,20,25,415,455,55,145,35,75,15,95,25,35,60,115,320,25,15,100,0,15,490,125,45,40,90,40,130,115,5,100,365,10,5,105,105,150,10,10,525,90,5,15,25,10,20,215,10,25,50,110,105,120,15,"1,015",15,165,40,105,85,110,5,175,115,40,70,15,5,685,25,10,215,5,120,55,70,30,60,110,0,30,100,60,20,75,280,10,290,100,10,110,605,15,15,605,430,85,105,70,50,25,595,610,85,55,265,20,10,20,30,35,140,20 -500,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Assyrian Neo-Aramaic,"3,615",0,0,0,0,0,0,0,5,0,0,0,0,0,715,0,0,0,5,5,0,0,0,5,5,5,0,5,0,0,0,0,5,5,60,0,0,0,0,40,5,0,20,0,0,0,155,0,0,5,0,0,5,0,5,105,75,0,0,10,0,0,0,0,5,0,0,25,0,0,0,5,0,10,0,10,5,0,10,10,0,0,"1,755",0,0,0,0,0,0,0,0,0,5,5,0,0,5,5,0,5,0,0,70,5,0,0,0,0,5,0,0,0,0,0,5,10,0,0,230,0,0,0,0,5,5,105,5,5,0,5,5,0,25,0,0,0,0,0,0,40,0 -501,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Chaldean Neo-Aramaic,475,0,0,0,0,0,0,0,0,0,0,0,0,0,45,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,35,0,0,0,0,0,0,0,0,65,20,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -502,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Harari,445,5,0,0,0,5,0,0,0,0,0,0,15,5,0,10,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,10,15,0,5,0,0,0,10,0,5,0,0,10,0,0,0,5,0,0,0,0,5,0,0,5,0,0,10,0,0,0,25,0,5,0,0,15,0,0,0,0,0,0,10,0,0,0,0,5,5,10,0,0,0,0,0,0,0,0,25,25,0,0,0,0,15,0,0,0,0,5,0,5,0,0,25,0,10,10,10,10,0,0,0,5,15,0,0,10,5,0,0,0,20,0,0,0,0,0,0,0,5,10,5,0,0,0,0,0,5 -503,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Hebrew,"1,610",0,0,0,45,15,115,20,10,5,60,0,0,0,0,0,5,10,0,0,0,0,25,0,20,0,125,5,0,5,0,5,0,0,0,0,0,0,0,0,55,0,0,0,160,30,0,10,0,5,10,0,0,5,0,0,0,15,0,5,0,0,0,0,5,0,0,0,35,15,10,0,0,0,0,5,0,0,10,0,5,5,0,15,30,5,15,170,20,5,10,0,20,10,0,0,0,0,0,0,5,0,0,0,0,20,0,0,0,0,5,5,15,0,0,0,0,5,0,5,5,10,0,15,5,0,240,0,0,0,30,35,0,5,0,0,10,20,10,5,5 -504,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Maltese,425,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,15,0,0,0,10,10,0,0,0,0,0,0,0,10,10,0,0,10,0,0,5,0,25,55,0,0,0,15,5,5,5,0,0,0,0,0,0,5,0,10,0,0,0,0,5,0,0,0,5,0,0,5,0,0,0,0,0,0,0,5,0,0,5,0,0,5,55,0,0,5,55,5,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,15,0,5,0,0,0,0,15,5,0,0,5,0,0,0,0 -505,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tigrigna,"2,250",0,0,0,20,0,5,0,5,0,0,10,15,10,10,25,35,0,5,50,10,15,5,0,35,80,5,15,15,5,0,10,15,60,30,10,25,0,40,10,20,0,5,80,10,0,25,10,0,10,25,10,0,5,15,0,40,5,40,20,10,25,45,5,15,0,0,10,0,0,0,0,5,0,15,15,0,5,0,5,70,45,20,0,20,0,0,5,10,0,70,70,105,40,0,5,30,5,0,0,0,25,10,80,5,0,15,0,20,20,55,15,0,15,0,10,90,0,5,50,10,0,10,30,25,30,0,30,35,15,10,5,20,15,5,0,5,0,0,45,25 -506,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Semitic languages, n.i.e.",170,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,5,0,5,0,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,10,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0 -507,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Afro-Asiatic languages, n.i.e.",110,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,15,0,0,0,5,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,10,0,0,0,0,0,0,0 -508,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Austro-Asiatic languages,"17,760",60,40,20,15,20,30,35,30,35,0,85,55,50,"1,385",45,90,0,15,730,30,95,20,25,50,65,55,35,110,15,20,20,80,445,"1,200",120,20,25,50,160,65,40,35,45,5,5,"2,430",85,15,15,45,50,40,20,30,285,610,30,30,140,225,190,50,230,80,20,15,85,15,10,15,5,150,45,115,120,25,55,65,60,125,365,195,0,30,30,20,75,50,35,60,40,140,45,30,35,45,360,10,20,20,235,90,830,145,5,60,35,165,15,355,340,5,40,55,30,5,10,75,15,65,20,25,80,80,195,30,320,290,60,85,15,65,110,30,20,70,10,15,730,260 -509,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Khmer (Cambodian),725,0,0,0,0,0,0,5,5,0,0,0,5,0,185,0,0,0,0,5,5,0,5,0,0,5,0,0,0,0,0,5,0,0,35,0,0,0,0,10,5,0,0,0,0,0,225,0,0,0,0,0,0,0,0,15,20,0,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,10,0,0,0,0,0,0,0,5,0,5,0,0,5,0,0,0,0,0,15,0,25,5,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,10,15,0,15,0,0,0,0,0,0,10,0,0,0,10,30,5 -510,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Vietnamese,"17,020",50,40,25,20,15,35,35,30,35,0,80,60,50,"1,205",35,90,0,15,710,35,90,20,20,45,60,60,30,110,20,20,15,70,445,"1,165",115,10,25,55,150,60,40,40,40,10,10,"2,200",75,10,5,50,55,35,10,25,275,595,20,40,125,225,190,50,225,85,10,15,85,10,15,5,5,145,45,120,120,15,50,75,55,120,375,190,0,30,25,20,70,55,35,55,35,130,40,35,30,55,365,10,25,20,225,95,805,135,0,60,35,160,15,355,345,10,45,60,40,10,10,75,10,65,25,25,80,65,170,30,320,290,50,70,15,70,105,20,20,70,10,10,685,260 -511,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Austro-Asiatic languages, n.i.e",10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,5,0 -512,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Austronesian languages,"48,375",410,250,120,40,315,745,75,190,55,520,130,910,150,380,20,"1,150",5,160,420,155,290,25,165,150,870,"1,165",175,100,25,125,805,"1,105",115,"1,740",30,210,60,975,165,"1,475",115,200,775,565,55,495,50,85,400,105,50,185,85,55,90,345,510,800,485,115,290,775,110,175,15,30,790,385,35,80,40,35,140,"1,545",515,35,310,280,565,100,310,280,100,235,165,245,"1,905",125,15,"1,070",235,755,375,100,15,695,105,20,185,30,115,130,185,80,40,"1,090",25,135,360,425,105,105,165,120,685,195,20,85,495,15,15,410,215,670,505,"2,470",205,55,"1,115",220,80,200,"1,260",25,65,115,40,30,900,425 -513,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Bikol,70,5,0,5,0,0,0,0,0,0,0,0,5,0,0,0,10,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -514,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Cebuano,"1,320",0,10,0,0,5,40,0,5,0,10,0,30,5,25,0,65,0,10,15,0,5,0,5,10,25,35,10,0,0,0,40,15,0,45,0,0,5,30,5,30,15,0,15,20,5,0,0,0,15,0,0,0,0,0,0,0,10,45,15,0,15,40,0,25,0,0,30,15,5,5,0,0,0,35,5,0,10,10,10,0,0,5,5,15,0,5,35,5,0,35,10,25,15,10,0,10,10,0,5,0,0,10,5,10,5,15,0,5,5,10,5,0,0,0,20,5,0,0,5,0,0,5,0,20,5,55,20,0,15,5,0,5,30,0,0,10,0,10,20,20 -515,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Fijian,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -516,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Indo-Iranian languages,"122,130",700,"1,080",110,265,"1,075",310,745,"1,950",845,280,95,"2,720",590,335,290,65,240,130,440,75,40,65,430,725,"2,605",170,"1,080",90,225,310,"2,390","1,880",550,500,175,730,90,"1,295",390,205,240,340,"4,070",120,65,555,425,205,"1,645",240,140,660,700,105,"1,990","1,670",40,780,885,95,225,"1,385",170,"1,620",20,35,"1,430",805,130,140,105,30,70,"3,830",435,50,460,445,"1,020",370,170,"5,260",195,960,105,"1,930","1,640",270,30,"1,210","2,825",55,805,135,40,"1,845",160,25,550,110,"1,070",490,220,105,210,"2,400",25,90,"1,710",250,250,910,320,125,"1,125","3,125",25,"1,260","6,695",10,60,"1,280","1,215","1,515","6,015",785,190,110,"1,020","5,320","1,500",815,"7,455",135,75,40,120,150,"1,390",195 -517,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Hiligaynon,615,0,5,5,0,5,10,5,0,5,10,5,10,5,5,0,15,0,0,0,0,0,0,0,5,15,15,0,0,0,0,5,15,0,20,5,0,0,25,0,15,0,5,15,5,0,15,0,5,5,0,0,5,0,0,0,0,10,15,0,0,10,5,0,0,0,0,0,0,0,0,5,0,0,5,10,0,0,0,0,0,5,5,0,0,0,10,20,0,0,20,0,30,5,0,0,10,0,0,15,0,0,5,0,5,0,5,0,10,0,0,5,10,0,5,15,0,0,0,10,0,0,10,5,5,0,20,0,0,15,0,5,5,5,0,0,5,0,0,10,10 -518,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ilocano,"2,695",10,10,5,0,5,50,5,10,5,15,5,40,5,15,0,100,0,5,25,5,30,0,5,0,70,100,10,5,5,0,20,40,5,155,0,10,0,50,15,115,5,0,40,50,5,75,10,0,15,5,15,0,5,10,0,35,45,30,10,10,15,40,0,15,0,0,15,20,0,5,0,0,0,70,65,0,5,20,35,0,20,35,5,15,5,5,140,0,0,90,5,60,0,0,0,25,0,0,5,0,5,0,5,5,5,40,0,30,15,15,10,10,0,0,35,15,0,0,15,0,0,5,5,25,20,230,5,10,55,5,5,10,55,0,5,0,0,0,60,25 -519,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Malagasy,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,5,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,5,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 -520,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Malay,570,10,0,0,0,0,0,5,25,10,0,0,5,0,0,0,0,0,0,0,0,0,0,5,15,0,0,0,0,0,0,25,0,0,0,0,10,0,0,0,5,0,10,15,0,0,0,0,0,20,0,0,0,10,0,0,0,0,5,10,0,0,0,10,0,0,0,15,5,0,5,10,0,5,0,0,0,10,5,5,0,0,10,0,5,0,20,10,5,0,0,0,0,0,5,0,20,5,0,5,5,5,5,5,0,5,0,0,5,0,5,0,0,30,5,20,10,5,0,10,0,0,5,20,5,0,10,0,0,5,35,15,0,5,0,0,0,0,0,5,0 -521,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Pampangan (Kapampangan, Pampango)",210,5,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,5,10,10,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,10,0,0,5,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,5,0,0,5,0,5,0,0,0,0,0,0,0,5,0,0,5,0,10,10,0,10,0,0,0,0,0,5,0,0,5,0,0,0,0 -522,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Pangasinan,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 -523,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Tagalog (Pilipino, Filipino)","42,515",390,225,105,35,290,625,70,150,30,465,120,820,135,325,20,945,0,140,375,150,230,25,150,125,775,995,155,80,20,130,710,"1,020",95,"1,485",30,175,65,865,145,"1,275",100,190,705,485,45,405,45,80,360,105,25,170,70,40,90,280,445,695,455,110,255,675,85,145,15,25,725,350,35,70,35,40,130,"1,420",435,30,280,230,510,100,285,215,90,200,150,205,"1,660",110,15,925,220,625,360,85,15,600,90,25,160,25,105,105,170,60,40,"1,030",20,90,330,385,95,85,140,115,595,155,20,90,465,15,15,375,165,610,450,"2,130",165,40,"1,010",155,60,180,"1,150",20,55,105,40,25,785,360 -524,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Austronesian languages, n.i.e.",235,0,0,0,0,0,5,0,0,0,5,0,5,0,0,0,0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,10,0,5,10,0,10,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,10,0,0,0,0,5,0,5,0,0,0,0,0,10,0,0,0,0,0,5,0,0,0,0,10,10,0,0,0,5,0,0,0,0,10,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,5,5,35,0,0,5,0,0,0,0,0,0,0,0,0,20,5 -525,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Creole languages,"1,530",20,10,0,0,0,0,5,5,5,0,0,5,5,40,0,10,0,0,30,0,5,0,5,5,5,5,5,5,0,5,10,15,5,45,0,0,0,50,10,10,0,5,20,0,0,35,5,5,15,0,0,5,5,0,5,25,0,25,20,0,0,15,5,100,0,0,15,15,0,0,0,5,0,50,0,0,15,10,20,5,10,155,5,10,10,5,10,0,0,0,15,10,0,0,0,30,5,0,10,0,0,0,0,0,5,25,0,10,90,10,5,5,10,0,25,5,0,5,5,0,0,15,15,85,30,10,0,5,15,5,15,20,55,0,5,5,0,5,40,0 -526,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Haitian Creole,110,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,15,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,0,0,0,10,0,0,0,0,5,0,0,0,10,0,0,0,0,0,0,0 -527,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Creole, n.o.s.","1,015",5,5,0,0,0,0,10,0,0,0,0,10,5,10,5,10,0,0,10,0,5,0,0,0,5,0,0,0,0,0,10,10,0,30,0,5,0,45,0,0,0,5,10,0,0,15,5,5,10,0,0,0,0,0,0,15,0,15,5,0,0,5,0,85,0,0,20,10,0,0,0,0,0,45,0,0,15,5,10,0,0,105,0,15,0,15,5,0,0,0,0,5,0,0,0,15,5,0,5,0,0,0,10,0,5,15,0,5,80,5,5,5,5,5,20,0,0,5,5,0,0,10,10,60,20,5,0,5,5,10,10,20,25,0,0,0,5,0,15,0 -528,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Creole languages, n.i.e.",405,0,0,0,0,0,0,0,5,0,0,0,0,0,20,0,5,0,0,20,5,0,0,5,5,0,5,5,0,0,5,0,10,0,20,0,0,0,10,5,10,0,5,0,0,0,10,0,0,5,0,0,0,0,0,0,0,0,5,10,0,0,0,0,15,0,0,5,5,0,0,0,0,0,10,0,0,0,5,5,0,5,25,0,0,0,0,0,0,0,0,5,5,5,0,0,15,0,0,0,0,0,0,5,0,0,10,0,5,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,10,0,5,0,0,5,0,0,10,0,5,0,0,0,20,0 -529,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Dravidian languages,"47,065","1,880",850,25,40,110,25,65,65,50,5,85,"1,570",65,405,10,40,0,35,155,40,10,10,250,165,345,25,320,0,10,25,240,"1,805",195,140,30,30,5,"2,035",45,40,45,105,660,5,10,255,10,80,475,55,5,970,85,5,140,215,20,955,260,0,35,765,15,115,0,10,"2,275",50,0,5,0,10,10,"4,420",85,15,950,45,"1,270",85,55,"1,010",5,190,15,45,70,40,0,690,210,40,135,5,5,245,110,0,120,20,400,65,45,95,0,"6,270",0,105,"1,135",250,30,50,150,25,"1,030",305,0,140,205,5,0,265,135,685,565,45,205,15,790,265,20,160,"3,930",10,5,5,30,20,825,60 -530,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kannada,290,0,5,5,0,0,0,5,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,5,5,0,0,0,0,0,5,0,0,0,5,15,0,0,0,0,0,5,0,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,0,5,5,0,0,5,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,20,20,0,0,5,0,0,0,10,0,5,0,0,0,0,20,0,0,5,0,0,0,5,0,0,0 -531,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Malayalam,"2,460",25,15,0,10,5,5,15,15,0,0,0,60,0,15,0,0,0,0,5,0,0,0,5,20,20,0,10,0,0,0,20,50,15,5,0,0,5,65,5,5,15,10,15,0,0,10,0,10,75,10,0,50,5,5,5,20,0,30,40,0,0,55,5,10,0,5,170,5,0,0,0,5,0,70,10,0,20,5,180,0,5,60,0,15,5,10,10,5,0,25,20,5,0,0,0,25,10,0,15,5,5,5,15,10,0,140,0,10,95,15,0,0,5,5,30,15,0,15,0,0,0,15,15,50,95,5,0,0,50,45,5,40,285,0,0,5,0,0,15,0 -532,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tamil,"42,015","1,830",805,20,25,70,25,35,35,35,5,80,"1,450",60,380,5,35,0,20,150,40,10,15,235,90,300,20,300,0,5,30,185,"1,710",170,130,25,30,0,"1,885",30,25,30,80,580,5,5,245,10,65,175,45,0,920,70,5,125,210,5,730,140,0,35,690,10,105,0,0,"2,060",20,0,0,0,0,0,"4,325",75,15,925,30,"1,075",80,45,935,5,105,10,25,35,30,0,570,150,15,135,0,0,195,100,0,105,5,390,60,35,85,0,"6,045",0,90,"1,000",190,30,25,140,15,890,140,0,105,170,5,0,220,65,625,420,35,210,5,725,140,5,105,"3,510",5,0,5,20,20,760,50 -533,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Telugu,"2,270",20,25,0,0,25,0,15,5,10,0,0,45,5,5,0,5,0,15,0,0,0,0,0,40,10,5,0,0,0,0,40,45,0,5,0,0,5,80,5,5,0,10,50,0,0,10,0,5,210,5,5,0,0,0,15,0,5,190,50,0,0,15,0,10,0,0,30,15,0,0,0,0,0,25,5,0,10,0,15,5,0,20,0,65,0,15,10,10,0,85,30,5,10,0,0,30,0,5,5,5,0,0,0,5,0,65,0,0,40,35,0,15,10,10,80,135,0,15,15,0,0,35,45,0,55,10,0,0,20,60,10,10,115,0,0,0,5,5,40,10 -534,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Dravidian languages, n.i.e.",30,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,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,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0 -535,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Hmong-Mien languages,5,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,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,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,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -536,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Indo-European languages,"317,080","1,030","1,745","1,535","1,435","2,730","2,710","1,570","2,940","1,435","1,070",990,"3,720","1,125","2,115",535,"2,775",545,"1,700","2,975",390,"2,645",395,805,"1,780","3,835","1,460","1,550","3,390",960,"1,820","4,465","2,690","5,890","6,055","1,805","1,190","2,440","2,160","1,330","1,735","2,975","2,135","5,860","1,100",390,"4,960",755,505,"2,415","2,470","1,995","1,050","1,370","2,155","3,705","3,685",845,"1,275","6,385","1,155","3,265","2,050",665,"3,770",395,665,"4,045","1,940",565,480,460,"1,885","1,085","4,350","2,280","1,695",620,"3,815","1,410",885,"1,905","6,435",935,"3,005","1,020","2,645","4,640","1,515",435,"1,990","3,105","3,450","2,000",900,"1,365","4,585","1,655",450,"2,100",980,"1,285","1,600","4,280",980,790,"2,925",540,"1,560","2,240","1,285",665,"1,805",825,"3,620","2,250","3,820",370,"2,145","7,830","1,955",440,"2,495","3,235","2,375","7,475","6,715","1,860","2,425","2,935","7,390","2,700","3,165","8,900",405,485,"1,380",545,610,"4,075","2,540" -537,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Albanian,"4,115",5,0,35,15,65,15,0,25,10,30,5,25,20,0,0,240,0,175,10,15,15,5,5,15,95,10,15,5,10,70,75,35,20,30,0,5,75,30,5,55,50,105,25,120,5,15,0,10,5,15,10,10,10,70,0,0,5,10,175,20,5,5,10,120,10,0,20,5,0,10,15,0,25,10,15,30,0,150,5,5,80,15,10,30,15,5,20,5,0,5,10,30,65,50,5,45,45,20,10,65,0,20,35,5,10,5,0,15,5,5,5,30,0,145,15,50,0,5,80,0,0,35,20,5,60,40,35,0,150,15,5,185,80,5,5,20,5,15,40,35 -538,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Armenian,"5,175",60,50,0,15,95,20,35,100,50,10,0,15,0,20,0,5,25,0,5,0,0,0,10,20,10,20,5,0,0,0,400,70,0,10,0,0,5,25,0,20,20,5,30,5,15,5,0,0,65,15,5,10,70,5,5,5,5,30,30,0,0,10,0,25,0,0,"1,375",15,10,5,10,5,0,15,0,0,25,0,15,0,0,30,5,35,5,25,35,5,5,5,0,0,15,0,0,465,5,0,250,10,0,0,5,0,0,20,0,0,10,0,0,60,105,10,395,10,0,5,5,0,0,120,30,10,5,95,0,5,230,105,35,5,45,0,0,0,10,10,70,10 -539,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Balto-Slavic languages,"61,610",45,165,885,310,735,"1,390",290,310,260,250,25,285,210,155,45,615,130,585,150,120,40,105,180,445,290,610,210,55,80,325,630,150,250,305,115,135,"1,270",250,215,525,"1,910","1,235","1,005",410,160,185,70,125,250,"1,530","1,400",155,245,"1,015",30,90,145,140,"3,520",300,40,195,95,605,245,420,225,680,180,175,135,80,740,165,65,"1,375",45,"1,980",110,205,180,125,370,965,620,320,"2,265",320,70,325,65,185,465,150,70,710,110,75,285,510,55,295,560,450,195,190,320,35,210,600,100,275,105,"2,460",175,270,130,105,490,80,40,290,715,300,230,"5,090",165,80,280,"1,040",780,755,410,65,115,100,120,205,475,140 -540,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Baltic languages,"1,080",10,0,5,0,10,10,0,10,10,10,0,0,0,0,0,0,0,0,0,5,5,0,5,10,0,0,5,0,5,0,0,0,15,5,5,10,20,0,0,0,20,20,10,0,0,5,0,0,0,125,80,0,0,10,0,5,0,0,100,20,0,0,0,5,15,5,0,15,5,10,5,5,15,0,0,25,0,25,5,0,0,0,5,10,5,0,10,0,5,0,0,5,5,0,0,15,10,0,0,5,0,0,25,10,5,0,25,0,0,10,5,5,0,60,5,0,5,5,0,0,0,10,15,0,5,30,5,5,5,30,5,10,15,10,5,0,0,5,5,0 -541,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Latvian,460,0,0,0,5,15,0,0,5,5,0,0,0,0,0,5,0,0,0,0,0,5,0,0,5,5,0,5,5,5,5,0,0,0,5,0,10,5,0,0,0,0,0,10,0,0,0,0,0,0,20,30,0,5,5,0,10,0,0,5,10,0,0,0,0,10,5,5,5,0,5,5,0,5,5,0,10,0,5,10,0,0,0,5,5,0,0,5,0,5,0,0,0,5,0,0,15,0,0,0,0,0,0,0,5,0,0,15,0,0,5,5,0,0,5,5,0,5,0,0,0,0,10,5,0,0,5,0,0,0,25,5,5,10,10,0,0,0,0,10,0 -542,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Lithuanian,620,5,0,0,0,0,10,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,5,0,0,0,10,0,5,0,5,0,5,0,20,25,0,0,0,0,0,0,0,100,45,0,0,20,0,0,0,0,85,15,0,0,0,5,10,0,0,5,5,5,0,0,10,0,0,20,0,15,0,0,0,0,0,0,5,0,15,0,0,0,0,0,0,0,5,10,5,0,0,0,0,0,15,5,5,0,5,0,0,5,0,0,0,60,0,0,0,0,0,0,0,0,0,0,5,20,0,5,0,0,0,10,0,0,5,0,0,0,5,0 -543,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Slavic languages,"60,530",55,160,880,300,730,"1,385",285,300,250,255,25,285,205,165,45,610,120,580,150,125,40,110,180,440,295,605,215,50,80,315,635,145,245,310,110,125,"1,255",255,215,520,"1,890","1,205","1,000",410,165,180,75,120,250,"1,420","1,315",155,245,995,35,85,145,140,"3,420",280,45,190,95,595,235,415,225,670,170,175,130,75,730,165,70,"1,345",40,"1,960",110,195,180,130,375,960,620,315,"2,255",315,70,325,65,195,460,155,70,685,100,75,290,505,60,295,540,445,190,180,290,35,205,600,95,270,105,"2,405",175,270,125,100,495,85,45,285,695,295,220,"5,055",170,75,275,"1,010",770,745,400,45,120,100,125,200,470,140 -544,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Belarusan,70,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -545,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Bosnian,500,0,0,20,0,0,5,5,0,0,0,0,5,10,0,0,15,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,5,15,0,0,0,55,35,15,5,0,0,0,5,0,5,0,0,0,5,0,0,0,0,65,5,0,0,0,10,0,5,5,0,5,0,0,0,5,0,0,15,0,5,0,0,0,0,0,10,0,0,0,0,0,10,5,5,10,5,5,5,0,5,0,0,0,5,5,0,0,5,0,0,0,5,5,5,0,0,5,20,0,0,0,0,5,0,15,5,0,5,0,0,0,5,5,0,0,0,0,0,0,0,5,5 -546,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Bulgarian,"2,450",5,10,15,5,65,50,10,20,0,0,5,5,30,0,10,10,0,130,5,0,0,0,0,35,35,25,5,5,0,80,25,10,10,0,0,5,25,0,0,10,80,65,55,45,5,5,0,10,5,25,25,0,15,10,0,10,15,20,55,5,0,20,10,15,0,0,25,55,5,0,15,0,40,10,5,85,0,40,5,5,25,5,25,65,25,0,30,20,0,10,5,5,60,25,0,95,5,0,10,15,0,5,5,0,10,5,0,5,0,10,0,10,0,45,20,60,10,0,25,0,0,75,25,5,0,70,15,0,40,40,20,20,15,5,25,0,15,10,0,0 -547,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Croatian,"2,045",5,0,55,15,10,0,0,5,10,10,5,10,5,10,0,15,5,15,5,0,10,5,0,10,5,0,5,0,0,0,15,5,5,40,15,0,50,5,25,5,75,35,5,5,5,5,0,5,5,45,50,0,5,50,0,5,0,0,145,5,5,5,5,70,20,15,0,10,5,15,0,5,15,15,5,40,0,35,10,5,20,15,10,20,15,0,0,15,5,10,0,10,40,10,10,15,5,0,0,35,0,130,60,15,10,0,30,10,15,10,5,5,0,55,10,5,0,25,0,5,0,5,15,0,40,0,10,15,15,15,10,80,20,0,5,5,0,15,20,5 -548,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Czech,850,0,0,5,10,10,0,5,0,0,0,0,5,5,25,5,5,5,15,0,5,0,0,5,10,5,0,15,0,0,10,10,5,10,15,5,10,10,0,5,0,5,15,25,0,0,20,0,0,0,15,10,5,10,10,0,15,0,10,25,5,0,0,5,5,0,5,5,5,10,0,15,0,0,35,5,0,5,15,0,5,0,0,0,10,0,5,5,5,5,10,5,0,15,0,0,20,0,0,5,5,0,0,0,10,5,5,0,0,15,40,0,0,0,15,0,0,15,0,15,0,0,0,35,5,5,35,0,0,0,0,0,5,50,0,0,0,0,5,5,5 -549,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Macedonian,"2,725",20,25,0,5,45,5,5,15,15,10,0,125,45,5,5,0,0,55,5,0,0,0,30,15,90,0,25,0,15,75,15,55,0,5,0,10,15,130,10,0,40,20,30,0,5,10,15,10,5,5,5,95,10,10,5,0,0,45,25,5,0,105,0,0,0,0,65,10,5,0,0,0,5,30,0,55,25,5,30,0,0,5,20,10,0,25,10,5,0,10,15,0,95,25,5,35,0,10,80,5,0,0,25,0,0,20,5,10,60,5,10,10,70,10,65,15,5,0,20,0,0,70,5,80,5,10,0,10,60,10,5,5,145,5,20,0,0,10,5,15 -550,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Polish,"10,605",5,15,330,45,70,20,30,15,15,25,5,55,25,40,5,30,0,20,80,15,5,10,85,60,25,25,100,20,5,5,45,25,70,80,15,25,265,45,115,30,395,245,15,15,10,50,0,50,10,335,430,40,25,150,5,25,20,25,635,85,10,35,25,235,45,110,25,30,10,10,5,25,345,55,5,205,5,725,60,30,60,55,45,35,345,15,55,55,10,35,5,30,20,10,10,125,40,10,20,80,5,90,175,305,10,105,75,5,70,390,0,20,15,685,30,35,15,50,30,25,5,15,55,100,75,75,50,15,60,35,35,215,90,5,0,5,5,10,70,25 -551,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Russian,"23,075",0,20,110,125,195,"1,185",155,195,155,140,0,30,55,60,15,340,80,35,35,65,10,70,35,250,55,515,50,15,15,55,380,25,90,135,30,20,220,10,30,380,250,170,185,265,75,80,10,25,185,505,225,5,115,180,5,20,80,10,660,75,15,0,50,80,20,75,55,505,95,100,50,20,90,30,15,80,5,520,0,105,45,30,120,430,80,220,"2,030",150,20,165,20,90,55,10,15,235,20,15,105,70,45,25,95,25,85,25,20,5,20,85,30,160,20,430,30,60,50,10,60,5,25,70,420,60,35,"4,615",35,20,35,785,600,65,40,15,20,50,65,95,340,60 -552,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Indo-Aryan languages,"84,470",595,945,105,100,485,120,355,180,105,35,85,"2,160",530,240,225,25,30,100,375,45,35,25,365,410,"2,375",75,950,45,200,260,655,"1,435",515,335,150,650,50,985,240,60,225,240,"2,705",35,20,395,380,165,780,120,65,550,265,85,"1,925","1,630",25,705,670,95,235,"1,225",85,"1,340",10,15,995,115,5,15,25,5,40,"3,550",405,25,400,245,855,260,125,"4,935",40,240,95,160,155,115,25,"1,000","2,535",35,535,105,25,900,135,15,270,70,965,410,210,100,75,"2,105",10,70,"1,275",185,155,150,270,85,850,"2,945",15,"1,165","5,010",0,40,870,640,"1,255","5,870",190,120,100,780,500,125,755,"6,525",120,60,35,35,50,"1,115",150 -553,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Serbian,"8,020",0,5,100,65,250,65,30,40,30,35,5,25,5,10,5,150,30,275,10,15,0,10,15,45,30,25,15,0,30,80,90,25,35,5,5,30,195,30,10,40,425,335,60,70,50,0,15,15,20,260,285,10,30,55,5,0,15,15,725,35,0,15,5,30,30,45,25,35,30,45,55,5,70,5,0,575,0,135,5,45,5,5,140,305,20,20,40,30,25,65,5,5,75,60,5,125,15,30,40,150,0,5,40,20,40,10,20,5,0,30,20,60,5,295,5,50,15,0,40,10,0,50,90,15,20,95,30,5,35,70,55,80,10,10,35,15,30,55,10,20 -554,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Serbo-Croatian,580,0,0,0,5,20,5,0,5,5,0,0,5,10,0,0,10,0,10,5,0,5,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,10,25,30,5,0,10,0,0,0,0,15,15,5,10,10,0,0,0,0,45,0,0,0,5,5,5,5,5,0,10,0,0,0,5,0,0,30,0,15,0,5,0,5,15,25,5,0,0,0,5,0,0,0,10,0,0,10,0,0,10,10,0,0,0,0,10,0,5,0,0,10,0,0,0,10,0,15,0,0,0,0,0,5,5,0,0,0,0,0,0,15,5,10,0,0,0,0,5,0,5,10 -555,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Slovak,"1,615",0,0,15,0,20,5,10,0,0,0,0,10,5,0,0,0,0,20,5,0,0,0,0,0,15,5,0,5,0,0,15,0,10,5,5,0,15,0,0,5,10,10,595,5,0,5,5,10,0,15,15,0,15,10,0,0,0,10,35,10,0,0,5,10,0,5,0,0,0,5,0,0,10,0,5,25,0,45,0,0,0,0,0,10,5,0,0,10,5,5,0,0,80,0,0,20,0,5,0,0,0,5,5,0,5,0,0,5,10,0,0,0,0,30,0,0,5,0,275,0,0,0,15,5,5,5,5,0,0,0,5,5,10,0,5,0,0,0,0,0 -556,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Slovene (Slovenian),495,0,5,90,10,0,0,0,5,0,0,0,0,5,0,5,0,0,0,0,0,5,0,0,0,5,0,0,10,5,0,0,0,5,5,0,0,15,0,5,0,20,5,0,0,0,5,0,0,0,5,10,0,0,5,0,5,0,0,35,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,5,10,0,10,0,0,0,5,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,5,15,0,0,15,15,0,0,0,5,0,0,0,0,0,0,25,5,0,0,5,0,0,5,5,10,0,15,0,5,0,15,0,5,15,10,0,5,0,0,0,5,5 -557,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ukrainian,"7,425",0,80,160,25,25,50,30,5,0,5,0,5,5,10,0,25,0,0,5,10,0,5,5,15,5,20,5,10,5,5,35,0,40,5,25,10,420,5,15,15,480,255,15,5,0,5,10,0,10,200,235,5,5,480,0,10,20,5,"1,000",50,5,5,5,125,90,140,10,35,5,0,5,20,125,0,25,210,0,385,5,5,20,15,5,25,105,15,85,25,5,10,10,15,10,0,20,5,15,5,5,135,0,15,120,60,15,15,140,5,0,20,5,0,0,755,0,0,10,10,5,30,0,0,35,0,15,145,20,5,10,25,20,245,5,5,5,15,5,0,30,10 -558,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Slavic languages, n.i.e.",70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,5,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,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0 -559,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Celtic languages,40,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -560,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Scottish Gaelic,10,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,5,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,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,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 -561,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Welsh,10,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,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,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 -562,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Celtic languages, n.i.e.",20,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -563,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Germanic languages,"2,895",10,15,15,70,35,15,35,10,10,105,0,15,25,15,5,5,30,10,0,10,0,45,5,25,5,20,25,15,15,10,25,20,25,20,5,35,25,10,5,145,25,10,5,10,15,0,20,25,5,70,35,10,10,20,5,5,5,5,40,15,5,5,15,25,20,15,15,40,25,15,15,0,25,0,0,5,5,55,15,30,5,20,35,35,10,20,10,45,30,25,0,15,25,10,15,30,5,0,5,20,0,20,25,25,70,25,10,5,15,10,15,35,0,50,10,0,60,15,10,20,20,15,125,25,20,65,10,0,20,25,25,25,55,10,0,10,30,10,10,5 -564,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Afrikaans,90,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,10,10,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 -565,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Danish,85,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,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 -566,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Dutch,285,0,0,0,5,0,0,5,0,5,5,0,0,0,5,0,5,5,0,0,0,0,15,5,10,5,0,5,0,0,0,0,0,5,0,0,10,5,0,0,0,0,0,5,0,0,0,5,5,5,0,5,5,0,0,0,0,5,0,0,0,5,0,0,0,0,0,5,0,10,0,5,5,5,0,0,5,0,5,0,5,0,0,5,10,0,5,0,5,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,5,0,0,0,0,5,10,0,0,0,0,10,0,0,0,0,0,35,0,0,0,0,0,0,10,10,5,0,0,0,5,5,5,0,0 -567,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Frisian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -568,Language,Language spoken most often at home,Census Profile 98-316-X2016001, German,"1,955",0,15,10,45,30,5,25,10,10,40,0,10,25,5,0,0,20,15,0,0,0,15,10,15,5,10,15,10,10,5,25,20,15,15,0,15,25,10,5,15,20,10,10,15,10,10,10,25,10,45,25,5,15,15,10,5,0,10,35,15,0,10,15,15,15,15,15,20,30,15,5,5,15,0,10,5,0,40,10,20,0,10,20,20,0,15,5,20,25,5,0,15,20,10,5,15,0,5,5,15,5,20,10,20,40,20,10,5,10,15,15,20,0,35,10,5,40,10,5,20,20,15,75,20,15,10,5,0,25,10,20,15,45,5,0,10,15,5,10,5 -569,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Icelandic,15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -570,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Norwegian,30,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,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,5,0,5,5,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,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 -571,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Swedish,130,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,0,0,0,0,0,15,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,5,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0 -572,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Vlaams (Flemish),15,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,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -573,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Yiddish,290,0,0,0,5,0,10,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,125,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,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,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,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -574,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Germanic languages, n.i.e.",5,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,0,0,0,0,0,0,0,5,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,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,0,0,0,0,0,0 -575,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Greek,"12,995",65,150,30,80,125,140,20,15,45,75,5,270,95,10,125,65,20,620,25,10,25,0,10,15,330,100,65,40,315,775,120,285,250,60,40,45,35,175,5,70,40,25,375,25,0,40,80,30,35,45,30,45,30,20,5,15,90,130,110,70,25,155,0,70,0,10,350,30,70,20,40,5,15,30,35,35,45,45,65,15,20,5,50,30,15,55,50,20,195,20,70,310,395,445,90,240,25,240,415,20,0,40,80,30,25,25,60,15,45,10,40,35,130,30,185,40,20,30,230,10,20,375,35,100,60,20,30,45,565,30,25,70,255,45,105,285,20,5,35,50 -576,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Bengali,"18,930",35,65,10,15,55,15,55,30,15,0,0,405,430,35,15,0,0,15,100,15,5,5,135,95,"1,485",20,785,10,0,20,145,335,210,60,55,310,5,495,50,15,25,25,415,5,0,55,35,120,150,20,20,120,20,20,110,55,0,245,165,30,35,880,35,160,0,0,120,25,0,0,10,0,5,355,5,0,20,30,165,125,50,170,10,35,25,40,20,10,5,135,"2,120",5,240,5,5,285,25,0,25,0,780,55,65,25,25,275,10,10,480,30,40,55,20,10,95,"1,955",0,50,270,0,10,130,100,555,105,35,25,35,215,125,40,55,575,30,35,10,5,10,120,20 -577,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Gujarati,"16,525",105,335,80,15,130,55,20,35,15,5,40,640,15,25,155,5,10,10,120,5,0,0,35,35,40,15,15,0,120,95,130,385,50,90,5,15,15,65,20,10,20,20,780,0,0,150,30,5,95,5,0,90,65,0,175,170,0,25,60,0,55,25,5,85,0,0,245,0,0,0,0,0,5,"1,040",260,5,90,50,175,5,0,"1,780",0,15,5,5,30,10,5,25,30,0,30,5,0,75,15,5,60,5,10,70,10,40,0,555,0,25,70,15,5,10,65,20,90,130,0,295,600,0,0,210,25,65,"1,260",45,15,5,60,45,10,95,"3,650",5,0,0,5,0,210,25 -578,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Hindi,"7,845",125,105,5,40,70,20,110,45,15,5,25,210,15,30,0,10,5,20,35,10,15,10,30,140,70,15,25,10,15,35,110,100,45,50,25,35,10,45,35,15,35,25,260,15,5,35,35,5,170,25,10,50,35,5,80,85,5,95,125,15,55,35,20,165,0,5,115,45,10,10,0,5,15,235,45,10,50,55,80,40,10,345,15,110,35,65,20,65,5,160,60,5,20,10,0,55,15,5,30,25,20,55,25,20,10,190,0,10,45,30,5,15,30,15,105,105,5,100,160,0,10,80,230,65,535,35,15,5,65,145,35,50,505,15,0,10,10,5,195,25 -579,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kashmiri,10,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,5,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,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,5,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 -580,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Konkani,160,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,10,5,0,0,0,0,0,0,5,0,0,5,0,0,0,5,0,0,5,0,5,0,0,5,0,0,15,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,5,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0 -581,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Marathi,775,0,0,0,0,10,0,10,5,5,0,0,15,0,5,0,0,0,5,0,0,0,10,5,35,0,0,0,5,0,0,25,15,0,0,0,0,0,10,0,5,10,5,5,0,0,0,0,0,40,10,0,15,15,0,0,0,5,15,10,0,0,0,0,0,0,5,10,5,5,0,5,0,0,10,5,0,0,5,0,5,0,15,5,20,0,5,0,5,0,25,0,0,0,5,0,0,0,0,5,0,0,0,0,0,10,25,0,0,0,10,0,0,10,0,15,20,0,5,5,0,0,0,25,10,15,0,0,0,10,40,0,25,55,5,0,0,5,5,0,0 -582,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Nepali,"1,705",5,5,0,0,0,0,25,10,0,0,0,40,5,0,0,0,0,5,5,0,0,0,0,5,80,0,10,0,0,0,0,20,0,20,5,0,0,80,0,10,0,10,0,0,0,0,5,0,5,5,0,5,5,5,5,10,0,75,45,10,5,25,0,10,0,0,15,0,0,0,0,0,5,10,5,0,0,15,10,0,0,5,0,15,0,0,20,5,0,395,20,0,10,0,5,10,0,0,0,0,25,10,0,5,0,10,0,0,35,45,5,0,0,0,5,155,0,5,15,0,0,10,0,150,10,25,0,5,50,0,5,10,20,5,0,0,0,0,10,5 -583,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Oriya (Odia),145,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,15,5,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,10,0,0,5,0,0,0,0,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,10,0,5,0,0,0,0,0,0,0,5,0,10,0,5,0,0,0,0,5,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0 -584,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Punjabi (Panjabi),"12,075",65,75,10,10,10,15,20,5,5,5,0,90,15,65,15,10,5,0,15,0,0,5,35,25,95,10,20,20,20,30,60,65,105,45,30,50,10,35,40,0,30,10,50,0,10,105,75,5,25,20,5,75,25,30,720,505,0,25,50,20,20,50,5,180,0,10,70,0,5,0,5,0,0,415,55,0,80,35,60,30,40,"1,965",5,5,0,0,10,20,5,30,30,5,25,15,5,30,40,0,30,5,15,75,35,0,0,325,0,15,40,15,40,10,30,10,30,40,0,535,215,0,0,25,45,70,"3,435",5,25,30,65,20,10,145,295,20,10,10,0,5,175,60 -585,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Sindhi,"1,130",10,15,0,0,55,0,0,5,5,5,0,15,5,5,0,0,5,0,5,0,0,0,5,0,10,0,10,0,0,0,20,10,10,5,5,0,0,20,0,0,0,0,125,0,0,0,0,5,15,5,0,0,15,0,0,0,0,10,0,0,0,10,0,20,0,0,55,5,0,0,0,0,0,10,0,0,5,5,5,0,0,5,0,5,0,0,5,0,0,0,5,0,25,0,0,10,0,0,5,0,0,0,0,0,0,20,0,0,5,0,0,0,10,0,15,85,0,0,135,0,0,145,15,5,10,20,0,0,20,10,0,15,25,0,0,0,5,0,5,0 -586,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Sinhala (Sinhalese),"1,550",20,30,0,5,0,0,10,0,5,5,0,50,0,5,0,0,0,15,15,5,0,0,20,0,25,0,0,0,0,0,20,20,5,20,0,0,5,30,0,0,5,20,35,10,0,5,5,0,20,0,5,40,25,0,5,0,0,15,5,10,5,40,0,25,0,0,65,0,0,0,5,5,0,60,5,0,30,5,50,5,5,15,0,5,5,0,0,0,0,5,15,5,0,0,5,45,0,0,15,15,5,15,0,5,0,55,0,0,25,5,0,15,15,5,35,10,0,5,10,0,0,20,10,20,60,0,10,0,30,5,0,65,110,0,0,0,0,5,65,0 -587,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Urdu,"23,625",220,310,5,25,130,10,100,35,35,5,20,685,55,70,50,5,0,30,85,15,10,0,95,80,540,10,75,0,45,85,120,470,100,60,35,225,15,190,95,10,90,115,"1,015",5,0,45,210,15,235,45,25,155,65,25,830,810,10,170,190,10,50,160,30,680,0,5,290,15,0,10,10,0,10,"1,380",30,10,100,35,295,50,20,625,5,30,5,35,50,20,5,220,250,10,200,65,10,375,35,0,80,10,100,140,70,15,25,660,0,15,570,20,55,40,80,25,445,430,10,175,"3,610",0,10,250,170,305,415,45,30,5,270,110,25,295,"1,285",45,10,0,10,10,320,30 -588,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Iranian languages,"37,275",90,135,5,175,590,190,390,"1,750",745,235,5,555,60,90,55,45,220,30,60,25,5,40,65,295,225,95,130,65,15,55,"1,720",430,30,175,15,70,40,295,150,145,15,95,"1,330",95,40,160,35,45,860,105,65,100,445,25,70,40,20,75,220,0,5,150,75,275,10,15,435,700,110,120,80,15,25,290,25,25,60,190,165,110,35,320,155,720,15,"1,755","1,480",150,5,205,280,15,250,25,10,950,30,15,280,35,105,75,25,5,120,295,15,20,430,55,85,765,55,40,290,170,15,80,"1,640",10,25,400,570,270,140,580,60,10,235,"4,810","1,375",55,920,15,20,10,90,105,270,40 -589,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kurdish,905,5,0,0,5,15,30,5,10,5,5,0,5,0,0,0,10,0,0,10,0,0,0,0,0,5,15,20,5,0,0,85,20,5,50,5,10,10,5,5,5,0,5,10,10,5,0,5,0,35,0,0,0,0,0,0,0,0,0,5,0,0,5,5,0,0,0,35,0,0,0,0,0,5,10,15,0,0,10,0,0,0,10,0,0,0,20,15,0,0,5,5,5,5,5,0,70,5,0,0,0,5,0,0,0,0,5,0,0,5,0,0,0,5,5,5,10,0,0,35,0,0,40,5,5,5,15,0,0,30,20,0,0,20,0,0,0,0,0,20,10 -590,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Pashto,"2,995",35,15,0,0,0,0,0,15,10,5,0,175,5,5,35,0,0,5,0,0,0,0,0,0,25,0,5,0,0,25,25,70,5,15,5,0,5,50,0,25,0,5,325,5,0,35,10,0,30,0,0,35,0,0,0,15,0,20,20,0,0,20,10,20,0,0,25,5,0,0,0,0,0,95,0,0,5,0,45,15,0,80,5,5,0,0,5,5,0,35,45,0,30,5,0,30,0,0,5,0,45,15,10,0,0,40,0,0,80,0,20,0,10,0,40,25,0,10,815,0,5,20,0,30,15,15,0,0,40,5,0,5,205,0,0,0,0,0,25,5 -591,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Persian (Farsi),"33,375",55,115,5,175,570,165,380,"1,735",730,225,5,365,60,95,20,30,215,35,50,30,5,40,70,310,190,90,105,55,15,35,"1,615",325,25,105,15,60,25,250,145,115,25,95,"1,000",80,45,130,25,35,800,110,60,60,445,25,65,20,15,60,195,0,0,125,65,255,10,20,365,685,115,120,85,20,30,185,10,25,50,185,115,95,35,220,145,720,10,"1,735","1,475",150,5,165,245,20,215,20,15,830,30,10,270,35,55,55,20,10,120,235,5,20,350,60,60,760,35,40,235,135,15,70,795,10,20,345,565,235,120,545,65,10,170,"4,780","1,365",50,715,5,20,5,85,105,225,25 -592,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Indo-Iranian languages, n.i.e.",385,0,0,0,0,0,5,0,10,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,10,15,0,0,5,10,0,15,0,0,0,0,20,0,0,0,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,5,0,0,15,0,0,5,0,0,0,0,10,0,0,0,5,10,0,0,10,0,5,0,0,5,5,10,0,0,55,0,0,0,5,0,0,20,0,0,10,5,10,5,10,0,0,0,0,0,10,0 -593,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Italic (Romance) languages,"108,115",155,300,465,680,570,810,455,550,220,320,860,390,195,"1,545",75,"1,775",90,180,"2,360",155,"2,520",165,155,545,500,540,135,"3,170",320,345,845,260,"4,785","5,130","1,470",255,925,350,700,735,690,425,355,400,125,"4,160",155,110,380,555,385,145,275,925,"1,655","1,890",560,170,"1,640",640,"2,955",290,370,"1,310",90,185,625,370,160,120,145,"1,775",210,310,"1,730",205,60,"1,140",170,260,"1,455",985,270,935,245,315,615,860,105,400,145,"2,860",235,125,"1,145","1,275","1,300",85,590,250,140,735,"3,355",370,280,270,115,"1,395",245,410,240,460,165,780,335,315,145,730,330,"1,840",290,375,"1,085",420,"1,085",625,"1,420","2,185",680,850,325,"1,300",605,150,170,915,255,215,"2,030","2,105" -594,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Catalan,70,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,5,0,15,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0 -595,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Japanese,"3,300",25,25,0,90,55,5,200,80,10,15,0,30,15,10,15,5,10,20,0,25,0,5,5,65,35,10,10,15,35,30,45,5,75,5,10,20,15,15,5,10,15,5,35,10,15,0,20,10,30,20,20,10,45,0,5,0,25,10,75,20,15,20,50,5,15,0,30,30,30,15,20,15,5,10,0,10,15,45,10,35,5,5,45,70,5,15,35,40,10,15,10,25,40,10,35,50,0,15,20,15,10,0,0,15,25,0,10,0,10,5,35,50,20,10,15,25,10,0,5,35,30,25,145,15,15,5,5,5,10,335,70,5,35,30,20,10,20,20,5,20 -596,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Italian,"27,130",45,165,210,200,20,315,40,20,50,85,160,95,65,590,30,445,0,10,445,15,360,20,50,55,195,250,50,890,235,190,15,55,545,"2,295",80,50,195,110,190,185,155,50,10,35,10,"1,875",50,5,10,25,35,75,5,375,"1,145",615,85,55,315,55,365,140,15,480,25,5,280,10,10,15,15,40,10,30,995,35,10,190,25,25,75,350,5,30,20,125,235,35,35,5,60,870,45,45,365,60,590,15,335,50,5,145,265,10,15,60,25,670,65,25,0,30,95,260,125,15,5,275,5,205,35,70,65,125,320,35,190,295,230,60,90,545,140,60,60,235,20,15,995,"1,165" -597,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Portuguese,"33,425",25,30,170,185,45,105,110,65,15,30,515,50,35,85,30,800,30,20,820,35,"1,700",15,15,125,65,65,20,"1,730",30,55,40,30,"3,525",585,"1,100",60,210,65,30,170,230,75,15,60,35,190,15,10,60,200,90,20,25,215,75,55,145,25,465,345,"1,990",25,190,175,30,40,45,80,30,15,25,"1,595",55,35,340,60,10,325,20,40,645,95,55,225,80,40,55,375,10,115,20,"1,100",35,20,640,60,230,15,70,60,15,50,"1,770",220,65,50,25,285,20,130,110,30,10,230,25,65,30,50,55,"1,550",170,15,225,30,70,35,480,"1,480",55,200,50,225,90,35,15,455,55,35,115,510 -598,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Romanian,"5,915",0,20,20,25,255,50,20,165,85,45,5,35,20,10,0,65,5,30,5,20,0,20,45,40,65,30,10,0,0,20,355,55,15,50,5,15,60,30,15,55,40,35,85,70,10,15,10,50,90,60,50,15,125,55,10,15,15,20,100,5,10,20,10,45,10,10,100,70,20,10,10,0,10,10,0,35,0,70,35,15,5,15,35,145,10,35,100,25,5,15,10,15,30,0,0,475,20,0,95,60,0,25,20,5,35,35,5,5,10,15,0,145,5,65,70,130,15,15,50,10,5,45,55,60,5,200,20,5,125,110,55,60,65,10,25,20,15,35,40,40 -599,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Spanish,"41,530",90,75,75,255,225,330,275,295,65,165,170,220,75,870,25,485,55,125,"1,080",95,450,120,50,335,200,195,55,555,50,85,430,120,715,"2,180",280,125,475,155,470,315,260,255,245,240,70,"2,075",90,40,220,270,220,40,125,275,425,"1,205",285,70,770,225,580,110,145,625,25,120,190,215,100,60,90,135,125,220,380,85,40,550,100,180,725,540,170,535,150,105,230,395,65,265,60,875,140,50,135,665,465,45,95,70,120,510,"1,290",105,170,130,55,440,135,250,120,260,45,230,135,105,80,375,235,75,75,235,725,210,675,375,725,405,270,475,135,480,300,55,80,210,155,125,885,395 -600,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Italic (Romance) languages, n.i.e.",45,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,5,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,5,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,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5 -601,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kartvelian languages,640,0,0,0,0,0,45,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,5,0,0,0,5,0,0,0,0,5,0,0,20,0,10,20,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,5,10,0,0,0,0,5,0,5,15,5,5,0,0,0,0,0,0,0,10,0,5,0,5,0,0,0,5,120,0,0,0,0,0,0,0,0,15,0,0,10,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,250,0,0,0,5,30,0,0,0,0,0,5,0,5,0 -602,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Georgian,640,0,0,0,0,0,50,0,0,0,5,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,5,0,0,15,0,10,20,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,5,10,0,0,0,0,10,0,0,20,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5,10,120,0,0,5,0,0,0,0,0,10,0,0,10,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,260,0,0,0,5,30,0,0,5,0,0,0,0,0,0 -603,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Korean,"23,625",35,70,25,235,280,200,720,"1,090",470,80,5,115,5,15,15,50,90,20,30,65,10,5,20,325,55,155,25,25,20,35,580,40,150,65,50,55,140,25,35,70,265,155,165,50,20,10,20,15,280,175,95,50,370,60,15,65,75,15,"1,145",20,15,35,140,140,30,15,165,570,90,65,35,40,15,50,10,115,10,215,45,95,85,45,80,430,60,"1,290","1,600",90,5,190,10,60,40,10,45,330,25,20,135,180,30,15,30,15,90,30,10,0,20,45,25,475,65,85,145,115,15,15,60,15,75,65,420,25,55,630,40,10,110,"3,440","1,295",240,85,20,15,60,105,75,240,45 -604,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Mongolic languages,175,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,20,5,0,0,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,5,0,0,5,0,0,5,0,0,0,15,0,0,0,0,0,0,5,0,10,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,10,5,0,0,0,0,0,0,0,0,0 -605,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Mongolian,175,0,5,0,0,0,0,0,5,0,0,0,0,0,5,0,10,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,5,0,0,5,0,0,0,0,5,0,10,0,20,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,5,0,0,5,0,0,0,0,0,0,20,0,0,0,0,0,0,5,0,10,0,0,5,0,15,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,5,0,0,0,0,5,5,0,0,0,10,0,0,5,0,0,0,0,0,0,0 -606,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Niger-Congo languages,"5,675",0,15,0,10,10,10,5,25,10,0,20,25,10,510,20,10,0,5,195,10,5,5,0,40,35,5,10,5,5,0,15,20,25,175,10,15,20,65,90,75,5,10,55,5,0,310,5,0,10,10,0,5,15,40,55,120,0,15,65,15,15,30,10,95,0,20,50,5,0,0,0,5,10,90,15,0,0,35,30,95,110,630,15,10,60,0,5,10,0,50,35,15,35,0,0,65,55,0,0,0,45,55,85,25,0,30,0,145,55,15,35,10,10,5,15,25,5,100,40,0,0,30,40,100,270,15,170,20,25,5,0,145,95,0,0,0,5,0,180,5 -607,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Akan (Twi),"2,325",0,10,0,0,0,0,0,5,5,0,10,0,0,300,0,0,0,0,70,0,0,0,5,0,5,0,5,0,0,5,5,10,0,105,5,0,10,5,50,30,10,5,5,5,0,175,5,0,5,0,0,0,15,25,35,45,0,5,30,0,0,10,5,35,0,5,10,0,0,0,0,0,0,25,10,0,5,10,10,20,45,380,0,10,10,0,0,0,0,10,0,15,0,0,0,10,40,0,0,0,0,30,15,0,0,15,0,90,15,0,0,0,0,0,5,5,0,65,0,0,0,0,5,50,155,0,55,5,5,10,5,75,15,0,0,5,0,0,65,5 -608,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Bamanankan,20,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,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,5,0,0,0,0,0,0,0,0,0,5,5,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,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0 -609,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Edo,220,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,10,5,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,10,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,20,0,5,0,0,0,0,10,0,0,0,0,0,0,15,0 -610,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ewe,40,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,5,5,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,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0 -611,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Fulah (Pular, Pulaar, Fulfulde)",60,0,0,0,0,5,0,5,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 -612,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ga,85,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,20,0,5,0,5,0,0,0,5,0,0,0,0,0,0,0 -613,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Ganda,115,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,15,0,5,0,0,0,0,0,0,10,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,5,0,0,5,5,0,0,5,0,0,0,0,0,0,0,0 -614,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Igbo,250,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,15,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,5,0,0,5,45,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,0,0,0,0,0,5,0,0,5,0,0,0,0,5,0,25,0,10,0,0,0,0,10,0,0,0,0,0,0,20,0 -615,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Lingala,75,0,0,0,0,0,0,0,0,0,0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,5,0,0,0,0,5,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0 -616,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $70,000 to $79,999","89,645",655,570,530,"1,290","1,220",535,"1,090",870,455,755,140,850,885,245,260,415,280,415,350,485,340,450,625,"1,650",830,550,550,540,370,645,805,535,"1,315",910,465,770,540,435,215,545,855,440,380,420,420,460,580,490,540,955,"1,100",425,565,385,225,285,475,345,"1,885",625,330,385,500,555,375,270,955,600,510,530,600,680,385,880,240,475,495,"1,600",360,875,280,460,630,"1,535",395,475,540,"2,150",425,475,240,635,545,365,565,"1,110",395,280,455,445,265,310,680,515,940,"1,500",445,150,330,570,"1,060",605,555,940,740,355,910,255,345,550,240,480,"4,240",670,720,550,420,365,805,"1,800",605,790,"1,230",540,400,505,520,585,585,380 -617,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Rundi (Kirundi),110,0,0,0,5,5,0,0,0,0,0,0,0,0,0,5,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,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,5,0,0,5,0,5,0,0,0,0,5,0,0,0,0,0,10,0,5,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0 -618,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Kinyarwanda (Rwanda),80,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 -619,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Shona,125,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,5,0,0,10,0,0,5,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,5,0,0,5,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,10,0,5,0,0,0,0,15,0,0,5,5,0,0,0,0,0,0,0 -620,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Swahili,995,0,5,0,0,0,0,0,20,5,0,0,20,5,85,10,0,0,0,15,5,0,0,0,10,10,0,0,0,0,0,0,0,0,15,0,0,0,15,10,30,0,0,15,0,0,40,5,0,5,10,0,0,5,10,5,5,0,10,5,0,5,5,0,35,0,5,15,0,0,0,0,0,0,10,0,0,0,10,15,35,10,40,5,0,10,0,0,10,0,10,10,0,5,0,0,15,0,0,0,0,25,10,30,5,5,0,0,15,10,5,10,0,0,10,0,10,0,5,20,0,0,10,10,10,20,0,15,5,5,0,0,5,45,0,0,0,0,5,20,0 -621,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Wolof,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,5,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,5,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,5,0 -622,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Yoruba,565,0,0,0,5,0,0,0,0,0,0,5,0,0,55,0,0,0,0,5,0,5,0,0,5,5,0,0,0,0,0,5,0,10,25,0,0,10,0,10,0,0,0,0,0,0,30,0,0,0,0,0,0,5,0,5,20,0,0,0,0,0,0,5,10,0,0,5,0,0,0,0,0,0,20,0,0,0,0,0,0,35,55,10,0,0,0,0,0,0,0,10,0,5,0,0,5,0,0,0,0,0,5,5,0,0,5,0,5,0,0,0,0,0,5,0,0,0,10,0,5,0,0,10,10,35,5,25,5,0,0,0,25,5,0,0,0,0,0,45,0 -623,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Niger-Congo languages, n.i.e.",570,0,0,0,0,0,0,5,0,0,0,0,0,0,15,0,5,0,0,65,0,0,0,0,10,5,0,0,0,0,0,0,0,0,15,0,0,0,25,5,15,0,0,10,0,0,10,0,0,0,0,0,0,0,5,5,10,0,5,0,5,0,10,0,10,0,0,0,5,0,0,0,0,0,5,0,0,0,0,5,5,20,30,0,0,5,0,0,5,0,5,5,0,5,0,0,10,5,0,0,0,10,0,10,20,0,0,0,20,10,15,5,0,0,5,5,5,0,5,5,0,0,0,5,10,20,5,40,5,5,0,0,5,20,0,0,0,5,0,10,0 -624,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Nilo-Saharan languages,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -625,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Dinka,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -626,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Nilo-Saharan languages, n.i.e.",50,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,5,0,0,0,0,0,0,0,0,0,0,5,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,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0 -627,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Sign languages,885,5,10,5,5,5,10,5,5,5,5,5,5,5,10,0,5,40,5,5,5,0,0,5,10,10,0,0,10,0,5,0,15,15,10,10,5,5,20,0,20,5,10,0,0,0,20,10,0,5,5,10,0,5,5,5,0,5,0,15,10,0,5,10,10,0,5,30,0,0,10,0,0,0,25,5,0,10,15,5,10,5,5,0,20,5,5,0,10,0,5,5,5,5,5,5,5,5,0,0,0,5,0,15,0,5,30,0,0,15,5,5,15,0,20,15,5,0,5,5,5,0,10,5,10,5,5,0,10,5,10,5,5,25,10,0,0,5,5,25,5 -628,Language,Language spoken most often at home,Census Profile 98-316-X2016001, American Sign Language,315,5,0,0,0,0,0,5,0,0,5,10,0,0,10,0,5,25,0,5,0,0,0,0,0,5,0,5,0,0,0,5,10,0,0,0,5,0,0,0,5,0,0,0,0,0,5,0,0,5,0,5,0,0,5,0,0,0,0,5,0,0,5,0,0,0,0,15,0,0,0,0,0,0,10,0,0,0,5,5,10,0,0,5,5,0,0,0,0,0,5,5,0,0,5,0,5,0,0,5,0,0,0,5,0,0,10,0,0,0,5,5,5,0,5,0,10,0,0,0,0,0,5,0,10,10,0,0,10,5,10,0,0,10,5,0,5,0,0,5,0 -629,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Quebec Sign Language,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -630,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Sign languages, n.i.e",570,5,5,0,0,5,5,0,10,5,5,5,10,0,0,0,0,15,0,0,0,5,0,0,0,10,0,0,0,0,5,5,5,15,10,5,5,5,15,0,10,5,5,0,0,0,10,5,0,0,0,10,5,0,5,5,0,0,0,5,5,0,0,5,5,0,10,10,0,0,5,0,5,5,15,0,0,5,15,0,0,5,5,0,5,10,5,0,5,0,5,5,0,10,0,0,5,5,0,5,0,0,0,15,0,5,15,0,5,5,5,5,5,15,5,5,10,0,5,5,5,0,0,5,0,5,5,0,5,10,0,5,5,10,0,0,5,0,5,15,10 -631,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Sino-Tibetan languages,"185,430","12,480","8,145",220,790,"2,225",290,"4,115","3,500","2,815",325,40,"3,135",435,610,550,175,665,210,325,320,105,150,250,"1,580","1,320",255,445,255,370,655,"4,580","1,860","1,595",535,455,510,155,560,85,185,410,190,720,105,210,975,"1,230",125,"1,925",255,195,505,"5,705",25,75,200,85,445,940,420,165,770,"4,065",205,40,40,"12,255",840,245,210,145,650,145,"2,285",85,175,"14,080","1,055",460,520,185,200,205,530,225,"3,020","1,640",720,620,535,465,400,260,240,520,"1,460",170,110,"3,940",200,835,75,350,500,330,"1,020",70,80,220,"1,705","3,715","2,175","13,255",400,"6,295",355,80,80,195,"2,050",460,430,"3,260",425,395,445,145,190,"1,045","10,510","2,220",285,"2,545",420,380,420,175,115,"1,175",505 -632,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Chinese languages,"181,250","12,470","8,130",115,780,"2,225",285,"4,110","3,495","2,805",330,40,"3,120",430,485,550,185,660,190,325,320,70,135,250,"1,580","1,280",230,430,260,360,645,"4,570","1,855","1,480",510,420,515,145,555,70,185,380,165,705,105,210,955,"1,210",125,"1,915",220,185,495,"5,690",20,70,190,80,420,785,310,150,755,"4,050",195,40,35,"12,245",840,240,215,145,640,80,"2,260",80,160,"14,070",610,455,505,180,170,205,525,120,"3,020","1,630",720,620,500,470,395,250,210,515,"1,460",170,105,"3,940",200,835,70,325,250,330,"1,015",70,80,220,290,"3,700","2,175","13,255",205,"6,295",345,70,75,195,"2,050",460,420,"3,250",420,370,430,140,150,"1,045","10,500","2,225",245,"2,530",415,365,415,175,125,"1,140",500 -633,Language,Knowledge of languages,Census Profile 98-316-X2016001, Naskapi,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -634,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Cantonese,"83,405","8,255","4,115",60,300,785,55,640,"1,400","1,105",105,20,"1,275",280,345,390,80,215,110,235,160,20,45,95,340,590,85,160,120,255,475,"1,465",945,985,360,265,310,50,255,35,75,160,55,310,20,55,755,975,50,445,60,55,245,"2,300",10,45,160,55,225,215,160,110,475,"1,860",100,30,5,"5,465",245,85,45,75,415,15,"1,430",60,40,"8,640",215,160,230,130,115,90,125,35,"1,220",420,285,375,115,335,235,135,145,355,500,120,80,960,45,300,35,245,150,80,625,40,60,110,165,"2,195",705,"6,560",90,"2,905",180,25,40,100,975,150,185,870,190,170,160,90,105,380,"3,210",590,95,"1,195",295,220,310,45,30,475,310 -635,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Hakka,"1,255",150,55,0,0,5,0,0,5,0,0,0,35,0,10,0,0,0,0,0,5,0,0,0,5,15,0,5,0,0,0,10,50,0,0,0,0,0,25,0,5,0,0,0,0,0,10,5,0,10,0,0,15,10,0,0,0,0,5,5,5,0,20,10,0,0,0,105,10,0,0,0,0,0,45,5,0,205,0,0,0,5,10,5,0,0,5,0,5,5,10,15,5,10,0,5,5,0,0,15,0,10,0,0,5,0,55,0,0,5,0,20,0,100,0,50,5,0,0,0,5,0,5,0,5,5,0,0,0,10,10,15,5,10,5,10,5,0,0,5,5 -636,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Mandarin,"87,760","3,705","3,580",45,430,"1,365",210,"3,245","1,905","1,565",200,10,"1,685",120,55,125,80,395,45,50,135,35,90,140,"1,090",615,135,250,120,105,125,"2,955",770,435,75,150,155,85,220,20,105,190,115,365,85,140,85,170,60,"1,375",140,105,210,"3,190",10,5,25,25,165,510,120,30,200,"1,965",80,10,25,"6,260",540,135,150,70,165,60,685,10,110,"4,795",360,275,245,30,40,95,380,85,"1,630","1,085",390,215,320,95,155,80,45,145,895,40,25,"2,845",140,465,25,55,70,230,285,15,5,105,100,"1,215","1,395","6,120",105,"3,095",140,45,25,70,995,255,210,"2,175",200,165,255,40,40,600,"6,730","1,425",120,"1,205",80,115,80,120,80,525,170 -637,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Min Dong,155,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,15,0,0,0,20,0,0,0,0,0,0,5,0,0,15,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,10,0,10,5,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0 -638,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Min Nan (Chaochow, Teochow, Fukien, Taiwanese)","2,800",105,85,10,15,20,5,30,50,35,10,5,15,5,45,10,5,15,5,30,10,5,5,5,10,25,0,5,5,5,10,50,10,30,60,5,5,0,10,0,0,5,5,5,0,5,95,25,0,0,5,5,10,45,0,10,10,0,5,5,10,5,0,65,5,0,0,135,10,10,0,5,30,5,10,0,5,190,15,5,0,5,0,0,0,5,50,70,10,15,15,5,5,5,0,15,15,5,0,40,5,5,0,25,10,10,30,15,10,5,15,145,20,180,0,60,0,0,5,5,25,5,10,50,10,15,5,10,5,5,175,50,15,10,15,0,10,5,5,85,10 -639,Language,Knowledge of languages,Census Profile 98-316-X2016001, Northern East Cree,10,0,0,0,0,0,0,10,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,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,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,0,0,0,0,0,0,0 -640,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Wu (Shanghainese),"1,470",60,55,0,0,15,5,30,25,40,0,0,25,5,0,0,5,5,5,0,0,0,5,5,15,10,10,5,5,5,5,35,15,10,5,0,0,5,15,0,5,10,0,15,5,5,0,5,0,25,0,5,5,50,0,0,0,0,5,25,0,0,10,30,5,0,5,105,10,0,5,5,10,0,25,0,5,55,10,5,5,0,0,0,5,0,25,20,10,0,0,5,5,0,0,0,5,0,0,10,5,0,0,0,0,5,10,0,0,0,0,5,15,110,15,60,5,0,0,5,5,5,10,50,0,0,0,5,0,25,85,25,5,35,0,5,5,0,0,15,0 -641,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Chinese, n.o.s.","4,350",175,235,0,40,45,15,160,100,55,10,0,75,10,45,20,15,30,15,5,15,0,0,5,100,25,5,10,0,5,15,70,60,30,15,5,25,5,25,20,5,10,0,15,0,5,25,25,10,80,15,5,5,90,5,0,5,5,15,30,15,0,25,115,5,0,0,160,15,10,0,0,15,5,50,5,5,165,30,15,20,5,0,5,10,0,85,45,25,10,45,15,10,20,10,15,50,5,0,50,5,40,5,10,10,20,25,0,5,5,15,105,25,165,5,125,20,5,0,20,20,50,5,125,25,10,10,5,5,25,275,120,5,70,20,15,5,5,0,45,10 -642,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Chinese languages, n.i.e.",55,5,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,10,0,0,0,0,5,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,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,0,5,0,0,0,0,0,0,0,0,0,0 -643,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tibeto-Burman languages,"4,175",5,15,105,0,0,10,5,0,5,5,5,20,5,130,0,0,0,20,0,5,45,5,0,10,40,25,5,5,10,15,5,10,105,5,30,10,10,10,10,5,20,20,0,0,0,20,15,0,15,30,0,5,5,0,5,10,0,20,160,110,10,30,15,20,5,0,20,0,0,0,0,0,60,5,0,15,0,430,10,15,10,35,5,0,105,5,5,5,0,40,0,0,0,30,0,5,0,5,0,0,10,5,20,260,0,0,0,0,5,"1,405",5,5,0,195,0,15,5,0,5,5,0,15,5,5,25,5,0,45,10,5,0,25,15,0,15,5,0,0,35,0 -644,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Burmese,365,0,10,5,0,0,0,5,0,5,0,0,5,0,5,5,0,0,15,0,0,5,0,0,0,5,5,0,0,0,10,0,0,30,0,0,5,0,10,10,0,0,0,0,0,0,5,10,0,5,5,0,5,5,0,0,5,0,10,15,0,0,5,5,5,0,0,10,0,5,0,0,0,0,5,0,0,0,5,0,0,0,10,0,5,0,5,0,0,0,5,0,0,0,15,0,0,0,0,5,0,5,0,0,20,0,0,0,0,0,0,0,0,5,5,0,0,0,0,5,0,0,0,5,0,15,5,0,0,0,0,0,0,5,0,5,0,0,0,20,0 -645,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Karenic languages,210,5,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,5,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,0,0,0,0 -646,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tibetan,"3,525",0,0,105,0,0,5,0,0,0,0,0,20,5,0,0,0,0,10,0,5,35,10,0,5,35,30,0,5,5,0,10,5,40,0,25,5,10,0,5,5,20,15,5,0,5,0,5,0,10,20,0,0,0,0,0,0,0,10,130,115,10,20,10,15,5,0,15,0,0,0,0,5,65,5,5,10,0,425,10,10,10,5,5,0,100,0,5,5,5,35,0,0,5,0,0,5,0,5,0,0,0,5,25,235,0,0,0,0,0,"1,400",10,0,0,190,0,20,5,5,0,0,0,15,10,5,5,0,0,45,0,5,0,35,0,0,5,5,0,0,10,0 -647,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Tibeto-Burman languages, n.i.e.",80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,5,0,0,0,20,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,5,0 -648,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Tai-Kadai languages,715,0,5,0,0,0,0,20,5,0,0,10,0,5,70,0,10,0,0,10,5,0,0,0,10,5,0,0,0,0,5,10,5,5,35,0,10,0,5,5,5,0,0,5,5,0,55,5,0,0,15,0,5,0,0,0,15,0,10,10,5,5,0,20,5,0,0,10,5,0,0,0,5,0,15,0,0,0,20,5,0,0,40,5,5,0,0,5,5,0,0,0,15,5,0,5,0,0,5,0,0,5,0,0,0,0,0,0,5,0,0,10,0,5,10,5,10,5,5,0,5,0,0,5,10,15,5,5,0,10,30,5,0,5,5,5,5,0,5,10,15 -649,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Lao,315,0,0,0,0,0,0,0,0,0,0,15,0,0,65,0,5,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,5,0,0,5,5,0,0,0,0,0,45,0,0,0,0,5,0,5,0,0,15,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,5,0,0,0,25,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,5,0,0,0,0,0,0,5,0,0,5,10 -650,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Thai,395,0,0,0,5,5,0,20,5,0,0,0,0,5,5,0,10,0,0,5,5,0,0,0,15,10,0,0,0,0,5,5,0,0,5,0,5,0,5,0,5,0,0,5,5,0,10,0,0,0,10,0,5,0,0,0,0,0,0,15,5,0,0,15,0,0,0,5,0,0,0,0,5,0,5,0,0,0,10,5,5,0,15,5,5,0,0,0,0,0,0,0,5,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,5,10,5,10,5,0,0,5,5,0,15,0,5,5,5,0,0,15,5,0,5,0,5,0,0,0,10,0 -651,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Tai-Kadai languages, n.i.e",5,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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 -652,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Turkic languages,"6,340",5,5,0,50,90,210,105,75,35,45,25,60,0,105,5,60,35,75,95,5,70,15,5,55,40,55,25,15,0,20,145,45,40,335,0,35,20,5,5,30,15,105,240,40,5,65,10,5,35,60,5,5,35,15,30,45,5,30,135,5,25,20,5,70,5,5,50,20,10,20,15,5,0,35,25,20,10,55,10,10,80,50,15,145,10,40,125,50,5,45,25,70,20,20,0,120,5,10,20,5,10,25,65,0,25,0,5,10,0,20,20,115,20,45,40,65,10,15,190,5,5,105,100,15,65,165,15,10,150,130,40,45,35,15,5,10,10,10,475,30 -653,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Azerbaijani,360,0,0,0,5,0,15,10,0,10,0,0,0,0,0,0,5,5,0,0,0,0,0,0,5,0,10,0,0,0,0,30,0,0,0,0,0,0,0,0,5,0,0,5,0,0,5,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,5,0,5,45,0,0,10,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,5,0,0,0,0,5,5,0,0,0,50,0,0,0,40,10,5,0,5,0,0,0,0,0,0 -654,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, Aboriginal,390,0,5,0,20,5,5,5,0,0,0,0,0,0,5,5,5,0,0,0,15,5,0,0,10,5,0,0,5,5,5,0,0,15,0,10,5,0,0,0,5,0,0,5,0,0,0,5,0,0,5,10,0,0,0,0,0,0,0,10,5,0,0,5,0,0,5,0,0,0,0,0,5,0,0,0,0,0,0,0,15,5,5,5,5,0,0,5,0,0,0,5,10,5,0,10,5,0,5,0,0,0,0,10,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,5,5,0,0,20,15,0,0,0,0,5,0,0,0,0,15,0,5,5,0,0,5 -655,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Turkish,"5,490",5,5,0,55,90,190,95,50,30,30,25,45,5,100,10,45,25,75,85,10,70,10,0,45,30,50,20,15,5,10,105,35,35,330,5,30,25,15,5,20,15,90,165,30,5,75,10,5,20,40,5,5,30,10,35,45,10,20,90,5,25,25,5,60,5,5,45,15,20,25,15,5,0,20,30,15,15,60,10,5,70,45,20,135,15,30,60,45,5,45,10,60,30,20,0,115,5,10,20,0,5,20,65,5,20,0,5,10,10,25,10,105,10,15,40,55,5,15,170,0,5,85,90,10,65,70,10,10,120,90,25,35,45,10,5,15,10,15,470,35 -656,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Uyghur,130,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,10,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,30,0,0,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,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,15,0,0,0,0,0,0,0,0,0,0,0 -657,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Uzbek,265,0,0,0,0,0,0,0,5,0,5,0,10,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,0,15,0,0,5,0,0,0,0,0,0,0,5,20,0,0,0,0,0,0,10,0,0,0,0,5,0,0,0,15,0,0,0,0,0,0,0,5,5,0,0,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,25,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,0,0,0,10,0,0,0,0,0,0,55,0,0,5,0,0,5,0,0,0,0,0,0,5,0 -658,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Turkic languages, n.i.e.",90,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,5,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,0,0,0,5,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,5,0,0,5,0,0,5,5,0,0,0,0,0,0,0,5,0,0,5,0,0,0,0,5,0 -659,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Uralic languages,"6,255",5,5,20,40,115,55,15,50,45,45,35,25,50,140,0,80,15,25,40,15,20,40,10,25,115,90,15,30,15,20,85,40,115,125,40,15,20,40,25,140,55,65,55,90,25,35,0,25,20,80,60,10,30,35,5,20,65,25,80,5,15,10,5,110,10,90,40,50,25,30,40,10,15,30,15,40,10,80,20,15,40,15,35,55,15,25,70,10,10,25,20,70,175,20,20,155,0,5,40,30,5,30,70,245,25,15,15,25,30,155,5,45,5,60,45,15,5,25,75,5,5,45,55,140,50,105,170,30,90,60,55,60,70,15,25,80,30,30,90,60 -660,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Estonian,535,0,0,5,5,30,0,0,5,5,0,0,0,5,0,0,0,5,15,5,5,0,5,5,0,5,0,10,5,0,0,15,0,0,5,5,0,0,0,0,0,0,0,5,0,5,0,0,10,5,10,20,5,0,0,0,0,0,5,10,0,0,5,5,5,0,15,0,0,0,20,5,0,5,0,0,5,0,5,0,0,0,0,25,10,5,5,0,0,5,0,0,5,5,10,5,10,0,0,0,0,0,0,0,0,5,0,0,0,5,0,5,10,0,5,5,0,0,0,5,0,0,10,0,45,0,0,0,5,5,5,5,5,0,0,0,0,0,0,0,0 -661,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Finnish,260,0,0,0,5,5,0,5,5,0,5,0,0,5,0,0,0,0,0,0,0,0,0,5,0,5,0,0,0,5,0,10,10,0,0,0,0,0,10,0,0,0,0,0,5,0,0,0,5,0,5,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,15,5,0,0,5,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,10,0,0,0,0,5,0,0,10,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,10,0,0,0,0,0,0,0,0,5,5,0,0,0,0,10,5,5,5,5,0,0,0,10,0,5,0 -662,Language,Knowledge of languages,Census Profile 98-316-X2016001, Montagnais (Innu),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -663,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Hungarian,"5,460",5,5,15,30,75,50,10,30,30,45,40,25,45,135,0,80,5,10,35,10,20,30,0,10,105,85,10,20,10,10,65,35,120,130,35,10,20,40,25,145,50,75,50,75,20,45,0,25,20,75,35,5,30,35,5,20,65,30,60,10,20,5,5,105,5,75,30,35,30,5,25,15,5,20,15,40,5,80,10,10,45,25,10,35,15,25,50,5,0,30,20,70,155,5,0,140,5,0,40,30,5,30,55,250,20,10,5,25,35,150,0,30,5,45,40,15,0,25,65,5,0,25,40,75,55,110,170,30,65,50,40,55,65,20,25,70,20,25,85,50 -664,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Uralic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -665,Language,Language spoken most often at home,Census Profile 98-316-X2016001," Other languages, n.i.e.",215,0,0,0,0,0,0,0,5,0,0,0,5,0,5,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,0,0,5,5,0,0,0,0,0,0,10,0,0,0,0,0,0,5,5,0,10,0,0,5,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,5,20,5,0,0,10,0,0,0,0,0,0,0,25,0,0,5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,5,5,0,0,0,0,5,0,0,0,0,0,15,0 -666,Language,Language spoken most often at home,Census Profile 98-316-X2016001, Multiple responses,"245,945","3,035","2,505",810,"1,200","2,425","1,560","1,840","1,950","1,145","1,230",600,"3,635",920,"2,600",435,"2,010",385,"1,040","1,980",500,"1,260",315,915,"1,750","3,045","1,770","1,110","1,190",545,"1,020","3,565","3,735","2,490","4,200",705,"1,055","1,015","3,010",950,"2,390","1,620","1,200","3,665","1,105",325,"3,830",805,455,"2,395","1,195","1,015","1,340","1,695",990,"1,690","1,875",900,"1,835","3,700",865,"1,155","2,130","1,075","2,845",240,485,"4,995","1,230",385,405,435,765,595,"5,870","1,345",640,"2,635","2,225","1,965","1,060","1,345","4,720",665,"1,835",710,"1,625","3,125","1,295",370,"2,575","1,970","1,915","1,465",575,530,"3,665","1,115",310,"1,755",560,"1,200",895,"2,130",660,695,"5,550",350,"1,155","2,165","1,770","1,170","1,360","2,400","1,575","3,420","2,135",385,"1,300","3,655",755,295,"2,185","3,525","2,630","4,450","3,870","1,405","1,105","3,400","5,005","1,515","1,980","7,500",440,400,725,500,455,"3,380","1,555" -667,Language,Language spoken most often at home,Census Profile 98-316-X2016001, English and French,"6,510",30,35,30,90,65,15,80,30,15,35,10,45,50,55,40,30,10,40,55,30,25,35,35,135,60,20,45,25,40,55,55,55,75,110,30,75,20,90,15,35,25,25,40,30,15,50,50,15,55,55,65,30,35,30,25,20,50,30,120,45,15,40,75,75,20,30,70,25,15,35,35,45,35,125,10,25,10,75,35,95,25,65,50,95,20,25,40,115,20,65,65,50,45,25,50,115,20,30,40,20,35,15,55,40,55,125,30,15,55,60,75,30,5,50,65,60,75,10,25,45,20,55,225,80,40,30,45,45,55,65,20,40,120,45,30,40,45,50,30,20 -668,Language,Language spoken most often at home,Census Profile 98-316-X2016001, English and non-official language,"233,300","2,945","2,435",760,"1,060","2,275","1,505","1,720","1,880","1,090","1,175",590,"3,550",845,"2,485",385,"1,935",365,975,"1,875",450,"1,225",270,875,"1,555","2,900","1,725","1,045","1,145",495,925,"3,430","3,585","2,340","4,020",645,950,965,"2,820",925,"2,315","1,560","1,140","3,500","1,045",295,"3,715",735,435,"2,300","1,120",925,"1,275","1,630",935,"1,660","1,820",845,"1,755","3,465",795,"1,130","2,025",965,"2,655",215,430,"4,825","1,170",355,350,400,710,550,"5,600","1,310",610,"2,575","2,070","1,885",920,"1,290","4,560",580,"1,680",675,"1,575","3,035","1,155",330,"2,450","1,845","1,825","1,355",545,465,"3,395","1,070",265,"1,630",525,"1,125",860,"2,045",605,600,"5,305",295,"1,120","2,010","1,680","1,050","1,295","2,350","1,460","3,285","2,020",295,"1,255","3,565",695,265,"2,045","3,195","2,450","4,320","3,775","1,315","1,040","3,230","4,810","1,470","1,875","7,210",380,340,655,425,395,"3,295","1,500" -669,Language,Language spoken most often at home,Census Profile 98-316-X2016001, French and non-official language,"1,355",10,10,0,5,10,5,20,10,5,10,0,10,5,10,5,15,0,5,15,5,10,0,0,20,10,5,5,0,0,10,20,30,20,25,0,5,10,40,0,5,5,5,25,5,0,20,0,0,15,15,10,5,0,5,5,10,5,10,10,0,0,10,5,15,0,5,20,5,0,0,0,5,5,40,5,5,25,10,5,10,5,35,10,15,0,0,5,10,0,30,10,10,25,5,0,45,10,0,15,5,10,5,10,5,20,20,5,5,30,5,20,0,0,15,20,20,0,5,15,0,5,25,30,45,15,10,10,10,20,20,5,15,25,5,15,10,10,5,20,10 -670,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $80,000 to $89,999","69,990",435,435,395,"1,000",960,405,925,675,380,665,95,525,675,145,210,270,280,305,280,410,215,390,530,"1,230",620,435,425,390,315,660,630,360,980,570,340,735,455,275,155,340,635,265,250,330,355,260,470,380,375,840,890,300,440,285,165,190,380,175,"1,445",480,205,260,400,410,325,235,735,490,465,435,575,535,330,530,195,390,365,"1,430",295,720,165,275,565,"1,265",315,390,430,"1,805",390,310,150,510,460,305,405,805,325,265,400,420,205,220,475,485,735,"1,030",375,150,220,405,985,555,445,785,530,240,780,175,270,430,190,330,"3,560",455,535,385,280,230,555,"1,605",515,585,800,465,315,345,415,495,405,320 -671,Language,Language spoken most often at home,Census Profile 98-316-X2016001," English, French and non-official language","4,780",50,20,10,45,80,30,40,35,30,20,0,35,10,40,15,25,15,25,45,10,10,10,5,25,70,20,25,25,5,25,60,50,55,55,20,25,25,55,10,30,30,30,95,30,5,55,15,0,30,25,30,35,30,15,15,25,15,35,110,25,5,55,15,90,0,20,90,35,10,10,5,10,15,125,15,10,25,55,40,35,25,75,30,40,10,25,45,20,5,45,50,30,35,5,10,110,20,15,65,10,30,20,40,5,25,110,10,15,65,15,10,40,45,50,65,40,10,30,45,10,5,60,90,60,50,50,25,10,100,100,25,45,115,5,15,10,20,25,45,25 -672,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001,Other language(s) spoken regularly at home for the total population excluding institutional residents,"2,704,415","28,845","23,735","12,030","29,880","27,475","15,630","25,735","21,250","12,745","23,210","6,375","29,495","21,870","21,565","7,680","14,215","9,240","11,380","17,720","11,295","9,910","10,870","13,345","30,910","26,315","16,425","15,860","14,100","9,605","17,100","26,845","24,395","36,360","35,030","11,735","21,090","15,205","22,575","9,445","22,060","18,530","11,470","21,930","12,675","10,725","30,245","14,390","9,650","15,720","22,095","23,455","12,475","16,920","10,370","12,415","15,545","14,235","13,615","43,415","14,090","11,035","17,110","17,585","21,990","9,275","7,985","43,955","16,165","14,610","15,185","16,695","15,440","10,085","43,770","10,025","10,455","26,260","33,375","17,160","18,865","13,270","32,825","16,770","29,275","11,315","15,550","23,635","30,590","11,700","18,400","13,630","20,970","18,650","9,230","13,805","34,790","10,720","7,755","15,810","11,050","10,685","10,360","22,250","14,895","20,895","46,085","10,065","9,760","16,570","20,900","27,370","17,785","24,305","24,945","27,060","15,495","21,525","10,130","20,855","16,305","7,065","17,205","65,780","26,985","32,990","26,090","17,725","11,100","27,625","50,285","16,895","22,150","53,320","12,450","7,845","13,345","11,805","12,530","27,580","14,060" -673,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, None,"2,057,585","20,760","16,960","9,640","24,830","20,325","11,290","17,360","14,410","8,910","19,745","4,940","21,275","19,035","16,990","6,385","10,065","7,340","8,830","13,225","9,485","7,075","9,355","11,075","23,685","19,345","12,475","12,960","10,555","7,890","13,630","17,835","17,385","28,005","25,700","9,220","18,205","11,495","17,095","7,015","17,260","13,730","8,370","14,465","10,090","9,330","22,915","11,935","8,380","10,395","17,415","18,890","9,515","11,395","7,545","8,800","11,360","11,765","10,225","31,855","11,365","7,570","12,775","13,780","15,940","8,035","6,475","31,375","12,065","12,635","13,260","14,760","12,560","8,245","33,080","7,020","8,085","19,260","26,045","13,135","15,055","10,065","23,645","14,210","22,745","9,225","10,345","15,930","24,795","10,000","13,360","10,050","16,125","14,775","7,215","11,330","25,755","7,900","6,660","10,715","8,910","8,100","7,975","16,575","12,520","17,985","34,895","8,410","7,305","12,520","16,540","22,915","13,020","17,210","19,535","19,495","11,025","19,505","7,470","13,875","13,120","5,680","12,690","50,485","21,745","23,900","17,655","13,875","8,315","20,620","33,080","11,720","16,540","38,650","10,800","6,520","10,905","9,885","10,735","19,985","10,085" -674,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, English,"271,530","4,400","3,320",860,"1,270","2,945","1,890","3,440","3,460","1,985","1,125",560,"4,235",955,"2,125",450,"1,805",710,940,"1,870",460,"1,100",345,825,"2,145","3,215","1,515","1,240","1,295",560,"1,120","4,785","3,425","2,960","3,985",850,915,"1,380","2,815","1,015","1,815","2,025","1,345","3,555","1,110",370,"3,115",695,475,"2,605","1,665","1,325","1,305","2,940","1,060","1,705","1,925",755,"1,595","4,620",865,"1,485","2,125","1,380","2,530",300,520,"6,390","1,745",545,595,510,825,675,"5,490","1,255","1,060","3,590","2,475","1,850","1,030","1,405","4,325",820,"2,330",715,"2,775","3,925","1,290",395,"2,180","1,810","1,905","1,230",580,655,"3,940",985,300,"2,660",690,"1,095",920,"2,290",735,795,"5,295",450,960,"1,915","1,675","1,320","2,175","3,760","1,925","3,760","2,410",450,"1,185","3,780","1,030",415,"1,795","4,125","2,335","4,300","4,160","1,585",970,"2,990","8,730","2,520","2,175","7,420",445,455,740,535,500,"3,430","1,500" -675,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, French,"27,445",115,90,115,595,285,125,260,110,95,215,35,115,295,100,160,80,145,155,90,275,80,225,130,570,180,90,140,145,205,345,190,115,525,160,175,415,160,105,55,130,155,85,130,105,115,105,305,75,100,420,575,70,95,60,40,60,230,45,445,225,55,115,205,130,140,160,155,135,255,285,285,255,140,240,35,100,45,430,80,360,75,155,315,430,155,55,90,470,300,200,100,215,190,120,285,450,45,175,75,115,95,60,150,325,355,240,285,50,150,270,530,215,55,340,150,120,475,55,95,290,140,155,"1,040",245,130,125,135,125,205,280,140,140,310,290,130,215,205,200,150,65 -676,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, Non-official language,"335,090","3,450","3,220","1,370","3,045","3,795","2,270","4,515","3,120","1,690","2,035",825,"3,750","1,550","2,310",665,"2,190","1,005","1,390","2,440","1,005","1,620",915,"1,270","4,330","3,455","2,240","1,465","2,055",910,"1,930","3,825","3,350","4,730","5,035","1,440","1,490","2,105","2,470","1,320","2,750","2,525","1,620","3,605","1,305",890,"3,995","1,395",705,"2,540","2,485","2,545","1,530","2,365","1,650","1,810","2,120","1,430","1,685","6,200","1,565","1,880","2,040","2,150","3,240",770,800,"5,795","2,115","1,130",990,"1,080","1,740",985,"4,830","1,665","1,165","3,270","4,260","2,020","2,305","1,685","4,470","1,365","3,585","1,145","2,270","3,515","3,875",970,"2,520","1,630","2,620","2,390","1,275","1,490","4,445","1,755",600,"2,295","1,280","1,350","1,375","3,180","1,280","1,670","5,520",885,"1,420","1,895","2,315","2,495","2,255","3,145","3,050","3,485","1,860","1,055","1,340","2,950","1,800",815,"2,475","9,815","2,540","4,495","3,950","2,055","1,645","3,655","7,895","2,425","3,230","6,630",865,715,"1,435","1,135","1,050","3,905","2,350" -677,Language,Knowledge of languages,Census Profile 98-316-X2016001, Moose Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -678,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, Non-Aboriginal,"334,700","3,450","3,210","1,370","3,030","3,790","2,265","4,510","3,125","1,690","2,035",830,"3,745","1,540","2,300",665,"2,185","1,015","1,390","2,435","1,000","1,610",910,"1,270","4,320","3,445","2,235","1,465","2,040",900,"1,920","3,825","3,350","4,695","5,040","1,430","1,495","2,100","2,465","1,325","2,750","2,525","1,620","3,600","1,305",890,"4,000","1,405",700,"2,530","2,485","2,545","1,535","2,360","1,640","1,810","2,115","1,420","1,685","6,205","1,555","1,870","2,035","2,145","3,240",775,800,"5,800","2,120","1,130",985,"1,080","1,735",985,"4,820","1,660","1,170","3,260","4,250","2,025","2,300","1,680","4,460","1,355","3,590","1,155","2,265","3,515","3,875",970,"2,525","1,620","2,620","2,385","1,275","1,480","4,435","1,750",595,"2,295","1,280","1,350","1,375","3,165","1,270","1,665","5,515",885,"1,410","1,895","2,305","2,480","2,255","3,155","3,045","3,480","1,855","1,050","1,340","2,945","1,800",820,"2,465","9,800","2,525","4,485","3,950","2,050","1,640","3,660","7,905","2,425","3,220","6,635",850,710,"1,425","1,125","1,045","3,905","2,345" -679,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, English and French,"1,835",25,10,10,5,20,10,25,20,0,15,5,15,5,5,5,15,5,15,25,10,5,0,5,20,20,10,10,5,5,5,35,20,15,30,0,5,15,10,10,15,10,10,30,0,5,10,5,5,15,15,15,10,10,10,0,5,5,0,35,10,5,10,0,40,0,5,45,25,15,10,0,10,15,30,0,5,15,35,5,20,10,30,5,30,5,5,15,20,10,15,10,5,15,5,15,50,5,0,25,10,5,5,0,10,10,25,5,10,15,0,0,35,15,5,35,10,10,5,25,0,5,25,40,25,10,25,10,5,30,60,20,5,40,5,5,0,5,10,15,15 -680,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, English and non-official language,"6,420",75,115,15,40,50,45,70,75,45,30,5,75,10,45,5,45,15,20,35,20,20,10,15,85,55,65,25,10,10,25,115,75,65,80,20,20,25,60,20,50,45,25,115,25,5,70,20,10,60,45,25,40,65,20,35,65,20,40,155,35,20,25,30,80,5,10,145,55,5,20,15,5,10,70,35,10,65,50,45,45,5,165,20,85,15,50,125,50,15,55,40,35,25,15,15,80,20,10,25,20,15,10,25,15,25,70,10,25,40,65,30,35,85,45,85,50,5,55,105,20,0,45,95,55,110,155,40,25,60,175,50,45,225,10,5,15,20,5,80,40 -681,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001, French and non-official language,"4,370",10,20,25,80,60,15,70,40,15,45,5,35,20,15,10,15,10,25,30,30,15,25,20,85,30,30,20,30,20,40,45,25,65,30,30,35,25,20,15,40,40,20,25,30,30,25,20,10,15,50,65,15,40,15,5,0,20,20,105,40,25,20,25,30,5,15,50,30,20,30,30,35,5,35,30,20,5,70,15,55,20,40,25,75,20,25,30,75,20,40,15,45,30,20,30,80,15,20,15,15,25,10,25,15,45,45,25,10,35,45,45,60,35,45,25,20,30,10,25,40,15,20,185,30,25,35,30,15,50,70,25,30,35,25,10,30,30,35,20,15 -682,Language,Other language spoken regularly at home,Census Profile 98-316-X2016001," English, French and non-official language",140,0,0,0,0,5,0,0,5,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,5,0,5,5,5,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,5,5,0,0,0,0,0,10,0,0,0,0,5,0,5,0,0,0,0,0,0,0,5,0,0,0,0,0,0 -683,Language,Knowledge of languages,Census Profile 98-316-X2016001,Total - Knowledge of languages for the population in private households - 25% sample data,"2,691,665","28,820","23,475","12,025","28,635","27,000","15,580","25,600","21,140","12,660","23,110","6,375","29,095","21,685","21,560","7,685","14,210","9,185","11,330","17,710","10,995","9,910","10,880","13,340","30,310","26,295","16,425","15,805","14,110","9,595","17,085","26,835","24,380","36,195","34,995","11,705","21,010","15,195","22,255","9,445","21,885","18,525","11,470","21,915","12,670","10,600","30,205","14,375","9,645","15,715","21,820","23,350","12,465","16,915","10,115","12,410","15,530","14,225","13,600","43,225","14,080","11,040","17,100","17,465","21,975","9,165","7,975","43,490","16,065","14,555","15,110","16,645","15,050","10,065","43,775","9,865","10,455","26,060","33,310","17,155","18,455","13,255","32,815","16,760","28,920","11,280","15,525","23,635","30,440","11,675","18,355","13,610","20,965","18,500","9,215","13,765","34,720","10,715","7,645","15,805","11,045","10,675","10,365","22,235","14,870","20,610","46,065","10,070","9,750","16,435","20,660","27,025","17,680","24,275","24,900","27,030","15,485","21,450","10,120","20,845","16,235","6,675","17,180","65,615","26,955","32,880","26,130","17,685","11,095","27,545","50,255","16,675","22,145","53,015","12,430","7,845","13,250","11,810","12,295","27,565","14,025" -684,Language,Knowledge of languages,Census Profile 98-316-X2016001, Official languages,"2,559,780","22,930","20,140","11,740","28,310","26,245","14,865","24,915","20,140","11,915","22,875","6,060","27,555","21,335","19,765","7,300","13,480","9,000","11,005","16,885","10,685","9,045","10,810","13,155","29,900","25,335","15,990","15,455","12,960","9,145","16,430","25,320","23,140","33,255","32,870","10,905","20,575","14,855","21,565","9,175","21,355","18,080","11,030","20,290","12,535","10,500","27,625","13,630","9,580","14,880","21,460","23,020","12,190","15,345","9,805","11,400","14,380","14,035","13,150","41,865","13,580","10,055","16,505","15,125","21,130","9,135","7,890","37,620","15,710","14,445","15,015","16,585","13,950","9,875","41,640","9,235","10,265","19,130","32,285","16,735","18,110","12,715","30,270","16,630","28,465","11,035","14,320","22,250","29,950","11,300","17,845","13,035","19,615","17,860","8,960","13,075","33,740","10,230","7,510","14,600","10,870","10,015","10,030","20,855","14,185","20,500","44,605","9,960","9,215","15,850","19,885","24,840","17,050","18,650","24,405","24,305","14,955","21,390","9,555","19,525","14,260","6,415","16,550","64,710","26,360","31,450","24,565","17,065","10,265","26,540","47,045","15,715","21,555","50,440","12,085","7,625","12,615","11,720","12,200","26,155","13,160" -685,Language,Knowledge of languages,Census Profile 98-316-X2016001, English,"2,557,220","22,940","20,125","11,735","28,285","26,215","14,855","24,885","20,120","11,910","22,865","6,050","27,505","21,325","19,740","7,270","13,455","8,990","10,995","16,840","10,700","9,030","10,805","13,155","29,855","25,330","15,980","15,440","12,935","9,140","16,410","25,290","23,130","33,230","32,855","10,880","20,560","14,835","21,510","9,175","21,340","18,070","11,020","20,245","12,525","10,500","27,605","13,625","9,580","14,855","21,435","23,005","12,195","15,340","9,800","11,395","14,360","14,025","13,125","41,810","13,575","10,040","16,505","15,135","21,125","9,110","7,890","37,545","15,695","14,435","15,010","16,585","13,935","9,875","41,615","9,220","10,265","19,120","32,275","16,695","18,095","12,680","30,240","16,615","28,455","11,025","14,305","22,225","29,930","11,295","17,830","13,020","19,615","17,830","8,965","13,075","33,660","10,225","7,505","14,580","10,870","10,005","10,005","20,830","14,165","20,495","44,585","9,940","9,210","15,765","19,855","24,815","17,045","18,635","24,375","24,290","14,935","21,375","9,540","19,510","14,245","6,415","16,495","64,665","26,325","31,380","24,530","17,005","10,245","26,515","47,030","15,700","21,510","50,395","12,060","7,585","12,595","11,705","12,195","26,140","13,160" -686,Language,Knowledge of languages,Census Profile 98-316-X2016001, French,"246,610","1,300","1,025",935,"5,930","2,900","1,060","3,065","1,785","1,060","2,710",285,"1,310","1,920",725,"1,040",955,"1,770","1,230",820,"1,970",550,"2,075","1,015","4,650","1,490","1,075","1,110","1,465","1,420","2,220","2,010","1,255","4,210","1,475","1,565","2,815","1,520","1,350",435,"1,485","1,440",785,"1,425","1,385","1,575",720,"1,775",705,"1,050","3,610","4,265",720,"1,200",720,375,555,"1,875",625,"4,230","1,830",445,"1,050","1,875","1,310","1,320","1,320","2,180","1,530","2,375","3,005","2,600","2,020",955,"1,900",445,965,755,"3,490",910,"2,950",805,"1,280","2,745","4,180","1,035",970,"1,380","4,385","2,305","1,720",855,"1,925","1,605",945,"2,410","3,550",575,"1,515","1,210","1,170","1,015",555,"1,235","2,555","4,055","2,760","1,890",285,"1,190","2,280","3,565","2,355",790,"2,440","1,355","1,025","3,635",485,"1,035","2,145","1,105","1,365","9,395","1,740","1,375","1,585","1,090",765,"1,710","3,785","1,320","1,345","2,430","1,790",950,"1,960","2,055","2,365","1,320",700 -687,Language,Knowledge of languages,Census Profile 98-316-X2016001, Non-official languages,"1,464,760","23,200","18,020","4,885","10,500","14,620","9,920","16,620","15,130","8,405","8,570","3,365","18,550","5,795","12,870","2,835","9,640","3,795","5,650","10,520","3,895","6,600","3,165","4,805","14,155","14,465","9,425","5,950","8,425","3,795","7,075","20,285","15,905","19,245","22,540","5,930","6,255","7,715","12,645","5,030","12,310","9,660","6,945","17,295","5,915","3,285","18,845","5,305","2,885","11,745","9,520","8,530","6,540","13,010","6,025","8,645","10,425","5,555","7,985","24,165","5,885","7,735","9,750","10,210","14,030","2,360","2,955","31,930","8,950","3,730","3,770","3,760","6,950","3,835","25,275","6,910","4,705","22,170","15,705","8,785","7,555","7,175","22,135","5,100","13,175","4,345","12,260","18,225","11,655","3,350","11,490","8,510","11,580","8,435","3,815","5,430","18,635","6,265","2,285","11,745","4,715","6,400","5,130","13,155","5,630","5,905","24,935","3,000","5,960","8,965","9,850","10,230","10,185","21,105","11,035","18,845","9,905","3,850","6,290","16,695","7,960","2,740","10,135","29,845","11,210","20,100","20,100","8,385","6,720","15,865","39,035","11,690","12,035","33,640","3,145","2,560","5,735","3,850","3,880","17,810","9,230" -688,Language,Knowledge of languages,Census Profile 98-316-X2016001, Aboriginal languages,795,0,40,10,10,0,20,25,0,0,0,0,0,10,0,10,20,0,10,0,0,10,0,0,45,10,10,0,10,20,0,0,0,50,0,0,25,0,0,0,0,0,0,10,0,0,0,0,0,0,20,0,0,0,0,0,0,20,10,20,20,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,60,0,10,0,0,0,0,0,0,10,10,0,10,0,0,0,0,0,15,0,0,10,10,45,10,0,10,10,0,0,15,20,0,0,0,0,0,0,0,0,0,0,10,25,30,10,0,10,0,10,0,0,0,0,30,0,0,0,0,20,0 -689,Language,Knowledge of languages,Census Profile 98-316-X2016001, Algonquian languages,660,0,40,0,10,0,10,25,0,0,0,0,0,10,0,0,10,0,10,0,10,10,0,0,20,0,10,10,0,15,0,0,0,35,10,0,20,0,0,0,0,0,0,10,0,0,0,10,0,0,10,0,0,0,10,0,0,10,0,20,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,10,0,60,0,0,0,10,0,0,0,0,10,0,0,0,0,0,10,0,0,15,0,0,10,0,30,0,0,0,0,0,0,20,20,0,0,0,0,0,0,0,0,0,0,10,20,25,20,0,0,0,10,0,0,0,0,30,0,0,10,0,10,0 -690,Language,Knowledge of languages,Census Profile 98-316-X2016001, Blackfoot,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -691,Language,Knowledge of languages,Census Profile 98-316-X2016001, Cree-Montagnais languages,135,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 -692,Language,Knowledge of languages,Census Profile 98-316-X2016001, Atikamekw,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -693,Language,Knowledge of languages,Census Profile 98-316-X2016001, Plains Cree,30,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0 -694,Language,Knowledge of languages,Census Profile 98-316-X2016001, Southern East Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -695,Language,Knowledge of languages,Census Profile 98-316-X2016001, Swampy Cree,25,0,0,0,0,10,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,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,10,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,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 -696,Language,Knowledge of languages,Census Profile 98-316-X2016001, Woods Cree,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -697,Language,Knowledge of languages,Census Profile 98-316-X2016001, Cree; n.o.s.,70,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -698,Language,Knowledge of languages,Census Profile 98-316-X2016001, Eastern Algonquian languages,15,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,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,10,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,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 -699,Language,Knowledge of languages,Census Profile 98-316-X2016001, Malecite,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -700,Language,Knowledge of languages,Census Profile 98-316-X2016001, Mi'kmaq,10,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -701,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ojibway-Potawatomi languages,510,0,40,0,0,0,10,20,0,0,0,0,0,0,0,0,10,0,10,0,10,20,0,0,10,0,10,10,0,15,0,0,0,20,10,10,20,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,10,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,10,0,0,0,0,10,0,0,0,0,0,10,0,0,15,0,0,10,0,30,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,30,0,0,10,0,20,0 -702,Language,Knowledge of languages,Census Profile 98-316-X2016001, Algonquin,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -703,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ojibway,480,0,40,0,0,0,10,20,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,20,0,0,10,0,10,0,0,0,20,10,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,10,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,10,0,0,0,0,10,10,0,10,0,0,10,0,0,10,0,0,0,0,30,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,15,15,0,0,0,0,0,0,0,10,0,30,0,0,0,0,20,0 -704,Language,Knowledge of languages,Census Profile 98-316-X2016001, Oji-Cree,10,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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 -705,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ottawa (Odawa),10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,10,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 -706,Language,Knowledge of languages,Census Profile 98-316-X2016001, Algonquian languages; n.i.e.,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -707,Language,Knowledge of languages,Census Profile 98-316-X2016001, Athabaskan languages,15,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,10,0,0,0,0,10,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,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,10,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 -708,Language,Knowledge of languages,Census Profile 98-316-X2016001, Northern Athabaskan languages,10,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,10,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,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,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 -709,Language,Knowledge of languages,Census Profile 98-316-X2016001, Babine (Wetsuwet'en),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -710,Language,Knowledge of languages,Census Profile 98-316-X2016001, Beaver,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -711,Language,Knowledge of languages,Census Profile 98-316-X2016001, Carrier,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -712,Language,Knowledge of languages,Census Profile 98-316-X2016001, Chilcotin,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -713,Language,Knowledge of languages,Census Profile 98-316-X2016001, Dene,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -714,Language,Knowledge of languages,Census Profile 98-316-X2016001, Dogrib (Tlicho),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -715,Language,Knowledge of languages,Census Profile 98-316-X2016001, Gwich'in,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -716,Language,Knowledge of languages,Census Profile 98-316-X2016001, Sarsi (Sarcee),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -717,Language,Knowledge of languages,Census Profile 98-316-X2016001, Sekani,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -718,Language,Knowledge of languages,Census Profile 98-316-X2016001, Slavey-Hare languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -719,Language,Knowledge of languages,Census Profile 98-316-X2016001, North Slavey (Hare),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -720,Language,Knowledge of languages,Census Profile 98-316-X2016001, South Slavey,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -721,Language,Knowledge of languages,Census Profile 98-316-X2016001, Slavey; n.o.s.,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -722,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tahltan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -723,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kaska (Nahani),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -724,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tahltan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -725,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tutchone languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -726,Language,Knowledge of languages,Census Profile 98-316-X2016001, Northern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -727,Language,Knowledge of languages,Census Profile 98-316-X2016001, Southern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -728,Language,Knowledge of languages,Census Profile 98-316-X2016001, Athabaskan languages; n.i.e.,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -729,Language,Knowledge of languages,Census Profile 98-316-X2016001, Inuit languages,25,0,0,10,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,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,10,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,10,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 -730,Language,Knowledge of languages,Census Profile 98-316-X2016001, Inuinnaqtun (Inuvialuktun),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -731,Language,Knowledge of languages,Census Profile 98-316-X2016001, Inuktitut,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -732,Language,Knowledge of languages,Census Profile 98-316-X2016001, Inuit languages; n.i.e.,10,0,0,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0 -733,Language,Knowledge of languages,Census Profile 98-316-X2016001, Iroquoian languages,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,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,10,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,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,10,0,0,0,0,0,0 -734,Language,Knowledge of languages,Census Profile 98-316-X2016001, Cayuga,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -735,Language,Knowledge of languages,Census Profile 98-316-X2016001, Mohawk,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,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,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,10,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,10,0,0,0,0,0,0 -736,Language,Knowledge of languages,Census Profile 98-316-X2016001, Oneida,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,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 -737,Language,Knowledge of languages,Census Profile 98-316-X2016001, Iroquoian languages; n.i.e.,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -738,Language,Knowledge of languages,Census Profile 98-316-X2016001, Michif,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -739,Language,Knowledge of languages,Census Profile 98-316-X2016001, Salish languages,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -740,Language,Knowledge of languages,Census Profile 98-316-X2016001, Comox,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -741,Language,Knowledge of languages,Census Profile 98-316-X2016001, Halkomelem,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -742,Language,Knowledge of languages,Census Profile 98-316-X2016001, Lillooet,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -743,Language,Knowledge of languages,Census Profile 98-316-X2016001, Okanagan,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -744,Language,Knowledge of languages,Census Profile 98-316-X2016001, Shuswap (Secwepemctsin),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -745,Language,Knowledge of languages,Census Profile 98-316-X2016001, Squamish,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -746,Language,Knowledge of languages,Census Profile 98-316-X2016001, Straits,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -747,Language,Knowledge of languages,Census Profile 98-316-X2016001, Thompson (Ntlakapamux),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -748,Language,Knowledge of languages,Census Profile 98-316-X2016001, Salish languages; n.i.e.,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -749,Language,Knowledge of languages,Census Profile 98-316-X2016001, Siouan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -750,Language,Knowledge of languages,Census Profile 98-316-X2016001, Dakota,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -751,Language,Knowledge of languages,Census Profile 98-316-X2016001, Stoney,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -752,Language,Knowledge of languages,Census Profile 98-316-X2016001, Siouan languages; n.i.e.,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -753,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tlingit,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -754,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tsimshian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -755,Language,Knowledge of languages,Census Profile 98-316-X2016001, Gitxsan (Gitksan),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -756,Language,Knowledge of languages,Census Profile 98-316-X2016001, Nisga'a,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -757,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tsimshian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -758,Language,Knowledge of languages,Census Profile 98-316-X2016001, Wakashan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -759,Language,Knowledge of languages,Census Profile 98-316-X2016001, Haisla,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -760,Language,Knowledge of languages,Census Profile 98-316-X2016001, Heiltsuk,10,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,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,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,10,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 -761,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kwakiutl (Kwak'wala),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -762,Language,Knowledge of languages,Census Profile 98-316-X2016001, Nuu-chah-nulth (Nootka),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -763,Language,Knowledge of languages,Census Profile 98-316-X2016001, Wakashan languages; n.i.e.,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -764,Language,Knowledge of languages,Census Profile 98-316-X2016001, Aboriginal languages; n.o.s.,25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -765,Language,Knowledge of languages,Census Profile 98-316-X2016001, Non-Aboriginal languages,"1,464,025","23,200","17,970","4,880","10,490","14,625","9,905","16,595","15,125","8,395","8,565","3,370","18,540","5,785","12,850","2,835","9,630","3,810","5,630","10,520","3,885","6,595","3,165","4,800","14,110","14,450","9,425","5,955","8,415","3,780","7,080","20,275","15,905","19,215","22,545","5,925","6,245","7,710","12,640","5,030","12,320","9,655","6,935","17,275","5,915","3,280","18,840","5,300","2,885","11,745","9,515","8,540","6,540","13,000","6,020","8,650","10,425","5,535","7,985","24,135","5,880","7,735","9,740","10,210","14,035","2,355","2,950","31,935","8,945","3,740","3,760","3,760","6,945","3,835","25,270","6,910","4,705","22,175","15,700","8,775","7,485","7,175","22,135","5,090","13,175","4,340","12,260","18,230","11,650","3,350","11,485","8,510","11,590","8,440","3,820","5,430","18,630","6,265","2,265","11,750","4,715","6,395","5,115","13,120","5,630","5,905","24,930","2,995","5,960","8,955","9,840","10,210","10,175","21,115","11,040","18,825","9,905","3,845","6,290","16,695","7,950","2,745","10,130","29,825","11,180","20,095","20,095","8,380","6,720","15,855","39,035","11,695","12,025","33,640","3,110","2,560","5,735","3,850","3,880","17,805","9,225" -766,Language,Knowledge of languages,Census Profile 98-316-X2016001, Afro-Asiatic languages,"100,735",380,435,120,"1,035",990,"1,175","1,700",565,285,"1,635",230,615,175,"2,085",275,330,170,240,775,195,85,430,190,"1,210",810,"1,540",185,110,120,180,"1,460","1,150",610,760,180,375,375,770,895,"2,800",575,480,"1,245","1,055",495,"1,040",190,95,"1,100",490,320,180,375,510,605,620,740,570,"1,755",275,185,800,565,"3,085",45,225,"2,245",925,190,305,160,245,110,830,75,125,160,785,360,"1,365",670,"5,665",260,965,270,295,"1,030",980,75,"1,325",910,635,365,45,250,"2,275",215,100,615,115,690,370,"1,065",190,485,730,240,"1,020",545,730,405,610,725,200,"1,100",705,155,850,"1,175",160,170,"1,425","2,315",670,"1,045","2,365","1,360",350,"1,685","1,935",625,735,"1,310",155,80,395,340,275,750,375 -767,Language,Knowledge of languages,Census Profile 98-316-X2016001, Berber languages,140,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0 -768,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kabyle,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -769,Language,Knowledge of languages,Census Profile 98-316-X2016001, Berber languages; n.i.e.,105,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,10,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 -770,Language,Knowledge of languages,Census Profile 98-316-X2016001, Cushitic languages,"17,255",0,55,0,10,25,0,40,10,10,10,125,75,10,390,120,0,0,40,360,0,0,10,25,65,85,15,10,0,0,0,25,35,110,185,10,30,180,155,745,330,325,120,235,0,0,365,10,0,10,25,35,0,90,305,120,155,10,55,645,10,50,215,125,"2,570",0,130,185,10,0,10,0,0,10,200,0,0,0,60,35,415,410,810,0,50,130,0,0,35,0,225,135,25,60,0,10,145,60,10,25,20,215,105,475,10,0,95,0,835,70,45,80,50,35,0,95,50,0,130,10,10,10,35,155,145,395,25,985,75,70,50,0,390,240,20,20,50,0,0,180,140 -771,Language,Knowledge of languages,Census Profile 98-316-X2016001, Bilen,65,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -772,Language,Knowledge of languages,Census Profile 98-316-X2016001, Oromo,"1,180",0,0,0,10,0,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,20,10,0,0,0,0,0,0,0,10,60,10,0,35,45,0,60,0,0,45,0,0,45,10,0,0,0,10,0,0,35,0,0,0,0,40,0,0,20,0,20,0,0,10,0,0,0,0,0,0,0,0,0,0,20,0,60,10,10,0,25,25,0,0,10,0,60,35,15,15,0,0,0,10,0,0,0,10,0,25,0,0,10,0,60,10,35,0,30,0,0,0,25,0,0,0,10,0,0,20,0,0,0,40,0,0,0,0,0,30,0,0,10,0,0,0,45 -773,Language,Knowledge of languages,Census Profile 98-316-X2016001, Somali,"16,025",10,55,10,0,20,10,50,10,0,10,120,60,10,395,110,0,0,40,360,0,0,10,20,20,75,25,10,0,0,20,20,30,90,130,0,40,150,110,745,275,330,120,175,0,0,315,10,0,15,10,25,0,95,265,125,125,0,45,600,20,50,200,115,"2,555",0,130,175,10,0,10,0,0,10,185,0,0,20,45,35,340,385,795,0,10,95,0,0,30,0,155,100,10,45,0,0,145,60,0,25,20,215,105,450,10,0,95,0,775,60,10,60,25,35,0,95,15,10,135,10,0,20,30,135,135,395,20,945,70,80,50,0,385,235,0,15,40,10,0,175,105 -774,Language,Knowledge of languages,Census Profile 98-316-X2016001, Cushitic languages; n.i.e.,65,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,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,15,0,0,0,0,0,15,0,0,0,10,0,0,0,0,0,20,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -775,Language,Knowledge of languages,Census Profile 98-316-X2016001, Semitic languages,"84,510",380,390,115,"1,030",995,"1,170","1,655",555,295,"1,630",115,560,180,"1,670",155,335,175,200,425,195,85,425,170,"1,125",735,"1,525",175,110,115,180,"1,435","1,125",495,580,180,335,210,655,200,"2,510",250,375,"1,060","1,050",490,655,175,90,"1,095",470,290,180,285,215,490,490,750,525,"1,155",260,125,635,485,575,60,100,"2,085",920,190,290,175,245,105,655,70,125,155,735,310,970,285,"4,840",265,945,160,295,"1,025",950,70,"1,140",805,615,325,35,240,"2,160",170,95,590,90,475,240,595,185,480,630,240,230,490,705,320,560,695,210,990,680,155,715,"1,165",160,170,"1,385","2,190",530,680,"2,350",415,280,"1,600","1,890",625,330,"1,070",140,70,350,340,285,580,260 -776,Language,Knowledge of languages,Census Profile 98-316-X2016001, Amharic,"9,560",0,0,10,105,30,25,35,10,0,20,20,140,50,10,45,40,15,35,175,10,25,20,60,95,430,0,45,20,50,25,20,115,155,45,20,95,30,260,30,110,0,10,225,15,0,65,85,20,10,105,30,20,0,65,0,45,20,150,100,10,10,215,65,55,0,25,75,20,0,0,0,20,10,120,10,0,0,80,75,415,100,95,10,70,65,0,0,90,0,515,355,180,85,0,40,65,0,25,0,0,135,25,145,20,35,130,10,70,205,355,25,10,10,0,25,340,0,15,135,20,10,110,245,260,105,50,130,125,90,30,50,35,205,55,15,70,0,10,40,20 -777,Language,Knowledge of languages,Census Profile 98-316-X2016001, Arabic,"47,885",370,375,90,410,750,185,"1,435",405,160,110,85,385,90,"1,130",50,65,50,130,125,120,10,90,105,795,175,210,100,60,25,115,"1,270",930,155,435,115,215,90,340,140,125,220,300,645,90,60,385,70,55,"1,015",250,165,125,210,70,310,330,145,280,900,35,75,365,355,445,10,55,"1,955",230,55,100,110,75,75,495,10,85,150,480,200,395,65,"3,180",110,515,90,225,185,635,30,450,300,160,195,25,65,"2,025",110,45,575,65,290,145,160,95,245,430,45,130,250,205,175,340,660,135,940,200,95,500,935,65,60,"1,195","1,625",230,375,440,210,90,"1,460","1,515",260,195,840,60,50,110,150,145,335,80 -778,Language,Knowledge of languages,Census Profile 98-316-X2016001, Assyrian Neo-Aramaic,"5,935",0,0,0,0,15,10,0,0,0,0,0,0,0,"1,050",0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,20,0,0,10,155,0,0,0,0,25,0,0,30,0,0,0,235,0,0,15,0,0,0,0,0,235,90,0,0,20,0,0,0,0,10,0,0,25,0,0,0,0,0,0,0,15,0,0,20,30,0,0,"2,975",0,10,0,0,0,20,0,0,0,0,0,0,0,10,35,0,0,0,0,80,0,0,0,0,0,0,10,0,10,10,10,0,50,0,0,350,0,0,0,0,10,0,80,10,10,0,0,10,0,25,25,0,0,0,0,0,95,10 -779,Language,Knowledge of languages,Census Profile 98-316-X2016001, Chaldean Neo-Aramaic,680,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,40,0,0,0,0,0,0,0,0,90,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,380,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,10,0,0,0,0,0,0,95,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -780,Language,Knowledge of languages,Census Profile 98-316-X2016001, Harari,945,0,0,0,10,0,0,0,0,0,0,0,50,0,0,0,0,0,10,0,0,0,0,10,0,35,0,0,0,0,0,30,70,0,0,0,10,0,70,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,20,0,0,0,10,0,0,0,55,20,10,0,0,10,0,0,0,0,0,0,15,0,0,0,0,0,20,20,35,0,0,0,0,0,10,0,10,75,0,0,0,0,0,10,0,0,0,0,0,20,0,0,40,0,0,25,40,20,0,0,0,25,55,0,0,0,0,0,0,10,10,0,0,0,0,10,0,0,0,45,20,0,0,0,0,0,15 -781,Language,Knowledge of languages,Census Profile 98-316-X2016001, Hebrew,"18,860",0,10,0,495,200,965,180,125,135,"1,500",10,10,20,0,25,155,110,25,15,60,10,305,0,190,0,"1,330",0,10,45,10,100,0,110,25,25,25,20,10,0,"2,265",10,25,20,920,440,20,20,0,45,50,35,0,90,10,0,0,510,0,30,35,0,0,50,10,10,0,45,655,135,175,65,105,10,0,0,10,0,100,0,75,0,0,155,310,30,50,875,175,30,90,0,165,20,0,140,65,10,20,0,35,10,0,10,70,145,0,10,0,10,30,80,210,0,20,10,0,55,0,30,55,100,10,275,10,30,"1,880",0,20,30,355,315,0,0,15,0,170,185,130,75,75 -782,Language,Knowledge of languages,Census Profile 98-316-X2016001, Maltese,"1,860",0,10,10,0,0,0,0,0,0,0,10,10,0,0,10,0,0,0,0,0,10,0,0,20,0,0,0,0,0,10,0,0,0,10,0,0,75,0,0,0,30,35,10,10,10,20,0,10,0,55,40,0,0,40,0,0,10,10,80,150,10,0,0,40,35,20,30,10,0,15,10,10,10,10,0,15,0,65,10,0,25,35,0,10,0,10,0,15,0,0,0,0,0,20,20,20,25,10,0,10,0,20,175,20,0,10,180,10,0,0,10,10,0,25,10,20,10,0,0,0,0,0,10,10,85,0,10,10,0,10,15,45,10,0,0,10,10,0,0,0 -783,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tigrigna,"5,150",0,10,10,65,15,0,10,10,0,10,30,0,10,0,45,105,15,15,150,10,60,25,0,40,210,15,30,10,15,20,30,35,100,40,15,10,20,50,10,60,0,10,180,25,0,95,25,0,20,25,25,20,0,35,0,95,70,120,50,30,40,55,10,0,0,0,0,15,0,0,10,25,0,0,25,15,0,0,10,125,140,50,10,60,0,0,0,25,0,170,210,190,35,10,0,0,0,0,10,0,70,0,155,15,45,65,10,60,30,150,20,0,40,0,15,145,0,0,140,0,0,90,90,90,90,10,75,55,75,30,10,35,20,20,0,35,0,0,90,65 -784,Language,Knowledge of languages,Census Profile 98-316-X2016001, Semitic languages; n.i.e.,465,0,0,0,0,10,0,0,0,0,0,0,0,0,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,10,0,0,10,0,0,0,0,10,0,0,0,10,0,0,10,10,0,0,0,0,0,10,0,0,10,50,0,0,0,0,0,35,0,20,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,20,0,0,10,0,0,0,0,15,0,0,0,15,40,0,0,35,20,25,15,0,0,0,0,0,0,0,0,0,0,0 -785,Language,Knowledge of languages,Census Profile 98-316-X2016001, Afro-Asiatic languages; n.i.e.,370,0,0,0,10,0,0,10,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,110,0,0,0,0,0,0,0,0,0,15,0,0,0,0,10,0,10,30,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,10,0,0,15,0,0,0,0,0,0,20,0 -786,Language,Knowledge of languages,Census Profile 98-316-X2016001, Austro-Asiatic languages,"33,965",215,155,30,75,70,100,135,105,85,25,215,150,140,"2,430",35,120,20,45,"1,155",110,145,10,25,200,110,110,80,110,45,40,115,140,840,"1,895",260,35,55,150,265,115,95,105,130,0,50,"4,080",195,80,65,80,180,70,15,20,430,"1,065",40,60,335,360,285,110,395,220,35,20,305,20,55,20,55,285,85,110,275,55,180,250,110,315,695,380,20,85,80,50,100,215,115,140,20,380,50,105,70,120,695,25,100,45,415,130,"1,265",275,10,200,30,310,60,460,730,10,165,175,200,40,45,105,25,145,50,55,325,140,320,100,495,555,155,240,90,80,165,70,25,185,35,0,"1,270",535 -787,Language,Knowledge of languages,Census Profile 98-316-X2016001, Khmer (Cambodian),"2,020",10,10,0,10,0,0,10,10,0,0,20,0,0,255,0,0,0,0,25,0,15,0,0,20,0,0,0,0,0,0,0,0,10,140,0,0,0,0,40,0,0,0,10,0,25,690,0,0,0,0,10,10,0,0,10,85,0,0,0,0,0,0,15,0,0,0,0,0,0,0,10,0,0,0,0,0,10,10,10,20,10,20,0,10,0,0,0,15,30,25,10,20,0,10,0,0,10,0,10,0,10,10,50,0,0,10,0,0,0,10,40,0,0,0,0,0,0,0,10,0,0,0,20,10,45,15,30,0,0,20,0,0,0,0,0,0,0,0,95,20 -788,Language,Knowledge of languages,Census Profile 98-316-X2016001, Vietnamese,"32,165",200,150,30,85,70,100,135,85,85,25,205,145,135,"2,190",35,120,10,50,"1,135",115,130,20,25,180,105,105,80,110,30,40,115,130,825,"1,780",265,25,55,155,230,105,105,110,125,0,30,"3,490",190,85,65,90,170,65,25,20,430,990,40,55,315,360,290,100,390,210,15,20,305,15,60,30,35,290,90,115,270,50,175,240,100,295,680,360,20,55,90,50,105,195,90,115,10,350,50,105,60,115,690,35,90,40,405,125,"1,230",265,10,190,35,310,50,465,715,20,170,165,200,40,50,110,10,145,45,60,315,125,275,80,475,550,160,245,90,70,150,65,35,190,30,20,"1,185",525 -789,Language,Knowledge of languages,Census Profile 98-316-X2016001, Austro-Asiatic languages; n.i.e.,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -790,Language,Knowledge of languages,Census Profile 98-316-X2016001, Austronesian languages,"128,080","1,190","1,130",415,230,920,"1,780",455,680,155,"1,635",310,"2,200",705,780,55,"2,635",50,470,"1,070",405,750,55,545,730,"2,515","3,010",600,275,60,345,"1,960","2,845",450,"3,890",100,545,180,"2,480",455,"3,615",290,570,"2,005","1,415",275,"1,255",200,395,"1,015",280,210,565,270,130,295,745,"1,255","2,020","1,420",410,645,"2,110",390,540,75,135,"2,105",970,205,240,215,90,305,"3,765","1,055",75,920,880,"1,585",335,650,710,300,845,325,490,"4,000",490,75,"2,380",570,"1,705",910,330,55,"1,990",375,35,600,95,280,475,670,220,185,"2,950",100,300,900,"1,220",375,385,655,355,"1,805",550,150,210,"1,365",80,110,"1,065","1,035","1,905","1,315","5,320",505,235,"2,815",850,345,520,"3,265",160,205,310,210,185,"2,250",950 -791,Language,Knowledge of languages,Census Profile 98-316-X2016001, Bikol,385,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,10,0,0,0,0,10,0,0,0,0,10,10,0,0,0,0,0,10,0,40,0,0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,15,0,0,0,0,0,0,15,0,0,10,0,0,0,0,0,0,0,0,10,0,10,0,0,10,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,20,0,10,0,30,0,0,10,0,0,0,25,0,0,0,0,0,0,0 -792,Language,Knowledge of languages,Census Profile 98-316-X2016001, Bamanankan,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,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,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0 -793,Language,Knowledge of languages,Census Profile 98-316-X2016001, Cebuano,"4,685",10,10,0,0,70,60,0,0,0,105,10,110,0,55,0,190,0,40,75,10,60,0,20,20,70,120,15,10,0,0,75,90,10,110,0,25,0,55,10,60,15,15,45,50,10,20,0,25,55,30,20,20,25,10,20,15,30,75,80,0,55,125,0,45,15,10,95,15,0,35,10,0,0,100,25,0,10,25,15,20,30,45,15,60,10,0,155,10,0,80,55,85,40,15,0,100,30,10,0,15,10,0,20,25,20,15,10,0,20,55,10,15,10,10,55,40,0,15,50,0,0,40,20,125,55,185,60,0,105,20,0,10,75,0,0,20,0,0,185,30 -794,Language,Knowledge of languages,Census Profile 98-316-X2016001, Fijian,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -795,Language,Knowledge of languages,Census Profile 98-316-X2016001, Hiligaynon,"1,810",0,15,0,0,10,0,0,10,0,10,0,10,20,25,0,45,0,0,0,0,20,0,0,10,35,70,0,10,0,0,20,15,25,115,0,10,0,25,10,45,10,10,10,40,0,10,0,15,35,0,10,15,0,0,0,10,35,15,10,10,10,35,0,0,0,0,10,0,0,0,0,0,0,0,20,0,30,10,10,0,20,25,0,50,0,15,125,0,0,20,10,15,10,15,0,35,0,0,45,0,0,15,10,0,0,20,0,15,20,10,10,15,0,0,50,0,0,0,10,0,10,20,0,65,0,55,0,0,40,0,0,20,40,0,0,0,15,0,20,0 -796,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ilocano,"9,550",55,35,15,0,10,125,10,80,15,35,75,150,35,45,0,330,0,25,65,20,85,0,20,30,275,295,125,0,0,10,110,160,35,485,0,35,0,115,70,440,10,20,190,100,40,170,35,10,15,20,0,40,10,0,30,125,110,105,110,45,75,140,10,40,0,20,65,40,0,10,0,0,25,250,55,0,25,30,90,0,80,50,0,55,15,15,415,10,20,235,70,130,20,10,0,85,10,0,45,0,0,15,55,20,0,90,0,60,30,65,20,50,25,0,175,45,0,10,35,0,10,85,20,65,125,755,25,45,195,20,0,45,265,0,20,25,15,10,240,110 -797,Language,Knowledge of languages,Census Profile 98-316-X2016001, Malagasy,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0 -798,Language,Knowledge of languages,Census Profile 98-316-X2016001, Malay,"3,435",85,55,0,60,10,20,125,75,30,20,0,30,30,10,0,0,0,10,10,10,0,0,30,100,50,20,0,0,0,0,50,40,40,20,0,20,10,10,15,35,0,10,60,0,0,0,40,0,30,20,40,10,35,0,10,0,10,35,10,10,0,20,80,10,10,0,70,35,10,20,45,10,0,40,0,0,90,45,10,50,0,35,0,30,0,55,20,10,15,20,10,15,10,10,0,65,0,0,55,25,35,20,15,0,10,40,0,10,10,10,30,10,175,15,50,40,20,0,40,20,0,10,130,20,10,30,0,0,50,120,95,20,15,10,20,0,0,15,30,0 -799,Language,Knowledge of languages,Census Profile 98-316-X2016001, Pampangan (Kapampangan; Pampango),925,10,10,0,10,0,10,0,0,0,35,0,10,0,10,0,25,10,0,20,0,0,0,0,0,10,25,15,0,0,0,25,15,0,45,0,0,0,35,10,35,10,0,10,15,0,0,0,0,15,0,0,0,0,0,0,20,0,10,0,0,0,10,0,10,0,0,10,0,0,0,0,0,0,50,30,0,0,10,10,10,0,0,0,0,0,0,10,0,0,10,20,15,0,0,0,20,10,0,0,0,0,25,0,10,0,20,0,0,0,0,15,0,10,0,0,10,0,0,0,0,0,0,10,50,15,0,10,0,10,10,0,10,0,0,0,0,10,0,20,25 -800,Language,Knowledge of languages,Census Profile 98-316-X2016001, Pangasinan,320,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,25,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,35,0,0,0,0,0,30,0,0,0,0,0,15,0,0,0,0,0,10,0,0,0,0,0,20,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,10,0,0,0,10,10,0,0,0,0,0,0,0,0,15,10,30,0,0,0,0,0,0,25,0,0,10,0,0,10,0 -801,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tagalog (Pilipino; Filipino),"121,160","1,105","1,075",415,160,900,"1,750",340,600,130,"1,555",260,"2,075",685,750,50,"2,525",50,465,"1,020",395,735,55,520,625,"2,380","2,900",545,275,55,330,"1,885","2,760",380,"3,680",100,495,180,"2,425",420,"3,400",265,555,"1,915","1,395",265,"1,205",170,375,950,260,170,540,220,110,290,725,"1,205","1,930","1,350",375,600,"1,990",310,515,65,130,"1,970",915,170,215,160,70,300,"3,615","1,010",75,820,800,"1,530",295,620,630,285,775,320,430,"3,870",465,70,"2,325",555,"1,655",875,310,55,"1,880",370,30,500,55,240,450,650,220,170,"2,880",100,265,870,"1,180",325,370,490,315,"1,725",495,125,210,"1,290",65,80,"1,040",900,"1,825","1,255","5,105",465,230,"2,715",730,250,505,"3,150",145,190,305,190,160,"2,075",940 -802,Language,Knowledge of languages,Census Profile 98-316-X2016001, Waray-Waray,220,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,15,0,0,0,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,20,0,0,0,0,0,0,0,0,0,0,0,0,20,10 -803,Language,Knowledge of languages,Census Profile 98-316-X2016001, Austronesian languages; n.i.e.,895,0,10,0,0,0,0,10,0,0,10,0,0,0,10,0,25,0,20,0,0,0,0,0,0,10,0,0,0,0,10,45,0,10,45,0,45,10,10,0,25,10,0,0,15,10,0,0,0,20,10,0,0,0,0,0,0,10,10,0,0,15,0,0,0,0,0,40,10,10,0,0,0,0,35,10,0,0,0,0,0,10,10,0,25,0,15,35,0,0,10,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,10,0,0,0,15,70,10,0,0,0,0,10,0,10,0,0,0,10,55,20 -804,Language,Knowledge of languages,Census Profile 98-316-X2016001, Creole languages,"8,845",50,55,0,30,45,10,80,50,25,10,80,130,40,230,10,35,0,15,135,25,35,10,25,45,35,0,50,15,0,0,80,120,45,220,35,20,25,165,70,65,10,35,30,15,10,245,45,45,45,10,10,15,30,0,60,210,30,85,85,10,55,35,40,205,0,0,140,40,0,10,0,35,0,340,50,25,65,75,95,45,155,350,30,85,45,10,10,60,10,30,40,120,40,0,0,155,70,0,30,0,15,20,35,10,10,270,15,110,285,120,35,10,10,70,70,40,10,35,50,10,10,75,140,330,240,90,200,30,75,90,15,115,225,0,10,10,20,30,240,45 -805,Language,Knowledge of languages,Census Profile 98-316-X2016001, Haitian Creole,455,0,0,0,0,0,10,0,0,0,0,0,0,15,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,20,10,0,0,0,0,0,0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,10,20,10,10,20,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,20,15,0,10,0,0,0,0,0,0,0,0,0,15,0,50,0,0,0,0,0,0,0,0,25,0,0,0,10,10,0,0 -806,Language,Knowledge of languages,Census Profile 98-316-X2016001, Creole; n.o.s.,"4,830",35,35,0,20,30,0,60,30,10,10,30,105,20,120,0,20,0,10,55,20,35,0,15,20,40,0,15,10,0,0,45,85,40,140,20,0,10,100,45,20,0,20,25,0,0,120,10,30,10,20,10,10,10,0,0,120,10,55,30,20,20,15,20,175,0,10,110,10,0,0,0,10,0,165,30,0,35,25,45,0,45,280,0,40,0,10,0,20,10,15,15,40,20,0,0,50,45,0,10,0,10,0,30,20,10,135,10,35,235,30,20,10,10,15,20,40,0,20,35,10,0,20,25,240,135,50,60,20,55,60,10,60,125,0,0,0,20,10,105,30 -807,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kinyarwanda (Rwanda),460,0,0,0,10,0,10,0,0,0,10,0,20,0,15,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,20,15,0,10,10,0,10,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,10,10,10,0,15,10,20,0,0,10,0,20,20,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,20,0,0,20,30,0,0,0,10,0,0,10,0,0,0,0,0,0,10,0,10,0 -808,Language,Knowledge of languages,Census Profile 98-316-X2016001, Creole languages; n.i.e.,"3,675",20,20,0,10,20,0,10,40,20,10,45,20,10,105,20,20,0,0,70,10,10,10,10,20,10,0,35,0,0,0,35,25,0,105,25,10,15,50,20,55,0,15,10,10,10,105,0,20,25,0,10,10,10,0,55,60,0,15,25,0,35,25,20,25,0,0,50,20,0,0,0,25,10,170,15,25,15,75,40,25,100,65,0,20,20,0,10,20,10,10,10,80,0,0,0,90,35,0,15,0,10,20,0,10,0,125,10,75,30,50,10,0,0,30,25,0,10,0,15,10,10,40,95,65,100,30,130,10,45,20,0,55,85,10,10,20,0,20,115,20 -809,Language,Knowledge of languages,Census Profile 98-316-X2016001, Dravidian languages,"87,340","3,115","1,540",70,60,260,90,235,230,75,30,70,"2,510",150,705,65,120,10,90,295,80,20,20,615,490,710,85,710,30,10,65,550,"3,325",300,160,70,70,20,"3,555",115,95,170,215,"1,080",10,30,415,75,95,"1,125",190,65,"1,900",290,50,235,350,30,"1,680",675,25,110,"1,275",40,325,10,25,"3,760",185,15,50,30,30,15,"7,205",150,0,"1,705",90,"2,335",175,60,"1,545",35,485,50,75,140,205,20,"1,385",450,115,270,25,35,580,175,20,230,45,680,140,140,185,20,"11,365",0,180,"1,820",545,105,160,325,135,"1,785",755,20,250,480,20,35,535,720,"1,275","1,065",125,305,15,"1,415",630,110,285,"7,005",20,10,0,70,90,"1,285",135 -810,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kannada,"1,610",10,0,20,0,0,0,25,20,0,0,0,25,10,0,0,0,0,0,0,10,0,0,0,55,10,15,0,0,0,10,10,25,10,0,0,0,10,20,0,0,10,15,10,0,0,10,15,10,50,35,0,0,30,0,10,10,0,55,80,0,10,20,10,0,0,0,45,40,0,0,10,0,0,20,0,0,0,0,20,0,0,0,10,70,0,10,0,20,0,35,20,10,10,15,10,20,10,0,10,0,0,10,0,10,0,55,0,0,10,30,15,0,20,10,50,115,0,10,0,0,0,0,100,0,30,10,0,0,0,25,0,20,55,0,0,0,15,0,0,0 -811,Language,Knowledge of languages,Census Profile 98-316-X2016001, Malayalam,"6,700",55,130,0,15,0,20,45,25,15,10,10,85,25,15,10,15,0,10,20,0,0,0,40,60,35,10,70,0,0,10,125,115,25,10,10,10,0,285,0,20,40,10,30,0,10,40,0,20,255,30,0,220,25,35,25,10,0,85,160,10,0,100,0,50,0,20,325,0,0,0,0,0,0,165,20,0,25,0,210,10,25,125,0,55,25,55,35,40,10,105,60,20,0,0,0,40,10,10,25,15,20,45,65,0,0,375,0,0,170,50,0,30,10,30,150,30,0,20,50,0,25,50,105,110,210,25,20,0,110,95,35,110,740,0,0,0,10,15,40,20 -812,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tamil,"74,745","3,010","1,365",45,35,200,70,115,175,60,30,65,"2,280",135,650,60,120,0,65,280,65,15,20,565,260,610,60,600,0,10,45,335,"3,115",240,140,65,45,10,"3,130",95,60,140,160,910,10,20,330,65,75,405,85,45,"1,705",245,20,185,310,25,"1,255",370,15,100,"1,125",25,260,0,10,"3,360",80,25,40,20,40,10,"6,945",125,0,"1,680",75,"2,055",160,35,"1,380",25,230,30,25,105,130,10,"1,060",325,55,235,10,10,485,160,0,190,20,670,105,65,185,0,"10,890",0,175,"1,650",390,80,80,300,75,"1,395",235,30,160,380,10,15,490,385,"1,160",730,95,305,20,"1,320",355,85,155,"6,025",30,0,20,50,60,"1,165",115 -813,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $90,000 to $99,999","58,210",365,315,370,830,820,360,700,565,315,540,65,450,635,80,180,230,235,260,165,340,135,350,495,"1,020",485,355,390,295,315,590,525,275,840,425,215,705,415,170,100,305,540,225,185,280,280,175,450,355,255,740,765,345,395,250,95,130,330,120,"1,275",425,150,200,315,315,300,220,565,475,525,410,530,360,285,355,150,330,265,"1,055",255,605,130,180,545,965,265,320,355,"1,410",385,240,110,415,425,295,350,710,245,225,315,390,160,185,270,420,650,945,375,115,160,270,880,415,310,755,385,150,775,135,200,365,155,265,"2,890",375,370,330,245,150,435,"1,310",475,565,580,465,265,335,360,425,250,245 -814,Language,Knowledge of languages,Census Profile 98-316-X2016001, Telugu,"6,135",70,60,10,10,55,0,65,25,0,0,0,155,0,35,0,0,10,20,0,10,0,0,25,140,45,10,35,10,0,10,90,100,10,10,10,20,0,175,30,15,0,20,140,0,0,40,0,0,475,50,10,0,20,0,25,20,10,310,180,20,10,40,0,10,0,0,80,85,0,10,0,0,15,80,10,0,15,50,70,0,0,35,0,175,0,10,10,20,0,255,65,20,20,0,10,65,0,0,10,0,0,0,15,0,0,110,0,0,25,100,10,50,15,50,225,440,10,65,75,0,0,40,155,40,120,35,0,0,10,200,10,25,360,0,0,0,10,10,80,10 -815,Language,Knowledge of languages,Census Profile 98-316-X2016001, Dravidian languages; n.i.e.,160,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,10,20,10,0,0,0,0,0,0,0,0,0 -816,Language,Knowledge of languages,Census Profile 98-316-X2016001, Hmong-Mien languages,15,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,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,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0 -817,Language,Knowledge of languages,Census Profile 98-316-X2016001, Indo-European languages,"764,770","2,590","4,105","3,885","6,500","7,555","5,900","5,545","6,160","3,010","4,410","2,205","8,600","3,490","3,985","1,455","5,755","2,055","4,165","6,060","2,135","5,220","2,125","2,870","7,215","7,945","4,045","3,615","7,375","2,690","4,895","8,735","5,925","13,570","13,425","4,320","3,785","6,380","4,595","2,750","5,275","7,215","4,800","11,160","2,935","1,925","9,490","2,510","1,830","5,490","7,145","6,690","2,905","3,535","4,980","6,700","6,430","2,870","3,130","16,035","3,770","6,195","4,190","2,590","8,380","1,880","2,185","8,570","4,600","2,110","2,415","2,375","4,815","3,005","9,800","5,065","3,950","1,510","10,980","3,390","3,600","4,005","11,450","3,410","8,425","2,795","4,945","8,705","7,310","1,905","4,870","5,600","7,355","5,535","2,610","3,820","10,130","4,340","1,570","4,545","3,735","2,965","3,605","9,035","3,530","3,900","8,070","2,265","3,510","4,855","4,750","3,250","4,650","2,300","9,025","5,660","6,930","2,795","4,420","12,700","4,550","1,465","6,050","16,130","5,665","14,690","11,110","4,435","5,080","7,610","14,290","5,390","8,845","18,250","1,640","1,475","3,885","2,115","2,560","8,770","6,050" -818,Language,Knowledge of languages,Census Profile 98-316-X2016001, Albanian,"9,905",0,0,100,80,195,25,0,20,30,35,0,85,100,0,10,515,0,345,15,20,90,10,60,35,130,25,50,0,45,170,185,105,30,90,0,0,210,65,45,130,100,245,10,290,25,0,0,10,30,50,60,0,25,230,0,15,50,50,360,10,0,20,15,190,20,35,80,0,10,35,10,10,30,30,40,10,0,415,20,25,165,40,20,70,65,25,25,30,0,30,35,85,170,85,0,150,85,30,15,145,0,65,105,0,50,75,10,10,35,55,10,35,0,270,0,125,10,40,115,10,0,180,45,10,80,95,95,0,285,95,10,535,155,0,50,40,30,45,140,125 -819,Language,Knowledge of languages,Census Profile 98-316-X2016001, Armenian,"9,635",50,95,0,25,250,85,120,170,135,60,0,45,25,15,0,0,60,0,0,0,0,0,55,30,20,25,0,0,0,30,655,185,30,40,0,10,20,15,0,30,25,20,60,30,10,10,0,0,195,0,10,25,135,30,20,20,0,50,60,0,0,30,0,25,0,0,"2,150",35,20,40,20,10,10,35,0,0,35,15,10,15,0,110,70,45,10,45,85,40,20,10,10,0,10,10,0,715,0,0,235,10,25,0,10,10,50,10,0,15,0,20,25,160,250,30,490,10,10,10,25,0,10,205,175,40,0,145,0,0,370,220,80,10,165,0,0,10,10,35,110,10 -820,Language,Knowledge of languages,Census Profile 98-316-X2016001, Balto-Slavic languages,"138,375",140,365,"1,810","1,275","1,685","2,335",835,775,425,845,130,755,575,290,145,"1,040",375,"1,175",420,505,60,475,535,"1,735",800,"1,075",575,205,320,760,"1,365",480,900,725,565,510,"2,685",550,300,"1,000","3,480","2,190","1,505",870,540,445,295,405,720,"3,525","3,350",365,565,"1,690",120,235,470,320,"7,110",810,135,390,415,"1,350",795,"1,050",785,"1,305",545,660,455,330,"1,640",375,145,"2,620",50,"4,225",330,715,370,300,940,"2,335","1,280",685,"3,750","1,425",355,755,155,515,830,420,350,"1,540",400,230,680,"1,480",200,655,985,"1,260",695,505,985,60,430,"1,285",470,745,220,"4,950",480,570,595,400,750,425,160,700,"3,195",700,485,"7,700",385,225,905,"2,020","1,360","1,885","1,175",250,350,375,445,520,920,245 -821,Language,Knowledge of languages,Census Profile 98-316-X2016001, Baltic languages,"3,910",10,0,10,40,75,0,30,10,10,25,0,0,10,10,10,20,15,20,0,0,0,40,25,10,10,20,20,0,25,0,10,0,25,30,35,10,40,0,10,0,65,50,20,20,15,0,10,10,20,275,300,0,0,40,0,0,10,0,270,65,0,0,10,25,40,70,25,35,40,15,10,20,20,0,0,50,0,90,20,10,10,0,20,40,35,20,45,30,30,10,0,10,20,0,10,65,15,30,0,105,0,0,40,30,20,10,135,0,10,30,10,30,0,155,0,10,50,10,20,25,10,10,120,25,10,125,10,10,20,55,40,35,0,25,10,10,25,25,25,0 -822,Language,Knowledge of languages,Census Profile 98-316-X2016001, Latvian,"1,765",0,0,0,0,65,0,0,20,0,0,0,10,10,10,10,10,15,0,10,0,0,10,10,10,10,10,10,0,15,0,0,20,10,10,10,0,20,0,0,0,0,0,20,20,10,0,20,20,0,35,60,0,0,10,0,0,0,10,30,40,0,0,0,15,0,0,20,15,25,0,15,10,0,0,0,15,0,20,20,0,0,0,0,30,10,15,35,10,20,10,0,0,10,0,0,65,0,20,10,55,0,0,15,15,10,25,80,0,10,10,0,10,0,50,10,0,30,10,10,10,0,10,55,10,0,75,0,0,30,40,35,10,20,30,10,0,25,10,25,0 -823,Language,Knowledge of languages,Census Profile 98-316-X2016001, Lithuanian,"2,150",10,0,10,30,10,0,0,0,0,20,0,0,0,0,0,10,0,10,0,0,0,20,15,0,0,10,15,0,0,0,10,0,25,20,20,0,25,0,10,10,40,40,0,20,0,10,0,0,0,245,230,0,0,30,0,0,10,0,220,10,0,0,0,10,30,65,0,0,25,0,0,25,20,0,0,30,0,100,0,20,10,0,0,20,40,10,20,20,10,0,0,20,0,0,0,10,10,15,10,50,10,0,20,20,10,0,55,0,0,10,20,0,0,115,0,10,0,0,10,10,10,0,60,10,10,55,15,10,10,10,0,20,0,0,0,10,0,10,0,10 -824,Language,Knowledge of languages,Census Profile 98-316-X2016001, Slavic languages,"135,360",145,370,"1,805","1,240","1,635","2,335",830,770,430,830,125,735,570,295,140,"1,025",365,"1,160",415,500,65,440,515,"1,720",790,"1,060",560,210,300,755,"1,355",475,880,725,535,500,"2,655",545,300,995,"3,430","2,150","1,495",870,515,440,285,395,715,"3,305","3,105",360,555,"1,660",115,225,460,320,"6,925",755,135,385,405,"1,330",770,985,750,"1,295",505,650,425,305,"1,640",375,140,"2,575",45,"4,145",310,700,370,305,920,"2,310","1,250",690,"3,755","1,405",335,750,160,495,825,420,345,"1,485",385,195,680,"1,385",200,655,940,"1,235",675,485,865,65,415,"1,275",450,725,200,"4,840",475,565,555,395,750,405,150,695,"3,105",680,480,"7,705",375,215,885,"1,990","1,345","1,845","1,160",230,345,360,420,505,905,240 -825,Language,Knowledge of languages,Census Profile 98-316-X2016001, Belarusan,470,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,15,0,0,0,10,0,10,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,35,0,15,30,25,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,15,0,10,10,30,0,0,10,0,0,0,0,0,0,0,0,80,0,0,0,30,10,0,0,0,0,0,10,0,0,0 -826,Language,Knowledge of languages,Census Profile 98-316-X2016001, Bosnian,"1,960",0,0,35,10,45,0,20,10,0,0,0,10,0,0,0,70,0,70,0,0,0,30,0,30,15,0,0,20,0,0,0,10,10,10,0,20,40,0,0,0,170,50,10,30,0,0,20,0,10,20,65,0,0,15,0,0,10,0,235,10,0,0,0,0,10,25,0,0,0,10,0,10,30,0,0,140,0,75,0,10,0,10,15,60,0,10,0,50,0,20,0,0,20,10,0,10,0,10,10,25,0,45,10,10,10,0,0,0,0,10,10,0,0,30,30,60,0,0,0,20,0,0,55,0,0,10,0,0,0,0,10,10,0,0,0,10,0,0,10,10 -827,Language,Knowledge of languages,Census Profile 98-316-X2016001, Bulgarian,"4,860",15,10,0,20,150,75,45,25,0,10,40,10,0,10,0,25,0,235,0,35,0,10,0,125,85,35,0,10,10,140,135,20,0,15,15,25,110,0,0,0,90,100,75,40,0,0,0,10,50,25,45,0,15,20,0,0,30,25,65,0,0,50,20,30,10,0,45,90,0,35,10,0,50,0,0,125,0,110,10,20,35,10,45,135,20,0,20,70,10,45,10,10,45,45,0,200,10,10,20,0,20,10,15,45,55,0,10,0,10,20,0,25,10,90,45,110,10,0,40,10,0,105,85,35,0,120,20,10,70,85,20,60,20,10,70,20,40,10,30,10 -828,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $150,000 and over","89,770",135,165,225,"3,055","1,635",375,"1,265",800,460,"3,260",35,150,760,10,275,95,"2,030",270,65,725,30,"1,615",430,"1,265",165,595,370,210,380,515,345,70,495,165,185,795,"1,280",65,30,730,340,95,70,"1,145","1,775",30,370,295,185,"1,070","1,800",170,315,220,40,35,985,20,"1,465",370,35,55,380,210,"1,495",655,290,"1,085","2,085","2,770","2,410",350,250,65,95,505,80,"1,275",80,890,30,30,"1,795","1,230",185,405,320,"1,645","1,070",180,20,305,395,315,570,700,65,605,135,"1,220",150,45,75,580,"3,690",495,775,60,145,215,"1,280","1,805",165,"1,560",215,35,"2,340",55,95,650,350,155,"4,445",135,105,240,90,45,145,"1,520",515,440,200,495,140,575,"1,230","1,645",80,195 -829,Language,Knowledge of languages,Census Profile 98-316-X2016001, Croatian,"8,555",20,0,265,65,120,30,35,65,0,10,0,20,15,30,10,75,60,90,0,20,10,20,25,125,30,35,0,0,10,45,80,45,20,125,75,25,205,25,25,45,260,125,75,25,45,25,40,15,25,170,205,0,20,190,10,10,10,20,645,40,15,50,30,230,40,70,35,35,45,35,35,25,50,30,20,280,0,175,0,65,35,30,90,140,40,50,60,90,10,65,20,45,30,10,30,35,35,35,35,120,0,305,140,40,40,10,85,0,20,80,50,50,0,305,0,10,20,105,0,30,0,40,190,20,80,0,80,25,45,65,65,190,45,10,30,65,20,40,45,20 -830,Language,Knowledge of languages,Census Profile 98-316-X2016001, Czech,"3,745",20,10,35,60,70,10,20,0,25,50,0,25,20,15,10,0,25,0,0,35,0,0,10,40,10,10,20,30,10,35,10,55,40,60,15,50,100,0,20,10,55,25,60,30,15,65,10,35,15,105,100,0,30,35,0,35,20,70,65,10,0,10,45,35,25,10,40,15,25,20,30,20,10,75,10,30,0,110,20,0,10,0,25,50,30,10,30,65,20,15,10,20,35,10,20,65,45,20,10,10,10,10,25,40,30,40,0,0,0,95,10,10,0,115,10,10,50,0,20,10,0,0,130,0,0,105,25,0,10,30,20,55,140,30,0,0,10,20,0,10 -831,Language,Knowledge of languages,Census Profile 98-316-X2016001, Macedonian,"8,245",55,130,30,35,160,20,40,65,25,80,0,340,130,0,20,25,20,115,15,0,0,0,90,50,245,10,125,10,65,170,65,165,20,25,25,25,95,220,10,10,125,55,55,15,10,55,50,70,50,35,0,195,20,10,0,35,0,105,125,10,10,165,0,45,0,10,230,25,85,20,50,0,25,80,0,130,15,20,80,15,10,0,70,90,15,40,45,10,35,0,20,20,260,55,10,45,25,20,260,60,0,0,50,10,10,100,20,0,130,15,60,40,130,50,150,70,50,0,60,10,0,160,55,185,15,15,0,30,295,30,60,80,340,10,65,20,10,10,20,20 -832,Language,Knowledge of languages,Census Profile 98-316-X2016001, Polish,"30,970",0,60,855,255,250,155,185,105,30,145,25,150,100,90,20,135,30,70,215,95,0,60,165,335,160,155,185,70,40,60,130,80,270,190,150,140,705,90,170,145,915,555,80,85,60,120,40,125,65,"1,025","1,055",100,30,495,45,70,110,45,"1,975",240,80,10,85,510,280,360,110,135,40,110,55,80,750,130,50,520,0,"1,590",85,160,145,120,160,275,735,110,125,400,75,110,20,140,65,35,100,230,115,30,50,465,35,125,380,710,170,185,330,20,130,635,115,65,10,"1,815",65,40,165,190,60,125,50,65,595,230,180,260,105,60,145,175,95,660,255,75,65,45,95,65,125,55 -833,Language,Knowledge of languages,Census Profile 98-316-X2016001, Russian,"51,045",25,125,185,455,445,"1,885",425,425,260,400,30,150,205,130,30,540,165,165,120,230,30,190,110,870,175,785,150,45,75,155,830,75,320,250,140,110,580,125,45,700,750,490,410,520,235,110,75,50,490,"1,150",680,10,305,500,20,60,240,60,"1,720",255,10,55,175,215,90,250,265,970,170,345,95,110,470,30,40,280,20,"1,225",55,320,95,95,355,"1,110",265,395,"3,330",585,85,395,60,190,150,50,90,540,85,30,190,210,115,105,120,170,225,80,130,20,85,220,115,350,60,"1,120",90,170,175,60,185,50,65,225,"1,475",120,115,"7,020",100,65,180,"1,470",945,265,210,85,40,145,140,225,620,75 -834,Language,Knowledge of languages,Census Profile 98-316-X2016001, Serbian,"17,025",0,25,130,180,485,125,60,100,35,95,20,65,25,25,20,280,55,540,50,40,0,80,85,210,80,60,20,0,60,145,170,50,60,20,25,80,295,120,20,105,900,575,145,150,105,35,45,45,40,450,570,20,110,125,10,15,40,20,"1,340",110,0,65,20,40,125,80,40,55,95,90,105,25,150,10,0,940,10,305,55,105,0,10,220,510,55,50,135,140,55,155,25,45,140,175,40,260,45,35,90,175,0,45,60,100,110,30,80,10,0,125,35,145,0,650,70,125,55,10,105,40,0,150,385,35,40,125,25,10,105,125,105,140,95,10,50,30,95,120,20,25 -835,Language,Knowledge of languages,Census Profile 98-316-X2016001, Serbo-Croatian,"1,800",0,0,0,50,0,20,10,15,10,10,0,10,30,0,0,10,0,65,0,0,0,10,10,10,20,0,10,10,0,25,25,10,20,0,10,0,55,0,10,20,20,40,10,25,10,10,15,0,10,55,75,20,0,0,0,0,0,0,135,10,0,0,10,10,10,10,0,15,15,0,10,0,20,0,0,70,0,20,0,10,0,10,35,50,0,10,0,10,0,0,0,0,15,20,20,55,0,0,30,20,0,0,15,20,0,0,20,0,15,40,0,30,0,0,20,35,0,0,25,10,0,15,45,0,0,20,0,0,0,0,10,10,10,0,0,0,10,20,10,0 -836,Language,Knowledge of languages,Census Profile 98-316-X2016001, Slovak,"3,460",0,0,50,45,90,25,35,0,10,0,0,0,0,0,10,0,20,45,10,25,0,20,15,20,25,20,10,0,0,10,40,10,10,10,20,10,110,25,0,10,45,35,625,0,10,25,0,20,10,80,75,0,25,0,10,0,25,0,75,0,0,0,0,45,15,10,15,10,10,15,40,20,30,10,0,60,0,155,0,10,0,10,0,40,25,0,20,10,10,0,0,10,65,10,10,70,0,0,10,25,20,0,25,10,25,15,10,10,0,10,10,0,0,40,10,0,10,10,265,0,10,0,65,35,25,55,0,10,20,10,15,25,60,20,20,0,0,0,0,0 -837,Language,Knowledge of languages,Census Profile 98-316-X2016001, Slovene (Slovenian),"2,015",20,0,225,20,10,0,10,10,10,40,0,0,10,0,0,25,0,10,10,0,10,0,10,20,0,25,15,0,10,10,10,0,0,10,20,0,15,10,15,0,60,15,10,10,10,10,0,0,10,45,40,20,10,15,0,0,0,0,125,0,0,10,0,25,10,25,10,10,30,0,20,0,10,20,10,75,0,40,0,0,0,0,0,0,10,10,20,20,25,0,0,20,10,0,20,10,20,0,45,25,10,20,15,15,0,10,10,10,0,10,0,10,0,55,0,0,0,10,0,10,10,10,40,0,20,0,25,0,30,0,10,105,10,0,15,0,10,0,0,0 -838,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ukrainian,"21,020",0,45,365,165,75,265,120,60,40,50,15,10,70,20,10,90,50,45,10,90,20,55,20,155,40,85,55,15,15,20,65,10,180,25,90,45,"1,025",30,55,45,895,565,50,75,50,35,30,70,70,650,670,15,40,795,25,20,65,10,"1,885",180,0,20,65,265,215,370,40,155,25,105,10,50,395,10,35,545,10,"1,110",40,80,65,40,55,150,330,85,415,135,40,70,10,75,20,0,40,110,50,25,10,395,35,65,245,185,85,20,265,10,20,165,70,40,0,"1,470",15,35,55,30,30,125,25,35,275,40,40,815,25,30,40,145,105,620,80,10,15,75,30,45,135,25 -839,Language,Knowledge of languages,Census Profile 98-316-X2016001, Slavic languages; n.i.e.,330,0,0,10,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,10,0,0,10,10,15,0,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,10,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,20,0,0,0,0,0,10,0,10,0,0,0,0,10,0,10,0,0 -840,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $100,000 and over","116,680",245,265,325,"3,660","2,150",530,"1,620","1,070",635,"3,900",55,260,"1,045",30,375,160,"2,270",360,115,930,45,"1,910",635,"1,695",275,835,510,320,530,760,555,115,745,260,275,"1,090","1,535",100,50,970,555,135,135,"1,375","2,080",65,515,435,275,"1,395","2,230",290,490,310,80,55,"1,220",40,"1,940",525,55,75,480,325,"1,755",785,450,"1,365","2,520","3,135","2,855",505,350,130,145,660,200,"1,715",135,"1,190",45,60,"2,240","1,665",270,560,480,"2,180","1,335",255,40,455,540,425,760,985,120,770,245,"1,485",205,75,125,800,"4,215",775,990,85,210,320,"1,700","2,260",295,"2,030",370,70,"2,830",90,140,865,450,250,"5,815",220,180,350,135,75,250,"2,185",745,600,360,680,230,775,"1,460","1,940",140,275 -841,Language,Knowledge of languages,Census Profile 98-316-X2016001, Celtic languages,"1,350",0,10,0,35,20,0,50,0,0,20,0,0,15,0,0,0,0,0,0,10,10,10,10,40,0,0,0,10,0,15,0,0,30,0,10,30,0,0,0,10,0,0,0,0,20,10,0,10,10,20,50,0,0,10,0,0,0,0,10,20,0,0,0,0,25,10,0,0,0,20,10,50,0,0,0,10,0,0,10,15,0,0,25,50,0,0,0,50,0,25,10,0,10,20,10,0,0,10,0,0,0,0,0,10,45,0,10,0,0,20,20,15,0,10,0,0,30,0,0,20,10,10,115,55,0,0,0,0,0,0,0,0,10,10,0,0,20,15,0,0 -842,Language,Knowledge of languages,Census Profile 98-316-X2016001, Scottish Gaelic,400,0,0,0,10,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,10,20,0,0,0,0,0,10,0,0,0,0,0,10,10,0,0,10,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,10,10,10,0,0,10,0,10,10,0,10,0,10,0,10,20,15,0,0,0,25,10,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,10,0,0,0,0,15,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0 -843,Language,Knowledge of languages,Census Profile 98-316-X2016001, Welsh,145,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,15,10,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,10,0,0,10,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -844,Language,Knowledge of languages,Census Profile 98-316-X2016001, Celtic languages; n.i.e.,820,0,0,0,45,0,0,20,0,0,10,0,0,10,0,0,0,0,10,0,10,0,10,0,40,0,0,0,0,10,20,0,0,40,0,0,20,0,0,0,0,0,0,0,0,15,0,0,0,0,20,35,0,0,0,0,0,0,10,30,0,0,0,0,0,10,0,0,0,0,10,0,40,0,0,0,0,0,10,0,20,0,0,15,25,0,0,0,50,10,15,0,10,0,20,20,0,0,0,0,0,0,0,0,20,30,10,0,0,0,0,10,0,0,0,0,0,10,0,10,10,15,0,65,35,0,0,0,0,0,0,0,0,0,10,0,0,15,10,0,0 -845,Language,Knowledge of languages,Census Profile 98-316-X2016001, Germanic languages,"43,085",155,115,225,"1,110",695,395,500,430,250,"1,100",30,220,385,50,125,115,320,205,105,410,40,385,200,850,150,430,270,175,210,220,365,145,585,160,170,380,380,150,55,"1,430",375,185,160,310,390,90,205,295,155,680,825,90,310,180,55,65,285,120,760,275,55,130,300,250,305,205,355,410,345,355,360,255,215,135,60,235,20,670,145,370,80,95,530,805,170,205,480,600,360,245,95,210,230,105,370,485,40,235,140,255,80,100,210,335,825,310,260,35,135,320,350,475,95,485,220,95,725,130,125,335,155,245,"1,475",305,285,590,150,45,270,670,355,385,520,235,115,345,245,440,165,80 -846,Language,Knowledge of languages,Census Profile 98-316-X2016001, Afrikaans,"1,670",10,0,0,65,20,35,15,40,10,55,0,15,0,0,0,20,20,10,0,10,0,20,0,45,0,30,0,0,0,10,25,10,10,10,0,40,10,0,0,30,10,10,0,20,20,0,0,10,10,15,10,0,10,0,0,10,10,0,40,0,0,0,0,0,10,0,0,30,10,0,30,20,0,10,0,0,0,10,0,15,0,0,15,60,10,35,10,20,10,10,0,0,30,10,20,20,0,0,10,10,0,0,20,0,70,20,10,0,0,20,10,35,0,0,30,0,30,0,20,10,10,0,95,20,20,10,20,0,0,55,30,10,0,20,0,0,20,20,0,0 -847,Language,Knowledge of languages,Census Profile 98-316-X2016001, Danish,"1,090",10,0,0,10,20,0,10,10,0,20,0,10,10,0,0,0,10,10,0,0,0,10,0,10,10,0,10,10,0,0,10,10,20,0,0,20,10,0,0,0,0,10,0,0,35,0,0,10,0,10,35,0,0,0,0,0,0,0,0,30,0,0,0,10,20,0,0,0,0,10,0,0,10,10,0,0,0,25,10,30,0,10,10,40,20,0,10,65,30,0,0,10,0,0,30,30,0,0,0,15,0,0,10,20,10,0,0,0,10,40,10,0,0,20,10,10,55,0,0,20,0,10,50,0,0,0,10,0,10,0,0,0,0,10,0,10,25,20,10,0 -848,Language,Knowledge of languages,Census Profile 98-316-X2016001, Dutch,"4,755",10,10,20,115,65,20,45,70,20,55,0,35,75,15,25,20,35,20,20,65,0,40,35,135,0,20,45,10,25,30,30,20,95,10,20,35,25,0,10,30,45,10,10,25,25,20,35,35,25,95,90,10,10,10,0,15,50,35,80,20,15,30,25,40,65,25,35,45,55,35,75,20,25,10,15,25,0,70,10,70,10,10,105,85,25,20,55,65,30,60,0,10,35,10,20,85,10,20,0,45,15,25,25,30,70,35,45,0,10,25,60,70,25,60,30,10,130,0,10,40,15,25,170,20,30,30,0,20,30,70,35,45,60,25,0,20,25,30,0,0 -849,Language,Knowledge of languages,Census Profile 98-316-X2016001, Frisian,70,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,10,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,10,0,0,0 -850,Language,Knowledge of languages,Census Profile 98-316-X2016001, German,"29,985",125,95,195,800,500,130,410,265,150,395,40,165,300,35,100,65,225,160,90,305,45,230,160,670,115,125,205,130,160,180,275,110,430,105,145,275,330,145,45,220,305,155,145,140,160,45,165,245,125,530,665,80,190,150,60,35,140,90,620,225,25,115,240,170,230,155,280,180,275,245,275,215,185,110,35,185,30,520,115,220,70,80,390,570,120,140,215,420,260,145,75,170,190,85,260,350,20,195,95,200,45,75,165,295,625,210,175,35,105,235,240,265,70,385,150,80,505,120,80,265,120,180,"1,095",235,235,170,120,35,240,445,195,315,470,165,105,265,160,340,125,55 -851,Language,Knowledge of languages,Census Profile 98-316-X2016001, Icelandic,100,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -852,Language,Knowledge of languages,Census Profile 98-316-X2016001, Norwegian,480,0,0,0,30,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,10,20,0,0,0,0,0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,10,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,20,25,0,10,0,0,0,0,0,0,0,25,0,0,0,10,0,0,0,10,15,10,0,0,0,0,0,0,0,15,0,0,10,0,0,0,10,0,0,0,0,10,20,0,0,0,10,0,0,0,0,10,0,10,20,0,10,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0 -853,Language,Knowledge of languages,Census Profile 98-316-X2016001, Swedish,"1,630",0,0,15,70,35,0,10,20,0,35,0,20,0,0,0,10,25,30,0,10,20,25,15,55,10,0,10,50,15,10,20,15,10,0,10,30,20,0,0,0,15,10,0,15,10,0,0,20,10,20,45,0,0,10,0,0,10,10,30,10,0,10,25,0,30,30,10,20,0,20,0,0,10,0,0,10,0,40,0,10,0,0,20,35,10,15,10,45,25,10,10,0,0,0,10,20,0,0,0,0,0,0,0,15,50,20,40,0,0,0,30,10,0,35,0,0,20,0,0,0,10,20,70,0,10,10,0,10,0,25,0,10,0,10,0,20,35,10,0,10 -854,Language,Knowledge of languages,Census Profile 98-316-X2016001, Vlaams (Flemish),160,0,0,0,0,0,0,0,10,0,20,0,0,10,0,10,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,10,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,10,0,0,0,0,0,0 -855,Language,Knowledge of languages,Census Profile 98-316-X2016001, Yiddish,"4,690",0,0,0,100,75,235,25,50,90,570,0,0,0,0,0,0,35,0,0,20,10,75,0,10,0,250,10,10,0,10,20,0,20,0,0,0,0,0,0,"1,200",0,0,0,125,160,0,0,0,0,0,0,0,90,10,0,0,80,0,0,0,0,0,0,0,0,0,0,150,0,45,10,0,0,0,10,0,0,0,10,30,0,0,20,40,0,0,195,0,0,0,0,10,0,0,30,0,0,0,10,0,10,0,0,10,40,0,10,0,0,10,0,90,0,0,0,0,20,0,0,0,10,0,10,0,0,365,0,0,0,100,85,10,10,0,0,10,0,40,0,15 -856,Language,Knowledge of languages,Census Profile 98-316-X2016001, Germanic languages; n.i.e.,55,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,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,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,10,0,0,0,0,0,0,10,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,0,0 -857,Language,Knowledge of languages,Census Profile 98-316-X2016001, Greek,"40,165",140,300,80,405,570,485,135,160,80,180,10,885,325,45,370,250,140,"1,400",125,45,120,40,140,205,740,350,255,155,595,"1,785",365,555,480,190,50,170,125,415,40,170,240,100,745,75,65,140,195,135,165,180,195,170,165,75,45,40,270,395,435,245,95,425,50,170,40,55,"1,000",160,215,170,270,55,110,100,65,160,80,145,135,140,65,130,215,210,90,150,215,185,405,60,170,625,"1,800","1,330",165,715,110,625,"1,120",155,45,110,260,85,200,155,180,45,185,70,170,220,365,210,820,125,150,55,420,20,50,"1,085",500,295,100,65,95,135,"1,805",225,170,295,775,130,270,460,85,65,115,200 -858,Language,Knowledge of languages,Census Profile 98-316-X2016001, Indo-Iranian languages,"254,825","1,630","2,490",370,"1,005","2,700",560,"2,310","3,455","1,515",645,135,"5,685","1,205",580,505,185,605,485,685,290,135,285,"1,250","2,070","4,905",420,"1,935",290,615,765,"4,435","3,865","1,470","1,245",430,"1,590",305,"2,725",775,370,850,950,"8,185",230,230,"1,165",945,500,"3,590",675,395,"1,610","1,630",265,"3,165","2,610",220,"1,760","2,580",390,600,"2,595",680,"3,230",80,155,"3,215","1,720",325,380,350,285,300,"8,240",740,185,"1,105","1,705","2,220","1,045",335,"8,695",575,"2,340",355,"3,100","2,600","1,545",195,"2,585","4,700",335,"1,590",200,170,"3,910",405,105,"1,250",375,"2,100","1,015",595,385,535,"5,940",115,180,"3,580","1,505",820,"1,950","1,010",685,"2,775","5,310",215,"2,300","10,735",120,225,"2,860","5,685","3,135","11,035","1,275",405,290,"2,550","8,825","2,495","1,840","14,050",350,185,170,450,445,"2,845",465 -859,Language,Knowledge of languages,Census Profile 98-316-X2016001, Indo-Aryan languages,"193,280","1,515","2,215",355,605,"1,745",290,"1,595",800,355,250,135,"4,735","1,095",455,365,115,195,340,555,240,115,195,"1,140","1,545","4,575",235,"1,775",170,580,640,"1,810","3,145","1,260",770,395,"1,335",210,"2,225",505,175,740,755,"6,115",90,110,775,850,455,"2,200",455,280,"1,490",875,200,"3,085","2,535",155,"1,625","2,120",375,575,"2,400",500,"2,735",45,105,"2,550",665,120,130,175,230,210,"7,750",730,130,"1,000","1,340","2,000",775,250,"8,110",335,"1,100",335,540,545,"1,185",155,"2,200","4,110",220,"1,140",120,105,"2,295",360,95,775,315,"1,885",855,520,360,300,"5,430",85,140,"2,920","1,360",660,640,895,555,"2,365","5,095",155,"2,130","8,845",65,160,"2,075","4,290","2,625","10,775",460,245,270,"1,980","1,950",560,"1,680","12,760",310,165,115,210,255,"2,305",380 -860,Language,Knowledge of languages,Census Profile 98-316-X2016001, Bengali,"35,640",70,185,0,130,125,90,165,55,10,10,0,760,785,25,25,10,0,65,120,45,15,20,315,195,"2,500",35,"1,290",0,20,55,300,555,345,130,150,635,10,575,135,0,105,50,735,15,10,105,70,200,360,25,35,245,75,45,140,40,25,370,410,50,20,"1,500",115,390,10,10,260,50,0,20,15,0,25,740,25,0,55,115,405,235,110,285,55,175,30,65,45,105,30,350,"3,315",30,285,0,0,640,65,0,55,0,"1,410",100,150,40,55,500,10,25,"1,075",115,215,135,70,25,185,"3,300",20,135,465,0,20,255,440,"1,195",295,35,55,110,330,275,60,90,"1,180",45,50,10,15,65,300,45 -861,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $100,000 and over","209,580",665,685,845,"5,255","3,670","1,100","2,750","2,055","1,160","5,095",120,780,"2,055",105,770,440,"2,810",745,305,"1,580",245,"2,530","1,390","3,410",870,"1,425","1,105",760,"1,105","1,680","1,275",465,"1,860",765,655,"2,225","2,205",325,185,"1,435","1,350",400,375,"1,830","2,650",220,"1,210",930,645,"2,575","3,620",720,"1,090",685,205,160,"1,795",185,"3,830","1,150",240,270,985,725,"2,395","1,220","1,210","2,150","3,535","4,080","3,885","1,100",745,500,335,"1,220",525,"3,545",390,"2,310",175,230,"3,435","3,175",680,"1,095","1,000","4,775","2,050",565,150,"1,070","1,140",950,"1,320","1,950",390,"1,200",655,"2,175",440,240,500,"1,500","5,580","2,110","1,700",205,425,735,"3,350","3,180",780,"3,425",910,265,"4,280",250,380,"1,545",750,620,"11,300",665,600,770,450,295,740,"4,300","1,525","1,370","1,045","1,430",620,"1,280","2,100","2,735",460,645 -862,Language,Knowledge of languages,Census Profile 98-316-X2016001, Gujarati,"36,185",350,505,175,65,580,55,145,130,110,45,75,"1,465",20,40,220,0,25,10,225,30,0,20,140,155,220,30,85,15,370,205,460,695,110,175,20,55,15,195,85,20,85,60,"2,055",10,0,245,65,60,300,0,35,170,200,30,260,375,10,180,235,20,180,70,35,265,0,20,625,25,10,25,25,20,30,"1,955",555,10,210,270,370,60,30,"2,845",30,80,15,65,125,110,20,50,55,15,145,25,10,245,10,15,230,35,50,75,20,45,20,"1,245",30,35,225,55,10,25,275,105,385,265,20,495,"1,130",10,0,585,415,165,"2,120",95,30,0,160,210,45,170,"6,365",35,20,10,45,15,370,80 -863,Language,Knowledge of languages,Census Profile 98-316-X2016001, Hindi,"65,360",650,800,185,305,535,125,835,345,125,105,45,"1,345",250,210,35,50,105,135,235,105,50,120,345,900,830,120,335,65,195,145,810,"1,000",385,330,140,255,105,765,160,80,285,225,"1,510",30,65,280,245,150,"1,215",265,160,445,455,70,615,575,50,695,"1,105",155,255,335,130,770,15,35,970,415,55,60,75,85,90,"2,380",345,55,405,835,665,280,90,"3,170",145,710,195,255,300,650,85,"1,090",585,95,185,30,40,655,150,35,325,190,215,340,150,250,165,"1,850",30,50,575,795,170,240,370,315,785,935,75,835,760,35,80,450,"2,525",690,"3,925",205,60,55,615,"1,085",325,545,"4,885",50,60,55,155,135,860,180 -864,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kashmiri,85,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,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,10,0,0,0,0,0,0,0,0,0,0 -865,Language,Knowledge of languages,Census Profile 98-316-X2016001, Konkani,"1,505",30,30,0,0,0,0,10,15,0,0,0,20,0,0,0,0,10,0,0,10,0,0,15,20,25,0,0,0,0,0,30,25,10,0,0,10,0,65,10,0,25,45,0,0,0,0,0,15,35,0,0,70,0,0,0,0,0,10,25,10,10,0,10,10,20,0,50,0,0,0,0,10,0,65,0,25,35,10,0,0,0,20,10,0,0,0,20,10,0,20,10,0,0,0,0,25,10,0,15,10,0,15,10,0,10,100,0,0,0,10,35,0,40,15,25,10,10,10,10,0,0,0,65,10,20,10,0,0,15,0,20,30,25,0,0,0,10,0,10,0 -866,Language,Knowledge of languages,Census Profile 98-316-X2016001, Marathi,"3,225",35,60,0,15,20,0,25,45,0,10,0,40,0,0,0,10,0,20,0,15,0,15,0,130,35,10,0,0,10,20,130,30,10,20,0,35,10,45,30,0,20,15,40,0,0,0,25,0,90,30,35,25,75,0,10,10,0,25,90,10,0,0,10,10,15,0,40,30,15,0,10,20,10,75,0,0,20,35,25,20,0,95,20,50,0,0,30,15,0,70,15,20,15,0,0,50,10,0,55,40,0,10,20,10,30,75,0,0,20,25,10,10,10,0,70,10,10,10,0,10,0,20,110,25,90,25,0,0,30,160,10,30,135,10,10,0,0,40,15,0 -867,Language,Knowledge of languages,Census Profile 98-316-X2016001, Nepali,"3,920",10,0,30,10,0,0,35,0,10,0,0,35,15,0,0,0,0,10,10,10,10,0,0,20,165,10,30,0,0,15,35,35,10,0,0,0,0,250,0,0,0,10,40,0,0,10,75,0,20,20,0,0,15,0,10,10,0,140,85,45,0,65,0,0,0,0,30,10,0,0,10,10,35,30,0,0,0,70,10,10,10,0,10,20,35,0,0,10,10,685,30,0,30,0,10,50,0,0,10,0,10,25,45,25,0,25,0,0,30,410,0,0,0,20,20,235,0,0,30,0,0,30,30,205,20,50,0,40,40,0,20,25,30,10,0,0,10,0,35,15 -868,Language,Knowledge of languages,Census Profile 98-316-X2016001, Oriya (Odia),450,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,20,0,0,10,25,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,25,20,0,10,0,0,0,10,30,0,0,0,0,10,0,0,0,0,10,0,10,0,0,0,0,0,0,25,0,0,0,0,35,55,0,0,0,0,0,10,10,0,0,0,0,0,10,10,0,0,10,0,0,0,0,0,0,0 -869,Language,Knowledge of languages,Census Profile 98-316-X2016001, Punjabi (Panjabi),"33,780",155,360,55,65,110,35,260,120,80,65,20,370,55,120,20,35,70,25,25,30,30,20,205,165,355,35,85,45,45,60,225,225,400,165,85,65,70,145,115,40,120,45,375,10,30,170,215,15,150,75,50,415,55,80,"1,645","1,175",30,110,330,85,45,160,120,640,10,40,250,75,30,0,25,45,70,"1,335",50,35,190,215,200,110,50,"3,365",55,80,65,50,40,285,25,185,65,35,145,10,15,165,175,20,150,55,40,270,95,20,55,"1,060",10,45,145,90,160,55,120,45,180,200,65,"1,015",925,15,30,155,785,275,"6,490",40,65,110,310,255,70,340,"1,030",35,55,35,30,40,445,125 -870,Language,Knowledge of languages,Census Profile 98-316-X2016001, Sindhi,"4,190",55,35,0,10,245,0,30,25,20,0,0,50,30,0,0,0,10,10,10,0,0,0,30,50,100,0,35,0,20,10,120,35,30,0,10,10,0,60,0,0,10,0,350,0,0,15,0,30,50,10,0,25,50,0,0,0,0,10,25,0,0,0,0,55,0,0,160,40,10,0,0,0,0,90,0,0,15,35,25,10,10,25,0,15,10,20,25,40,10,10,10,0,50,10,10,100,0,0,25,0,0,0,10,0,0,80,0,0,50,0,20,10,95,0,35,190,10,10,400,0,0,365,105,30,45,20,0,0,45,70,20,35,90,10,0,10,10,0,0,10 -871,Language,Knowledge of languages,Census Profile 98-316-X2016001, Sinhala (Sinhalese),"6,860",150,155,0,20,20,0,30,90,55,10,0,245,0,30,0,0,0,15,30,10,15,20,130,45,45,0,40,0,0,0,55,175,25,55,0,10,10,215,20,0,85,60,95,0,0,40,10,15,80,0,0,105,75,0,0,0,25,70,45,0,0,155,10,50,0,0,245,25,0,25,10,10,0,395,0,0,85,0,265,30,10,65,35,25,0,0,25,25,10,20,25,10,35,10,10,165,0,0,40,40,25,15,0,10,0,470,10,25,75,10,0,50,55,25,170,35,0,30,70,0,0,35,65,145,150,10,15,0,145,45,10,180,585,0,0,10,0,0,110,0 -872,Language,Knowledge of languages,Census Profile 98-316-X2016001, Urdu,"57,675",470,855,40,135,600,35,545,165,70,55,25,"1,565",95,165,105,20,75,105,135,45,0,25,275,300,"1,435",55,250,40,240,285,425,"1,140",325,180,80,480,60,490,105,90,270,370,"2,670",30,10,105,375,100,580,110,80,515,160,30,"1,320","1,210",65,400,550,45,255,500,205,"1,445",0,20,815,165,20,20,35,95,25,"3,105",30,70,260,270,670,160,35,"1,185",50,200,20,165,155,260,20,330,565,50,515,60,35,830,110,30,180,65,355,330,150,40,80,"1,435",30,10,"1,295",140,175,220,250,90,"1,075",905,30,370,"6,850",0,55,940,"1,075",560,890,135,85,40,930,505,110,685,"3,010",180,45,20,35,90,765,75 -873,Language,Knowledge of languages,Census Profile 98-316-X2016001, Iranian languages,"63,770",125,340,10,390,945,280,725,"2,665","1,170",395,0,"1,090",120,130,145,65,415,140,135,55,15,85,105,540,355,195,190,120,35,100,"2,660",760,200,460,35,240,90,545,285,210,105,195,"2,280",150,120,390,110,60,"1,400",240,115,160,755,60,110,105,65,140,470,10,20,205,190,510,35,40,680,"1,065",205,260,170,80,90,575,10,50,130,370,255,270,75,655,250,"1,240",25,"2,570","2,030",365,45,395,630,105,470,80,70,"1,675",50,25,485,70,230,165,85,40,240,545,40,30,700,145,165,"1,320",145,115,450,265,80,145,"2,330",55,50,840,"1,410",530,320,770,155,15,635,"6,850","1,935",170,"1,495",50,25,65,250,200,540,85 -874,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kurdish,"2,080",0,0,0,0,65,50,15,30,35,0,0,10,0,0,0,20,10,10,15,10,10,0,0,0,25,15,25,0,0,0,145,25,10,170,0,35,15,0,10,10,0,35,35,10,0,0,0,10,110,10,10,30,0,10,10,0,0,0,20,0,0,45,15,25,0,0,65,20,0,0,10,0,10,0,0,0,0,15,0,10,0,55,0,10,0,40,20,10,0,0,20,10,0,0,20,85,0,0,10,0,0,0,0,0,0,0,0,0,45,0,0,25,10,30,45,20,0,0,50,0,0,85,45,10,10,30,10,0,55,10,10,10,15,0,0,10,0,0,60,20 -875,Language,Knowledge of languages,Census Profile 98-316-X2016001, Pashto,"6,570",30,105,0,30,0,15,30,20,0,0,0,510,30,15,120,0,0,10,0,0,0,0,0,0,90,0,0,0,0,40,115,125,30,40,0,20,15,85,10,50,0,0,645,15,0,155,25,0,120,0,0,50,10,30,0,50,0,40,40,0,0,20,10,75,0,0,60,0,0,0,0,0,0,250,0,0,10,0,60,0,15,65,0,10,0,0,10,10,0,45,145,10,100,0,0,70,15,0,0,10,60,55,0,0,0,90,0,0,165,40,0,10,25,0,85,95,0,40,"1,345",0,0,80,30,65,85,15,35,0,160,15,0,25,315,0,0,0,10,0,50,0 -876,Language,Knowledge of languages,Census Profile 98-316-X2016001, Persian (Farsi),"57,755",115,285,10,375,900,225,700,"2,605","1,160",395,0,705,110,120,60,45,415,130,120,50,10,75,105,525,275,175,170,115,45,60,"2,570",675,175,255,30,200,70,510,290,160,100,165,"1,790",125,130,295,110,55,"1,280",215,110,80,765,40,90,85,60,115,415,10,20,165,165,435,35,50,600,"1,065",205,255,175,75,80,375,10,50,105,360,210,270,65,545,245,"1,230",25,"2,570","2,010",355,35,350,520,105,400,75,70,"1,600",50,15,480,70,170,125,75,40,250,500,40,30,585,120,160,"1,295",100,90,330,165,80,105,"1,235",50,55,720,"1,375",510,250,770,145,15,445,"6,840","1,935",135,"1,310",45,25,60,240,195,460,60 -877,Language,Knowledge of languages,Census Profile 98-316-X2016001, Indo-Iranian languages; n.i.e.,"1,520",0,0,0,10,30,0,40,0,10,0,10,20,30,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,20,20,40,10,10,0,45,0,55,0,0,10,0,95,0,0,0,0,0,35,10,0,30,10,0,10,0,0,0,0,0,0,10,10,40,0,0,0,10,0,0,0,10,0,15,0,0,0,15,20,0,0,20,0,20,0,0,50,10,0,30,10,0,15,0,0,20,0,0,0,0,0,15,0,10,0,65,0,15,20,10,0,0,0,25,10,15,0,45,140,0,0,15,50,10,10,35,15,0,10,35,10,0,25,0,0,0,0,0,55,0 -878,Language,Knowledge of languages,Census Profile 98-316-X2016001, Italic (Romance) languages,"290,570",540,830,"1,430","2,940","1,810","2,190","1,865","1,410",680,"1,700","1,915","1,085","1,035","2,995",345,"3,800",690,785,"4,770",970,"4,815","1,020",690,"2,640","1,380","1,920",650,"6,595","1,020","1,360","1,750",710,"10,340","11,125","3,160","1,220","2,950",845,"1,580","2,345","2,355","1,280",845,"1,295",755,"7,740",925,505,785,"2,380","2,195",695,875,"2,650","3,365","3,465","1,655",495,"5,330","2,145","5,355",700,"1,265","3,360",720,735,"1,495","1,160",770,875,"1,035","3,920",795,955,"4,050",895,235,"4,130",600,"1,410","3,015","2,185","1,195","2,980",880,850,"1,940","3,650",680,"1,335",505,"5,655","1,135",555,"2,825","2,925","3,355",445,"1,340","1,490",595,"1,745","7,015","1,555","1,785","1,180",795,"3,185",590,"1,655","1,495","1,255",475,"2,710","1,085",825,"1,260","1,575",700,"3,725",930,990,"5,720","1,285","2,765","1,735","3,390","4,415","1,740","2,710","1,100","4,195","1,645",750,585,"2,585",960,"1,180","4,625","5,020" -879,Language,Knowledge of languages,Census Profile 98-316-X2016001, Catalan,240,0,0,0,10,10,0,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,10,0,0,0,0,10,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,15,0,25,10,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,10,10,0,20,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0 -880,Language,Knowledge of languages,Census Profile 98-316-X2016001, Italian,"91,590",130,390,615,"1,040",440,"1,060",460,245,205,710,445,320,355,"1,145",85,"1,115",315,180,"1,230",165,855,320,305,555,565,"1,055",290,"1,940",660,525,130,220,"1,455","5,575",335,325,"1,370",255,580,730,970,340,90,245,220,"3,605",240,160,90,495,520,405,90,"1,355","2,250","1,150",490,170,"1,735",275,800,265,195,"1,600",345,160,730,265,260,305,270,375,170,130,"2,530",330,85,"1,245",175,265,300,855,245,555,195,400,760,710,200,210,145,"1,950",355,215,875,380,"1,815",125,785,755,70,565,935,250,465,330,245,"1,695",195,260,315,305,305,"1,065",365,135,340,745,85,555,180,225,"1,205",500,"1,060",275,865,640,655,595,390,"2,235",510,180,250,740,260,365,"2,430","2,960" -881,Language,Knowledge of languages,Census Profile 98-316-X2016001, Portuguese,"75,785",100,70,465,395,175,300,275,140,70,160,"1,115",135,185,200,75,"1,520",80,85,"1,665",130,"3,080",135,90,435,160,140,125,"3,350",65,240,210,80,"6,530","1,385","2,090",215,485,75,190,525,610,300,80,140,100,405,75,55,155,485,360,45,40,585,145,260,265,65,"1,425",955,"3,645",100,340,565,140,260,145,170,40,70,185,"2,770",200,95,790,190,75,"1,090",60,280,"1,380",160,160,485,230,95,230,"1,155",60,230,80,"2,030",210,60,"1,315",245,720,55,100,300,140,170,"3,725",540,270,140,220,695,85,445,310,125,30,830,70,200,135,110,95,"2,640",385,75,950,140,295,160,"1,100","2,885",155,355,160,770,225,85,80,995,190,170,355,"1,260" -882,Language,Knowledge of languages,Census Profile 98-316-X2016001, Romanian,"14,625",0,45,60,110,525,120,105,430,175,80,25,90,85,35,10,135,30,55,10,35,10,85,85,145,105,115,30,10,15,65,625,90,60,165,25,120,150,95,0,225,140,75,180,260,65,30,30,75,155,160,120,25,370,120,25,55,35,30,290,55,0,35,45,55,15,50,150,220,70,20,75,30,30,40,0,110,15,190,55,65,35,35,95,370,25,90,290,145,35,40,0,45,85,35,35,935,50,0,130,165,20,80,50,20,145,120,10,30,50,60,30,260,20,160,160,270,50,10,130,10,30,115,360,90,40,510,35,0,240,255,115,105,105,35,15,35,15,115,70,45 -883,Language,Knowledge of languages,Census Profile 98-316-X2016001, Spanish,"122,190",315,345,345,"1,610",775,810,"1,210",675,275,845,425,615,460,"1,670",205,"1,215",285,515,"2,025",720,"1,075",605,225,"1,750",570,700,250,"1,570",325,595,840,350,"2,745","4,290",950,625,"1,020",450,865,980,725,615,515,740,430,"3,840",605,235,450,"1,450","1,325",245,415,655,975,"2,125",975,245,"2,205",965,"1,075",290,815,"1,255",255,370,460,580,435,525,575,935,435,700,850,280,90,"1,905",335,935,"1,455","1,200",765,"1,835",480,300,780,"1,915",445,975,285,"1,875",515,265,785,"1,525",870,290,360,315,420,"1,005","2,615",775,"1,050",625,360,840,295,"1,025",935,655,140,815,550,275,820,735,430,635,385,615,"3,725",635,"1,445",860,"1,525","1,055",725,"1,695",500,"1,210",825,505,305,965,540,630,"1,940",920 -884,Language,Knowledge of languages,Census Profile 98-316-X2016001, Italic (Romance) languages; n.i.e.,440,0,0,0,10,0,0,10,0,0,0,0,0,10,15,0,0,10,0,10,0,0,0,0,10,0,0,0,20,0,0,0,0,0,20,0,0,0,0,10,10,10,0,0,0,0,0,0,0,0,10,10,0,0,0,10,0,10,0,0,10,15,0,0,0,0,0,10,0,10,0,0,0,0,0,25,0,0,0,0,10,0,10,0,20,0,0,0,0,0,0,0,10,0,0,0,0,10,0,20,0,0,0,0,20,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0,0,0,10,10,0,0,10,0 -885,Language,Knowledge of languages,Census Profile 98-316-X2016001, Japanese,"12,065",90,60,35,295,180,50,420,240,100,70,0,105,115,75,25,80,30,65,20,60,10,75,20,320,105,45,30,35,80,150,145,35,245,45,55,130,50,60,10,25,35,15,75,25,35,15,105,35,60,150,140,45,95,0,0,20,110,0,165,120,40,65,230,10,25,10,110,110,80,55,50,80,25,60,0,0,55,175,30,105,15,40,130,285,85,90,130,135,85,105,25,110,85,35,110,110,0,70,115,65,35,15,65,50,90,40,70,0,25,80,135,115,65,100,155,75,80,0,35,75,100,40,590,35,60,65,40,25,55,795,130,35,115,60,55,65,85,60,50,60 -886,Language,Knowledge of languages,Census Profile 98-316-X2016001, Kartvelian languages,"1,130",0,0,0,0,0,90,0,0,0,0,0,15,0,0,0,25,0,0,0,0,0,0,0,0,0,20,0,0,0,0,10,0,0,0,10,10,0,55,0,20,40,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,15,0,25,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,195,0,0,20,0,0,0,0,0,20,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,15,0,10,0,0,0,0,0,0,0,0,15,0,0,335,0,0,0,10,40,0,0,0,0,0,0,0,0,0 -887,Language,Knowledge of languages,Census Profile 98-316-X2016001, Georgian,"1,125",0,0,0,0,0,90,0,0,0,10,0,15,0,0,0,30,0,0,0,0,0,0,0,0,0,25,0,0,0,0,10,0,0,0,10,10,0,55,0,20,50,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,15,0,30,0,0,0,0,0,0,10,35,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,20,200,0,0,10,0,0,0,0,0,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,15,0,10,0,0,0,0,0,0,0,0,10,0,0,345,0,0,0,0,40,0,0,0,0,0,0,0,0,0 -888,Language,Knowledge of languages,Census Profile 98-316-X2016001, Korean,"37,610",60,105,45,520,465,285,"1,260","1,625",665,150,15,200,25,45,15,120,165,70,50,90,10,60,20,580,105,190,40,60,40,105,790,15,325,125,120,155,235,40,100,130,345,275,235,100,40,0,60,50,445,310,185,105,635,110,45,55,135,30,"1,535",55,10,95,310,205,105,45,180,810,215,80,135,80,20,75,40,235,20,480,60,155,145,75,175,685,65,"1,845","2,150",335,20,315,40,90,80,35,145,505,30,35,265,200,40,10,45,50,205,40,40,0,20,75,125,760,125,140,270,155,55,35,85,40,135,140,920,70,85,875,70,10,165,"4,985","1,810",335,210,50,50,95,215,135,315,50 -889,Language,Knowledge of languages,Census Profile 98-316-X2016001, Mongolic languages,350,0,30,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,10,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,30,0,0,0,0,0,0,10,0,10,0,0,30,0,40,0,0,0,10,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,20,0,0,10,0,10,0,0,0,0,0,0,0,0,15,0,0,0,0,0,10,0,0,0,0 -890,Language,Knowledge of languages,Census Profile 98-316-X2016001, Mongolian,350,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,30,0,10,0,0,0,0,10,0,10,10,0,30,0,40,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,10,0,0,0,0,10,0,0,0,20,0,0,0,0,0,10,0,0,0,0 -891,Language,Knowledge of languages,Census Profile 98-316-X2016001, Niger-Congo languages,"26,430",50,115,20,75,150,55,130,50,30,30,140,140,70,"1,415",100,35,20,25,500,80,10,20,35,235,160,60,55,30,35,25,210,125,170,640,65,60,75,370,320,235,60,35,460,55,15,"1,295",75,30,55,65,55,85,70,145,180,500,65,145,480,30,40,210,70,685,10,115,230,10,10,10,20,70,25,560,70,20,30,175,270,305,455,"1,895",65,160,195,60,45,220,10,215,305,120,285,30,20,415,165,15,40,20,120,130,240,145,55,175,15,490,275,95,125,85,85,45,150,140,20,305,285,10,20,365,485,500,995,120,620,80,205,135,20,560,485,55,10,10,35,30,885,145 -892,Language,Knowledge of languages,Census Profile 98-316-X2016001, Akan (Twi),"7,005",0,55,0,0,20,10,20,25,0,0,40,10,10,700,10,0,0,0,200,0,10,0,10,35,35,35,10,10,0,0,10,10,10,305,0,0,40,25,175,45,25,0,20,0,0,545,25,0,0,20,10,0,25,100,120,115,0,25,140,10,10,35,15,140,10,25,30,0,0,0,0,10,0,85,10,0,0,20,55,45,130,835,10,10,20,0,0,10,0,30,25,55,10,0,0,20,105,0,0,0,20,25,65,10,0,15,0,315,40,0,10,10,0,15,25,0,0,205,0,0,0,10,35,105,445,15,125,10,25,50,0,250,65,0,0,0,0,0,240,35 -893,Language,Knowledge of languages,Census Profile 98-316-X2016001, Edo,"1,210",0,0,0,0,0,0,0,0,0,0,40,0,10,125,0,0,0,0,35,0,0,0,0,0,15,0,10,0,0,0,0,0,0,25,0,10,10,10,15,0,0,0,10,0,0,120,0,0,0,0,10,0,0,10,0,80,0,0,10,10,0,0,0,40,0,0,30,0,0,0,0,0,0,20,10,0,0,0,30,0,25,185,0,0,10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,20,0,0,0,0,10,15,0,0,0,0,0,10,0,0,20,0,0,0,0,10,20,45,10,50,0,0,0,0,40,0,0,0,0,0,0,20,0 -894,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ewe,265,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,20,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,10,10,0,0,0,0,0,0,10,0,0,0,0,10,0,0,10,0,0,0,15,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,15,0,0,10,0,10,0,0,0,10,0,0,0,0,0,10,0 -895,Language,Knowledge of languages,Census Profile 98-316-X2016001, Fulah (Pular; Pulaar; Fulfulde),290,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,15,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,20,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,10,0,10,0,0,0,0,10,0,0,0,0,40,0,0,10,0,0,0,0,15,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0 -896,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ga,470,0,0,0,0,0,0,0,0,10,10,0,20,0,10,0,0,0,0,10,0,0,0,0,10,0,10,0,0,0,0,0,0,0,30,0,0,0,0,10,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,15,15,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,15,0,0,0,10,0,0,10,20,0,0,15,0,0,0,0,0,20,0,0,0,0,10,0,0,0,0,0,10,10,0,0,0,0,0,10,0,0,0,0,10,10,0,0,25,0,0,0,10,0,0,65,0,15,0,30,0,0,10,25,0,0,0,10,0,20,0 -897,Language,Knowledge of languages,Census Profile 98-316-X2016001, Ganda,585,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,15,0,0,0,0,20,0,0,0,10,0,0,0,0,15,0,0,0,10,0,0,0,10,0,0,10,45,0,0,0,0,0,0,0,0,10,25,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,10,0,15,0,10,0,0,0,0,0,0,10,0,0,0,10,0,15,0,20,10,0,0,0,0,0,0,0,20,0,0,10,55,0,45,0,35,10,20,0,0,0,10,0,0,0,0,10,10,0 -898,Language,Knowledge of languages,Census Profile 98-316-X2016001, Igbo,"1,475",10,0,0,0,10,0,10,0,0,0,10,0,0,70,10,0,0,0,30,0,0,0,0,20,10,10,0,0,10,0,10,10,10,65,0,0,0,25,20,0,0,10,10,10,0,95,0,0,0,10,0,0,0,0,10,100,0,0,10,0,0,10,0,15,0,0,10,0,0,0,0,0,0,55,0,0,0,35,10,30,25,150,0,10,0,0,0,10,0,0,0,10,0,0,0,15,0,0,10,0,0,15,15,0,0,0,0,10,10,0,0,15,0,0,25,10,0,0,10,0,0,0,50,25,75,0,25,0,0,0,0,50,20,0,0,0,0,0,90,15 -899,Language,Knowledge of languages,Census Profile 98-316-X2016001, Lingala,"1,270",0,0,0,10,10,0,0,10,0,0,0,0,10,30,0,0,0,10,10,0,0,0,0,0,10,10,10,0,0,0,20,20,10,0,10,0,0,45,10,0,0,0,80,0,10,20,10,0,0,0,10,10,0,0,0,0,0,20,25,0,0,10,0,10,0,10,10,0,0,0,0,10,0,60,20,0,0,0,10,40,40,50,10,20,0,0,0,10,0,45,75,0,65,0,0,20,0,0,0,0,20,25,20,0,0,10,0,10,10,10,0,0,0,0,0,0,10,10,10,0,0,15,25,35,25,0,0,25,10,0,0,0,25,0,0,0,0,0,10,10 -900,Language,Knowledge of languages,Census Profile 98-316-X2016001, Rundi (Kirundi),400,0,0,0,10,0,10,0,0,0,10,0,0,0,25,0,10,0,0,0,20,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,25,0,0,0,0,15,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,20,0,0,0,0,0,0,0,0,0,30,15,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,25,0,0,0,0,0,10,15,0,10,0,0,0,0,10,0,0,10,0,0,0,0,0,0,25 -901,Language,Knowledge of languages,Census Profile 98-316-X2016001, Shona,755,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,10,0,0,0,0,10,10,0,0,0,0,10,20,0,0,0,0,25,10,0,0,0,0,0,0,0,0,0,10,0,10,25,10,30,0,10,15,0,10,0,0,20,0,0,0,10,10,0,0,0,0,0,0,45,10,0,10,0,20,75,0,0,0,0,10,0,10,0,0,0,60,0,0,0,0,10,0,10,0,0,0,0,0,0,10,10,0,0,10,0,25,0,0,25,0,0,30,20,10,10,0,0,0,0,0,0,20,10,10,0,0,0,0,10,10 -902,Language,Knowledge of languages,Census Profile 98-316-X2016001, Swahili,"6,210",0,30,10,20,90,20,50,10,15,10,25,85,30,265,80,20,20,20,45,35,0,10,30,90,35,10,10,15,0,10,95,35,30,85,10,35,0,105,35,80,10,0,180,15,0,190,25,20,30,20,25,35,45,15,0,10,15,45,165,0,0,55,10,230,10,45,45,10,10,10,30,0,15,150,20,10,30,40,25,80,30,175,15,35,40,35,20,100,10,65,85,20,35,10,0,170,0,10,10,0,70,10,70,20,55,65,10,60,75,10,55,20,80,10,75,60,20,0,205,0,10,200,130,110,120,15,50,30,70,30,15,20,180,0,10,0,15,10,115,20 -903,Language,Knowledge of languages,Census Profile 98-316-X2016001, Wolof,285,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,10,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,20,10,0,10,10,0,0,0,0,0,0,0,0,20,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,10,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0 -904,Language,Knowledge of languages,Census Profile 98-316-X2016001, Yoruba,"3,600",15,0,0,0,10,0,35,10,0,10,15,0,10,185,0,0,0,0,45,0,0,0,10,30,10,0,15,0,0,0,40,10,30,100,10,0,0,45,55,25,10,10,10,15,0,140,10,10,15,0,0,20,0,10,30,95,0,0,50,0,10,0,10,90,0,35,70,0,0,0,10,10,20,85,10,0,0,50,45,10,125,355,0,10,0,15,0,50,0,15,35,0,20,10,0,35,10,0,0,0,0,15,0,10,10,30,10,20,70,10,0,15,0,0,0,0,0,25,20,0,0,0,75,120,115,40,170,0,35,0,0,115,60,10,0,0,0,0,285,20 -905,Language,Knowledge of languages,Census Profile 98-316-X2016001, Niger-Congo languages; n.i.e.,"3,975",0,10,10,10,20,0,20,0,10,0,10,40,15,70,0,10,0,0,120,25,0,20,0,55,30,0,10,0,10,20,45,20,40,70,20,20,10,80,35,85,0,0,75,25,10,175,10,0,10,10,0,15,10,0,0,35,30,35,55,10,0,85,0,95,10,0,40,20,0,0,10,30,0,105,0,0,0,40,30,55,75,145,15,10,50,10,15,20,0,15,40,45,110,0,0,85,20,0,10,0,25,0,50,125,20,55,0,30,35,40,30,30,10,35,10,30,10,20,30,0,10,60,50,80,130,15,105,25,40,30,0,65,110,25,0,0,0,0,110,35 -906,Language,Knowledge of languages,Census Profile 98-316-X2016001, Nilo-Saharan languages,310,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,10,0,20,0,0,0,10,0,0,0,0,20,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,25,0,0,10,15,0,0,0,0,0,0,0,0,25,0,0,0,0,0,10,15,0 -907,Language,Knowledge of languages,Census Profile 98-316-X2016001, Dinka,55,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,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,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,10,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,15,0 -908,Language,Knowledge of languages,Census Profile 98-316-X2016001, Nilo-Saharan languages; n.i.e.,250,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,15,0,0,0,0,0,10,0,0,0,0,10,10,10,0,0,0,0,0,0,0,0,0,10,0,20,0,0,0,10,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,20,0,0,10,15,0,0,0,0,0,0,0,0,25,10,0,0,0,0,10,0,0 -909,Language,Knowledge of languages,Census Profile 98-316-X2016001, Sign languages,"3,090",10,0,10,40,30,10,30,20,10,0,20,10,30,30,10,10,10,20,35,25,45,0,20,30,45,0,10,20,0,35,25,45,45,15,10,25,0,25,10,45,10,10,10,0,10,10,40,20,25,20,40,20,0,25,0,10,45,0,30,40,20,30,15,25,15,20,85,10,20,35,20,10,10,50,10,10,20,45,10,35,10,35,20,50,35,10,20,20,10,40,10,10,25,20,10,75,30,20,15,10,10,0,50,30,25,45,25,0,20,45,20,0,10,65,20,15,25,10,30,10,10,10,30,50,25,10,20,20,20,60,20,0,60,35,35,30,10,20,30,15 -910,Language,Knowledge of languages,Census Profile 98-316-X2016001, American Sign Language,"1,950",0,0,0,35,10,15,10,10,0,20,10,10,10,10,0,0,0,10,20,35,20,0,15,30,10,10,0,10,10,20,10,10,15,0,10,40,0,20,0,30,0,0,0,0,0,10,30,0,30,10,10,0,0,10,0,0,40,0,10,20,10,10,15,10,15,10,50,10,20,35,10,10,0,15,10,0,10,35,0,35,10,20,10,65,25,10,0,25,0,45,10,10,25,10,20,50,0,10,20,0,0,0,35,20,10,50,20,0,0,35,10,0,10,55,15,10,30,0,0,0,0,10,10,45,0,10,0,20,15,60,0,20,30,30,25,15,10,0,10,15 -911,Language,Knowledge of languages,Census Profile 98-316-X2016001, Quebec Sign Language,10,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,0,0,0,0,0,0,0,10,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,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,0,0,0,0,0,0 -912,Language,Knowledge of languages,Census Profile 98-316-X2016001, Sign languages; n.i.e.,"1,195",0,10,10,0,20,0,10,20,10,0,0,10,10,0,10,0,0,0,35,0,25,10,10,10,40,0,0,0,0,15,25,10,35,25,10,0,0,20,0,25,0,0,10,0,0,20,0,0,0,0,25,0,0,20,10,10,0,10,10,20,0,15,0,25,0,20,10,0,10,0,0,0,10,35,0,10,20,0,0,20,0,20,0,15,0,0,0,0,0,0,0,10,0,0,0,30,30,15,0,0,0,10,20,0,20,0,10,0,0,20,0,0,0,0,10,10,10,20,20,0,0,10,0,15,10,0,10,0,20,20,10,0,25,10,10,10,10,15,10,0 -913,Language,Knowledge of languages,Census Profile 98-316-X2016001, Sino-Tibetan languages,"279,900","15,925","10,730",340,"1,755","3,905",610,"6,890","5,500","4,005",800,115,"4,195",920,"1,150",795,210,"1,190",385,535,720,255,330,530,"3,465","1,955",475,685,410,710,"1,225","6,620","2,555","2,665","1,010",775,995,260,840,95,370,685,335,"1,020",220,390,"1,505","1,905",210,"2,890",625,590,810,"7,855",55,170,475,215,620,"1,885",900,160,"1,015","5,705",380,125,115,"15,550","1,505",720,500,645,"1,275",260,"3,125",160,160,"17,965","1,930",765,"1,230",305,380,615,"1,205",450,"4,465","2,410","1,910","1,030",945,675,840,540,585,995,"2,475",210,330,"5,300",410,"1,305",145,565,835,830,"1,820",200,135,355,"2,440","5,395","3,415","17,045",785,"8,315",655,405,75,390,"2,890",720,600,"7,785",530,515,770,310,325,"1,745","15,830","3,310",460,"3,595",800,595,740,700,430,"1,675",875 -914,Language,Knowledge of languages,Census Profile 98-316-X2016001, Chinese languages,"273,765","15,920","10,735",220,"1,760","3,895",560,"6,880","5,490","3,980",795,95,"4,185",885,975,785,190,"1,195",360,530,685,205,315,525,"3,460","1,890",455,685,410,680,"1,195","6,625","2,555","2,545",980,715,960,260,815,90,365,680,300,985,215,380,"1,495","1,870",220,"2,860",595,565,805,"7,840",50,165,465,215,565,"1,645",730,160,935,"5,715",380,125,115,"15,550","1,505",715,480,625,"1,255",135,"3,100",160,155,"17,950","1,400",760,"1,160",300,370,600,"1,190",290,"4,460","2,400","1,895","1,025",875,675,835,545,510,995,"2,480",205,325,"5,295",410,"1,290",140,460,460,825,"1,820",195,135,355,595,"5,380","3,400","17,060",430,"8,300",625,375,75,375,"2,890",720,595,"7,740",515,485,775,300,250,"1,725","15,830","3,310",450,"3,590",795,585,730,685,435,"1,610",860 -915,Language,Knowledge of languages,Census Profile 98-316-X2016001, Cantonese,"141,260","10,990","5,815",115,800,"1,830",135,"1,760","2,600","1,935",435,85,"1,940",680,765,585,100,470,200,415,330,95,150,295,"1,395","1,100",200,290,260,540,850,"2,485","1,345","1,630",710,495,665,145,370,70,105,285,125,420,100,180,"1,230","1,520",135,"1,090",235,270,520,"3,350",20,135,360,155,290,610,435,140,710,"2,930",185,80,40,"7,170",565,415,235,350,935,25,"1,995",135,75,"11,595",615,330,740,245,235,365,460,115,"2,105",750,955,805,355,465,490,290,345,685,"1,090",175,210,"1,690",145,545,110,335,295,340,"1,200",90,90,155,350,"3,580","1,580","9,320",290,"4,285",335,180,35,255,"1,505",325,285,"3,515",295,215,300,200,150,500,"6,450","1,080",225,"1,880",555,405,555,325,170,560,565 -916,Language,Knowledge of languages,Census Profile 98-316-X2016001, Hakka,"3,035",275,110,0,10,10,0,20,25,30,10,0,80,20,10,10,0,0,10,10,15,15,10,10,30,20,0,20,0,10,25,40,105,0,10,0,0,0,50,10,0,0,0,15,0,0,25,25,0,20,0,0,25,45,0,0,0,0,0,0,0,0,0,45,0,0,15,155,0,0,0,25,10,0,85,0,0,410,40,20,10,20,10,10,10,0,15,25,20,0,0,10,10,20,0,0,10,0,15,45,10,10,0,0,0,0,105,0,0,0,10,20,10,155,0,135,0,10,0,10,0,0,20,40,0,0,0,0,0,10,60,40,0,55,30,25,0,0,10,25,25 -917,Language,Knowledge of languages,Census Profile 98-316-X2016001, Mandarin,"150,735","6,935","6,210",90,"1,010","2,335",400,"5,505","3,345","2,390",395,10,"2,555",290,155,280,100,825,165,120,355,100,190,265,"2,255",905,275,405,165,210,380,"4,590","1,340","1,080",250,265,345,135,455,30,260,425,175,625,155,210,215,475,110,"1,950",345,305,390,"5,130",45,30,95,90,250,"1,075",300,35,295,"3,015",185,50,80,"9,560","1,025",300,245,270,370,100,"1,245",20,85,"7,930",730,490,480,70,140,285,800,190,"2,695","1,740","1,070",310,550,250,380,260,175,345,"1,540",30,100,"3,870",265,785,25,140,185,475,590,90,15,240,255,"2,175","2,115","9,230",140,"4,715",295,180,10,135,"1,630",435,310,"4,820",255,210,465,110,120,"1,235","10,840","2,410",255,"1,965",210,155,235,385,285,875,385 -918,Language,Knowledge of languages,Census Profile 98-316-X2016001, Min Dong,460,30,60,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,65,10,0,0,30,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,25,0,100,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0 -919,Language,Knowledge of languages,Census Profile 98-316-X2016001, Min Nan (Chaochow; Teochow; Fukien; Taiwanese),"7,235",210,210,30,65,65,35,155,110,40,20,0,70,35,85,0,0,25,10,65,30,20,20,10,80,25,10,10,0,25,25,135,55,60,95,20,25,10,45,0,20,20,10,20,0,10,170,25,0,10,20,10,45,140,0,10,35,10,45,35,15,0,20,160,0,10,0,345,55,40,30,10,70,15,30,0,10,490,65,10,35,10,0,0,20,10,205,80,95,35,20,25,10,40,10,20,100,25,10,110,20,15,0,20,0,20,115,30,0,15,35,185,75,350,0,105,10,10,25,15,40,0,0,195,10,50,40,10,10,105,470,70,30,60,35,25,40,20,10,130,45 -920,Language,Knowledge of languages,Census Profile 98-316-X2016001, Wu (Shanghainese),"3,225",115,85,10,25,65,0,85,80,65,10,0,40,0,0,0,10,10,20,0,15,10,0,10,50,0,25,0,0,0,10,110,35,15,0,0,0,20,10,0,0,45,0,25,0,0,0,10,10,50,0,20,0,85,0,0,0,10,0,80,0,0,25,25,0,0,0,150,40,20,10,0,10,0,65,0,15,90,35,10,20,0,0,10,20,10,85,30,40,10,15,0,10,0,0,15,25,0,0,30,15,10,0,0,0,45,10,0,0,0,10,45,60,220,10,115,0,0,0,0,10,0,25,120,0,0,0,0,0,35,225,75,10,25,25,10,0,15,10,10,0 -921,Language,Knowledge of languages,Census Profile 98-316-X2016001, Chinese; n.o.s.,"7,055",200,150,10,125,55,10,315,140,85,35,0,85,10,65,15,15,65,25,20,10,0,0,25,155,45,10,10,10,0,30,85,90,70,10,35,50,0,50,10,20,50,10,30,0,15,60,35,10,155,15,0,20,110,0,20,0,10,40,75,0,0,45,185,20,0,0,300,55,20,20,10,10,10,100,0,10,260,75,50,55,10,35,25,30,0,115,55,50,25,80,20,25,0,15,20,85,0,10,95,20,45,0,40,25,25,50,0,45,0,55,145,30,280,20,175,25,10,0,30,35,25,10,235,35,35,35,30,10,90,335,130,10,80,65,10,25,10,10,105,25 -922,Language,Knowledge of languages,Census Profile 98-316-X2016001, Chinese languages; n.i.e.,75,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,10,0,0,0,0,10,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,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,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,20,0,0,0,0,0,0,0,0,0,0 -923,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tibeto-Burman languages,"6,400",15,10,115,10,0,50,0,0,20,0,20,25,25,170,15,10,0,20,0,35,55,15,0,20,65,20,0,0,45,25,10,0,105,20,55,35,0,25,0,10,0,40,25,0,10,10,40,0,30,40,20,10,20,0,0,20,10,65,225,175,0,75,10,0,0,0,40,0,0,10,0,20,120,10,0,10,10,525,0,65,10,15,20,10,165,0,20,15,20,90,0,10,0,70,0,10,0,20,0,0,15,0,105,390,10,0,0,0,0,"1,875",20,25,0,360,25,30,20,0,10,0,0,0,65,10,20,0,0,70,20,10,0,10,20,0,10,10,10,0,65,10 -924,Language,Knowledge of languages,Census Profile 98-316-X2016001, Burmese,885,15,10,10,0,0,40,0,0,25,0,10,10,0,0,10,10,0,20,0,15,25,0,0,20,15,0,0,0,30,35,10,0,40,0,15,0,0,15,0,0,0,0,0,0,0,0,20,0,0,10,0,0,25,0,0,20,10,25,0,0,0,20,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,10,0,0,0,0,45,0,10,0,0,0,0,0,0,15,25,0,0,0,0,0,0,20,0,0,15,25,0,0,0,10,0,0,0,10,0,10,0,0,0,10,0,0,0,0,0,10,0,10,0,40,0 -925,Language,Knowledge of languages,Census Profile 98-316-X2016001, Karenic languages,245,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,10,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,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,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 -926,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tibetan,"5,045",0,0,105,0,0,10,10,0,0,0,20,15,25,0,0,0,0,0,0,20,35,20,0,0,35,25,0,0,20,0,0,0,50,0,45,30,0,0,0,0,0,35,30,0,0,0,15,0,25,20,15,0,0,0,0,0,0,35,220,170,0,60,0,0,0,0,0,0,0,0,0,15,120,10,0,10,0,530,0,50,0,0,10,0,165,0,0,15,10,80,0,10,0,0,0,0,0,20,0,0,15,0,85,370,10,0,0,0,0,"1,875",0,20,0,340,0,35,20,0,0,0,0,0,20,15,15,0,0,70,0,0,0,0,10,0,0,10,0,0,0,0 -927,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tibeto-Burman languages; n.i.e.,295,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,20,0,0,0,10,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,10,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,10,0,0,15,0,0,0,65,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,30,0 -928,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tai-Kadai languages,"2,205",10,10,0,25,10,10,70,20,10,0,0,25,20,90,10,25,20,10,10,15,0,15,0,60,15,10,0,0,10,0,20,10,30,40,10,10,0,0,10,45,0,0,25,0,10,70,45,10,0,25,0,20,0,0,10,35,10,10,25,30,20,0,65,0,0,0,20,15,0,10,10,10,10,20,0,0,10,35,0,15,10,55,20,10,0,35,25,40,0,35,15,25,0,15,15,20,0,0,10,10,0,0,10,0,10,20,10,0,0,10,20,0,0,35,10,10,40,0,0,0,10,0,75,20,75,10,20,0,20,25,15,0,60,15,0,15,20,10,20,40 -929,Language,Knowledge of languages,Census Profile 98-316-X2016001, Lao,845,20,0,0,0,0,0,20,10,0,0,0,20,0,70,10,10,0,0,10,0,0,0,0,20,0,0,0,0,0,0,0,10,20,20,10,0,0,0,0,0,0,0,0,0,0,70,0,10,0,0,0,0,0,0,0,30,0,0,0,10,15,0,10,0,0,0,10,0,0,10,0,0,10,0,0,0,10,10,0,10,0,45,0,10,0,10,10,25,0,10,10,10,0,0,0,0,10,0,0,0,0,0,0,10,0,10,10,0,0,10,20,0,0,0,0,0,0,0,0,0,10,0,10,0,45,0,20,0,15,10,0,0,25,0,0,10,0,0,10,35 -930,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $100,000 to $149,999","119,810",530,525,620,"2,190","2,035",720,"1,495","1,260",685,"1,835",90,640,"1,285",100,500,345,775,475,245,855,215,915,955,"2,150",700,835,730,545,730,"1,165",915,380,"1,375",625,470,"1,440",930,265,170,720,"1,010",300,300,680,865,195,835,635,455,"1,510","1,820",555,765,465,170,140,795,160,"2,390",780,205,210,605,515,895,565,910,"1,070","1,460","1,305","1,470",750,495,425,245,715,435,"2,270",320,"1,420",150,200,"1,635","1,940",495,690,675,"3,140",970,390,130,760,745,640,750,"1,245",320,585,520,950,290,205,430,915,"1,890","1,605",925,140,270,500,"2,055","1,370",610,"1,875",695,230,"1,940",195,290,905,405,465,"6,850",530,505,540,355,245,585,"2,780","1,010",935,830,945,475,710,870,"1,075",380,450 -931,Language,Knowledge of languages,Census Profile 98-316-X2016001, Thai,"1,455",0,20,0,30,10,0,50,10,10,0,0,30,20,30,0,25,20,10,0,10,0,15,0,50,15,10,0,0,0,0,40,0,20,20,0,10,0,0,10,35,0,0,25,0,0,20,30,0,0,25,10,25,0,0,0,0,0,10,25,10,10,0,65,10,0,0,0,15,0,0,10,10,0,10,0,0,10,30,0,10,10,0,20,0,0,25,10,30,0,10,10,20,0,15,10,20,0,0,0,0,20,0,0,0,0,0,0,10,0,0,10,10,0,35,0,15,40,10,0,0,0,0,65,0,40,0,0,0,10,15,15,10,30,15,0,10,20,10,20,10 -932,Language,Knowledge of languages,Census Profile 98-316-X2016001, Tai-Kadai languages; n.i.e.,20,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -933,Language,Knowledge of languages,Census Profile 98-316-X2016001, Turkic languages,"15,400",25,15,15,185,385,280,185,325,160,130,30,60,30,145,25,190,95,125,85,40,60,25,0,125,55,90,25,25,25,30,390,135,170,655,30,130,55,35,0,50,70,230,415,120,40,85,35,15,140,180,65,10,95,20,30,90,10,30,290,10,40,60,55,195,20,35,315,90,120,105,10,30,10,55,70,10,0,195,10,75,90,90,100,345,60,140,345,95,15,145,75,165,75,30,20,300,25,40,125,15,20,75,120,0,140,30,0,0,25,55,30,210,55,185,130,140,55,50,360,15,15,145,365,60,55,410,55,85,320,530,110,75,135,45,0,65,55,30,730,60 -934,Language,Knowledge of languages,Census Profile 98-316-X2016001, Azerbaijani,"1,470",0,0,0,0,20,60,15,45,15,0,0,0,0,0,0,0,15,15,0,0,0,0,0,30,0,35,0,0,0,10,90,0,0,0,0,10,10,0,0,20,0,10,15,0,0,0,0,0,25,20,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,25,20,0,0,0,0,0,10,0,0,0,20,0,0,0,0,10,25,0,20,100,10,0,10,10,0,10,0,0,20,0,0,20,0,10,0,0,0,20,0,0,10,10,0,0,50,0,0,0,15,0,0,0,0,10,30,50,0,0,180,10,0,15,200,15,10,0,0,0,0,10,10,10,0 -935,Language,Knowledge of languages,Census Profile 98-316-X2016001, Turkish,"13,000",25,15,25,180,365,220,170,240,125,120,30,70,30,150,15,180,85,115,65,35,55,25,0,115,55,75,25,20,25,20,320,145,165,640,25,125,50,25,10,40,65,175,305,110,25,95,25,15,100,135,55,15,90,10,35,90,0,25,180,20,45,55,35,155,10,30,275,70,110,100,0,30,0,30,70,0,0,165,10,60,85,65,80,315,65,90,230,100,25,115,40,160,75,20,10,275,25,40,110,15,10,65,115,10,115,10,0,0,10,55,30,140,50,100,125,120,55,50,325,25,15,140,330,55,60,155,45,90,285,325,90,60,65,30,0,65,55,25,695,55 -936,Language,Knowledge of languages,Census Profile 98-316-X2016001, Uyghur,325,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,20,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,0,0,10,0,20,0,0,0,15,0,0,0,0,0,0,0 -937,Language,Knowledge of languages,Census Profile 98-316-X2016001, Uzbek,630,0,0,0,0,0,10,0,20,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,15,0,0,0,0,0,15,0,0,25,0,0,0,0,0,0,0,30,20,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,10,0,0,0,0,0,20,30,0,0,0,25,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,85,0,10,0,0,30,0,0,0,0,0,0,75,0,0,0,20,10,0,35,0,0,0,0,0,10,0 -938,Language,Knowledge of languages,Census Profile 98-316-X2016001, Turkic languages; n.i.e.,380,0,0,0,10,0,10,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,10,0,0,0,0,0,0,10,0,0,0,10,20,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,10,10,0,0,0,10,0,10,10,0,0,15,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,15,0,0,0,10,0,0,40,0,0,0,0,10,0,0,0,0,0,0,10,20,0 -939,Language,Knowledge of languages,Census Profile 98-316-X2016001, Uralic languages,"17,070",55,35,65,195,340,205,130,215,165,215,10,80,100,235,25,130,70,65,55,85,50,150,70,130,235,185,75,60,35,105,220,55,235,245,95,65,145,105,40,375,200,60,45,230,100,20,40,80,65,250,195,25,135,75,25,75,215,35,220,110,60,65,35,215,95,145,130,155,110,130,145,45,95,35,10,110,15,210,45,70,50,10,200,275,40,130,195,85,80,75,65,150,380,30,50,455,25,50,110,70,15,80,140,315,215,95,45,25,75,185,55,180,20,165,95,50,120,40,95,10,15,125,290,245,110,325,225,65,190,240,155,165,125,85,60,160,100,150,205,100 -940,Language,Knowledge of languages,Census Profile 98-316-X2016001, Estonian,"1,985",20,10,20,25,65,10,10,35,10,15,0,15,15,0,0,0,20,20,0,15,10,0,15,10,20,0,30,45,0,45,25,10,20,0,0,0,10,0,0,10,0,0,10,10,10,0,10,25,10,35,30,0,10,10,0,10,25,20,25,30,0,0,10,0,10,30,10,0,20,65,50,0,20,0,0,10,10,20,10,10,0,10,100,60,10,15,20,10,40,10,10,10,25,0,0,25,0,25,10,0,0,0,10,10,40,35,0,0,10,0,0,0,0,0,20,10,0,0,10,0,0,50,60,75,0,10,0,0,20,50,0,15,10,25,0,0,20,35,0,0 -941,Language,Knowledge of languages,Census Profile 98-316-X2016001, Finnish,"1,435",0,25,0,40,10,0,10,0,10,0,0,0,20,0,0,10,10,10,0,10,0,0,20,40,10,0,0,0,10,20,10,0,0,10,0,10,10,0,0,0,0,0,0,55,0,0,0,10,0,30,20,0,25,0,0,10,10,0,0,25,10,0,0,0,0,0,40,0,10,10,30,0,10,10,0,0,0,10,20,10,0,0,20,20,10,10,10,10,10,0,0,20,0,0,10,80,0,10,30,10,15,0,0,0,45,0,30,0,15,0,15,35,0,0,20,10,25,0,10,0,0,10,60,20,15,0,0,0,40,20,0,15,20,10,10,0,10,35,15,0 -942,Language,Knowledge of languages,Census Profile 98-316-X2016001, Hungarian,"13,700",30,20,45,155,255,190,110,165,145,195,20,65,60,230,20,130,60,30,45,70,40,155,35,110,205,180,60,15,25,55,170,40,195,230,90,60,125,95,45,350,195,60,35,175,100,30,30,45,50,205,155,20,115,65,20,60,175,20,200,65,55,40,25,210,95,125,90,150,80,60,60,50,70,25,10,85,10,195,20,50,50,10,90,200,30,110,155,70,20,65,45,125,350,30,25,380,35,20,80,65,0,75,110,295,155,55,20,35,60,180,40,135,20,160,75,30,80,40,70,20,10,65,205,155,95,315,225,65,130,180,145,120,95,50,60,140,70,100,175,85 -943,Language,Knowledge of languages,Census Profile 98-316-X2016001, Uralic languages; n.i.e.,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -944,Language,Knowledge of languages,Census Profile 98-316-X2016001, Other languages; n.i.e.,"1,310",0,0,0,0,10,0,25,20,0,0,10,25,0,35,10,0,0,0,10,0,10,0,0,20,10,0,0,0,10,0,0,10,20,25,0,0,0,10,0,20,10,0,0,0,0,60,25,0,10,10,0,20,15,25,30,20,0,0,40,30,0,15,10,25,10,0,10,0,0,10,0,0,0,35,10,0,10,25,30,0,20,60,0,10,0,0,0,10,0,70,0,25,25,0,0,10,0,0,35,0,0,30,10,0,0,20,0,20,0,0,0,10,0,0,10,0,0,0,25,10,0,10,30,30,30,0,25,10,0,0,0,15,35,0,0,0,0,0,20,0 -945,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for the population aged 15 years and over in private households,"2,294,785","25,005","20,400","10,265","26,295","23,410","13,270","23,945","18,730","11,150","18,560","5,250","24,610","18,345","16,965","6,280","12,360","7,745","9,880","14,350","10,195","8,420","9,590","11,195","29,085","21,740","13,660","13,255","12,175","7,950","14,060","22,760","20,130","31,825","29,220","10,430","17,290","13,070","18,075","7,645","17,085","15,895","9,770","17,535","10,615","9,260","24,430","11,915","8,360","13,210","18,980","19,810","10,935","14,800","8,660","10,255","12,585","12,065","11,300","37,410","12,010","9,430","14,325","16,150","17,740","7,590","6,280","37,385","13,645","11,280","12,270","13,360","13,660","8,725","35,865","8,370","9,115","22,380","29,830","14,275","17,025","10,865","25,740","13,780","26,550","9,670","13,950","20,820","28,390","9,740","16,075","10,750","17,840","15,400","7,740","12,495","28,900","8,975","6,490","13,760","9,270","9,040","8,720","18,740","12,565","18,000","38,125","8,020","7,825","13,080","18,595","23,140","15,040","21,120","20,830","23,140","12,535","17,615","8,395","15,250","14,490","6,170","14,550","61,985","22,395","27,850","22,640","14,605","9,425","23,330","44,340","14,935","18,585","43,410","10,110","6,685","11,345","9,995","11,170","23,530","12,065" -946,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of total income recipients aged 15 years and over in private households,"2,187,030","23,620","19,295","9,930","25,680","22,390","12,680","22,895","17,745","10,575","17,685","4,935","23,170","17,575","15,810","5,980","11,785","7,305","9,540","13,480","9,980","8,020","9,315","10,620","28,385","20,460","13,035","12,515","11,665","7,685","13,555","21,530","18,965","30,745","27,720","10,125","16,540","12,565","16,945","7,165","16,075","15,215","9,290","16,205","10,200","9,010","22,905","11,480","8,025","12,325","18,275","19,165","10,420","14,045","8,310","9,645","11,805","11,665","10,585","36,005","11,545","8,870","13,485","15,725","16,745","7,305","5,960","35,345","13,020","10,750","11,695","12,740","13,350","8,430","33,530","7,940","8,785","21,195","28,980","13,450","16,600","10,260","23,845","13,200","25,580","9,300","13,205","19,660","27,930","9,440","15,340","10,025","17,100","14,540","7,435","12,225","27,115","8,515","6,295","13,030","8,835","8,570","8,265","17,795","12,135","17,320","35,950","7,700","7,345","12,200","17,995","22,410","14,215","20,070","20,100","21,930","11,740","16,930","7,945","13,885","14,160","6,015","13,775","60,605","21,065","26,250","21,445","13,880","8,960","22,110","41,510","14,270","17,750","40,640","9,760","6,475","11,005","9,590","10,900","22,265","11,460" -947,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Median total income in 2015 among recipients ($),"30,089",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -948,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of after-tax income recipients aged 15 years and over in private households - 100% data,"2,187,340","23,635","19,295","9,930","25,685","22,390","12,685","22,905","17,755","10,580","17,685","4,945","23,185","17,575","15,820","5,980","11,785","7,305","9,550","13,480","9,975","8,025","9,320","10,630","28,395","20,470","13,035","12,530","11,665","7,685","13,560","21,530","18,965","30,765","27,710","10,120","16,535","12,570","16,955","7,165","16,070","15,225","9,285","16,205","10,200","9,010","22,905","11,475","8,025","12,325","18,280","19,175","10,420","14,045","8,320","9,650","11,800","11,670","10,585","36,005","11,550","8,875","13,485","15,725","16,750","7,300","5,960","35,355","13,025","10,745","11,705","12,720","13,355","8,430","33,525","7,945","8,785","21,195","28,980","13,455","16,610","10,265","23,860","13,195","25,585","9,305","13,210","19,670","27,940","9,435","15,340","10,025","17,105","14,525","7,435","12,235","27,110","8,510","6,290","13,035","8,835","8,570","8,265","17,800","12,125","17,335","35,945","7,705","7,340","12,205","18,000","22,410","14,215","20,075","20,110","21,930","11,745","16,940","7,945","13,895","14,160","6,015","13,780","60,610","21,060","26,260","21,450","13,880","8,965","22,105","41,510","14,275","17,740","40,650","9,765","6,470","11,000","9,595","10,905","22,270","11,460" -949,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Median after-tax income in 2015 among recipients ($),"27,958",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -950,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of market income recipients aged 15 years and over in private households - 100% data,"1,888,445","19,605","16,340","9,040","23,760","20,495","11,135","19,130","15,820","9,420","16,665","4,005","19,150","15,605","11,615","4,890","10,190","6,955","8,220","11,075","8,845","6,910","8,780","9,780","25,375","17,470","11,725","10,820","10,320","6,720","12,010","18,420","15,595","26,965","23,460","9,075","14,285","11,595","13,585","5,855","13,860","13,915","8,080","12,350","9,390","8,640","17,765","9,740","7,415","10,275","16,710","18,085","9,205","11,900","7,395","7,845","9,515","10,685","8,550","32,295","10,470","7,295","10,685","12,630","13,650","7,050","5,280","28,960","11,750","10,245","11,220","12,140","12,150","7,495","27,310","6,965","8,175","17,625","25,880","11,090","13,750","8,355","18,100","12,395","23,160","7,800","11,115","16,365","26,530","8,790","12,260","7,340","14,580","12,195","6,630","11,250","23,330","7,555","5,765","11,310","8,360","6,500","6,925","14,610","10,455","16,455","31,045","7,265","5,895","9,485","14,765","19,370","13,090","17,070","18,530","18,430","9,375","15,995","6,585","10,010","12,765","5,370","11,150","56,715","16,735","22,285","17,880","10,955","7,325","18,845","35,620","12,020","15,640","32,225","8,575","5,645","9,690","9,015","10,350","18,490","9,985" -951,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $30,000 to $39,999","221,475","2,465","2,020","1,095","2,150","1,980","1,290","1,635","1,490",975,"1,410",635,"2,640","1,705","2,155",480,"1,490",370,"1,040","1,775",860,"1,030",735,880,"2,585","2,180","1,500","1,220","1,275",590,"1,175","2,210","2,440","3,315","3,725","1,235","1,410","1,245","2,245",890,"1,870","1,560","1,060","1,805",945,700,"3,065",990,775,"1,185","1,730","1,670","1,040","1,275",875,"1,230","1,520","1,210","1,395","3,570","1,105","1,040","1,525","1,345","1,915",510,505,"3,735","1,090",645,725,860,"1,415",895,"4,120","1,050",830,"2,105","2,690","1,565","1,235","1,370","3,135","1,015","2,360",970,"1,120","2,060","2,205",730,"1,795","1,040","1,950","1,540",715,"1,305","2,850",990,535,"1,270",695,750,935,"2,145","1,105","1,105","3,925",610,865,"1,370","2,155","1,870","1,050","1,990","1,860","2,410","1,325","1,295","1,025","1,350","1,415",570,"1,565","4,665","2,445","3,305","2,460","1,665",925,"2,625","3,125","1,135","2,000","4,560",810,585,970,845,935,"2,700","1,450" -952,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Median market income in 2015 among recipients ($),"31,733",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -953,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of government transfers recipients aged 15 years and over in private households - 100% data,"1,598,440","19,125","15,075","6,870","17,445","15,735","9,285","16,185","12,465","8,105","12,015","3,970","17,930","12,450","13,415","4,280","8,815","4,515","7,000","10,705","6,520","5,980","6,250","7,390","18,350","15,060","9,430","9,205","8,505","5,475","9,290","16,660","14,710","22,670","21,745","7,375","11,625","8,785","13,625","5,675","12,275","10,845","6,840","13,290","7,200","5,845","19,015","8,110","5,790","9,335","12,165","12,495","7,710","10,985","6,150","7,900","9,535","8,370","8,365","24,435","7,820","6,795","10,755","12,415","13,185","4,765","4,175","28,420","8,965","7,035","7,490","8,330","9,150","5,915","26,825","6,165","6,345","17,205","18,910","10,610","10,630","8,090","19,800","8,695","16,365","6,790","10,045","15,465","14,465","6,235","11,890","8,260","12,985","10,860","5,210","8,685","20,440","6,210","4,355","10,015","5,910","6,570","6,280","13,815","8,535","11,180","26,500","5,090","6,020","9,840","13,825","14,775","9,735","16,185","13,805","17,365","9,395","10,990","6,295","11,405","10,205","4,455","10,730","33,270","16,665","20,335","16,930","10,915","6,835","16,925","29,160","10,405","13,400","32,530","6,610","4,355","8,045","6,340","7,225","17,780","8,655" -954,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Median government transfers in 2015 among recipients ($),"2,249",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -955,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of employment income recipients aged 15 years and over in private households - 100% data,"1,578,750","15,335","13,035","7,425","19,670","15,545","9,250","15,185","12,515","6,775","13,210","3,370","15,670","12,915","9,985","4,305","8,785","5,140","6,975","9,575","7,650","5,915","6,935","7,985","22,445","14,930","9,980","8,830","8,685","5,680","10,115","14,755","13,335","23,310","19,380","7,860","12,575","9,225","11,565","4,935","11,485","11,055","6,855","10,545","7,955","6,790","14,630","8,490","5,550","8,960","14,480","15,375","7,400","8,670","5,690","6,100","8,085","9,400","7,350","27,170","9,300","6,120","8,990","10,525","11,065","5,360","4,450","22,860","9,780","8,545","9,150","9,990","10,870","6,500","23,615","5,530","6,210","13,845","22,330","9,360","12,610","7,385","16,005","10,565","20,180","6,870","8,545","13,300","25,050","7,585","11,235","6,255","12,275","10,275","5,535","9,550","19,520","6,265","4,995","8,650","6,610","5,970","5,835","12,130","9,285","12,470","26,940","6,185","4,650","8,045","13,560","17,240","10,080","12,535","15,195","14,040","8,170","13,535","5,425","8,660","10,695","4,540","9,160","51,890","13,960","19,055","15,105","9,585","6,340","15,525","27,935","9,325","11,990","26,880","7,570","4,905","8,160","7,690","8,330","15,795","7,865" -956,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Median employment income in 2015 among recipients ($),"33,602",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -957,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for the population aged 15 years and over in private households - 25% sample data,"2,294,785","24,995","20,400","10,265","26,290","23,395","13,265","23,940","18,730","11,150","18,560","5,260","24,630","18,355","16,960","6,285","12,355","7,750","9,880","14,350","10,190","8,420","9,640","11,185","29,100","21,740","13,650","13,245","12,195","7,955","14,050","22,760","20,125","31,755","29,195","10,435","17,285","13,080","18,070","7,640","17,085","15,900","9,770","17,540","10,610","9,285","24,430","11,915","8,360","13,210","18,975","19,820","10,935","14,805","8,660","10,265","12,585","12,065","11,295","37,415","12,000","9,425","14,325","16,145","17,745","7,595","6,280","37,390","13,645","11,285","12,270","13,365","13,650","8,725","35,875","8,370","9,110","22,370","29,825","14,280","17,025","10,870","25,750","13,780","26,545","9,680","13,950","20,830","28,395","9,725","16,070","10,755","17,840","15,395","7,740","12,500","28,890","8,970","6,490","13,765","9,270","9,045","8,720","18,740","12,575","18,010","38,115","8,025","7,820","13,080","18,585","23,145","15,040","21,120","20,835","23,140","12,530","17,620","8,395","15,240","14,485","6,175","14,550","62,000","22,395","27,845","22,720","14,600","9,420","23,335","44,330","14,860","18,580","43,395","10,110","6,690","11,380","10,000","11,095","23,525","12,060" -958,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $40,000 to $49,999","187,235","1,895","1,560",950,"1,935","1,915","1,100","1,370","1,415",785,"1,215",490,"2,175","1,505","1,460",400,"1,195",345,920,"1,295",840,810,680,935,"2,405","1,995","1,160","1,075","1,080",560,"1,110","1,830","1,915","2,680","2,810",905,"1,225","1,110","1,690",675,"1,400","1,425",930,"1,325",835,650,"2,175",895,845,"1,025","1,590","1,605",985,"1,015",750,855,"1,170",990,"1,120","3,400","1,045",835,"1,330","1,055","1,585",460,415,"2,905",925,605,720,805,"1,380",835,"3,330",840,790,"1,520","2,610","1,295","1,175","1,100","2,125",975,"2,395",775,910,"1,535","2,510",705,"1,380",730,"1,540","1,245",615,"1,020","2,450",845,505,"1,180",565,560,835,"1,745",995,"1,145","3,535",560,655,"1,020","1,755","1,585",980,"1,415","1,735","1,795","1,000","1,165",740,935,"1,100",405,"1,320","5,095","1,950","2,700","1,905","1,335",790,"2,125","3,010","1,010","1,670","3,580",730,575,910,780,940,"2,080","1,145" -959,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of total income recipients aged 15 years and over in private households - 25% sample data,"2,187,225","23,495","19,365","9,920","25,620","22,330","12,715","22,830","17,690","10,550","17,645","4,915","23,175","17,570","15,770","5,960","11,800","7,350","9,505","13,505","9,965","8,035","9,370","10,695","28,370","20,490","13,035","12,500","11,735","7,640","13,555","21,535","18,995","30,695","27,700","10,165","16,575","12,520","17,000","7,175","16,015","15,175","9,275","16,170","10,230","9,050","22,930","11,510","8,005","12,320","18,245","19,185","10,400","14,100","8,315","9,660","11,775","11,675","10,510","36,110","11,580","8,900","13,510","15,735","16,765","7,285","5,930","35,385","13,000","10,800","11,700","12,760","13,370","8,465","33,535","7,965","8,795","21,150","29,005","13,490","16,620","10,280","23,850","13,180","25,595","9,240","13,225","19,580","27,935","9,470","15,300","10,060","17,130","14,505","7,415","12,255","27,005","8,490","6,295","13,055","8,860","8,510","8,245","17,775","12,145","17,290","35,860","7,720","7,385","12,170","17,960","22,435","14,230","20,140","20,055","21,940","11,785","16,955","7,975","13,935","14,180","5,985","13,775","60,630","21,050","26,280","21,540","13,870","8,965","22,135","41,560","14,210","17,775","40,685","9,770","6,475","11,045","9,555","10,805","22,240","11,490" -960,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Average total income in 2015 among recipients ($),"52,268",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -961,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of after-tax income recipients aged 15 years and over in private households - 25% sample data,"2,187,505","23,500","19,365","9,920","25,620","22,340","12,715","22,850","17,705","10,555","17,665","4,915","23,185","17,580","15,775","5,965","11,800","7,360","9,500","13,505","9,965","8,035","9,365","10,690","28,365","20,490","13,035","12,500","11,740","7,650","13,560","21,540","18,990","30,710","27,690","10,160","16,595","12,525","17,005","7,175","16,015","15,175","9,275","16,175","10,230","9,060","22,935","11,505","8,010","12,320","18,255","19,200","10,400","14,105","8,315","9,660","11,775","11,675","10,505","36,090","11,585","8,905","13,510","15,730","16,765","7,290","5,930","35,405","12,995","10,805","11,705","12,770","13,365","8,455","33,540","7,965","8,800","21,170","29,010","13,495","16,610","10,280","23,865","13,180","25,600","9,235","13,225","19,580","27,930","9,470","15,305","10,065","17,120","14,495","7,405","12,255","27,000","8,490","6,295","13,060","8,870","8,505","8,245","17,770","12,165","17,300","35,865","7,720","7,380","12,170","17,960","22,440","14,240","20,145","20,075","21,935","11,780","16,955","7,975","13,930","14,195","5,985","13,780","60,630","21,040","26,275","21,545","13,865","8,960","22,130","41,575","14,215","17,780","40,670","9,770","6,485","11,035","9,555","10,795","22,235","11,495" -962,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Average after-tax income in 2015 among recipients ($),"41,462",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -963,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of market income recipients aged 15 years and over in private households - 25% sample data,"1,889,205","19,610","16,500","9,045","23,735","20,475","11,050","19,165","15,735","9,355","16,670","4,020","19,130","15,555","11,635","4,900","10,185","6,990","8,205","11,095","8,815","6,935","8,855","9,810","25,450","17,470","11,785","10,810","10,390","6,700","12,005","18,360","15,615","26,850","23,485","9,130","14,375","11,570","13,655","5,900","13,835","13,855","8,090","12,345","9,405","8,750","17,930","9,685","7,415","10,210","16,710","18,115","9,345","11,890","7,420","7,920","9,465","10,730","8,515","32,450","10,510","7,275","10,600","12,645","13,760","7,060","5,260","29,010","11,840","10,290","11,210","12,150","12,115","7,475","27,230","6,975","8,200","17,700","25,895","11,200","13,745","8,325","18,015","12,420","23,195","7,770","11,075","16,350","26,495","8,850","12,290","7,295","14,640","12,125","6,610","11,235","23,165","7,585","5,735","11,310","8,445","6,445","6,980","14,640","10,455","16,390","30,880","7,245","5,915","9,435","14,805","19,375","13,035","16,970","18,555","18,410","9,360","16,005","6,575","10,085","12,765","5,365","11,225","56,725","16,715","22,250","17,880","10,985","7,295","18,855","35,635","12,090","15,740","32,270","8,545","5,700","9,695","9,020","10,155","18,410","10,035" -964,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Average market income in 2015 among recipients ($),"54,901",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -965,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $50,000 to $59,999","145,500","1,265","1,125",825,"1,655","1,665",805,"1,225","1,140",630,940,310,"1,565","1,275",765,320,820,330,675,875,670,580,590,880,"2,105","1,500",820,870,800,445,"1,020","1,320","1,245","2,090","1,935",715,"1,050",910,"1,075",495,"1,025","1,245",735,835,645,605,"1,275",720,660,775,"1,340","1,470",770,885,720,600,740,760,720,"2,845",910,560,885,790,"1,100",420,340,"2,095",890,580,600,750,"1,045",645,"2,310",525,710,"1,070","2,270",930,985,695,"1,250",860,"2,220",670,735,"1,040","2,550",595,915,475,"1,080",970,550,925,"1,985",735,385,835,570,430,625,"1,240",750,"1,080","2,775",525,440,705,"1,135","1,370",885,"1,110","1,405","1,365",710,"1,105",490,695,960,335,915,"4,890","1,455","1,900","1,185",940,560,"1,575","2,480",805,"1,370","2,500",670,485,705,715,810,"1,440",785 -966,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of government transfers recipients aged 15 years and over in private households - 25% sample data,"1,598,720","19,045","15,055","6,775","17,475","15,655","9,265","16,110","12,455","8,195","11,855","3,975","18,070","12,520","13,345","4,255","8,955","4,470","6,995","10,790","6,590","5,925","6,395","7,400","18,410","14,940","9,350","9,210","8,470","5,385","9,220","16,400","14,610","22,660","21,765","7,315","11,660","8,770","13,820","5,615","12,230","10,935","6,900","13,240","7,045","5,810","19,050","8,195","5,860","9,345","12,220","12,595","7,730","11,050","6,130","7,890","9,360","8,320","8,355","24,390","7,905","6,840","10,735","12,455","13,280","4,825","4,060","28,685","8,945","7,095","7,520","8,350","9,060","6,020","26,720","6,320","6,465","17,360","18,870","10,515","10,660","8,095","19,705","8,530","16,560","6,710","10,105","15,315","14,315","6,310","11,780","8,345","12,830","10,930","5,140","8,810","20,240","6,205","4,385","9,975","5,970","6,565","6,235","13,870","8,565","11,425","26,525","5,075","6,020","9,825","13,940","14,760","9,640","16,195","13,800","17,290","9,395","11,025","6,290","11,440","10,285","4,410","10,815","33,135","16,620","20,305","17,005","10,930","6,720","16,825","29,195","10,410","13,445","32,565","6,600","4,350","8,095","6,420","7,205","17,835","8,830" -967,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Average government transfers in 2015 among recipients ($),"6,631",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -968,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Number of employment income recipients aged 15 years and over in private households - 25% sample data,"1,578,750","15,330","13,045","7,430","19,670","15,555","9,255","15,180","12,520","6,780","13,200","3,365","15,670","12,920","9,990","4,310","8,785","5,135","6,970","9,565","7,660","5,915","6,995","7,985","22,445","14,925","9,975","8,820","8,680","5,680","10,110","14,745","13,340","23,270","19,380","7,860","12,570","9,215","11,570","4,935","11,485","11,060","6,855","10,555","7,960","6,890","14,625","8,500","5,555","8,955","14,490","15,375","7,395","8,670","5,685","6,095","8,085","9,405","7,350","27,165","9,295","6,125","8,990","10,525","11,065","5,360","4,445","22,860","9,790","8,545","9,140","10,000","10,865","6,500","23,620","5,535","6,210","13,835","22,315","9,360","12,610","7,390","16,005","10,565","20,175","6,865","8,550","13,305","25,050","7,590","11,245","6,255","12,280","10,280","5,530","9,555","19,520","6,265","4,995","8,650","6,620","5,965","5,845","12,125","9,280","12,480","26,950","6,185","4,655","8,040","13,560","17,255","10,080","12,525","15,190","14,040","8,170","13,540","5,425","8,665","10,695","4,540","9,165","51,895","13,970","19,065","15,100","9,580","6,335","15,515","27,935","9,330","11,995","26,885","7,565","4,900","8,215","7,685","8,170","15,790","7,865" -969,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Average employment income in 2015 among recipients ($),"54,032",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -970,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Total - Employment income statistics for the population aged 15 years and over in private households - 25% sample data,"2,294,790",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -971,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Number of employment income recipients aged 15 years and over in private households who worked full year full time in 2015 - 25% sample data,"726,575",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -972,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Median employment income in 2015 for full-year full-time workers ($),"55,246",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -973,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Average employment income in 2015 for full-year full-time workers ($),"78,643",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -974,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Composition of total income in 2015 of the population aged 15 years and over in private households (%) - 100% data,100,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -975,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Market income (%),90.6,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -976,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Employment income (%),74.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -977,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Government transfers (%),9.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -978,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Total - Total income groups in 2015 for the population aged 15 years and over in private households - 100% data,"2,294,785","24,990","20,400","10,265","26,300","23,390","13,265","23,940","18,725","11,150","18,565","5,255","24,610","18,355","16,960","6,280","12,360","7,745","9,875","14,350","10,200","8,415","9,585","11,195","29,100","21,745","13,655","13,250","12,175","7,950","14,055","22,760","20,130","31,830","29,220","10,430","17,295","13,070","18,085","7,645","17,090","15,900","9,775","17,550","10,610","9,265","24,430","11,925","8,360","13,205","18,980","19,810","10,925","14,805","8,665","10,260","12,585","12,065","11,295","37,410","12,010","9,430","14,330","16,150","17,740","7,590","6,275","37,380","13,645","11,275","12,270","13,360","13,655","8,725","35,875","8,365","9,110","22,375","29,835","14,275","17,030","10,860","25,730","13,780","26,555","9,680","13,950","20,825","28,390","9,740","16,075","10,750","17,835","15,395","7,745","12,495","28,900","8,975","6,485","13,760","9,265","9,045","8,720","18,740","12,570","17,995","38,125","8,020","7,820","13,075","18,590","23,150","15,045","21,125","20,845","23,150","12,530","17,620","8,400","15,250","14,485","6,170","14,550","61,990","22,390","27,850","22,650","14,600","9,425","23,335","44,345","14,935","18,585","43,395","10,110","6,690","11,335","9,995","11,175","23,520","12,065" -979,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Without total income,"107,760","1,370","1,115",340,620,"1,005",590,"1,035",985,570,875,310,"1,430",775,"1,145",295,575,440,335,870,220,400,280,570,705,"1,280",625,735,515,265,505,"1,240","1,170","1,070","1,490",305,755,515,"1,130",470,"1,015",685,490,"1,315",415,255,"1,520",445,340,880,690,640,510,760,345,615,780,400,715,"1,400",455,560,835,430,"1,000",280,330,"2,030",625,535,565,640,305,300,"2,365",425,330,"1,185",860,825,420,610,"1,895",580,970,375,745,"1,160",460,295,735,730,740,860,305,275,"1,775",460,200,725,445,465,465,945,440,680,"2,180",320,480,865,590,730,830,"1,050",755,"1,210",790,690,450,"1,355",330,155,775,"1,390","1,330","1,580","1,195",730,460,"1,230","2,820",665,845,"2,750",350,220,345,405,265,"1,260",605 -980,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, With total income,"2,187,030","23,635","19,290","9,920","25,660","22,390","12,680","22,895","17,750","10,580","17,690","4,940","23,190","17,575","15,820","5,985","11,780","7,305","9,545","13,480","9,975","8,030","9,310","10,625","28,385","20,470","13,030","12,515","11,665","7,685","13,560","21,525","18,965","30,750","27,725","10,125","16,535","12,565","16,950","7,170","16,065","15,215","9,285","16,210","10,195","9,010","22,910","11,475","8,025","12,325","18,280","19,165","10,420","14,035","8,310","9,640","11,800","11,665","10,590","36,010","11,545","8,875","13,490","15,720","16,750","7,300","5,960","35,350","13,025","10,745","11,705","12,725","13,350","8,425","33,530","7,940","8,775","21,200","28,975","13,455","16,605","10,260","23,850","13,195","25,580","9,300","13,205","19,675","27,935","9,435","15,330","10,015","17,110","14,535","7,440","12,230","27,125","8,510","6,295","13,030","8,830","8,575","8,265","17,795","12,130","17,320","35,950","7,700","7,340","12,205","18,005","22,405","14,220","20,075","20,095","21,930","11,740","16,925","7,940","13,895","14,160","6,020","13,780","60,615","21,060","26,250","21,450","13,875","8,955","22,105","41,515","14,270","17,755","40,645","9,760","6,475","11,000","9,595","10,895","22,265","11,460" -981,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Percentage with total income,95.3,94.6,94.6,96.6,97.6,95.7,95.6,95.6,94.8,94.9,95.3,94,94.2,95.8,93.3,95.3,95.3,94.3,96.7,93.9,97.8,95.4,97.1,94.9,97.5,94.1,95.4,94.5,95.8,96.7,96.5,94.6,94.2,96.6,94.9,97.1,95.6,96.1,93.7,93.8,94,95.7,95,92.4,96.1,97.2,93.8,96.2,96,93.3,96.3,96.7,95.4,94.8,95.9,94,93.8,96.7,93.8,96.3,96.1,94.1,94.1,97.3,94.4,96.2,95,94.6,95.5,95.3,95.4,95.2,97.8,96.6,93.5,94.9,96.3,94.7,97.1,94.3,97.5,94.5,92.7,95.8,96.3,96.1,94.7,94.5,98.4,96.9,95.4,93.2,95.9,94.4,96.1,97.9,93.9,94.8,97.1,94.7,95.3,94.8,94.8,95,96.5,96.2,94.3,96,93.9,93.3,96.9,96.8,94.5,95,96.4,94.7,93.7,96.1,94.5,91.1,97.8,97.6,94.7,97.8,94.1,94.3,94.7,95,95,94.7,93.6,95.5,95.5,93.7,96.5,96.8,97,96,97.5,94.7,95 -982,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," Under $10,000 (including loss)","389,430","5,170","4,535","1,365","3,870","3,195","2,115","7,035","3,805","2,170","2,375",840,"5,125","2,705","3,470","1,040","1,970","1,185","1,410","2,520","1,235","1,380","1,140","1,635","4,895","3,810","1,950","2,115","1,845","1,110","1,845","4,910","3,715","4,780","4,550","1,525","2,655","1,750","3,325","1,465","2,715","2,230","1,585","3,655","1,510","1,075","4,430","1,855","1,040","3,165","2,605","2,380","1,930","3,030","1,195","1,820","2,395","1,615","1,985","5,330","1,745","1,535","2,565","3,690","3,240",885,920,"7,640","2,445","1,435","1,610","1,790","1,790","1,215","7,180","1,265","1,155","4,890","3,915","2,830","2,695","1,920","5,485","1,700","3,620","1,530","3,325","4,575","2,770","1,345","3,050","2,320","2,715","2,570","1,065","1,680","5,030","1,310",805,"2,780","1,275","1,945","1,445","3,100","1,760","2,145","6,625","1,005","1,290","2,645","2,960","3,470","2,605","4,580","2,750","4,370","2,530","2,235","1,540","3,230","2,220","1,215","2,555","7,650","4,135","5,405","4,185","2,555","1,675","3,950","11,055","3,400","2,650","8,875","1,300",870,"1,630","1,290","1,195","5,105","1,835" -983,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $10,000 to $19,999","410,355","6,325","4,505","1,505","3,615","3,110","2,490","2,910","2,695","1,910","2,035","1,155","4,675","2,825","4,265","1,320","2,405",635,"1,890","2,990","1,830","1,490","1,025","1,460","4,380","4,035","2,280","2,375","2,170","1,515","2,360","4,160","4,165","6,455","5,805","2,010","2,880","1,735","3,850","1,500","3,155","2,395","1,720","4,085","1,565",895,"5,820","2,270","1,100","2,235","2,675","2,305","1,930","2,995","1,465","2,285","2,650","1,920","2,345","5,710","1,905","1,975","3,305","4,025","3,470",625,890,"8,705","1,900","1,100","1,160","1,265","2,315","1,475","7,775","1,515","1,250","6,000","4,550","2,870","3,360","2,335","5,855","1,500","3,575","2,005","2,670","4,400","3,040","1,355","3,770","2,830","3,690","2,735","1,225","2,210","4,945","1,495","1,030","2,595","1,020","2,220","1,735","3,945","2,435","1,600","6,865",875,"1,815","2,920","4,320","4,205","1,895","5,195","2,860","5,100","2,750","1,900","1,700","3,715","2,810","1,080","3,010","6,470","4,780","5,485","5,305","3,180","2,030","4,520","6,600","2,560","3,085","9,360","1,660","1,160","2,100","1,070","1,115","4,850","2,160" -984,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $20,000 to $29,999","291,155","3,520","2,715","1,360","2,605","2,435","1,810","2,010","1,945","1,265","1,810",860,"3,265","2,190","2,685",670,"2,030",495,"1,395","2,370","1,110","1,335",875,"1,090","2,780","3,015","1,860","1,690","1,820",960,"1,655","2,835","3,055","4,740","4,960","1,480","1,885","1,465","2,915","1,170","2,580","1,895","1,365","2,740","1,300",865,"4,270","1,405",940,"1,535","2,005","2,065","1,345","1,605","1,195","1,750","2,090","1,610","1,730","4,275","1,440","1,570","2,225","2,020","2,580",560,630,"5,425","1,335",795,885,"1,025","1,915","1,135","5,170","1,460","1,020","3,190","3,345","2,035","1,695","1,650","4,125","1,220","2,670","1,230","1,525","3,025","2,315",945,"2,285","1,635","2,690","2,150",935,"1,725","3,790","1,270",720,"1,925",755,"1,225","1,325","2,810","1,525","1,395","4,645",740,"1,385","1,940","2,880","2,430","1,370","2,905","2,340","3,330","1,920","1,500","1,300","2,330","2,045",760,"2,050","4,950","3,150","4,035","3,555","2,165","1,470","3,560","4,045","1,485","2,580","6,460","1,085",785,"1,600",895,955,"3,515","1,940" -985,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Total - After-tax income groups in 2015 for the population aged 15 years and over in private households - 100% data,"2,294,790","24,995","20,395","10,265","26,305","23,390","13,265","23,940","18,735","11,150","18,560","5,250","24,610","18,345","16,965","6,280","12,360","7,750","9,880","14,355","10,195","8,420","9,580","11,190","29,095","21,740","13,660","13,250","12,170","7,950","14,060","22,760","20,130","31,825","29,215","10,430","17,295","13,070","18,075","7,640","17,090","15,890","9,770","17,540","10,615","9,260","24,435","11,915","8,360","13,205","18,980","19,810","10,930","14,795","8,665","10,260","12,585","12,065","11,300","37,405","12,005","9,435","14,320","16,145","17,745","7,590","6,280","37,375","13,650","11,280","12,270","13,355","13,655","8,720","35,880","8,365","9,110","22,370","29,835","14,275","17,025","10,870","25,740","13,780","26,550","9,680","13,950","20,825","28,395","9,735","16,080","10,750","17,835","15,395","7,745","12,495","28,890","8,975","6,490","13,760","9,275","9,040","8,725","18,735","12,575","18,000","38,125","8,025","7,825","13,075","18,585","23,135","15,040","21,120","20,840","23,145","12,535","17,615","8,395","15,250","14,490","6,170","14,555","61,985","22,395","27,845","22,645","14,610","9,415","23,335","44,340","14,930","18,580","43,420","10,100","6,680","11,340","10,000","11,175","23,520","12,060" -986,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Without after-tax income,"107,450","1,365","1,105",335,620,"1,000",585,"1,045",975,570,875,310,"1,425",780,"1,140",305,580,445,335,860,220,395,265,565,705,"1,270",625,720,505,260,495,"1,235","1,170","1,060","1,495",300,760,500,"1,120",475,"1,010",680,485,"1,335",410,255,"1,520",445,335,880,700,635,505,755,345,610,780,395,715,"1,385",450,555,835,430,"1,010",275,325,"2,030",620,535,550,635,305,295,"2,335",430,330,"1,185",865,825,425,610,"1,890",580,965,375,735,"1,155",460,295,735,730,735,860,305,260,"1,770",455,195,720,435,470,455,945,445,660,"2,155",320,480,870,585,740,820,"1,045",735,"1,210",785,685,455,"1,355",320,155,770,"1,375","1,340","1,585","1,200",730,455,"1,225","2,815",665,845,"2,745",340,220,340,410,265,"1,255",600 -987,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, With after-tax income,"2,187,340","23,640","19,295","9,925","25,675","22,400","12,680","22,900","17,755","10,580","17,685","4,945","23,185","17,580","15,815","5,985","11,785","7,305","9,545","13,480","9,975","8,025","9,325","10,630","28,390","20,470","13,035","12,525","11,670","7,690","13,555","21,520","18,960","30,765","27,725","10,120","16,535","12,565","16,950","7,165","16,080","15,220","9,290","16,210","10,200","9,015","22,900","11,485","8,020","12,325","18,280","19,175","10,420","14,050","8,315","9,640","11,805","11,670","10,580","36,015","11,545","8,875","13,485","15,715","16,745","7,305","5,955","35,355","13,030","10,750","11,715","12,725","13,350","8,430","33,525","7,945","8,775","21,200","28,975","13,450","16,610","10,260","23,850","13,200","25,570","9,310","13,210","19,670","27,935","9,435","15,335","10,020","17,110","14,540","7,440","12,235","27,115","8,510","6,290","13,035","8,835","8,575","8,265","17,800","12,130","17,330","35,955","7,705","7,340","12,205","17,995","22,410","14,225","20,075","20,100","21,940","11,745","16,930","7,940","13,890","14,160","6,015","13,780","60,620","21,055","26,255","21,440","13,880","8,960","22,105","41,515","14,265","17,755","40,655","9,760","6,470","11,005","9,595","10,905","22,275","11,465" -988,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Percentage with after-tax income,95.3,94.6,94.6,96.7,97.6,95.8,95.6,95.7,94.8,94.9,95.3,94.2,94.2,95.8,93.2,95.3,95.3,94.3,96.6,93.9,97.8,95.3,97.3,95,97.6,94.2,95.4,94.5,95.9,96.7,96.4,94.6,94.2,96.7,94.9,97,95.6,96.1,93.8,93.8,94.1,95.8,95.1,92.4,96.1,97.4,93.7,96.4,95.9,93.3,96.3,96.8,95.3,95,96,94,93.8,96.7,93.6,96.3,96.2,94.1,94.2,97.3,94.4,96.2,94.8,94.6,95.5,95.3,95.5,95.3,97.8,96.7,93.4,95,96.3,94.8,97.1,94.2,97.6,94.4,92.7,95.8,96.3,96.2,94.7,94.5,98.4,96.9,95.4,93.2,95.9,94.4,96.1,97.9,93.9,94.8,96.9,94.7,95.3,94.9,94.7,95,96.5,96.3,94.3,96,93.8,93.3,96.8,96.9,94.6,95.1,96.4,94.8,93.7,96.1,94.6,91.1,97.7,97.5,94.7,97.8,94,94.3,94.7,95,95.2,94.7,93.6,95.5,95.6,93.6,96.6,96.9,97,96,97.6,94.7,95.1 -989,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," Under $10,000 (including loss)","395,780","5,225","4,590","1,395","3,995","3,320","2,160","7,090","3,890","2,215","2,480",850,"5,175","2,795","3,475","1,050","1,975","1,280","1,430","2,545","1,270","1,390","1,210","1,685","4,955","3,850","1,995","2,180","1,890","1,135","1,875","4,965","3,725","4,860","4,595","1,540","2,695","1,815","3,350","1,475","2,740","2,305","1,610","3,675","1,550","1,130","4,460","1,875","1,085","3,205","2,680","2,470","1,975","3,070","1,235","1,845","2,410","1,655","2,000","5,430","1,785","1,535","2,580","3,730","3,280",945,945,"7,720","2,485","1,485","1,715","1,870","1,820","1,235","7,225","1,280","1,210","4,940","3,990","2,860","2,730","1,935","5,510","1,755","3,705","1,560","3,380","4,600","2,840","1,375","3,065","2,325","2,735","2,605","1,090","1,715","5,090","1,335",835,"2,805","1,340","1,950","1,460","3,130","1,800","2,330","6,705","1,040","1,300","2,660","2,985","3,505","2,710","4,635","2,855","4,435","2,555","2,315","1,560","3,235","2,240","1,230","2,580","7,830","4,170","5,445","4,220","2,580","1,695","4,005","11,190","3,460","2,720","8,955","1,320",885,"1,670","1,325","1,275","5,135","1,875" -990,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $10,000 to $19,999","425,580","6,475","4,640","1,565","3,790","3,265","2,570","2,995","2,805","1,985","2,140","1,205","4,820","2,945","4,405","1,340","2,520",660,"1,965","3,085","1,905","1,565","1,080","1,520","4,530","4,165","2,380","2,455","2,245","1,555","2,455","4,310","4,300","6,695","6,060","2,105","2,980","1,800","3,990","1,555","3,280","2,470","1,780","4,210","1,610",945,"6,005","2,340","1,160","2,300","2,790","2,435","2,015","3,070","1,510","2,375","2,770","2,010","2,435","6,015","1,975","2,055","3,400","4,105","3,610",670,930,"8,935","1,975","1,165","1,225","1,350","2,425","1,530","7,990","1,595","1,285","6,165","4,780","2,950","3,440","2,420","6,065","1,580","3,740","2,050","2,775","4,560","3,200","1,415","3,910","2,900","3,810","2,850","1,275","2,310","5,145","1,550","1,075","2,685","1,065","2,285","1,795","4,075","2,525","1,690","7,105",935,"1,880","3,045","4,515","4,365","2,000","5,380","2,960","5,265","2,840","2,010","1,765","3,775","2,945","1,135","3,115","6,735","4,930","5,710","5,500","3,260","2,115","4,680","6,840","2,625","3,200","9,640","1,715","1,200","2,170","1,135","1,185","5,000","2,260" -991,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $20,000 to $29,999","330,405","3,945","3,075","1,590","2,955","2,725","2,030","2,180","2,155","1,425","2,050",960,"3,730","2,500","3,065",750,"2,320",570,"1,615","2,675","1,255","1,535","1,005","1,260","3,255","3,405","2,130","1,910","2,110","1,085","1,875","3,215","3,510","5,355","5,680","1,700","2,135","1,710","3,300","1,330","2,910","2,185","1,585","3,055","1,480",970,"4,785","1,585","1,085","1,720","2,295","2,355","1,520","1,860","1,365","1,950","2,365","1,845","2,015","4,830","1,650","1,780","2,490","2,235","2,880",635,700,"6,100","1,535",885,975,"1,155","2,180","1,335","5,935","1,665","1,180","3,560","3,825","2,340","1,935","1,905","4,660","1,420","3,100","1,440","1,705","3,395","2,735","1,085","2,660","1,830","3,075","2,425","1,090","1,975","4,280","1,460",805,"2,120",905,"1,325","1,490","3,250","1,735","1,570","5,345",840,"1,510","2,115","3,330","2,775","1,500","3,185","2,660","3,740","2,170","1,750","1,480","2,570","2,305",860,"2,320","5,700","3,580","4,650","4,010","2,460","1,620","4,095","4,480","1,660","2,940","7,245","1,245",910,"1,750","1,060","1,125","4,030","2,165" -992,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $30,000 to $39,999","261,435","2,780","2,270","1,325","2,590","2,450","1,545","1,965","1,805","1,085","1,635",740,"3,150","2,015","2,375",575,"1,735",415,"1,245","2,005","1,085","1,205",895,"1,120","3,140","2,690","1,755","1,435","1,480",720,"1,440","2,550","2,860","3,895","4,245","1,425","1,675","1,490","2,565","1,030","2,045","1,895","1,295","2,055","1,120",880,"3,415","1,215",985,"1,390","2,160","2,100","1,270","1,415","1,045","1,385","1,735","1,405","1,640","4,525","1,345","1,200","1,845","1,555","2,220",605,580,"4,205","1,300",785,890,"1,010","1,795","1,080","4,770","1,240","1,045","2,315","3,460","1,830","1,540","1,585","3,430","1,250","3,060","1,110","1,260","2,285","2,935",890,"2,020","1,165","2,240","1,795",825,"1,490","3,435","1,210",645,"1,520",745,885,"1,120","2,515","1,320","1,385","4,710",740,995,"1,510","2,570","2,210","1,220","2,190","2,325","2,730","1,485","1,530","1,150","1,470","1,545",635,"1,840","6,120","2,810","3,870","2,775","1,950","1,125","2,990","3,840","1,390","2,355","5,250",970,730,"1,205","1,045","1,170","3,085","1,710" -993,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $40,000 to $49,999","213,815","2,005","1,665","1,170","2,370","2,360","1,200","1,730","1,700",915,"1,350",510,"2,320","1,840","1,340",465,"1,230",425,"1,040","1,380",995,880,805,"1,165","3,045","2,230","1,155","1,265","1,180",640,"1,390","2,030","1,945","3,055","2,955","1,030","1,510","1,315","1,710",730,"1,545","1,760","1,045","1,320",930,780,"2,140","1,015",965,"1,165","1,905","2,035","1,140","1,240",975,905,"1,220","1,105","1,120","4,080","1,305",885,"1,405","1,215","1,720",580,515,"3,140","1,170",740,825,"1,040","1,545",965,"3,535",840,970,"1,615","3,160","1,380","1,450","1,130","2,100","1,150","3,115",970,"1,040","1,625","3,530",810,"1,440",725,"1,670","1,420",760,"1,285","2,795","1,000",565,"1,335",755,635,930,"1,895","1,120","1,470","4,070",705,705,"1,155","1,745","1,940","1,195","1,555","2,005","1,985","1,100","1,485",765,"1,075","1,380",485,"1,445","6,880","2,210","2,890","1,910","1,485",840,"2,380","3,590","1,160","1,990","3,805",930,680,"1,040",985,"1,140","2,215","1,225" -994,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $50,000 to $59,999","154,925","1,220","1,150",930,"1,930","1,905",895,"1,565","1,400",730,"1,125",275,"1,575","1,515",610,430,745,415,655,770,815,625,720,980,"2,595","1,545",955,970,935,525,"1,105","1,380","1,085","2,285","1,735",780,"1,295",985,940,445,935,"1,450",765,795,725,680,"1,070",900,705,855,"1,600","1,695",790,995,670,540,615,785,645,"3,255",995,610,750,815,"1,160",555,400,"1,935",935,740,725,870,"1,130",645,"1,975",455,790,"1,010","2,600",855,"1,250",630,"1,045","1,000","2,360",655,830,"1,000","3,330",695,755,455,"1,090","1,010",610,920,"2,040",715,495,800,740,495,580,"1,235",835,"1,270","2,730",645,370,660,"1,110","1,660",985,"1,105","1,630","1,335",660,"1,345",490,645,970,385,895,"6,565","1,360","1,585","1,095",875,615,"1,580","3,000",945,"1,435","2,365",805,600,830,800,990,"1,235",755 -995,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $60,000 to $69,999","112,495",745,695,625,"1,630","1,550",675,"1,545","1,110",580,935,180,965,"1,045",290,340,490,395,480,440,605,400,580,820,"2,060","1,010",680,660,675,495,900,"1,035",670,"1,605","1,060",580,"1,035",665,505,270,675,"1,025",490,465,535,550,535,720,600,655,"1,275","1,420",530,690,485,290,330,600,365,"2,315",760,360,470,605,675,475,345,"1,200",775,680,685,790,850,485,995,325,600,630,"2,150",485,"1,130",310,525,810,"1,970",455,660,685,"2,765",555,580,305,810,695,460,720,"1,395",505,325,625,575,345,375,770,705,"1,155","1,820",545,215,415,650,"1,440",760,690,"1,190",865,425,"1,190",285,460,705,305,560,"5,650",790,925,680,490,440,995,"2,400",825,950,"1,445",700,475,580,650,740,725,470 -996,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $70,000 to $79,999","84,300",525,500,510,"1,215","1,135",470,"1,125",860,455,810,95,635,895,150,260,305,375,360,280,510,195,495,670,"1,500",725,540,545,400,435,840,730,395,"1,190",610,315,980,585,260,160,465,795,325,265,410,420,260,625,505,400,"1,000","1,090",455,560,330,160,190,475,195,"1,785",630,235,285,470,480,450,315,850,660,680,575,725,570,395,580,210,470,390,"1,590",325,945,180,285,810,"1,435",395,440,520,"2,110",545,340,150,575,605,400,485,985,350,350,440,525,235,250,460,590,920,"1,310",530,160,210,430,"1,270",655,525,"1,065",600,240,"1,010",195,295,540,220,395,"4,385",530,565,460,340,240,600,"1,910",655,780,830,635,380,445,500,610,375,390 -997,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $80,000 and over","208,615",720,710,830,"5,200","3,675","1,140","2,715","2,035","1,180","5,155",125,800,"2,035",110,765,450,"2,780",750,300,"1,540",235,"2,530","1,405","3,305",855,"1,450","1,105",745,"1,105","1,690","1,325",460,"1,840",770,650,"2,205","2,215",330,185,"1,495","1,330",390,380,"1,845","2,650",230,"1,205",930,640,"2,585","3,575",735,"1,150",695,200,175,"1,800",185,"3,765","1,120",225,265,990,730,"2,395","1,210","1,260","2,185","3,570","4,080","3,920","1,035",745,510,335,"1,220",580,"3,395",425,"2,175",175,245,"3,415","3,110",685,"1,115","1,000","4,500","2,050",545,165,"1,085","1,135",930,"1,325","1,955",380,"1,200",695,"2,190",430,260,475,"1,505","5,530","2,130","1,725",210,440,685,"3,260","3,190",795,"3,400",950,280,"4,310",250,370,"1,525",755,635,"10,750",665,615,785,445,280,750,"4,285","1,555","1,385","1,090","1,430",610,"1,315","2,095","2,680",455,620 -998,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $80,000 to $89,999","57,270",275,290,350,870,905,390,660,600,325,680,40,360,635,65,240,190,265,255,120,365,130,370,480,"1,025",410,380,390,295,355,600,475,230,705,340,240,685,410,165,95,295,515,175,165,270,320,120,440,315,225,765,825,295,440,250,70,85,365,80,"1,170",375,105,145,320,270,355,280,520,485,605,550,605,340,250,265,120,380,250,"1,065",185,600,95,135,665,915,245,355,320,"1,445",445,185,80,395,345,325,335,615,180,250,285,395,135,125,245,435,740,865,430,85,145,250,940,500,315,825,380,145,890,105,155,410,200,230,"2,950",320,310,275,200,150,345,"1,300",505,495,525,495,260,340,390,410,205,230 -999,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $90,000 to $99,999","34,660",190,155,155,670,630,205,445,365,215,575,25,180,360,20,150,100,240,140,65,245,55,255,290,590,180,230,210,140,220,320,300,110,365,165,140,425,275,60,45,235,275,85,75,205,245,50,245,195,135,420,520,160,220,125,50,35,210,55,660,220,50,35,190,140,270,145,295,330,445,400,440,185,140,115,75,190,115,620,100,390,40,50,495,540,165,195,200,865,280,105,40,230,245,180,225,350,85,175,165,310,90,60,105,265,565,485,295,35,85,140,630,425,190,560,210,75,595,60,75,245,105,145,"1,970",120,130,155,100,55,160,800,305,290,220,265,120,205,245,320,110,125 -1000,Income,Income of individuals in 2015,Census Profile 98-316-X2016001,Total - Employment income groups in 2015 for the population aged 15 years and over in private households - 100% data,"2,294,785","24,995","20,400","10,265","26,290","23,395","13,265","23,945","18,720","11,150","18,560","5,255","24,615","18,345","16,960","6,280","12,355","7,750","9,880","14,345","10,200","8,415","9,590","11,195","29,100","21,745","13,655","13,255","12,170","7,950","14,055","22,765","20,130","31,825","29,215","10,430","17,295","13,080","18,070","7,640","17,085","15,900","9,770","17,540","10,610","9,260","24,435","11,915","8,360","13,205","18,970","19,810","10,930","14,805","8,665","10,255","12,585","12,070","11,295","37,420","12,000","9,430","14,325","16,150","17,750","7,585","6,285","37,380","13,650","11,285","12,260","13,360","13,655","8,725","35,885","8,365","9,105","22,375","29,840","14,275","17,030","10,865","25,740","13,775","26,550","9,675","13,945","20,825","28,390","9,725","16,075","10,750","17,835","15,395","7,740","12,500","28,890","8,970","6,495","13,765","9,275","9,040","8,725","18,735","12,580","18,005","38,115","8,025","7,825","13,075","18,590","23,140","15,040","21,120","20,845","23,145","12,530","17,620","8,395","15,245","14,485","6,170","14,550","61,995","22,395","27,835","22,635","14,610","9,425","23,335","44,330","14,930","18,580","43,405","10,100","6,690","11,340","10,000","11,165","23,535","12,060" -1001,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Without employment income,"716,035","9,670","7,355","2,840","6,625","7,840","4,010","8,755","6,215","4,375","5,350","1,885","8,950","5,430","6,975","1,975","3,570","2,605","2,905","4,775","2,545","2,500","2,655","3,210","6,645","6,805","3,675","4,425","3,480","2,275","3,940","8,020","6,785","8,515","9,835","2,570","4,725","3,855","6,510","2,710","5,600","4,845","2,915","6,985","2,655","2,470","9,800","3,425","2,810","4,245","4,500","4,435","3,530","6,135","2,980","4,165","4,490","2,670","3,945","10,240","2,705","3,305","5,340","5,620","6,685","2,230","1,835","14,520","3,860","2,740","3,130","3,360","2,790","2,220","12,255","2,830","2,900","8,540","7,500","4,920","4,425","3,475","9,740","3,210","6,380","2,810","5,410","7,525","3,335","2,145","4,830","4,490","5,565","5,120","2,205","2,940","9,390","2,710","1,495","5,105","2,655","3,075","2,885","6,615","3,290","5,535","11,180","1,830","3,175","5,035","5,025","5,900","4,950","8,590","5,650","9,110","4,360","4,085","2,975","6,580","3,795","1,630","5,385","10,100","8,435","8,790","7,540","5,020","3,080","7,820","16,400","5,610","6,580","16,525","2,545","1,780","3,185","2,315","2,855","7,735","4,195" -1002,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, With employment income,"1,578,750","15,345","13,045","7,425","19,670","15,545","9,250","15,185","12,520","6,775","13,205","3,370","15,670","12,915","9,995","4,305","8,780","5,135","6,970","9,575","7,660","5,915","6,940","7,985","22,440","14,920","9,980","8,820","8,690","5,680","10,110","14,745","13,335","23,315","19,375","7,860","12,575","9,225","11,560","4,935","11,475","11,055","6,855","10,550","7,955","6,795","14,620","8,490","5,555","8,960","14,475","15,380","7,400","8,665","5,690","6,090","8,090","9,405","7,360","27,170","9,300","6,120","8,990","10,530","11,070","5,370","4,450","22,855","9,785","8,540","9,140","9,990","10,865","6,505","23,610","5,535","6,205","13,840","22,325","9,360","12,610","7,390","16,005","10,565","20,170","6,865","8,545","13,315","25,045","7,585","11,245","6,260","12,270","10,275","5,535","9,560","19,525","6,265","4,990","8,650","6,615","5,970","5,835","12,135","9,285","12,475","26,935","6,190","4,645","8,045","13,550","17,240","10,080","12,535","15,190","14,035","8,170","13,535","5,420","8,660","10,700","4,535","9,170","51,890","13,965","19,055","15,105","9,585","6,335","15,525","27,935","9,325","11,990","26,870","7,570","4,905","8,155","7,685","8,320","15,790","7,860" -1003,Income,Income of individuals in 2015,Census Profile 98-316-X2016001, Percentage with employment income,68.8,61.4,63.9,72.3,74.8,66.4,69.7,63.4,66.9,60.8,71.1,64.1,63.7,70.4,58.9,68.6,71.1,66.3,70.5,66.7,75.1,70.3,72.4,71.3,77.1,68.6,73.1,66.5,71.4,71.4,71.9,64.8,66.2,73.3,66.3,75.4,72.7,70.5,64,64.6,67.2,69.5,70.2,60.1,75,73.4,59.8,71.3,66.4,67.9,76.3,77.6,67.7,58.5,65.7,59.4,64.3,77.9,65.2,72.6,77.5,64.9,62.8,65.2,62.4,70.8,70.8,61.1,71.7,75.7,74.6,74.8,79.6,74.6,65.8,66.2,68.1,61.9,74.8,65.6,74,68,62.2,76.7,76,71,61.3,63.9,88.2,78,70,58.2,68.8,66.7,71.5,76.5,67.6,69.8,76.8,62.8,71.3,66,66.9,64.8,73.8,69.3,70.7,77.1,59.4,61.5,72.9,74.5,67,59.4,72.9,60.6,65.2,76.8,64.6,56.8,73.9,73.5,63,83.7,62.4,68.5,66.7,65.6,67.2,66.5,63,62.5,64.5,61.9,75,73.3,71.9,76.9,74.5,67.1,65.2 -1004,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," Under $5,000 (including loss)","201,235","2,245","1,920",825,"2,535","2,250","1,120","2,215","1,635","1,165","1,850",440,"2,220","1,765","1,520",570,875,765,770,"1,265",880,610,930,"1,140","2,375","1,910","1,080","1,290",915,630,"1,075","2,295","1,645","2,295","2,260",755,"1,470","1,170","1,675",730,"1,625","1,570",900,"1,590",995,910,"2,020",930,885,"1,210","1,665","1,760","1,105","1,375",765,780,"1,055","1,100",980,"3,065","1,005",635,"1,225","1,535","1,740",820,625,"3,455","1,200","1,060","1,305","1,395",870,770,"3,410",625,960,"1,990","2,380","1,500","1,275",945,"2,390","1,295","2,025",890,"1,275","1,785","1,510",955,"1,420","1,030","1,420","1,440",660,940,"2,800",690,600,"1,270",970,925,770,"1,540",970,"1,885","3,475",690,690,"1,380","1,425","1,795","1,455","1,885","1,900","2,110","1,195","1,710",780,"1,340","1,060",700,"1,315","3,650","2,200","2,545","2,150","1,275",725,"2,090","3,550","1,310","1,710","4,090",805,495,970,910,965,"2,240",950 -1005,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $5,000 to $9,999","132,320","1,685","1,420",525,"1,545","1,050",780,"1,370",985,630,845,315,"1,520",940,"1,125",345,800,360,515,955,565,460,495,590,"1,680","1,320",730,755,650,445,665,"1,435","1,225","1,900","1,735",670,950,710,"1,135",545,"1,030",890,620,"1,135",585,430,"1,610",600,380,865,"1,000","1,000",695,845,450,620,790,695,640,"1,925",665,545,850,"1,170","1,030",355,320,"2,490",685,525,600,700,750,475,"2,420",495,455,"1,740","1,450",940,945,755,"1,785",640,"1,240",595,795,"1,370","1,120",550,"1,060",720,"1,000",855,405,765,"1,685",500,315,830,500,640,540,"1,105",715,765,"2,350",380,560,830,"1,195","1,205",790,"1,510","1,080","1,420",855,870,510,"1,000",905,450,790,"2,475","1,295","1,850","1,590",950,555,"1,360","2,230",735,985,"2,710",485,325,640,455,535,"1,790",635 -1006,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $10,000 to $19,999","219,865","2,915","2,310",840,"2,380","1,755","1,435","1,765","1,640",960,"1,430",535,"2,300","1,555","1,835",555,"1,380",485,"1,025","1,615",955,860,675,885,"2,615","2,145","1,440","1,210","1,320",695,"1,125","2,250","2,180","3,685","3,075","1,235","1,500","1,150","1,880",750,"1,755","1,325",970,"1,955","1,090",725,"2,630","1,100",630,"1,350","1,640","1,565","1,030","1,200",770,"1,060","1,410","1,220","1,130","3,315","1,225",950,"1,420","1,845","1,760",430,505,"3,955","1,305",710,855,895,"1,555",820,"3,785",870,720,"2,880","2,560","1,435","1,555","1,175","2,950",970,"2,170",925,"1,395","2,455","2,315",820,"1,900","1,250","1,840","1,405",675,"1,435","2,725",830,620,"1,300",695,"1,020",880,"1,890","1,240","1,140","3,655",570,760,"1,395","2,260","2,060","1,225","2,325","1,760","2,185","1,385","1,290",905,"1,770","1,730",690,"1,355","4,800","2,100","3,035","2,690","1,365","1,015","2,390","3,805","1,235","1,540","4,380",810,615,"1,090",795,780,"2,690","1,115" -1007,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $20,000 to $29,999","176,835","2,120","1,730",735,"1,800","1,395","1,090","1,335","1,275",685,"1,300",485,"1,950","1,195","1,530",400,"1,255",375,820,"1,425",680,805,580,620,"2,090","1,805","1,285",885,"1,060",475,900,"1,765","1,870","2,920","2,775",980,"1,160",880,"1,730",625,"1,660","1,020",760,"1,530",940,635,"2,210",830,425,"1,070","1,320","1,330",750,915,585,885,"1,210","1,170","1,020","2,585",950,845,"1,275","1,205","1,335",320,350,"3,075",945,525,620,675,"1,300",680,"3,305",805,530,"2,000","2,085","1,210","1,090","1,020","2,495",815,"1,860",720,940,"1,945","1,845",600,"1,600",830,"1,570","1,170",515,"1,110","2,245",715,445,990,495,690,750,"1,605",945,870,"3,165",465,670,"1,020","1,915","1,535",925,"1,655","1,310","1,845","1,135","1,060",720,"1,105","1,205",445,"1,055","3,905","1,725","2,710","2,300","1,295",895,"2,035","2,665",900,"1,235","3,810",700,405,945,625,685,"2,180","1,040" -1008,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $30,000 to $39,999","157,115","1,720","1,365",715,"1,580","1,180",910,"1,165","1,125",590,970,435,"1,815","1,120","1,515",320,"1,195",280,755,"1,230",660,790,520,585,"1,980","1,565","1,130",795,935,455,790,"1,535","1,770","2,570","2,590",910,985,815,"1,575",600,"1,280",930,760,"1,275",735,520,"2,065",725,420,940,"1,215","1,190",690,810,515,795,"1,100",945,"1,060","2,530",840,775,"1,080",980,"1,255",280,305,"2,570",800,415,495,585,"1,145",665,"3,110",735,475,"1,430","1,990","1,110","1,000","1,005","2,245",730,"1,855",705,785,"1,465","1,980",520,"1,435",665,"1,410","1,050",500,935,"1,935",710,390,855,420,575,645,"1,395",840,735,"2,835",395,535,890,"1,760","1,415",785,"1,230","1,185","1,550",990,865,685,880,975,365,"1,085","3,965","1,660","2,460","1,865","1,205",700,"1,740","2,285",760,"1,210","3,095",575,395,680,625,695,"2,005",925 -1009,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $40,000 to $49,999","141,850","1,360","1,160",695,"1,425","1,245",860,"1,005","1,035",475,795,375,"1,575","1,050","1,070",325,975,220,700,990,630,690,495,655,"1,990","1,540",915,780,875,465,860,"1,305","1,535","2,210","2,180",740,975,805,"1,240",520,980,985,710,965,610,495,"1,595",710,450,855,"1,255","1,195",680,705,495,610,880,820,865,"2,540",870,695,"1,030",810,"1,075",265,260,"2,095",680,415,505,505,"1,200",650,"2,670",595,460,"1,115","2,045",945,930,900,"1,605",705,"1,965",610,635,"1,185","2,275",550,"1,180",565,"1,220",900,425,775,"1,885",665,395,845,375,475,635,"1,335",810,675,"2,830",395,415,765,"1,555","1,320",670,990,"1,245","1,270",770,800,525,690,905,325,975,"4,340","1,410","2,170","1,445","1,000",640,"1,615","2,285",750,"1,130","2,635",555,465,710,590,685,"1,605",840 -1010,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $50,000 to $59,999","113,280",985,860,660,"1,225","1,055",610,935,885,390,645,255,"1,255",915,590,270,670,210,530,680,530,515,410,610,"1,795","1,235",660,620,660,335,805,950,995,"1,810","1,535",610,865,635,835,365,700,865,595,665,510,405,965,590,425,655,"1,105","1,150",585,570,510,470,615,635,590,"2,230",775,480,720,640,785,240,240,"1,555",670,420,415,470,895,525,"1,895",405,470,795,"1,805",725,905,570,"1,005",655,"1,835",570,525,705,"2,340",405,755,365,870,720,415,805,"1,515",560,315,625,370,365,485,965,615,685,"2,280",390,320,530,975,"1,150",585,765,"1,025",995,580,745,360,530,795,260,685,"4,405","1,075","1,485",915,740,485,"1,200","1,940",590,950,"1,910",555,415,585,560,560,"1,165",605 -1011,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $60,000 to $69,999","90,310",670,660,555,"1,155",910,535,"1,075",825,335,565,165,910,860,330,265,440,195,415,460,510,390,385,495,"1,640",960,580,500,575,315,655,735,685,"1,440","1,005",495,805,490,545,255,520,780,445,460,395,345,620,580,315,465,980,935,445,515,350,300,380,460,370,"1,990",620,380,460,500,590,230,210,"1,030",545,355,340,415,740,400,"1,135",245,365,575,"1,620",475,835,355,600,570,"1,505",405,465,555,"2,285",420,465,260,675,590,335,600,"1,185",435,270,450,305,325,350,695,560,565,"1,600",385,195,355,725,"1,075",480,560,890,720,395,705,280,375,595,240,525,"4,550",770,925,605,545,395,945,"1,720",535,730,"1,280",505,360,480,470,540,720,435 -1012,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $70,000 to $79,999","72,190",460,460,455,915,795,430,905,660,300,460,120,650,655,195,215,365,160,340,315,400,285,295,460,"1,410",745,395,425,480,330,615,610,470,"1,200",750,440,650,340,320,175,380,630,335,295,310,285,370,525,335,465,810,865,310,375,295,190,235,365,295,"1,555",535,280,310,420,400,210,210,700,465,375,345,380,625,335,730,200,300,380,"1,370",270,790,255,360,420,"1,305",340,360,420,"2,030",340,435,215,575,460,280,475,865,340,220,370,300,230,245,560,460,560,"1,275",375,140,270,525,965,390,415,680,560,315,650,195,285,500,180,365,"3,885",510,620,435,360,310,680,"1,520",440,560,965,455,345,445,385,425,475,310 -1013,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $80,000 and over","273,760","1,160","1,135","1,415","5,095","3,890","1,480","3,420","2,440","1,230","4,370",235,"1,450","2,845",270,"1,040",825,"2,075","1,110",630,"1,875",510,"2,150","1,935","4,870","1,690","1,765","1,580","1,235","1,545","2,620","1,860",950,"3,270","1,510","1,025","3,230","2,200",635,370,"1,545","2,055",750,680,"1,795","2,035",550,"1,915","1,285","1,075","3,505","4,390","1,105","1,365",945,375,410,"1,980",405,"5,450","1,815",530,605,"1,405","1,090","2,200","1,415","1,905","2,480","3,745","3,650","3,975","1,780","1,185","1,140",570,"1,445",915,"5,015",750,"3,260",400,580,"3,750","4,410","1,115","1,375","1,435","7,365","2,435",990,355,"1,705","1,690","1,320","1,720","2,705",840,"1,425","1,105","2,175",725,540,"1,065","2,115","4,605","3,455","2,150",375,610,"1,245","4,715","2,815","1,225","4,120","1,395",565,"4,840",455,695,"2,020",870,995,"15,935","1,215","1,270","1,110",830,595,"1,470","5,930","2,055","1,940","1,995","2,135","1,075","1,615","2,270","2,460",920,"1,005" -1014,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $80,000 to $89,999","57,585",365,355,360,770,690,320,735,560,230,390,80,465,540,120,200,240,140,255,245,330,180,255,405,"1,115",535,350,350,355,275,585,480,320,885,495,275,625,305,225,125,275,505,235,205,235,230,245,420,250,335,695,755,280,320,215,125,165,315,150,"1,245",435,205,220,330,335,175,185,580,395,370,310,370,490,295,440,160,270,295,"1,180",235,640,150,225,460,"1,040",290,325,340,"1,690",335,290,115,405,380,260,330,640,275,225,325,260,170,185,405,440,440,885,305,120,165,370,890,360,360,620,415,210,570,140,215,385,150,260,"3,315",355,440,315,240,220,485,"1,335",430,450,685,420,285,275,320,345,350,280 -1015,Income,Income of households in 2015,Census Profile 98-316-X2016001, Median total income of one-person households in 2015 ($),"38,018",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1016,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $90,000 to $99,999","50,845",295,275,330,630,640,340,595,465,230,370,55,410,595,70,180,205,145,220,140,295,130,225,415,925,450,330,330,270,310,560,450,255,760,415,205,655,310,165,100,245,470,190,165,225,170,150,415,290,230,625,685,295,310,230,95,115,280,110,"1,105",415,130,180,280,245,235,205,430,420,425,280,440,355,255,305,130,275,215,950,230,585,120,165,485,795,235,260,325,"1,345",370,220,105,390,375,290,310,575,225,215,280,305,155,170,260,365,440,855,350,100,125,255,835,350,270,670,330,130,670,130,170,345,135,230,"2,640",345,350,275,225,125,385,"1,185",420,495,480,445,260,315,285,320,240,220 -1017,Income,Income of individuals in 2015,Census Profile 98-316-X2016001," $100,000 and over","165,330",505,515,730,"3,715","2,570",815,"2,090","1,405",770,"3,605",100,595,"1,730",85,660,375,"1,770",630,255,"1,240",200,"1,660","1,110","2,840",720,"1,080",905,620,955,"1,485",940,370,"1,605",605,545,"1,945","1,585",245,140,"1,020","1,080",325,305,"1,330","1,640",160,"1,070",740,500,"2,175","2,955",535,735,485,150,130,"1,380",145,"3,100",970,205,205,795,510,"1,800","1,025",890,"1,670","2,955","3,060","3,160",940,635,390,280,895,395,"2,885",290,"2,045",125,185,"2,800","2,575",585,800,770,"4,325","1,735",485,130,905,935,775,"1,080","1,475",325,980,515,"1,620",395,185,405,"1,300","3,725","1,735","1,495",155,320,630,"2,990","2,090",600,"2,830",655,225,"3,600",190,310,"1,290",585,500,"9,990",525,485,535,355,255,605,"3,415","1,210","1,000",820,"1,280",535,"1,030","1,660","1,790",330,500 -1018,Income,Income of households in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for private households by household size - 100% data,"1,112,930","9,120","8,130","4,620","15,940","12,115","6,095","15,075","9,530","4,700","8,610","2,650","10,765","9,200","7,320","3,125","5,735","3,240","5,660","6,485","6,445","3,685","5,405","4,380","19,690","9,245","6,550","5,900","5,495","3,930","7,020","9,975","8,775","15,320","13,105","5,435","9,175","6,250","7,915","3,215","8,255","6,865","4,580","7,820","5,445","4,950","9,920","6,055","3,995","6,365","11,025","10,875","3,700","6,400","4,130","3,895","5,050","6,565","5,170","19,330","6,025","4,185","6,580","8,730","7,780","3,585","3,120","15,040","6,590","5,415","5,745","6,430","7,430","4,815","13,430","3,555","4,305","7,690","17,780","5,875","11,560","5,180","9,885","7,440","17,495","5,370","6,120","8,955","18,785","5,005","9,560","5,280","8,685","7,470","3,790","6,340","13,320","3,715","3,570","5,515","3,860","4,960","3,845","9,045","6,885","10,055","13,395","3,820","3,645","5,925","11,395","12,075","6,425","7,820","10,370","10,060","6,270","9,430","3,280","7,130","6,910","3,390","7,415","40,750","9,990","10,285","10,230","7,600","4,225","10,105","22,295","7,550","8,510","18,430","5,450","3,445","5,895","5,670","7,015","10,175","5,340" -1019,Income,Income of households in 2015,Census Profile 98-316-X2016001, Median total income of households in 2015 ($),"65,829",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1020,Income,Income of households in 2015,Census Profile 98-316-X2016001, Median after-tax income of households in 2015 ($),"58,264",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1021,Income,Income of households in 2015,Census Profile 98-316-X2016001, Total - Income statistics in 2015 for one-person private households - 100% data,"359,955","1,345","1,620","1,105","7,885","4,360","1,660","7,610","3,200",975,"2,380",865,"2,800","2,960","1,670",965,"1,725",630,"2,445","1,540","3,320",825,"2,270",505,"11,420","1,900","2,040","1,495","1,285","1,190","2,020","2,115","2,120","4,665","3,410","2,015","3,175","1,785","1,785",635,"2,825","1,430","1,285","1,970","1,925","2,005","1,950","1,950","1,120","1,790","4,750","4,195",420,"1,480","1,210",635,855,"2,530","1,310","6,650","1,990","1,150","2,005","4,090","1,760",855,810,"2,990","1,875","1,270","1,470","1,780","2,930","1,870","2,115",765,"1,180",925,"8,215","1,205","6,850","1,455","1,510","2,655","9,685","2,205","1,585","2,145","10,075","1,650","4,520","1,785","2,650","2,210","1,115","2,230","3,370",745,"1,455","1,025",550,"2,155",990,"2,985","2,715","4,170","1,640",840,890,"1,530","5,830","4,335","1,310","1,260","3,025","2,430","1,900","3,265",570,"1,920","2,155","1,440","2,640","22,040","2,790","1,790","2,750","2,805","1,200","2,540","7,390","2,660","2,170","4,220","1,860","1,105","2,080","2,365","3,475","2,660","1,355" -1022,Income,Income of households in 2015,Census Profile 98-316-X2016001," $15,000 to $19,999","54,025",450,265,90,740,400,415,690,330,130,265,190,450,335,600,270,290,35,360,330,510,115,180,50,"1,125",295,380,300,195,290,330,385,415,785,620,310,550,165,370,125,635,125,165,500,260,155,630,350,60,280,540,330,60,560,165,95,190,410,250,785,235,275,450,945,290,45,160,820,225,145,125,130,305,220,515,105,65,335,990,260,855,310,435,315,975,450,375,545,550,170,925,480,620,395,160,305,520,80,220,170,45,390,190,665,505,250,205,70,325,330,"1,075",660,150,370,325,615,385,295,120,475,245,180,540,"1,305",650,290,855,670,235,455,880,605,295,"1,170",315,195,395,175,220,520,220 -1023,Income,Income of households in 2015,Census Profile 98-316-X2016001, Median after-tax income of one-person households in 2015 ($),"34,172",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1024,Income,Income of households in 2015,Census Profile 98-316-X2016001, Total - Income statistics in 2015 for two-or-more-person private households - 100% data,"752,970","7,770","6,515","3,510","8,045","7,770","4,430","7,465","6,330","3,725","6,220","1,790","7,960","6,230","5,670","2,160","4,020","2,615","3,220","4,935","3,120","2,850","3,140","3,875","8,265","7,350","4,515","4,405","4,205","2,730","5,015","7,845","6,660","10,655","9,695","3,425","6,005","4,460","6,120","2,585","5,425","5,435","3,295","5,865","3,520","2,950","7,970","4,090","2,870","4,570","6,280","6,670","3,275","4,925","2,925","3,260","4,190","4,030","3,860","12,680","4,040","3,030","4,565","4,645","6,030","2,730","2,305","12,035","4,715","4,145","4,285","4,660","4,495","2,945","11,310","2,795","3,130","6,765","9,560","4,680","4,700","3,725","8,370","4,780","7,820","3,165","4,525","6,815","8,695","3,350","5,035","3,495","6,035","5,260","2,670","4,100","9,955","2,965","2,125","4,490","3,310","2,805","2,850","6,070","4,180","5,895","11,755","2,975","2,760","4,395","5,550","7,745","5,125","6,560","7,360","7,630","4,375","6,165","2,710","5,210","4,750","1,955","4,765","18,725","7,195","8,490","7,485","4,795","3,025","7,570","14,920","4,890","6,330","14,225","3,590","2,340","3,815","3,310","3,535","7,505","3,985" -1025,Income,Income of households in 2015,Census Profile 98-316-X2016001, Median total income of two-or-more-person households in 2015 ($),"82,908",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1026,Income,Income of households in 2015,Census Profile 98-316-X2016001, Median after-tax income of two-or-more-person households in 2015 ($),"73,695",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1027,Income,Income of households in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015for private households by household size - 25% sampledata,"1,112,930","9,120","8,135","4,615","15,940","12,135","6,095","15,070","9,535","4,700","8,605","2,650","10,755","9,200","7,325","3,125","5,735","3,240","5,665","6,485","6,435","3,680","5,405","4,385","19,680","9,240","6,560","5,900","5,510","3,930","7,025","9,975","8,780","15,295","13,100","5,435","9,180","6,250","7,910","3,220","8,250","6,870","4,580","7,840","5,445","4,945","9,925","6,050","3,995","6,365","11,025","10,875","3,700","6,395","4,135","3,895","5,055","6,565","5,170","19,330","6,025","4,185","6,580","8,735","7,780","3,580","3,120","15,035","6,585","5,420","5,750","6,430","7,430","4,820","13,415","3,555","4,310","7,675","17,780","5,880","11,550","5,175","9,880","7,435","17,510","5,370","6,115","8,960","18,770","5,000","9,560","5,280","8,685","7,470","3,790","6,340","13,315","3,710","3,580","5,520","3,855","4,955","3,845","9,050","6,890","10,050","13,390","3,820","3,650","5,925","11,395","12,070","6,425","7,820","10,380","10,065","6,270","9,425","3,280","7,125","6,910","3,395","7,415","40,760","9,985","10,280","10,215","7,605","4,225","10,105","22,305","7,565","8,505","18,435","5,450","3,450","5,895","5,675","7,020","10,165","5,340" -1028,Income,Income of households in 2015,Census Profile 98-316-X2016001, Average total income of households in 2015 ($),"102,721",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1029,Income,Income of households in 2015,Census Profile 98-316-X2016001," $100,000 to $124,999","100,810",955,790,520,"1,220","1,135",590,"1,025",855,475,635,165,"1,015",935,465,250,545,195,380,525,490,405,445,590,"1,715","1,040",575,600,625,330,735,950,845,"1,460","1,180",495,825,545,640,310,635,900,460,525,355,320,790,585,495,535,"1,035","1,005",490,675,430,360,465,435,405,"2,055",610,430,520,555,655,285,255,"1,340",585,395,435,535,750,380,"1,425",325,465,780,"1,655",570,895,425,820,580,"1,525",425,535,705,"2,220",400,515,315,780,625,375,605,"1,220",470,245,590,350,260,425,895,540,770,"1,930",410,220,410,595,"1,135",525,770,970,895,380,865,335,455,660,285,565,"4,565",905,"1,190",805,570,460,"1,020","2,015",635,880,"1,660",520,380,455,460,580,825,515 -1030,Income,Income of households in 2015,Census Profile 98-316-X2016001, Average after-tax income of households in 2015 ($),"81,495","427,037","278,390","168,602","792,507","493,486","251,583","352,218","354,894","253,036","720,203","109,880","326,482","369,161","261,560","154,132","190,243","1,392,010","126,349","176,688","301,145","132,879","545,338","215,135","443,734","350,777","168,893","248,846","304,000","260,052","334,260","414,411","251,476","594,477","562,794","128,586","304,010","441,052","343,031","123,119","293,189","352,269","132,460","261,233","258,469","784,645","410,012","216,423","177,062","202,357","496,958","483,620","196,620","298,716","238,655","202,677","184,459","289,910","169,046","854,623","310,473","184,802","229,390","222,404","272,950","900,624","214,945","529,383","356,122","470,908","1,216,585","841,619","202,912","137,480","533,202","144,062","195,412","525,507","583,422","272,837","170,813","164,344","360,648","348,357","443,047","188,819","335,768","260,415","369,683","318,764","144,164","134,303","267,062","354,525","257,522","347,339","623,453","154,568","194,189","219,209","538,736","103,250","134,305","295,358","377,518","1,413,132","729,154","223,885","113,995","185,967","258,500","662,651","649,291","363,045","516,575","475,647","102,259","659,192","140,050","195,114","333,954","197,072","171,271","662,333","316,750","426,156","332,776","171,044","127,491","336,503","572,155","272,986","412,302","629,030","240,272","147,462","239,484","222,648","541,217","302,358","213,860" -1031,Income,Income of households in 2015,Census Profile 98-316-X2016001, Total - Income statistics in 2015 for one-person private households - 25% sample data,"359,990","1,360","1,615","1,115","7,895","4,370","1,660","7,620","3,190",980,"2,400",860,"2,815","2,965","1,660",960,"1,725",605,"2,435","1,540","3,315",830,"2,230",505,"11,415","1,895","2,025","1,495","1,295","1,185","2,010","2,115","2,105","4,670","3,405","2,010","3,195","1,795","1,780",630,"2,830","1,440","1,290","1,970","1,920","1,995","1,970","1,960","1,115","1,790","4,730","4,200",425,"1,485","1,200",635,860,"2,525","1,305","6,640","1,990","1,155","2,005","4,090","1,750",855,820,"2,995","1,880","1,255","1,475","1,790","2,925","1,870","2,115",770,"1,180",925,"8,215","1,195","6,850","1,455","1,530","2,665","9,680","2,210","1,595","2,135","10,075","1,655","4,530","1,790","2,660","2,200","1,120","2,235","3,360",750,"1,455","1,025",555,"2,140",990,"2,990","2,705","4,170","1,620",835,890,"1,535","5,855","4,330","1,305","1,235","3,015","2,430","1,885","3,265",570,"1,915","2,155","1,430","2,650","22,050","2,790","1,800","2,685","2,810","1,190","2,540","7,380","2,705","2,175","4,235","1,875","1,105","2,065","2,370","3,520","2,655","1,350" -1032,Income,Income of households in 2015,Census Profile 98-316-X2016001, Average total income of one-person households in 2015 ($),"55,409",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1033,Income,Income of households in 2015,Census Profile 98-316-X2016001, Average after-tax income of one-person households in 2015 ($),"44,276",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1034,Income,Income of households in 2015,Census Profile 98-316-X2016001, Total - Income statistics in 2015 for two-or-more-person private households - 25% sample data,"752,940","7,770","6,520","3,500","8,040","7,760","4,430","7,465","6,335","3,715","6,210","1,780","7,950","6,230","5,665","2,165","4,010","2,635","3,225","4,940","3,125","2,855","3,175","3,880","8,250","7,340","4,525","4,405","4,220","2,740","5,020","7,850","6,665","10,625","9,695","3,420","5,990","4,470","6,130","2,585","5,425","5,425","3,295","5,865","3,525","2,950","7,955","4,095","2,870","4,570","6,280","6,680","3,280","4,910","2,930","3,255","4,200","4,035","3,865","12,695","4,040","3,030","4,565","4,640","6,030","2,725","2,305","12,055","4,720","4,160","4,275","4,640","4,500","2,950","11,305","2,790","3,125","6,770","9,570","4,690","4,705","3,715","8,345","4,780","7,810","3,175","4,510","6,825","8,700","3,355","5,035","3,495","6,035","5,255","2,670","4,095","9,950","2,955","2,125","4,500","3,310","2,815","2,860","6,070","4,180","5,880","11,765","2,980","2,755","4,395","5,530","7,735","5,125","6,575","7,360","7,635","4,385","6,170","2,715","5,205","4,755","1,965","4,760","18,715","7,195","8,485","7,525","4,790","3,035","7,560","14,920","4,850","6,345","14,200","3,585","2,345","3,835","3,305","3,495","7,525","3,990" -1035,Income,Income of households in 2015,Census Profile 98-316-X2016001, Average total income of two-or-more-person households in 2015 ($),"125,340",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1036,Income,Income of households in 2015,Census Profile 98-316-X2016001," $125,000 to $149,999","68,300",640,475,480,905,780,410,730,630,355,480,95,700,670,215,205,335,175,240,310,340,280,325,570,990,670,395,475,415,265,585,620,425,"1,045",765,300,650,345,350,195,370,645,290,260,260,245,495,465,375,280,615,765,410,500,280,260,260,280,250,"1,320",495,245,325,355,435,250,195,880,455,370,310,365,450,250,880,210,370,495,"1,170",355,625,235,445,475,920,305,330,460,"1,485",325,255,155,520,410,280,430,790,335,195,430,305,160,275,530,425,610,"1,435",325,160,240,325,830,415,570,735,570,180,640,245,205,465,175,315,"3,040",590,830,435,315,315,680,"1,330",485,620,"1,030",435,300,370,350,435,490,345 -1037,Income,Income of households in 2015,Census Profile 98-316-X2016001, Average after-tax income of two-or-more-person households in 2015 ($),"99,289",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1038,Income,Income of households in 2015,Census Profile 98-316-X2016001,Total - Household total income groups in 2015 for private households - 100% data,"1,112,930","9,120","8,135","4,620","15,935","12,125","6,085","15,075","9,530","4,695","8,605","2,650","10,765","9,200","7,325","3,125","5,730","3,240","5,665","6,480","6,440","3,680","5,405","4,380","19,680","9,245","6,550","5,905","5,490","3,930","7,025","9,970","8,775","15,325","13,115","5,430","9,175","6,250","7,910","3,220","8,245","6,860","4,585","7,830","5,450","4,950","9,920","6,055","3,990","6,365","11,025","10,880","3,700","6,395","4,135","3,895","5,055","6,570","5,165","19,325","6,035","4,180","6,575","8,740","7,785","3,590","3,120","15,045","6,595","5,420","5,745","6,435","7,425","4,815","13,425","3,560","4,305","7,680","17,785","5,880","11,555","5,175","9,870","7,440","17,490","5,375","6,105","8,960","18,765","5,005","9,560","5,285","8,685","7,470","3,785","6,330","13,305","3,715","3,580","5,520","3,860","4,960","3,850","9,065","6,885","10,055","13,400","3,820","3,650","5,920","11,385","12,070","6,425","7,820","10,380","10,055","6,270","9,425","3,280","7,125","6,910","3,395","7,410","40,750","9,985","10,285","10,235","7,595","4,225","10,105","22,305","7,550","8,510","18,445","5,455","3,455","5,885","5,680","7,015","10,165","5,345" -1039,Income,Income of households in 2015,Census Profile 98-316-X2016001," Under $5,000","33,195",155,315,55,850,265,130,"2,510",585,90,140,50,615,165,140,55,105,80,145,100,175,55,165,20,"1,310",150,125,100,125,75,95,330,135,310,200,125,210,85,100,40,170,65,95,255,120,125,90,150,40,460,330,260,60,175,45,40,85,165,120,415,130,70,105,515,115,45,60,365,330,80,100,120,200,120,195,45,45,125,570,140,485,110,150,155,765,140,390,455,515,105,440,145,155,190,75,145,345,45,90,145,35,180,70,140,190,305,95,45,45,105,385,260,165,195,180,225,185,195,40,250,180,230,180,"1,795",135,215,220,150,55,175,"2,090",560,90,435,65,55,120,205,215,345,100 -1040,Income,Income of households in 2015,Census Profile 98-316-X2016001," $5,000 to $9,999","23,455",105,140,45,485,155,85,735,260,70,85,60,220,290,170,90,135,25,110,125,160,65,75,25,755,110,100,85,85,65,105,175,140,330,180,95,270,50,130,50,155,25,65,145,95,65,155,140,20,170,270,155,25,115,35,50,70,130,95,320,110,80,205,400,95,20,65,245,130,55,80,65,150,95,160,35,25,75,370,125,725,125,210,95,455,150,155,215,335,65,450,290,180,150,60,130,185,45,65,75,10,300,95,280,175,120,80,30,90,180,405,320,85,115,120,155,180,150,35,160,105,145,205,880,395,145,190,265,200,145,640,225,85,455,125,65,120,105,120,230,65 -1041,Income,Income of households in 2015,Census Profile 98-316-X2016001," $10,000 to $14,999","36,550",160,195,80,655,235,155,740,290,80,150,160,255,320,315,145,190,35,200,255,330,100,135,35,"1,070",260,165,145,125,135,165,255,250,605,400,190,455,100,265,80,290,70,125,250,155,110,280,270,40,210,420,230,45,170,75,60,105,240,205,465,195,125,370,550,170,30,120,365,160,90,105,80,250,175,290,55,45,130,635,215,"1,050",255,290,170,690,300,210,295,535,130,765,410,255,265,85,225,315,50,130,100,35,360,140,370,355,185,130,45,170,305,860,515,120,150,220,255,330,260,65,255,215,165,280,"1,175",560,200,330,465,255,285,755,250,155,685,265,105,185,145,185,340,120 -1042,Income,Income of households in 2015,Census Profile 98-316-X2016001," $20,000 to $24,999","47,315",320,315,145,620,395,245,580,365,200,230,185,370,405,440,135,280,30,290,385,330,175,160,45,875,390,260,285,250,190,310,415,390,715,680,260,445,220,405,150,485,220,180,440,240,165,655,320,140,280,460,430,70,235,180,200,235,310,240,665,220,245,410,470,390,70,145,640,230,105,125,150,285,240,485,175,125,245,750,250,525,285,405,230,750,350,245,460,535,175,570,330,505,395,150,265,590,110,160,215,65,305,175,510,350,255,245,95,275,325,760,450,175,315,400,505,375,270,150,375,315,175,420,"1,215",490,345,550,455,225,495,805,325,365,825,275,150,325,175,225,525,245 -1043,Income,Income of households in 2015,Census Profile 98-316-X2016001," $25,000 to $29,999","47,500",540,400,150,530,445,230,560,370,170,215,170,475,330,480,140,265,45,345,360,265,155,185,75,720,420,270,245,205,135,260,465,470,660,655,240,375,200,500,160,395,205,195,500,220,165,590,230,110,290,425,350,80,325,175,190,275,290,295,730,225,220,360,480,370,55,130,825,230,95,120,160,305,225,600,200,145,450,665,295,495,290,515,220,645,290,325,510,540,160,555,330,410,375,135,255,600,120,120,225,55,295,165,475,275,260,325,85,250,345,705,395,190,405,385,580,385,245,140,490,245,130,385,"1,145",485,400,605,490,175,455,945,315,395,960,190,135,270,170,220,525,240 -1044,Income,Income of households in 2015,Census Profile 98-316-X2016001," $30,000 to $34,999","46,945",420,370,155,525,405,220,490,360,205,230,190,465,315,485,130,250,40,335,385,245,190,170,85,765,420,255,200,260,140,275,500,470,640,755,305,375,210,510,170,390,250,210,485,215,150,640,245,130,265,410,340,90,245,195,215,300,290,295,680,210,205,365,370,395,60,130,815,215,90,100,150,310,195,630,150,140,400,660,285,370,310,575,210,610,295,260,485,515,165,540,350,470,370,130,270,615,145,135,255,85,265,160,450,285,215,325,95,235,370,655,430,165,410,385,520,385,225,160,490,300,125,400,"1,105",490,420,545,440,175,535,790,285,375,910,225,110,225,190,215,590,290 -1045,Income,Income of households in 2015,Census Profile 98-316-X2016001," $35,000 to $39,999","47,115",455,385,170,555,470,255,515,330,180,215,170,520,340,445,115,295,45,305,425,240,180,170,75,785,385,250,215,230,130,260,460,470,695,775,290,330,235,485,180,380,215,205,480,210,145,655,215,150,280,420,345,120,245,195,255,280,285,295,735,235,195,365,390,425,60,100,775,235,120,135,155,315,225,680,185,135,355,645,270,395,295,615,220,690,240,190,410,530,155,520,335,435,375,170,265,575,170,120,230,95,265,190,475,255,225,410,110,240,345,660,435,210,395,330,510,390,280,165,465,295,140,370,"1,160",465,430,520,405,180,480,800,245,375,950,160,130,225,210,235,570,275 -1046,Income,Income of households in 2015,Census Profile 98-316-X2016001," $40,000 to $44,999","46,285",420,370,160,540,460,240,440,350,200,225,155,495,330,460,115,285,30,310,365,235,170,140,95,760,445,285,255,260,125,255,415,525,650,710,265,320,225,475,180,315,255,235,505,230,145,535,205,130,280,420,395,80,195,170,240,300,295,340,735,220,200,330,340,425,70,70,745,210,105,95,140,325,215,650,195,170,380,705,310,405,240,590,220,735,225,210,375,600,185,470,310,440,350,130,255,620,150,135,255,70,235,175,425,240,275,405,95,200,325,615,370,165,300,375,520,385,255,170,470,260,135,370,"1,250",465,445,480,375,175,500,770,265,380,955,190,115,225,195,260,530,280 -1047,Income,Income of households in 2015,Census Profile 98-316-X2016001," $45,000 to $49,999","44,650",435,415,165,505,400,245,410,335,165,240,125,530,310,430,100,240,30,270,325,255,180,160,90,755,420,255,220,215,120,255,435,465,625,685,245,295,270,480,175,335,235,210,415,205,175,560,205,160,285,420,355,115,165,190,220,235,300,295,755,235,185,280,325,410,75,100,680,185,105,110,165,305,230,655,180,160,345,675,275,355,280,580,215,735,210,225,370,650,175,490,250,355,295,155,200,620,145,120,230,70,210,160,395,260,255,455,100,165,355,580,350,175,315,375,460,385,295,180,415,255,110,425,"1,250",380,435,505,370,180,445,790,240,370,815,180,115,225,180,260,530,230 -1048,Income,Income of households in 2015,Census Profile 98-316-X2016001," $50,000 to $59,999","84,180",800,770,335,"1,000",930,400,850,650,330,440,205,935,650,750,165,470,100,540,595,425,295,280,210,"1,445",735,485,410,410,220,445,835,855,"1,150","1,200",415,530,465,760,320,735,435,475,745,390,315,925,340,295,545,800,730,230,375,375,330,540,510,465,"1,530",440,330,585,620,765,135,170,"1,340",430,195,240,310,605,400,"1,360",345,320,645,"1,270",475,645,490,"1,065",445,"1,470",390,400,665,"1,350",320,815,435,615,595,245,440,"1,200",285,225,455,165,395,335,705,460,525,970,195,295,570,925,705,355,565,670,850,620,510,290,730,510,210,640,"2,690",795,900,865,615,260,855,"1,525",440,630,"1,725",295,245,400,370,505,950,470 -1049,Income,Income of households in 2015,Census Profile 98-316-X2016001," $60,000 to $69,999","76,120",700,645,300,900,885,430,840,655,290,395,200,845,595,565,165,430,95,400,560,420,255,285,230,"1,310",700,480,350,370,210,385,755,730,"1,035","1,025",410,500,415,650,265,565,475,375,665,345,255,720,330,255,465,725,715,230,350,305,325,405,430,440,"1,475",420,290,430,505,655,165,125,"1,150",390,190,215,265,550,360,"1,200",320,285,635,"1,255",425,635,425,915,425,"1,320",340,380,620,"1,415",275,600,350,580,485,255,405,"1,025",285,200,405,165,360,275,645,425,510,950,190,210,420,760,735,320,605,640,730,495,455,270,560,435,200,570,"2,945",680,830,780,510,265,770,"1,420",390,610,"1,405",290,205,390,375,445,845,370 -1050,Income,Income of households in 2015,Census Profile 98-316-X2016001," $70,000 to $79,999","68,190",635,595,320,795,780,390,815,615,265,390,160,765,525,475,140,415,75,320,440,350,250,285,235,"1,255",610,410,350,320,195,345,710,625,935,855,355,415,400,550,240,500,465,325,525,310,220,630,310,265,470,660,630,200,405,230,270,380,360,400,"1,365",370,275,430,445,565,145,130,"1,055",335,205,205,265,540,310,"1,000",220,275,565,"1,120",385,580,315,740,370,"1,185",285,350,540,"1,395",240,525,250,520,410,215,400,880,240,195,370,160,255,230,560,350,505,930,195,195,355,600,630,350,515,570,630,410,445,185,425,370,180,490,"2,895",605,835,655,425,255,675,"1,300",375,555,"1,240",235,200,315,325,415,615,360 -1051,Income,Income of households in 2015,Census Profile 98-316-X2016001," $80,000 to $89,999","60,400",525,510,275,715,655,310,705,520,255,360,110,615,475,360,120,370,95,280,345,295,210,240,295,"1,005",575,385,315,300,155,330,595,545,905,730,285,400,345,460,190,435,445,275,435,280,210,550,325,255,415,630,590,195,310,265,255,315,275,280,"1,170",330,225,350,385,430,145,115,855,330,215,190,270,470,295,905,200,255,510,"1,105",320,520,320,590,315,"1,085",205,280,455,"1,325",210,400,210,430,385,205,310,790,240,190,310,170,220,230,475,345,440,940,170,175,300,495,620,290,475,480,600,310,430,210,360,390,150,385,"2,585",565,690,595,310,220,590,"1,285",375,510,"1,070",235,185,300,275,340,605,295 -1052,Income,Income of households in 2015,Census Profile 98-316-X2016001," $90,000 to $99,999","53,485",515,405,250,605,605,300,570,495,250,275,105,575,465,305,115,315,105,225,275,270,235,260,270,925,555,310,285,310,165,375,495,455,815,640,245,390,280,335,165,315,390,265,350,245,190,470,305,240,340,525,560,210,305,195,185,255,240,260,"1,065",335,225,290,325,400,140,110,710,300,210,175,230,425,230,795,190,230,395,920,310,500,275,500,290,910,195,275,380,"1,195",210,340,180,385,345,170,270,650,250,130,295,170,175,225,460,300,440,845,170,120,220,390,560,275,430,450,470,240,405,185,270,340,110,290,"2,405",500,615,525,295,230,505,"1,080",335,435,865,220,195,275,245,325,515,235 -1053,Income,Income of households in 2015,Census Profile 98-316-X2016001," $100,000 and over","343,520","2,505","2,030","1,915","5,895","4,615","2,025","3,600","3,010","1,830","4,745",430,"2,625","3,345",900,"1,105","1,375","2,370","1,230","1,225","1,925","1,040","2,535","2,545","4,840","2,785","2,135","2,135","1,840","1,570","2,820","2,755","1,830","4,435","3,015","1,385","3,340","2,575","1,445",730,"2,155","2,995","1,200","1,130","1,925","2,365","1,835","2,115","1,715","1,320","3,565","4,485","1,890","2,215","1,340",970,"1,055","2,045",900,"6,445","2,120","1,015","1,245","1,665","1,875","2,335","1,400","3,680","2,675","3,405","3,660","3,775","2,105","1,265","3,280",955,"1,875","2,070","5,455","1,515","3,005",860,"1,705","3,560","4,495","1,335","1,830","2,170","6,795","2,280","1,170",635,"2,340","2,095","1,485","2,225","3,795","1,355","1,350","1,775","2,450",745,"1,040","2,005","2,145","5,265","6,060","2,110",665,"1,080","1,505","4,645","3,215","2,245","4,470","2,455",830,"4,740",940,925,"2,445","1,010","1,445","14,995","2,340","3,085","2,015","1,360","1,140","2,740","6,405","2,320","2,895","3,980","2,190","1,245","1,895","2,340","2,865","1,955","1,550" -1054,Income,Income of households in 2015,Census Profile 98-316-X2016001," $200,000 and over","96,600",325,285,360,"2,670","1,750",515,"1,105",855,580,"2,915",60,275,930,40,320,165,"1,705",320,150,700,80,"1,325",715,"1,130",340,690,495,325,520,685,530,145,710,355,265,950,"1,290",135,60,755,590,150,105,"1,025","1,465",140,470,410,230,"1,095","1,735",440,480,320,115,95,935,70,"1,665",470,90,115,365,330,"1,400",645,550,"1,095","2,025","2,375","2,260",415,300,225,200,575,295,"1,245",205,800,50,110,"1,740","1,095",225,535,470,"1,535","1,055",170,50,450,515,430,650,890,190,630,295,"1,270",150,95,165,675,"3,055","1,075",875,115,195,240,"1,435","1,745",380,"1,715",400,75,"2,265",120,100,730,340,240,"3,850",300,310,305,175,80,330,"1,605",640,655,430,610,210,610,"1,110","1,380",195,325 -1055,Income,Income of households in 2015,Census Profile 98-316-X2016001,Total - Household after-tax income groups in 2015 for private households - 100% data,"1,112,930","9,115","8,140","4,620","15,940","12,125","6,090","15,070","9,525","4,700","8,605","2,650","10,765","9,190","7,320","3,125","5,745","3,240","5,665","6,480","6,440","3,680","5,405","4,375","19,690","9,240","6,555","5,905","5,485","3,925","7,025","9,960","8,780","15,320","13,100","5,440","9,190","6,260","7,905","3,215","8,245","6,860","4,585","7,830","5,440","4,950","9,930","6,055","3,995","6,360","11,025","10,870","3,700","6,400","4,135","3,895","5,060","6,565","5,170","19,330","6,035","4,185","6,570","8,730","7,775","3,580","3,120","15,030","6,585","5,420","5,755","6,435","7,430","4,810","13,430","3,560","4,310","7,680","17,770","5,885","11,555","5,175","9,875","7,435","17,500","5,375","6,120","8,960","18,780","5,005","9,555","5,285","8,690","7,470","3,785","6,330","13,315","3,710","3,575","5,520","3,865","4,960","3,845","9,060","6,885","10,045","13,395","3,815","3,655","5,930","11,385","12,075","6,420","7,820","10,380","10,065","6,270","9,420","3,280","7,130","6,910","3,395","7,410","40,765","9,985","10,290","10,230","7,600","4,230","10,105","22,305","7,550","8,510","18,430","5,455","3,450","5,880","5,680","7,010","10,165","5,345" -1056,Income,Income of households in 2015,Census Profile 98-316-X2016001," Under $5,000","34,795",150,320,70,905,300,130,"2,545",610,105,175,50,625,185,145,60,115,100,145,110,200,65,190,20,"1,355",150,135,110,135,75,95,355,140,330,220,135,215,115,100,45,190,75,95,260,125,155,95,145,45,465,340,275,65,185,55,45,85,180,120,435,150,70,110,530,130,50,60,370,350,95,120,145,200,125,195,50,55,140,600,145,500,105,150,170,790,150,415,470,535,105,440,155,160,200,65,160,350,50,95,140,55,180,65,145,190,355,105,50,50,110,405,280,195,205,210,250,190,220,40,260,190,230,195,"1,860",150,215,235,160,50,180,"2,130",575,105,435,70,60,135,215,240,350,115 -1057,Income,Income of households in 2015,Census Profile 98-316-X2016001," $5,000 to $9,999","23,615",105,130,35,485,150,85,740,255,70,100,60,230,300,175,90,135,25,115,130,160,65,85,20,750,115,95,90,85,70,100,175,155,330,185,100,270,50,125,45,150,35,70,150,95,80,155,140,25,165,270,155,30,115,45,55,70,130,95,335,110,75,220,405,105,25,65,255,135,50,95,65,150,90,160,35,25,75,375,130,735,130,220,95,455,150,150,220,350,70,445,290,185,155,55,130,190,40,65,80,10,300,95,270,175,120,80,30,85,175,410,310,90,110,115,150,190,150,35,150,110,140,195,895,390,150,190,275,195,140,655,215,80,470,125,60,125,105,125,220,70 -1058,Income,Income of households in 2015,Census Profile 98-316-X2016001," $10,000 to $14,999","37,080",165,205,80,660,245,150,745,290,85,145,160,270,325,320,155,190,30,200,255,325,100,135,30,"1,110",270,170,140,120,145,175,265,245,605,395,200,455,100,265,80,300,80,125,260,165,105,280,270,40,220,430,230,45,180,75,60,110,235,210,470,200,125,380,560,180,35,120,370,160,90,100,85,265,180,275,60,50,135,625,225,"1,050",255,295,170,700,305,210,295,545,135,770,410,260,270,85,235,330,60,130,105,40,355,135,380,360,195,135,45,170,310,865,515,130,160,215,265,325,265,70,255,225,165,285,"1,185",550,195,325,460,255,290,765,265,155,685,260,110,185,140,190,350,120 -1059,Income,Income of households in 2015,Census Profile 98-316-X2016001," $15,000 to $19,999","55,930",450,275,85,785,435,430,720,355,145,260,195,455,350,605,280,305,40,375,340,535,125,185,60,"1,190",305,385,310,205,290,340,395,430,810,655,320,575,170,380,130,640,120,180,520,260,160,655,365,60,290,575,365,60,570,170,95,190,415,260,815,245,285,460,955,295,40,165,830,230,150,120,140,320,235,535,110,75,345,"1,040",260,890,325,440,325,"1,030",460,390,560,595,180,950,485,625,410,175,325,530,85,235,180,50,415,195,665,520,275,220,70,330,340,"1,135",690,160,390,325,630,400,305,120,485,275,175,555,"1,385",665,300,875,670,260,485,905,610,305,"1,160",325,200,405,190,220,540,225 -1060,Income,Income of households in 2015,Census Profile 98-316-X2016001," $20,000 to $24,999","51,910",340,350,160,680,430,275,620,405,205,255,190,425,450,480,155,305,40,335,415,355,200,175,60,930,435,290,305,295,200,325,450,425,810,745,290,495,255,420,150,520,265,190,460,270,205,700,340,150,305,510,480,80,255,215,210,260,360,265,745,265,285,435,490,420,70,160,680,240,125,140,165,305,275,515,195,140,275,840,270,595,315,445,275,815,365,255,505,600,190,625,355,565,420,165,290,680,130,175,225,70,330,190,580,380,280,280,120,285,345,845,480,180,325,425,550,395,315,160,425,330,180,450,"1,365",525,385,590,520,240,540,850,370,405,905,295,175,380,210,255,555,275 -1061,Income,Income of households in 2015,Census Profile 98-316-X2016001," $25,000 to $29,999","52,205",565,415,175,625,495,240,610,385,190,245,190,510,365,520,140,300,50,390,400,295,180,210,85,840,470,305,285,230,150,305,500,520,710,715,280,435,245,540,170,430,215,225,545,240,175,625,255,120,315,480,380,80,315,190,220,290,330,320,795,240,245,425,510,420,60,135,880,260,110,130,185,345,245,640,195,175,455,740,320,515,320,555,260,750,350,355,530,600,185,635,355,460,420,155,290,630,140,150,250,75,315,185,530,295,300,355,105,265,365,815,450,210,420,440,630,430,270,150,510,285,140,445,"1,290",525,465,645,505,175,525,"1,015",330,430,"1,020",225,145,245,215,250,580,275 -1062,Income,Income of households in 2015,Census Profile 98-316-X2016001," $30,000 to $34,999","53,515",450,395,170,630,500,250,570,435,220,275,215,545,395,510,130,295,45,385,445,290,185,205,95,920,455,285,235,270,145,300,550,545,760,835,360,400,240,550,195,450,275,225,525,255,175,685,270,170,285,500,405,115,285,210,230,325,325,335,875,235,220,375,440,440,75,140,890,240,120,120,165,355,245,720,190,170,435,765,330,450,340,625,265,795,320,260,535,650,185,605,375,505,425,165,290,690,165,145,295,80,285,190,500,325,270,365,120,265,430,730,490,200,470,460,565,460,300,190,535,320,165,450,"1,310",555,450,590,510,200,600,915,315,380,"1,035",220,140,265,230,280,650,300 -1063,Income,Income of households in 2015,Census Profile 98-316-X2016001," $35,000 to $39,999","55,545",510,450,210,675,575,300,570,405,215,265,185,620,385,500,150,315,45,365,470,300,220,210,95,945,480,320,245,280,155,325,520,540,810,830,320,390,285,565,195,405,265,280,560,265,195,685,270,170,345,530,480,115,270,215,285,315,355,390,895,280,235,425,415,500,85,110,845,285,135,145,195,410,295,760,225,180,395,865,320,485,315,670,280,895,270,240,470,720,195,605,360,520,410,185,295,715,200,160,265,115,305,205,550,285,315,480,130,245,360,830,470,235,405,450,600,425,340,175,510,295,140,455,"1,540",520,530,590,445,205,555,980,310,450,"1,060",220,140,290,255,310,645,335 -1064,Income,Income of households in 2015,Census Profile 98-316-X2016001," $40,000 to $44,999","55,770",455,470,185,645,555,310,535,415,230,295,175,600,420,510,130,325,55,355,395,320,210,185,120,995,480,305,295,280,155,325,485,585,745,840,330,355,315,525,195,395,295,250,555,285,215,645,225,200,365,535,470,115,205,225,275,340,355,340,975,295,230,365,430,500,100,105,850,255,140,145,220,380,285,750,200,205,420,860,335,500,330,670,255,965,280,260,445,890,220,600,330,490,385,160,290,755,165,150,315,80,265,195,475,315,345,530,115,230,420,710,450,225,345,435,580,465,360,185,580,355,160,490,"1,665",535,495,605,480,195,600,"1,010",300,455,"1,075",220,165,280,240,330,635,305 -1065,Income,Income of households in 2015,Census Profile 98-316-X2016001," $45,000 to $49,999","53,385",475,445,225,665,575,260,565,430,190,280,140,590,405,475,105,290,50,335,380,290,185,185,140,955,520,290,260,265,140,275,545,535,725,780,285,350,295,510,210,435,265,300,470,245,195,595,215,170,325,470,495,135,230,235,205,300,330,300,990,255,225,335,390,480,105,100,790,275,120,125,185,380,245,795,195,205,405,830,325,445,290,660,295,980,260,290,425,900,220,545,305,365,355,165,285,790,190,155,260,85,270,210,480,315,365,565,125,180,380,550,450,225,370,425,565,415,305,170,470,315,130,445,"1,865",485,545,545,385,180,500,"1,005",295,390,"1,020",210,140,225,240,315,565,285 -1066,Income,Income of households in 2015,Census Profile 98-316-X2016001," $50,000 to $59,999","98,910",930,860,390,"1,160","1,180",500,"1,080",825,375,530,235,"1,090",775,805,220,540,110,545,700,545,340,360,260,"1,735",875,625,475,490,255,505,995,960,"1,325","1,310",480,630,555,870,355,770,585,525,845,455,310,985,445,330,680,985,860,260,470,415,370,580,580,560,"1,895",550,365,590,675,865,195,180,"1,520",485,250,290,375,750,455,"1,560",410,385,730,"1,660",550,815,585,"1,160",520,"1,715",435,465,765,"1,930",355,820,470,735,675,300,485,"1,335",350,275,515,220,475,360,835,515,660,"1,110",255,300,610,"1,050",890,435,670,815,940,675,640,340,780,550,255,720,"3,775",880,"1,005",985,675,325,965,"1,900",490,805,"1,905",360,290,500,475,625,"1,065",500 -1067,Income,Income of households in 2015,Census Profile 98-316-X2016001," $60,000 to $69,999","86,755",755,755,355,"1,060","1,000",495,"1,085",785,335,475,200,930,640,595,170,535,130,415,550,440,290,355,310,"1,595",755,530,425,375,250,435,900,810,"1,240","1,100",450,535,455,655,315,585,570,380,700,390,315,760,410,320,560,855,865,270,430,315,365,445,440,500,"1,690",445,350,535,560,675,190,170,"1,315",420,270,255,330,655,415,"1,290",315,320,735,"1,515",480,800,410,980,445,"1,515",315,425,645,"1,810",295,650,375,650,525,290,480,"1,160",300,220,460,185,345,305,685,455,655,"1,175",230,250,465,725,900,400,675,720,775,520,545,290,615,495,230,610,"3,905",765,"1,045",855,540,315,840,"1,705",485,685,"1,545",325,235,400,415,475,870,445 -1068,Income,Income of households in 2015,Census Profile 98-316-X2016001," $70,000 to $79,999","75,120",695,630,365,820,790,420,895,695,305,415,135,780,625,470,155,455,135,330,440,390,285,345,365,"1,245",700,480,385,385,215,435,745,680,"1,090",885,345,515,455,575,255,510,555,345,550,330,230,675,380,315,505,740,725,230,425,290,295,410,330,370,"1,440",435,295,400,485,555,165,145,"1,035",415,265,270,310,615,325,"1,115",245,330,605,"1,310",415,685,385,765,410,"1,345",265,360,610,"1,660",280,525,250,520,490,220,390,970,300,215,420,210,280,270,605,420,555,"1,140",225,210,345,615,770,350,585,590,715,360,585,240,430,490,190,445,"3,315",710,815,735,385,280,725,"1,575",465,600,"1,315",285,245,380,345,450,715,365 -1069,Income,Income of households in 2015,Census Profile 98-316-X2016001," $80,000 to $89,999","63,360",640,500,310,750,690,350,650,545,315,325,125,675,545,355,150,345,105,230,310,295,275,245,325,"1,110",685,350,345,385,200,440,580,550,945,790,315,490,340,430,190,405,470,300,400,265,230,565,385,300,375,635,625,275,385,260,260,320,305,270,"1,320",365,255,355,365,470,160,150,915,345,230,225,305,475,250,920,205,275,495,"1,030",360,580,310,585,365,965,250,330,430,"1,395",235,365,195,485,395,235,335,760,270,145,355,225,185,270,550,345,500,"1,050",235,165,265,400,715,325,500,575,575,285,500,200,315,400,150,370,"2,725",590,760,630,370,295,620,"1,255",420,555,"1,070",320,245,305,255,335,575,290 -1070,Income,Income of households in 2015,Census Profile 98-316-X2016001," $90,000 to $99,999","51,570",500,405,265,620,595,305,480,435,255,345,95,510,450,255,135,290,110,220,290,240,215,240,315,800,515,285,310,320,155,365,530,435,750,630,235,410,265,340,160,315,470,240,295,160,160,435,300,240,250,500,505,220,345,215,170,250,220,205,950,330,245,270,285,345,155,125,675,315,230,230,255,350,185,765,190,240,445,840,300,400,230,445,295,735,225,255,405,"1,015",225,235,165,405,350,170,325,635,230,135,295,190,140,220,455,300,380,970,215,110,215,320,600,265,425,495,455,215,435,185,240,360,145,295,"2,280",435,595,435,300,255,545,995,315,435,850,265,185,250,240,305,435,270 -1071,Income,Income of households in 2015,Census Profile 98-316-X2016001," $100,000 and over","263,465","1,920","1,500","1,520","4,755","3,600","1,585","2,665","2,275","1,470","4,220",300,"1,900","2,620",625,905,980,"2,180",905,865,"1,470",745,"2,120","2,090","3,210","2,035","1,705","1,685","1,385","1,320","2,265","2,010","1,245","3,315","2,160","1,000","2,650","2,120",995,515,"1,740","2,315",855,735,"1,640","2,075","1,380","1,620","1,320",905,"2,640","3,580","1,585","1,745","1,000",750,755,"1,675",625,"4,705","1,615",700,890,"1,225","1,405","2,080","1,190","2,800","2,185","3,055","3,245","3,330","1,470",955,"2,425",730,"1,490","1,605","3,900","1,130","2,115",550,"1,205","3,035","3,060",980,"1,455","1,655","4,595","1,930",745,410,"1,745","1,585","1,180","1,750","2,860","1,045","1,135","1,375","2,165",510,750,"1,335","1,680","4,480","4,830","1,770",515,790,985,"3,620","2,790","1,775","3,660","1,845",540,"3,915",725,550,"1,920",780,"1,005","10,415","1,745","2,360","1,425",930,800,"2,015","4,625","1,785","2,245","2,865","1,730",925,"1,510","1,915","2,305","1,395","1,185" -1072,Income,Income of households in 2015,Census Profile 98-316-X2016001," $100,000 to $124,999","94,020",935,700,605,"1,205","1,030",585,940,800,475,690,125,980,950,365,280,490,245,325,455,445,385,445,720,"1,300",965,555,635,585,370,825,835,635,"1,425","1,050",445,900,455,515,270,560,905,415,400,385,325,740,615,490,425,855,"1,015",570,695,380,360,415,385,350,"1,750",635,350,455,485,615,340,285,"1,270",590,505,440,540,630,360,"1,285",300,480,710,"1,520",505,805,320,690,660,"1,235",420,510,635,"1,900",440,370,245,715,545,390,590,"1,120",485,255,575,415,230,395,750,570,785,"1,995",445,215,345,485,"1,110",545,810,"1,015",805,275,890,340,305,665,240,440,"3,990",830,"1,150",635,440,425,945,"1,760",630,875,"1,485",560,395,495,465,570,700,470 -1073,Income,Income of households in 2015,Census Profile 98-316-X2016001," $125,000 to $149,999","58,260",465,370,445,780,660,365,595,490,335,495,85,500,595,145,235,255,200,230,210,300,220,295,485,745,545,330,435,355,335,600,485,360,925,575,225,670,320,270,135,300,630,220,175,195,245,350,450,340,190,590,695,390,410,245,190,185,280,165,"1,055",395,185,230,315,365,275,210,710,395,420,385,475,345,240,635,175,355,425,980,310,485,140,300,550,670,270,310,420,"1,110",345,185,100,445,405,290,410,645,285,205,375,355,125,180,335,340,585,"1,285",355,140,190,225,950,380,425,765,475,160,675,190,140,405,160,260,"2,405",455,645,380,235,230,540,"1,055",390,550,710,475,280,310,320,350,355,280 -1074,Income,Income of households in 2015,Census Profile 98-316-X2016001," $150,000 to $199,999","111,185",510,425,470,"2,765","1,915",635,"1,135",985,650,"3,030",90,440,"1,075",120,380,235,"1,730",345,205,720,130,"1,385",885,"1,160",520,825,625,425,625,840,690,250,965,550,335,"1,085","1,355",215,105,865,775,220,165,"1,065","1,495",295,565,490,295,"1,195","1,880",630,640,380,200,155,"1,010",110,"1,900",575,165,210,430,425,"1,455",695,815,"1,205","2,125","2,420","2,305",480,355,505,250,660,480,"1,400",310,820,90,225,"1,840","1,145",295,630,600,"1,580","1,150",180,85,590,640,505,740,"1,085",280,670,430,"1,380",160,170,250,765,"3,110","1,575",965,155,260,285,"1,560","1,860",535,"1,885",575,105,"2,355",190,115,855,375,310,"4,025",455,565,420,245,145,530,"1,840",765,820,655,695,260,705,"1,135","1,390",320,435 -1075,Income,Low income in 2015,Census Profile 98-316-X2016001, 18 to 64 years (%),19.2,19.2,22.2,7.9,20.1,14,15.1,39.7,24.7,19.7,9.6,25.4,22.5,14.8,28.6,22,16.1,9.4,21.7,22.3,19.1,13.2,14,6,26.2,18,13.8,15.5,13.3,12.2,12.3,23.7,20.1,16.4,18.1,17.3,18,10.5,23.5,20.4,19.1,9.1,16.8,30.8,15.5,11.2,21.8,18.3,8,29.3,16.6,10.8,11.1,19.9,13.5,18.3,20.3,16.1,21.4,14.3,13.7,15.7,23.7,30.6,22.9,5.3,16.8,21.8,19.3,6.9,8.3,7.4,15.3,17.5,17.8,14.6,8.5,20.1,17,22.2,29.1,22.8,24.6,10,19.6,22.9,27.5,26.3,12.8,11.5,33.8,39.5,16.9,21.2,13,13.7,19.3,10.7,13.7,17.7,7.2,37.3,17.2,20.3,18.2,11.9,8.4,7,27.4,29,28.5,16.8,16.7,19.2,11.6,21.7,30.8,10,16.4,40.4,15.1,24.5,23.6,15.6,23,15.3,21.6,26.7,19.2,18,30.6,27.1,13.4,25,15.1,13.5,15.8,13.2,15.1,23.8,15.3 -1076,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for economic families in private households - 100% data,"705,600","7,775","6,300","3,405","6,855","7,555","4,245","5,560","6,070","3,665","6,085","1,710","7,510","6,005","5,455","2,060","3,800","2,595","2,985","4,780","2,655","2,730","2,895","3,845","6,245","7,090","4,320","4,285","3,895","2,545","4,810","7,515","6,450","9,310","9,335","2,910","5,715","4,335","5,925","2,490","5,200","5,320","3,160","5,615","3,325","2,815","7,710","3,815","2,800","4,160","5,775","6,300","3,190","4,785","2,875","3,210","4,050","3,645","3,680","12,085","3,735","2,925","4,395","3,430","5,780","2,680","2,250","11,785","4,435","4,060","4,175","4,555","3,610","2,700","11,055","2,700","3,055","6,940","8,910","4,470","3,980","3,575","8,095","4,535","7,000","2,885","4,235","6,385","7,310","3,140","4,100","3,295","5,620","4,970","2,565","3,190","9,535","2,895","1,945","4,370","3,270","2,490","2,775","5,855","3,715","5,565","11,685","2,875","2,705","4,235","4,645","7,185","4,995","6,680","7,095","7,430","4,070","5,945","2,640","4,975","3,970","1,435","4,560","15,070","7,015","8,050","7,180","4,520","2,855","7,310","13,880","4,490","6,195","13,620","3,430","2,195","3,460","3,105","3,225","6,845","3,825" -1077,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median total income of economic families in 2015 ($),"82,859",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1078,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median after-tax income of economic families in 2015 ($),"73,530",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1079,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average family size of economic families,3.1,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1080,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for couple economic families without children or other relatives in private households - 100% data,"221,155","1,775","1,610","1,010","3,725","2,780","1,210","2,875","2,375","1,155","1,890",360,"2,135","1,910",810,620,"1,015",880,"1,135",895,"1,555",685,"1,520","1,100","4,055","1,575","1,310","1,130","1,220",775,"1,535","1,990","1,390","3,320","2,210","1,245","1,740","1,445","1,080",530,"1,220","1,530",820,"1,145","1,055","1,305","1,245","1,210","1,005","1,285","2,585","2,600",745,"1,385",885,710,770,"1,325",805,"4,500","1,295",740,975,"1,400","1,390",995,600,"2,830","1,485","1,095","1,315","1,275","1,645","1,000","1,800",670,"1,055","1,600","4,225",970,"2,360",730,"1,150","1,570","3,645",925,"1,300","1,875","4,660","1,120","1,470",705,"1,570","1,355",800,"1,455","2,290",680,750,"1,190","1,015",785,645,"1,540","1,410","2,730","2,030",860,510,820,"1,845","2,800","1,455","1,885","2,345","2,045","1,020","2,170",595,945,"1,650",690,"1,230","9,595","1,480","1,595","2,110","1,105",720,"1,765","4,725","1,715","1,840","2,990","1,115",770,"1,225","1,240","1,825","1,600","1,025" -1081,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median total income of couple economic families without children or other relatives in 2015 ($),"83,232",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1082,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for lone-parent economic families in private households - 100% data,"138,805","1,345","1,190",600,860,"1,170",805,785,960,625,770,650,"1,410","1,190","2,145",490,835,270,615,"1,600",375,525,310,530,745,"1,455",750,810,735,370,795,"1,355","1,450","1,680","2,445",460,"1,165",780,"1,745",800,"1,340",965,760,"1,255",555,295,"2,905",760,485,705,850,920,370,865,670,675,"1,145",590,"1,005","2,175",630,605,"1,170",785,"1,635",255,485,"2,485",655,480,465,600,560,570,"2,660",560,470,"1,260","1,560","1,060",705,"1,240","2,230",600,"1,120",745,655,"1,200",845,455,900,790,"1,305","1,160",465,430,"2,385",570,255,760,380,690,685,"1,575",585,580,"1,950",365,"1,105","1,220","1,090","1,255",800,"1,100","1,125","1,455",840,855,605,785,610,210,"1,215","1,630","2,120","1,555","1,590","1,520",645,"1,570","2,205",600,"1,255","3,065",645,400,695,410,385,"1,835",905 -1083,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median after-tax income of couple economic families without children or other relatives in 2015 ($),"72,412",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1084,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average family size of couple economic families without children or other relatives,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1085,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for couple economic families with children in private households - 100% data,"316,450","4,255","3,170","1,650","1,975","3,355","2,055","1,360","2,480","1,740","3,310",630,"3,620","2,735","2,220",880,"1,765","1,415","1,120","2,085",620,"1,415","1,005","2,125","1,020","3,795","2,105","2,225","1,815","1,295","2,320","3,830","3,350","3,885","4,225","1,075","2,650","1,990","2,860","1,075","2,445","2,680","1,450","2,940","1,610","1,165","3,210","1,705","1,225","1,965","2,190","2,625","1,955","2,380","1,215","1,695","1,950","1,595","1,700","4,910","1,670","1,455","2,050",990,"2,495","1,375","1,095","5,905","2,085","2,425","2,325","2,630","1,180","1,025","6,160","1,345","1,440","3,740","2,790","2,250",740,"1,455","4,325","2,255","1,900","1,130","2,030","2,960","1,460","1,485","1,460","1,695","2,505","2,265","1,200","1,135","4,485","1,540",875,"2,245","1,800",915,"1,315","2,495","1,590","2,130","7,275","1,580","1,000","2,055","1,430","2,830","2,615","3,390","3,425","3,580","2,035","2,800","1,310","3,035","1,505",450,"1,955","2,920","3,145","4,470","3,170","1,690","1,350","3,595","6,205","1,915","2,910","6,985","1,565",940,"1,415","1,355",925,"2,975","1,705" -1086,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median total income of couple economic families with children in 2015 ($),"102,273",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1087,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median after-tax income of couple economic families with children in 2015 ($),"89,920",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1088,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average family size of couple economic families with children,4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1089,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median total income of lone-parent economic families in 2015 ($),"51,040",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1090,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median after-tax income of lone-parent economic families in 2015 ($),"47,839",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1091,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average family size of lone-parent economic families,2.7,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1092,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for economic families in private households - 25% sample data,705440,7765,6255,3400,6865,7535,4255,5530,6090,3675,6055,1710,7495,6010,5455,2060,3770,2600,2975,4785,2680,2715,2930,3840,6260,7080,4320,4325,3955,2530,4795,7520,6475,9210,9360,2920,5720,4340,5925,2500,5230,5335,3165,5570,3315,2865,7730,3810,2800,4190,5805,6305,3210,4770,2890,3185,4005,3725,3680,12160,3725,2945,4365,3430,5790,2675,2250,11830,4450,4080,4160,4560,3575,2695,11070,2720,3050,6925,8960,4480,4025,3550,8075,4525,6970,2890,4240,6390,7360,3165,4055,3280,5620,4950,2540,3115,9515,2920,1910,4430,3270,2470,2780,5810,3725,5560,11680,2900,2675,4240,4655,7185,5005,6635,7100,7420,4070,5960,2635,5000,3925,1405,4550,14995,6995,8050,7195,4505,2900,7270,13850,4490,6185,13605,3425,2200,3475,3125,3185,6875,3820 -1093,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average total income of economic families in 2015 ($),127312,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1094,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average after-tax income of economic families in 2015 ($),100343,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1095,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 5 years (%),26.3,32.3,30.2,8.8,15,17.9,18.7,35.3,26.2,26,9.4,43.5,32.7,16.3,49.2,21.6,21.5,9.3,25.6,37.5,16.2,20.3,11.5,7,26.4,30.1,14.1,24.6,14.5,7.5,10.7,30.5,33.7,16.7,28.9,17.4,14.9,16.1,42.9,38.5,22.4,13.8,28.5,50.7,14.5,10.5,44.1,14.7,9,33.5,14.7,8.9,15.1,26.7,22.4,32.5,33.9,10.5,37.1,20,9,21.8,40.6,34.1,42.5,3.7,24.1,35.4,15,3.8,5.3,6.4,13.5,17.9,32.6,26.9,12.6,33.1,19,37.9,40.3,41.1,42,5.2,19.2,23.3,31.1,26.6,16.9,6.2,48.6,57.6,18.8,33.9,14.3,7.5,29.8,14.8,7.4,25,10.5,49.2,30.1,33.1,16.8,10.4,14.8,5.5,52.9,50.4,34.6,12.9,18.7,26.2,13.2,33.3,46.9,5,30.2,62.9,12.5,10.9,32.1,18.3,39.8,25.4,26.5,44.2,20.6,30.7,27.4,18.4,25.9,39.2,9.9,10.9,12.9,10.3,11.9,37.5,24.3 -1096,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for couple economic families without children or other relatives in private households - 25% sample data,221085,1795,1590,995,3705,2785,1220,2870,2415,1155,1905,355,2120,1890,800,610,1000,860,1140,875,1540,700,1510,1120,4055,1565,1305,1160,1210,775,1515,2000,1400,3315,2215,1260,1760,1460,1095,575,1195,1520,825,1130,1040,1355,1280,1215,1035,1310,2590,2610,750,1365,890,715,770,1375,845,4495,1290,720,950,1410,1370,995,635,2820,1465,1110,1310,1280,1605,1015,1760,690,1045,1600,4220,955,2370,730,1225,1600,3640,920,1310,1830,4650,1100,1460,700,1585,1370,785,1425,2265,675,740,1230,960,780,660,1550,1400,2715,2050,870,505,815,1835,2795,1440,1915,2325,2055,1010,2155,640,980,1615,695,1210,9555,1475,1575,2135,1090,725,1760,4745,1675,1840,2990,1110,770,1185,1250,1810,1595,1015 -1097,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average total income of couple economic families without children or other relatives in 2015 ($),127461,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1098,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average after-tax income of couple economic families without children or other relatives in 2015 ($),98833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1099,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for couple economic families with children in private households - 25% sample data,317230,4240,3250,1625,1945,3340,2050,1395,2465,1780,3310,650,3640,2725,2225,880,1765,1425,1135,2090,595,1435,1050,2085,1060,3805,2120,2240,1890,1310,2320,3870,3395,3870,4215,1090,2640,1970,2850,1055,2490,2660,1445,2940,1640,1130,3180,1710,1245,1955,2170,2625,1955,2375,1220,1690,1995,1555,1730,4970,1675,1450,2080,995,2565,1380,1045,5930,2085,2385,2335,2650,1190,1015,6150,1335,1445,3755,2820,2275,745,1465,4340,2205,1920,1125,1995,2980,1465,1475,1470,1700,2520,2285,1215,1140,4485,1545,865,2235,1790,935,1295,2515,1590,2140,7360,1550,985,2050,1445,2835,2595,3400,3450,3560,2090,2800,1315,3070,1505,465,1955,2945,3140,4475,3190,1675,1350,3580,6285,1900,2940,6925,1565,965,1430,1330,900,3000,1715 -1100,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average total income of couple economic families with children in 2015 ($),155188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1101,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average after-tax income of couple economic families with children in 2015 ($),120979,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1102,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for lone-parent economic families in private households - 25% sample data,137685,1330,1125,635,920,1175,830,745,975,590,770,635,1375,1200,2135,490,820,275,605,1585,395,495,320,560,685,1420,775,805,695,355,780,1320,1390,1620,2460,440,1165,800,1725,825,1320,985,765,1260,535,315,2920,780,460,695,865,895,385,815,665,655,1080,630,975,2180,625,630,1135,765,1570,250,505,2505,640,490,460,590,545,575,2665,580,445,1235,1585,1085,705,1220,2185,620,1095,735,660,1160,855,465,880,800,1305,1135,450,410,2325,585,255,790,390,675,670,1530,595,605,1895,385,1110,1215,1070,1250,820,1060,1125,1470,800,865,605,730,605,180,1205,1595,2105,1560,1530,1500,680,1550,2145,635,1225,3085,650,390,700,425,380,1850,910 -1103,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average total income of lone-parent economic families in 2015 ($),70494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1104,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Average after-tax income of lone-parent economic families in 2015 ($),59981,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1105,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Income statistics in 2015 for persons aged 15 years and over not in economic families in private households - 100% data,"518,285","2,635","3,065","1,550","11,165","5,015","2,465","12,025","4,005","1,390","3,080","1,120","4,395","3,750","2,615","1,320","2,560",775,"3,050","2,200","4,485","1,315","2,940",715,"15,890","2,965","2,880","1,955","2,380","1,800","2,645","3,575","3,035","8,950","5,035","3,545","4,050","2,150","2,645","1,020","3,835","1,825","1,740","2,705","2,575","2,460","3,445","2,855","1,365","3,040","6,085","5,365",965,"2,285","1,450","1,045","1,565","3,575","1,965","8,380","3,010","1,640","2,760","7,875","2,720","1,000","1,020","5,025","2,805","1,555","1,810","2,085","5,255","2,535","3,620","1,195","1,400","2,475","9,885","2,020","8,620","2,040","2,835","3,315","11,545","2,985","2,750","4,125","13,150","2,315","6,820","2,450","4,105","3,155","1,510","4,950","4,660","1,080","1,945","2,015",700,"2,930","1,375","3,840","4,060","5,035","2,560","1,180","1,135","2,105","8,105","6,280","1,805","2,615","3,830","3,625","2,820","3,910","1,030","2,570","4,880","2,925","3,230","30,135","3,720","3,910","4,365","3,775","1,895","3,765","10,350","3,855","2,715","6,850","2,370","1,560","3,155","2,915","4,230","5,515","2,000" -1106,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median total income in 2015 for persons aged 15 years and over not in economic families ($),"31,059",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1107,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, Median after-tax income in 2015 for persons aged 15 years and over not in economic families ($),"28,647",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1108,Income,Income of economic families in 2015,Census Profile 98-316-X2016001,Total - Economic family income decile group for the population in private households - 100% data,"2,691,665","28,825","23,475","12,030","28,650","27,005","15,580","25,600","21,135","12,655","23,110","6,375","29,105","21,685","21,565","7,685","14,215","9,185","11,335","17,710","10,995","9,910","10,790","13,340","30,305","26,305","16,420","15,810","14,080","9,595","17,075","26,825","24,385","36,295","34,940","11,710","21,015","15,190","22,250","9,450","21,885","18,525","11,465","21,910","12,670","10,620","30,210","14,380","9,650","15,715","21,815","23,355","12,465","16,915","10,120","12,410","15,535","14,225","13,605","43,230","14,080","11,045","17,105","17,465","21,980","9,165","7,980","43,485","16,060","14,555","15,100","16,645","15,055","10,065","43,760","9,865","10,455","26,055","33,315","17,160","18,460","13,265","32,825","16,760","28,925","11,285","15,530","23,625","30,435","11,675","18,355","13,605","20,965","18,505","9,210","13,765","34,725","10,720","7,645","15,805","11,045","10,675","10,360","22,235","14,870","20,615","46,060","10,065","9,755","16,440","20,655","27,045","17,675","24,265","24,895","27,035","15,485","21,430","10,120","20,840","16,225","6,680","17,180","65,620","26,970","32,895","26,065","17,695","11,090","27,545","50,255","16,725","22,150","53,005","12,430","7,850","13,200","11,810","12,370","27,570","14,020" -1109,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the bottom half of the distribution,"1,455,315","18,535","15,205","4,735","12,080","10,760","8,150","15,230","10,745","6,085","6,680","4,545","18,300","9,605","17,315","4,080","8,720","1,785","6,555","12,385","5,245","5,655","3,390","3,765","16,005","15,085","8,055","7,640","7,110","4,030","7,115","16,090","16,525","20,055","22,180","6,695","9,520","5,790","15,885","6,365","13,200","7,195","6,635","16,955","5,730","2,995","22,035","7,075","3,410","10,350","9,465","8,080","4,845","8,870","4,975","8,210","11,075","6,560","9,630","19,725","6,380","6,945","11,575","12,155","14,335","1,540","3,170","28,220","6,700","2,780","2,910","3,385","7,780","5,265","29,170","5,910","3,490","17,770","15,325","10,780","10,285","9,370","25,410","4,855","14,120","6,495","8,690","15,320","11,210","3,930","14,000","10,855","12,040","10,430","3,915","6,555","19,720","5,200","2,815","8,820","2,685","8,055","6,000","13,965","7,425","5,065","21,300","2,660","6,845","11,980","14,680","12,740","6,705","15,580","9,170","17,010","11,880","5,760","6,325","17,230","8,410","3,605","11,120","25,550","17,125","19,565","17,900","12,070","6,785","16,270","28,045","8,545","10,895","36,245","5,025","3,490","6,355","3,840","4,165","19,105","7,735" -1110,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the bottom decile,"404,560","4,195","3,905",725,"4,810","2,600","1,825","8,820","4,005","1,760","1,600","1,200","4,795","2,405","4,670","1,365","1,785",695,"1,765","2,930","1,840","1,035","1,085",605,"7,050","3,605","1,765","1,860","1,620","1,045","1,550","4,740","3,435","5,280","4,685","1,730","2,945","1,080","3,740","1,480","3,275","1,150","1,435","4,905","1,410",895,"5,190","2,165",565,"3,680","2,880","2,085","1,055","2,825",900,"1,600","2,395","1,760","2,190","4,895","1,610","1,335","3,275","5,345","3,595",350,"1,055","7,330","2,265",770,930,885,"2,135","1,340","5,570",965,575,"4,710","4,490","2,885","4,850","2,470","5,835","1,310","4,730","2,100","3,510","4,955","3,540","1,000","5,340","4,000","2,770","3,140",865,"2,055","4,910",875,790,"2,225",550,"3,230","1,345","3,435","2,405","1,750","2,895",515,"2,040","3,585","4,720","4,060","2,145","4,170","2,075","4,400","3,735","1,515","1,240","6,130","2,460","1,610","2,915","9,465","4,750","3,900","4,590","3,745","1,740","3,630","12,600","3,620","2,005","9,965","1,490",890,"1,685","1,185","1,340","5,410","1,630" -1111,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the second decile,"320,165","5,030","3,565",815,"2,225","2,195","1,865","2,020","1,995","1,315","1,460","1,125","4,065","1,865","4,695","1,000","1,720",285,"1,530","2,925","1,130","1,095",690,625,"2,710","3,275","1,685","1,780","1,370",850,"1,595","3,475","3,930","4,225","4,945","1,465","2,040","1,150","4,000","1,530","3,115","1,370","1,390","4,610","1,295",640,"5,610","1,575",530,"1,930","1,830","1,565",850,"1,955","1,050","1,845","2,520","1,405","2,045","4,070","1,180","1,600","2,570","2,710","3,760",260,680,"6,605","1,330",485,500,630,"1,495","1,070","6,725","1,310",610,"4,630","3,230","2,415","2,190","2,065","6,515",955,"2,665","1,520","1,850","3,305","2,025",880,"3,060","3,045","2,890","2,240",805,"1,340","4,435",865,635,"1,815",485,"2,200","1,225","3,335","1,635",950,"3,795",495,"1,760","3,140","3,470","2,980","1,395","3,830","1,925","4,165","2,800","1,135","1,465","5,160","1,745",615,"2,695","4,515","3,900","3,680","4,275","2,915","1,390","3,545","4,985","1,740","2,450","8,715","1,040",715,"1,480",660,675,"4,135","1,665" -1112,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the third decile,"268,500","3,700","2,940","1,005","1,710","2,050","1,595","1,660","1,585","1,085","1,300",870,"3,525","1,855","3,495",655,"1,770",300,"1,270","2,680",770,"1,140",545,715,"2,090","2,870","1,590","1,360","1,350",870,"1,305","2,965","3,640","3,880","4,645","1,240","1,625","1,160","3,195","1,385","2,535","1,415","1,415","3,200","1,080",505,"4,460","1,200",655,"1,620","1,590","1,405",930,"1,330","1,160","1,830","2,335","1,155","1,910","3,580","1,150","1,410","2,100","1,605","2,805",275,545,"5,610","1,100",415,460,610,"1,445",965,"6,185","1,375",840,"3,520","2,595","1,970","1,355","1,765","5,530",800,"2,170","1,030","1,190","2,765","1,770",570,"2,310","1,770","2,410","1,935",850,"1,150","3,940","1,190",480,"1,670",515,"1,230","1,310","2,590","1,220",740,"4,905",485,"1,320","2,335","2,565","2,060","1,080","3,025","1,790","3,130","2,160","1,035","1,460","2,740","1,595",505,"2,085","3,650","2,975","3,865","3,480","2,240","1,330","3,295","3,855","1,145","2,295","6,815",850,625,"1,175",630,715,"3,625","1,775" -1113,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the fourth decile,"238,680","2,990","2,590","1,060","1,630","1,875","1,455","1,380","1,550","1,025","1,225",770,"3,245","1,685","2,545",540,"1,765",270,"1,065","2,130",755,"1,190",515,830,"2,050","2,615","1,635","1,395","1,390",605,"1,355","2,610","2,890","3,490","4,175","1,265","1,435","1,210","2,710","1,075","2,295","1,520","1,180","2,385","1,000",430,"3,635","1,085",760,"1,680","1,550","1,415",950,"1,430",960,"1,590","2,090","1,205","1,860","3,510","1,190","1,330","1,945","1,340","2,145",345,470,"4,600",960,510,435,595,"1,435",920,"5,605","1,185",720,"2,665","2,425","1,855",965,"1,680","4,185",865,"2,190",930,"1,055","2,315","1,810",710,"1,755","1,180","2,045","1,605",675,"1,060","3,365","1,095",410,"1,615",525,750,"1,070","2,310","1,085",750,"4,740",560,990,"1,590","2,115","1,825","1,055","2,290","1,670","2,880","1,860",955,"1,165","1,875","1,345",465,"1,845","3,810","2,845","4,210","3,020","1,750","1,185","2,860","3,285",965,"2,120","5,845",780,610,965,665,715,"3,235","1,380" -1114,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the fifth decile,"223,410","2,610","2,210","1,140","1,735","2,045","1,410","1,350","1,620",905,"1,095",590,"2,680","1,800","1,910",510,"1,690",250,925,"1,720",755,"1,200",560,985,"2,110","2,720","1,375","1,250","1,390",660,"1,300","2,305","2,645","3,180","3,735",995,"1,465","1,200","2,245",900,"1,995","1,745","1,215","1,850",945,525,"3,150","1,040",905,"1,445","1,625","1,600","1,050","1,315",900,"1,345","1,730","1,045","1,620","3,665","1,250","1,255","1,675","1,155","2,035",315,405,"4,065","1,060",605,565,655,"1,260",970,"5,105","1,070",750,"2,240","2,580","1,655",925,"1,395","3,350",920,"2,350",915,"1,080","1,985","2,080",770,"1,540",875,"1,925","1,505",720,935,"3,070","1,175",505,"1,490",605,650,"1,050","2,285","1,090",870,"4,965",595,730,"1,340","1,815","1,835","1,030","2,255","1,715","2,440","1,325","1,115",995,"1,340","1,270",425,"1,585","4,105","2,660","3,895","2,540","1,430","1,140","2,930","3,315","1,090","2,030","4,955",870,645,"1,060",700,730,"2,710","1,290" -1115,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the top half of the distribution,"1,236,350","10,280","8,265","7,290","16,570","16,245","7,435","10,365","10,395","6,575","16,435","1,820","10,800","12,080","4,250","3,605","5,490","7,395","4,780","5,315","5,745","4,250","7,395","9,580","14,320","11,215","8,365","8,160","6,965","5,565","9,965","10,735","7,850","16,240","12,755","5,020","11,500","9,405","6,375","3,075","8,690","11,330","4,825","4,955","6,940","7,615","8,175","7,310","6,245","5,360","12,345","15,265","7,620","8,050","5,130","4,195","4,450","7,665","3,990","23,510","7,695","4,085","5,530","5,300","7,650","7,625","4,815","15,270","9,360","11,775","12,200","13,265","7,275","4,790","14,585","3,945","6,960","8,280","17,990","6,375","8,175","3,900","7,410","11,910","14,800","4,790","6,840","8,305","19,215","7,745","4,355","2,755","8,925","8,070","5,305","7,205","14,985","5,515","4,825","6,985","8,375","2,615","4,360","8,280","7,440","15,555","24,765","7,410","2,905","4,460","5,965","14,300","10,965","8,690","15,725","10,010","3,610","15,685","3,795","3,610","7,815","3,075","6,060","40,085","9,835","13,325","8,160","5,620","4,305","11,285","22,210","8,175","11,255","16,750","7,405","4,355","6,840","7,965","8,210","8,460","6,290" -1116,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the sixth decile,"216,455","2,500","2,015","1,265","1,720","2,105","1,285","1,400","1,475","1,065","1,040",485,"2,695","1,875","1,585",475,"1,360",240,975,"1,515",760,"1,050",530,"1,270","2,140","2,575","1,325","1,455","1,410",680,"1,485","2,340","2,330","3,425","3,485","1,010","1,450","1,030","1,865",940,"1,640","1,785","1,115","1,535",770,540,"2,800","1,110",920,"1,270","1,670","1,730","1,205","1,415",920,"1,185","1,350",955,"1,215","3,800","1,265","1,105","1,585","1,020","1,750",390,460,"3,615","1,095",705,650,845,"1,365",870,"4,305",895,925,"1,810","2,755","1,530",935,"1,300","2,590",950,"2,370",900,"1,175","1,900","2,435",755,"1,205",940,"1,885","1,465",815,"1,145","3,075","1,180",535,"1,380",570,515,"1,130","2,250","1,100","1,025","5,345",725,790,"1,165","1,420","1,890","1,040","1,770","1,870","2,230","1,045","1,330","1,030","1,055","1,275",420,"1,505","4,800","2,545","3,610","2,275","1,335","1,100","2,625","3,365","1,110","2,145","4,520","1,030",735,"1,030",815,780,"2,470","1,285" -1117,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the seventh decile,"213,325","2,340","1,840","1,420","1,820","2,230","1,240","1,470","1,670",990,"1,215",425,"2,485","1,750","1,135",490,"1,265",330,905,"1,370",855,"1,135",725,"1,625","2,280","2,645","1,260","1,515","1,405",790,"1,650","2,110","1,925","3,220","2,910",965,"1,650","1,235","1,665",675,"1,470","2,060",980,"1,210",760,605,"1,995","1,280","1,050","1,190","1,810","1,950","1,380","1,560",955,"1,040","1,135","1,010","1,040","3,945","1,360",960,"1,375",880,"1,595",535,515,"3,425","1,025",890,685,"1,080","1,375",900,"3,985",895,"1,070","1,950","3,030","1,365","1,070","1,005","2,040","1,170","2,465",845,"1,135","1,675","2,810",820,910,565,"1,805","1,420",830,"1,090","2,870","1,295",620,"1,465",720,505,"1,030","2,110","1,165","1,170","5,265",945,545,940,"1,365","2,000","1,130","1,945","2,185","2,185",860,"1,620",815,890,"1,265",380,"1,295","5,460","2,250","3,480","1,770","1,340","1,030","2,675","3,620","1,240","2,080","4,240",985,785,"1,085",850,880,"2,095","1,260" -1118,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the eighth decile,"219,865","2,260","1,800","1,500","2,210","2,390","1,420","1,805","1,830","1,020","1,540",410,"2,330","2,380",850,680,"1,200",435,805,"1,090",810,915,755,"1,870","2,715","2,340","1,400","1,600","1,510",935,"1,890","2,160","1,690","3,365","2,645","1,015","2,055","1,195","1,335",700,"1,230","2,535","1,095",900,825,685,"1,795","1,570","1,255","1,035","2,140","2,410","1,600","1,630","1,050",930,990,"1,105",835,"4,435","1,570",950,"1,190",990,"1,525",725,625,"3,125","1,325","1,195","1,005","1,335","1,510",875,"3,260",705,"1,250","1,670","3,410","1,395","1,350",775,"1,495","1,525","2,585",955,"1,165","1,480","3,240","1,050",800,585,"1,865","1,605",910,"1,330","2,710","1,180",620,"1,525","1,115",500,940,"1,830","1,280","1,460","5,135",990,530,855,"1,165","2,365","1,180","1,780","2,490","2,035",705,"2,010",725,680,"1,365",510,"1,230","6,840","2,095","2,990","1,550","1,170",955,"2,455","3,840","1,430","2,180","3,535","1,290",905,"1,235","1,060","1,030","1,830","1,285" -1119,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the ninth decile,"241,850","1,900","1,505","1,750","2,830","3,135","1,620","2,085","2,195","1,445","2,305",300,"2,085","2,635",530,805,"1,035",795,900,870,"1,115",835,"1,080","2,260","2,945","2,340","1,725","1,775","1,440","1,355","2,545","2,100","1,320","3,435","2,395",985,"2,930","1,485",970,535,"1,610","2,700",975,800,950,885,"1,175","1,615","1,535",915,"2,765","3,030","1,835","1,605","1,035",680,685,"1,210",670,"5,120","1,780",725,955,"1,090","1,525","1,175",980,"3,005","1,840","2,040","1,475","2,035","1,460","1,060","2,290",750,"1,575","1,710","3,965","1,295","1,845",605,895,"2,185","3,100","1,185","1,450","1,540","4,690","1,555",705,435,"1,725","1,645","1,255","1,395","2,980","1,190",865,"1,500","1,530",515,870,"1,390","1,575","2,120","5,320","1,735",650,805,"1,040","3,055","1,640","1,795","3,315","1,990",655,"3,120",795,555,"1,530",620,"1,085","8,860","1,885","2,250","1,340","1,120",830,"2,255","4,990","1,925","2,475","2,830","1,935","1,020","1,410","1,480","1,300","1,380","1,330" -1120,Income,Income of economic families in 2015,Census Profile 98-316-X2016001, In the top decile,"344,855","1,305","1,125","1,345","7,995","6,395","1,870","3,600","3,215","2,055","10,315",215,"1,200","3,445",135,"1,160",635,"5,585","1,180",475,"2,210",315,"4,305","2,570","4,245","1,325","2,640","1,800","1,185","1,805","2,415","2,020",600,"2,800","1,325","1,035","3,400","4,455",520,220,"2,745","2,255",665,525,"3,630","4,910",410,"1,735","1,485",960,"3,975","6,140","1,605","1,840","1,170",355,285,"3,380",235,"6,195","1,725",350,440,"1,320","1,255","4,790","2,230","2,125","4,070","6,955","8,385","7,965","1,570","1,095",735,710,"2,145","1,155","4,820",785,"2,980",200,400,"6,070","4,280",910,"1,910","1,715","6,050","3,555",730,235,"1,640","1,950","1,500","2,250","3,365",675,"2,185","1,125","4,440",580,395,680,"2,325","9,760","3,690","3,010",405,695,995,"4,980","5,980","1,425","5,860","1,570",340,"7,605",425,445,"2,385","1,145",950,"14,135","1,060","1,005","1,240",645,380,"1,250","6,425","2,460","2,370","1,650","2,165",915,"2,080","3,770","4,220",700,"1,130" -1121,Income,Low income in 2015,Census Profile 98-316-X2016001,Total - Low-income status in 2015 for the population in private households to whom low-income concepts are applicable - 100% data,"2,691,665","28,820","23,470","12,030","28,640","26,995","15,575","25,605","21,135","12,660","23,110","6,370","29,095","21,690","21,550","7,685","14,205","9,185","11,330","17,700","10,990","9,910","10,785","13,340","30,315","26,300","16,420","15,805","14,080","9,595","17,080","26,820","24,380","36,280","34,935","11,710","21,010","15,195","22,250","9,450","21,885","18,520","11,465","21,905","12,665","10,615","30,220","14,375","9,650","15,710","21,820","23,350","12,470","16,920","10,115","12,410","15,535","14,220","13,605","43,225","14,080","11,040","17,100","17,455","21,985","9,170","7,980","43,490","16,060","14,555","15,120","16,635","15,055","10,065","43,770","9,865","10,445","26,070","33,305","17,155","18,455","13,260","32,825","16,760","28,920","11,290","15,530","23,630","30,445","11,680","18,360","13,605","20,965","18,500","9,215","13,755","34,730","10,715","7,640","15,810","11,045","10,675","10,360","22,235","14,875","20,615","46,060","10,065","9,750","16,440","20,645","27,040","17,675","24,270","24,890","27,030","15,485","21,440","10,125","20,840","16,225","6,680","17,180","65,625","26,955","32,885","26,070","17,685","11,095","27,550","50,250","16,725","22,140","53,015","12,425","7,850","13,190","11,805","12,375","27,565","14,025" -1122,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 17 years,"478,360","4,790","3,835","2,085","2,795","4,470","2,815","1,845","2,940","1,945","5,575","1,365","5,435","4,015","5,555","1,665","2,285","1,890","1,690","4,055",935,"1,790","1,465","2,695","1,405","5,545","3,325","3,170","2,250","1,860","3,440","4,825","5,095","5,275","6,915","1,510","4,350","2,615","5,060","2,210","5,770","3,325","2,090","5,260","2,480","1,700","7,080","2,795","1,590","2,905","3,310","4,140","1,945","2,690","1,750","2,630","3,545","2,535","2,750","6,900","2,440","2,015","3,400","1,550","5,110","1,940","1,995","7,520","2,890","3,865","3,490","4,000","1,630","1,570","9,725","1,850","1,690","4,445","4,010","3,495","1,665","2,900","8,555","3,535","2,830","1,920","2,020","3,530","2,230","2,265","2,675","3,405","3,720","3,760","1,745","1,465","7,215","2,155","1,350","2,565","2,235","2,030","1,990","4,315","2,635","3,200","9,795","2,370","2,350","4,010","2,445","4,495","3,390","3,855","4,780","4,735","3,405","4,500","2,085","6,360","2,015",590,"3,185","4,050","5,715","6,310","4,280","3,630","2,050","5,150","7,285","2,185","4,290","11,475","2,625","1,320","2,155","2,100","1,385","4,960","2,495" -1123,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 5 years,"162,510","1,580","1,290",795,"1,065","1,310",990,"1,075","1,030",480,"1,600",460,"1,775","1,320","1,820",625,790,430,645,"1,305",370,590,435,790,720,"1,880","1,170",895,825,730,"1,405","1,670","1,645","2,035","2,370",575,"1,645",685,"1,575",650,"1,945",945,685,"1,785",760,430,"2,165","1,255",500,"1,135","1,290","1,405",530,730,535,830,"1,210",860,"1,025","2,595",995,620,"1,085",615,"1,730",535,665,"2,445","1,000","1,190",855,"1,020",665,615,"2,930",595,435,"1,660","1,715","1,120",720,960,"2,680","1,240","1,250",730,610,"1,145","1,305",810,"1,090","1,180","1,380","1,240",560,530,"2,200",675,470,700,570,620,665,"1,405",955,915,"2,900",905,765,"1,290",955,"1,975",775,"1,260","1,665","1,575","1,310","1,510",645,"2,415",800,230,"1,045","2,345","1,695","1,830","1,470","1,335",680,"1,630","2,715",815,"1,430","3,775","1,065",550,775,725,545,"1,705",700 -1124,Income,Low income in 2015,Census Profile 98-316-X2016001, 18 to 64 years,"1,811,260","18,245","15,785","7,930","20,945","16,210","10,045","21,385","14,805","7,490","13,650","4,160","19,050","14,280","13,275","5,125","9,825","5,555","7,820","11,530","8,075","6,800","6,765","8,260","25,965","17,530","10,715","9,970","9,820","6,225","11,055","17,480","16,085","26,640","22,505","8,690","14,200","9,615","14,165","5,960","12,825","11,480","7,675","13,670","8,180","6,660","18,320","9,940","5,645","11,345","15,575","15,930","8,135","9,915","6,120","7,405","9,845","9,855","8,965","29,610","10,155","7,245","11,155","13,365","13,290","5,330","4,955","27,415","11,115","8,815","9,465","10,275","11,965","7,105","28,155","6,195","6,155","16,975","24,210","11,195","15,170","8,895","20,720","10,770","22,210","7,835","10,675","16,095","26,775","7,825","14,095","8,755","13,715","12,175","5,955","10,335","22,295","6,980","5,180","10,050","6,785","7,930","6,775","14,265","10,565","12,430","29,965","6,450","5,690","10,470","16,115","19,685","11,090","14,990","16,040","16,530","10,530","14,065","6,355","12,360","11,990","5,125","10,895","56,970","17,230","21,910","16,830","11,830","7,720","18,010","36,825","11,335","12,960","33,815","8,440","5,430","8,875","8,100","8,215","19,065","8,855" -1125,Income,Low income in 2015,Census Profile 98-316-X2016001, 65 years and over,"402,045","5,785","3,855","2,005","4,920","6,330","2,715","2,370","3,385","3,225","3,895",840,"4,600","3,385","2,720",895,"2,100","1,750","1,820","2,125","1,980","1,325","2,565","2,385","2,940","3,220","2,375","2,660","2,005","1,500","2,590","4,515","3,200","4,375","5,510","1,505","2,440","2,960","3,015","1,275","3,295","3,730","1,705","2,995","2,010","2,255","4,810","1,640","2,415","1,460","2,930","3,290","2,390","4,305","2,230","2,380","2,155","1,825","1,890","6,720","1,480","1,785","2,550","2,530","3,580","1,895","1,025","8,570","2,070","1,885","2,165","2,370","1,465","1,400","5,885","1,810","2,610","4,640","5,090","2,475","1,620","1,465","3,555","2,460","3,900","1,525","2,845","4,010","1,420","1,585","1,590","1,450","3,520","2,555","1,500","1,960","5,210","1,580","1,115","3,195","2,020",715,"1,600","3,655","1,665","4,970","6,315","1,245","1,710","1,955","2,100","2,880","3,195","5,425","4,090","5,785","1,545","2,880","1,680","2,115","2,225",955,"3,100","4,600","4,025","4,665","4,965","2,220","1,320","4,385","6,160","3,205","4,905","7,715","1,360","1,090","2,170","1,600","2,775","3,540","2,675" -1126,Income,Low income in 2015,Census Profile 98-316-X2016001,"In low income based on the Low-income measure, after tax (LIM-AT)","543,390","6,145","5,315",985,"5,245","3,705","2,655","9,665","5,015","2,335","2,170","1,785","6,815","3,150","7,105","1,885","2,410",810,"2,560","4,375","2,290","1,405","1,350",830,"7,880","5,135","2,450","2,825","1,885","1,360","2,330","6,300","5,440","6,205","6,760","2,105","3,955","1,600","5,775","2,195","4,665","1,800","2,100","7,605","1,960","1,140","7,775","2,825",740,"4,645","3,605","2,600","1,315","3,710","1,480","2,450","3,520","2,235","3,175","6,810","1,900","2,015","4,500","5,800","5,470",415,"1,475","10,220","2,830",980,"1,100","1,140","2,350","1,775","8,935","1,495",870,"5,760","6,060","4,085","5,895","3,355","9,155","1,730","6,025","2,800","4,260","6,215","4,185","1,275","6,695","5,795","3,905","4,160","1,245","1,895","7,150","1,225","1,040","2,770",800,"4,515","1,930","5,060","2,965","2,110","4,395",690,"3,090","5,325","6,290","5,055","2,810","5,105","2,895","6,425","5,100","2,010","1,800","9,490","2,385","1,495","4,455","10,820","6,780","5,210","6,355","5,240","2,260","5,285","15,220","4,535","3,320","14,410","1,965","1,190","2,200","1,420","1,600","6,715","2,350" -1127,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 17 years,"125,675","1,395","1,130",195,415,720,545,785,880,535,495,555,"1,725",660,"2,565",470,460,225,475,"1,445",190,325,180,250,460,"1,605",485,780,320,180,490,"1,490","1,615","1,000","1,945",300,790,330,"1,965",800,"1,395",495,595,"2,575",390,190,"2,880",585,150,"1,020",480,490,315,715,415,830,"1,185",310,900,"1,510",310,455,"1,255",565,"2,025",80,465,"2,495",405,180,210,240,315,295,"2,910",410,180,"1,345",855,"1,250",830,"1,060","3,365",255,700,500,630,"1,035",490,185,"1,280","1,860",780,"1,215",265,165,"2,110",330,95,610,210,"1,175",555,"1,355",485,290,"1,440",130,"1,145","1,900",905,910,720,"1,045",615,"1,510","1,485",315,570,"3,825",270,95,"1,125","1,020","2,080","1,360","1,240","1,440",520,"1,460","2,580",485,"1,035","4,260",375,205,285,200,165,"1,625",655 -1128,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 5 years,"42,690",510,390,70,160,235,185,380,270,125,150,200,580,215,895,135,170,40,165,490,60,120,50,55,190,565,165,220,120,55,150,510,555,340,685,100,245,110,675,250,435,130,195,905,110,45,955,185,45,380,190,125,80,195,120,270,410,90,380,520,90,135,440,210,735,20,160,865,150,45,45,65,90,110,955,160,55,550,325,425,290,395,"1,125",65,240,170,190,305,220,50,530,680,260,420,80,40,655,100,35,175,60,305,200,465,160,95,430,50,405,650,330,255,145,330,220,525,615,75,195,"1,520",100,25,335,430,675,465,390,590,140,500,745,150,370,"1,480",105,60,100,75,65,640,170 -1129,Income,Low income in 2015,Census Profile 98-316-X2016001, 18 to 64 years,"347,775","3,495","3,505",630,"4,215","2,275","1,515","8,480","3,655","1,475","1,310","1,055","4,295","2,110","3,795","1,130","1,585",520,"1,700","2,575","1,540",900,945,495,"6,810","3,155","1,475","1,545","1,305",760,"1,360","4,145","3,230","4,375","4,075","1,505","2,560","1,005","3,330","1,215","2,445","1,040","1,290","4,215","1,265",745,"4,000","1,820",450,"3,320","2,585","1,725",900,"1,970",825,"1,355","2,000","1,590","1,920","4,240","1,390","1,140","2,645","4,095","3,050",280,830,"5,965","2,145",610,785,760,"1,835","1,245","5,000",905,525,"3,415","4,110","2,490","4,410","2,030","5,095","1,080","4,355","1,795","2,940","4,225","3,430",900,"4,770","3,455","2,320","2,580",775,"1,420","4,295",745,710,"1,775",490,"2,955","1,165","2,895","1,920","1,485","2,515",450,"1,560","3,035","4,585","3,315","1,850","2,885","1,865","3,590","3,240","1,405","1,045","4,990","1,810","1,255","2,570","8,875","3,970","3,355","3,630","3,155","1,480","3,235","11,270","3,070","1,740","8,470","1,275",735,"1,405","1,070","1,240","4,535","1,355" -1130,Income,Low income in 2015,Census Profile 98-316-X2016001, 65 years and over,"69,935","1,250",685,160,615,695,590,405,485,325,365,170,790,385,745,280,365,60,385,350,550,185,225,80,605,375,495,500,260,415,480,665,595,830,725,290,600,255,480,180,830,260,215,810,305,200,895,430,130,305,555,385,105,"1,025",240,260,340,340,360,"1,065",205,415,610,"1,140",395,60,180,"1,770",280,195,120,150,200,230,"1,035",185,165,990,"1,080",345,655,280,690,400,975,500,690,955,270,195,635,480,815,365,200,325,755,145,235,385,95,390,210,820,560,315,445,105,395,400,815,830,250,"1,190",425,"1,325",370,275,190,665,290,150,780,910,730,480,"1,490",640,275,590,"1,365",985,555,"1,670",310,240,510,155,185,560,355 -1131,Income,Low income in 2015,Census Profile 98-316-X2016001,"Prevalence of low income based on the Low-income measure, after tax (LIM-AT) (%)",20.2,21.3,22.6,8.2,18.3,13.7,17,37.7,23.7,18.4,9.4,28,23.4,14.5,33,24.5,17,8.8,22.6,24.7,20.8,14.2,12.5,6.2,26,19.5,14.9,17.9,13.4,14.2,13.6,23.5,22.3,17.1,19.4,18,18.8,10.5,26,23.2,21.3,9.7,18.3,34.7,15.5,10.7,25.7,19.7,7.7,29.6,16.5,11.1,10.5,21.9,14.6,19.7,22.7,15.7,23.3,15.8,13.5,18.3,26.3,33.2,24.9,4.5,18.5,23.5,17.6,6.7,7.3,6.9,15.6,17.6,20.4,15.2,8.3,22.1,18.2,23.8,31.9,25.3,27.9,10.3,20.8,24.8,27.4,26.3,13.7,10.9,36.5,42.6,18.6,22.5,13.5,13.8,20.6,11.4,13.6,17.5,7.2,42.3,18.6,22.8,19.9,10.2,9.5,6.9,31.7,32.4,30.5,18.7,15.9,21,11.6,23.8,32.9,9.4,17.8,45.5,14.7,22.4,25.9,16.5,25.2,15.8,24.4,29.6,20.4,19.2,30.3,27.1,15,27.2,15.8,15.2,16.7,12,12.9,24.4,16.8 -1132,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 17 years (%),26.3,29.1,29.5,9.4,14.8,16.1,19.4,42.5,29.9,27.5,8.9,40.7,31.7,16.4,46.2,28.2,20.1,11.9,28.1,35.6,20.3,18.2,12.3,9.3,32.7,28.9,14.6,24.6,14.2,9.7,14.2,30.9,31.7,19,28.1,19.9,18.2,12.6,38.8,36.2,24.2,14.9,28.5,49,15.7,11.2,40.7,20.9,9.4,35.1,14.5,11.8,16.2,26.6,23.7,31.6,33.4,12.2,32.7,21.9,12.7,22.6,36.9,36.5,39.6,4.1,23.3,33.2,14,4.7,6,6,19.3,18.8,29.9,22.2,10.7,30.3,21.3,35.8,49.8,36.6,39.3,7.2,24.7,26,31.2,29.3,22,8.2,47.9,54.6,21,32.3,15.2,11.3,29.2,15.3,7,23.8,9.4,57.9,27.9,31.4,18.4,9.1,14.7,5.5,48.7,47.4,37,20.2,21.2,27.1,12.9,31.9,43.6,7,27.3,60.1,13.4,16.1,35.3,25.2,36.4,21.6,29,39.7,25.4,28.3,35.4,22.2,24.1,37.1,14.3,15.5,13.2,9.5,11.9,32.8,26.3 -1133,Income,Low income in 2015,Census Profile 98-316-X2016001, 65 years and over (%),17.4,21.6,17.8,8,12.5,11,21.7,17.1,14.3,10.1,9.4,20.2,17.2,11.4,27.4,31.3,17.4,3.4,21.2,16.5,27.8,14,8.8,3.4,20.6,11.6,20.8,18.8,13,27.7,18.5,14.7,18.6,19,13.2,19.3,24.6,8.6,15.9,14.1,25.2,7,12.6,27,15.2,8.9,18.6,26.2,5.4,20.9,18.9,11.7,4.4,23.8,10.8,10.9,15.8,18.6,19,15.8,13.9,23.2,23.9,45.1,11,3.2,17.6,20.7,13.5,10.3,5.5,6.3,13.7,16.4,17.6,10.2,6.3,21.3,21.2,13.9,40.4,19.1,19.4,16.3,25,32.8,24.3,23.8,19,12.3,39.9,33.1,23.2,14.3,13.3,16.6,14.5,9.2,21.1,12.1,4.7,54.5,13.1,22.4,33.6,6.3,7,8.4,23.1,20.5,38.8,28.8,7.8,21.9,10.4,22.9,23.9,9.5,11.3,31.4,13,15.7,25.2,19.8,18.1,10.3,30,28.8,20.8,13.5,22.2,30.7,11.3,21.6,22.8,22,23.5,9.7,6.7,15.8,13.3 -1134,Income,Low income in 2015,Census Profile 98-316-X2016001,"In low income based on the Low-income cut-offs, after tax (LICO-AT)","469,325","5,035","4,400",850,"5,410","3,015","2,205","9,235","4,310","1,945","1,910","1,395","5,655","2,790","5,575","1,620","2,105",775,"2,100","3,410","2,225","1,195","1,260",705,"7,820","4,250","2,100","2,265","1,865","1,300","1,910","5,280","4,150","6,185","5,540","2,115","3,490","1,250","4,550","1,695","3,900","1,385","1,685","5,965","1,680","1,045","6,320","2,535",650,"3,985","3,300","2,425","1,235","3,225","1,090","1,990","2,855","2,065","2,530","5,600","1,860","1,640","3,780","6,100","4,340",380,"1,205","8,480","2,485",890,"1,030",975,"2,515","1,520","6,755","1,160",670,"5,525","5,210","3,275","5,490","2,805","7,140","1,540","5,380","2,440","3,860","5,475","4,040","1,210","6,070","4,760","3,410","3,685","1,060","2,440","5,755","1,000",970,"2,520",660,"3,765","1,640","4,105","2,870","1,995","3,590",580,"2,360","4,225","5,605","4,750","2,365","4,825","2,360","5,150","4,230","1,750","1,485","7,590","2,860","1,765","3,460","10,510","5,610","4,550","5,290","4,435","2,055","4,240","13,395","3,950","2,470","11,880","1,725","1,060","2,055","1,315","1,500","6,195","1,945" -1135,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 17 years,"98,910","1,140",845,145,375,575,420,670,735,430,380,415,"1,345",545,"1,920",375,355,205,355,"1,070",170,240,145,190,390,"1,255",360,610,280,150,365,"1,185","1,160",780,"1,440",240,630,245,"1,505",600,"1,055",390,450,"2,060",290,160,"2,245",485,125,810,390,415,240,620,280,675,895,235,705,"1,190",270,365,995,500,"1,490",60,365,"1,970",330,155,185,175,250,205,"2,100",300,125,"1,265",660,950,620,855,"2,545",200,565,390,550,870,395,130,"1,005","1,445",590,"1,040",200,130,"1,660",235,75,540,160,930,450,"1,025",395,265,"1,125",100,870,"1,445",665,785,575,"1,035",450,"1,160","1,175",240,445,"3,065",245,90,840,850,"1,630","1,035","1,005","1,115",400,"1,105","2,250",395,745,"3,400",290,140,235,160,135,"1,250",540 -1136,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 5 years,"33,950",430,295,55,125,190,135,305,220,95,120,155,455,175,705,120,140,40,125,365,60,80,30,40,160,460,115,180,95,45,105,385,415,260,505,80,200,90,550,180,335,95,155,725,75,30,740,150,35,315,160,100,60,170,75,230,315,70,300,430,85,115,365,180,555,20,135,680,130,35,45,50,80,70,710,100,40,570,245,340,230,315,840,45,200,120,155,255,170,45,410,535,205,370,70,40,515,75,25,150,45,255,160,350,140,75,365,35,320,505,255,220,115,350,160,415,490,50,155,"1,250",90,15,250,360,540,345,325,465,105,400,630,115,285,"1,195",80,45,80,60,50,485,150 -1137,Income,Low income in 2015,Census Profile 98-316-X2016001, 18 to 64 years,"322,620","3,190","3,135",595,"4,545","2,010","1,340","8,280","3,250","1,325","1,240",845,"3,825","1,985","3,085","1,045","1,490",520,"1,500","2,105","1,635",835,945,450,"6,950","2,750","1,380","1,300","1,430",845,"1,240","3,650","2,590","4,845","3,590","1,705","2,365",850,"2,745",980,"2,215",850,"1,105","3,390","1,160",745,"3,455","1,740",440,"3,010","2,485","1,730",925,"1,875",660,"1,170","1,750","1,545","1,605","3,740","1,425","1,010","2,390","4,760","2,575",260,705,"5,415","1,960",595,765,690,"2,130","1,145","4,075",765,445,"3,675","3,720","2,140","4,310","1,760","4,150","1,030","4,070","1,680","2,815","4,000","3,455",920,"4,570","2,930","2,215","2,385",730,"2,060","3,635",665,725,"1,760",430,"2,540","1,035","2,490","2,030","1,500","2,165",415,"1,240","2,555","4,340","3,365","1,605","3,115","1,640","3,165","2,825","1,305",920,"4,090","2,420","1,580","2,090","9,030","3,445","3,250","3,265","2,835","1,465","2,770","10,230","2,810","1,405","7,365","1,210",730,"1,485","1,030","1,210","4,565","1,180" -1138,Income,Low income in 2015,Census Profile 98-316-X2016001, 65 years and over,"47,805",710,420,110,495,440,440,295,335,200,275,135,485,275,580,200,255,45,240,240,435,110,175,60,460,240,360,350,165,310,290,430,380,555,485,185,485,165,310,115,625,140,125,515,220,140,630,310,70,160,420,265,75,720,140,140,210,280,215,690,165,280,385,855,270,45,130,"1,080",195,145,75,105,125,170,590,105,85,570,820,185,565,195,435,295,735,375,495,615,200,155,505,375,610,250,140,235,455,95,170,220,75,290,155,580,445,235,305,55,245,235,620,595,195,690,285,820,230,210,125,435,205,100,530,625,540,280,"1,015",480,190,375,900,735,320,"1,120",230,190,345,130,140,365,235 -1139,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Africa,"77,445",445,350,100,620,"1,070",260,620,375,265,445,340,665,275,"1,655",275,250,165,195,"1,065",185,100,230,200,795,900,390,165,140,120,115,980,580,655,955,160,400,290,930,865,705,405,225,"1,675",255,150,"1,555",280,130,520,330,315,190,330,430,275,780,320,545,"1,350",165,150,730,320,"2,575",70,205,"1,370",315,110,195,165,265,105,"1,205",145,90,235,700,510,"1,270","1,045","2,570",240,670,405,220,330,675,90,"1,085",960,565,495,30,140,"1,335",290,90,340,150,665,380,845,150,375,925,115,940,625,745,325,500,675,225,720,880,200,460,"1,070",110,80,"1,110","1,775","1,150","1,610",610,"1,490",380,650,"1,005",195,"1,020","1,210",215,70,205,130,250,"1,095",285 -1140,Income,Low income in 2015,Census Profile 98-316-X2016001,"Prevalence of low income based on the Low-income cut-offs, after tax (LICO-AT) (%)",17.4,17.5,18.7,7.1,18.9,11.2,14.2,36.1,20.4,15.4,8.3,21.9,19.4,12.9,25.9,21.1,14.8,8.4,18.5,19.3,20.2,12.1,11.7,5.3,25.8,16.2,12.8,14.3,13.2,13.5,11.2,19.7,17,17,15.9,18.1,16.6,8.2,20.4,17.9,17.8,7.5,14.7,27.2,13.3,9.8,20.9,17.6,6.7,25.4,15.1,10.4,9.9,19.1,10.8,16,18.4,14.5,18.6,13,13.2,14.9,22.1,34.9,19.7,4.1,15.1,19.5,15.5,6.1,6.8,5.9,16.7,15.1,15.4,11.8,6.4,21.2,15.6,19.1,29.7,21.2,21.8,9.2,18.6,21.6,24.9,23.2,13.3,10.4,33.1,35,16.3,19.9,11.5,17.7,16.6,9.3,12.7,15.9,6,35.3,15.8,18.5,19.3,9.7,7.8,5.8,24.2,25.7,27.1,17.6,13.4,19.9,9.5,19.1,27.3,8.2,14.7,36.4,17.6,26.4,20.1,16,20.8,13.8,20.3,25.1,18.5,15.4,26.7,23.6,11.2,22.4,13.9,13.5,15.6,11.1,12.1,22.5,13.9 -1141,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 17 years (%),20.7,23.8,22,7,13.4,12.9,14.9,36.3,25,22.1,6.8,30.4,24.7,13.6,34.6,22.5,15.5,10.8,21,26.4,18.2,13.4,9.9,7.1,27.8,22.6,10.8,19.2,12.4,8.1,10.6,24.6,22.8,14.8,20.8,15.9,14.5,9.4,29.7,27.1,18.3,11.7,21.5,39.2,11.7,9.4,31.7,17.4,7.9,27.9,11.8,10,12.3,23,16,25.7,25.2,9.3,25.6,17.2,11.1,18.1,29.3,32.3,29.2,3.1,18.3,26.2,11.4,4,5.3,4.4,15.3,13.1,21.6,16.2,7.4,28.5,16.5,27.2,37.2,29.5,29.7,5.7,20,20.3,27.2,24.6,17.7,5.7,37.6,42.4,15.9,27.7,11.5,8.9,23,10.9,5.6,21.1,7.2,45.8,22.6,23.8,15,8.3,11.5,4.2,37,36,27.2,17.5,17,26.8,9.4,24.5,34.5,5.3,21.3,48.2,12.2,15.3,26.4,21,28.5,16.4,23.5,30.7,19.5,21.5,30.9,18.1,17.4,29.6,11,10.6,10.9,7.6,9.7,25.2,21.6 -1142,Income,Low income in 2015,Census Profile 98-316-X2016001, 0 to 5 years (%),20.9,27.2,22.9,6.9,11.7,14.5,13.6,28.4,21.4,19.8,7.5,33.7,25.6,13.3,38.7,19.2,17.7,9.3,19.4,28,16.2,13.6,6.9,5.1,22.2,24.5,9.8,20.1,11.5,6.2,7.5,23.1,25.2,12.8,21.3,13.9,12.2,13.1,34.9,27.7,17.2,10.1,22.6,40.6,9.9,7,34.2,12,7,27.8,12.4,7.1,11.3,23.3,14,27.7,26,8.1,29.3,16.6,8.5,18.5,33.6,29.3,32.1,3.7,20.3,27.8,13,2.9,5.3,4.9,12,11.4,24.2,16.8,9.2,34.3,14.3,30.4,31.9,32.8,31.3,3.6,16,16.4,25.4,22.3,13,5.6,37.6,45.3,14.9,29.8,12.5,7.5,23.4,11.1,5.3,21.4,7.9,41.1,24.1,24.9,14.7,8.2,12.6,3.9,41.8,39.1,26.7,11.1,14.8,27.8,9.6,26.3,37.4,3.3,24,51.8,11.3,6.5,23.9,15.4,31.9,18.9,22.1,34.8,15.4,24.5,23.2,14.1,19.9,31.7,7.5,8.2,10.3,8.3,9.2,28.4,21.4 -1143,Income,Low income in 2015,Census Profile 98-316-X2016001, 18 to 64 years (%),17.8,17.5,19.9,7.5,21.7,12.4,13.3,38.7,22,17.7,9.1,20.3,20.1,13.9,23.2,20.4,15.2,9.4,19.2,18.3,20.2,12.3,14,5.4,26.8,15.7,12.9,13,14.6,13.6,11.2,20.9,16.1,18.2,16,19.6,16.7,8.8,19.4,16.4,17.3,7.4,14.4,24.8,14.2,11.2,18.9,17.5,7.8,26.5,16,10.9,11.4,18.9,10.8,15.8,17.8,15.7,17.9,12.6,14,13.9,21.4,35.6,19.4,4.9,14.2,19.8,17.6,6.7,8.1,6.7,17.8,16.1,14.5,12.3,7.2,21.6,15.4,19.1,28.4,19.8,20,9.6,18.3,21.4,26.4,24.9,12.9,11.8,32.4,33.5,16.2,19.6,12.3,19.9,16.3,9.5,14,17.5,6.3,32,15.3,17.5,19.2,12.1,7.2,6.4,21.8,24.4,26.9,17.1,14.5,20.8,10.2,19.1,26.8,9.3,14.5,33.1,20.2,30.8,19.2,15.9,20,14.8,19.4,24,19,15.4,27.8,24.8,10.8,21.8,14.3,13.4,16.7,12.7,14.7,23.9,13.3 -1144,Income,Low income in 2015,Census Profile 98-316-X2016001, 65 years and over (%),11.9,12.3,10.9,5.5,10.1,7,16.2,12.4,9.9,6.2,7.1,16.1,10.5,8.1,21.3,22.3,12.1,2.6,13.2,11.3,22,8.3,6.8,2.5,15.6,7.5,15.2,13.2,8.2,20.7,11.2,9.5,11.9,12.7,8.8,12.3,19.9,5.6,10.3,9,19,3.8,7.3,17.2,10.9,6.2,13.1,18.9,2.9,11,14.3,8.1,3.1,16.7,6.3,5.9,9.7,15.3,11.4,10.3,11.1,15.7,15.1,33.8,7.5,2.4,12.7,12.6,9.4,7.7,3.5,4.4,8.5,12.1,10,5.8,3.3,12.3,16.1,7.5,34.9,13.3,12.2,12,18.8,24.6,17.4,15.3,14.1,9.8,31.8,25.9,17.3,9.8,9.3,12,8.7,6,15.2,6.9,3.7,40.6,9.7,15.9,26.7,4.7,4.8,4.4,14.3,12,29.5,20.7,6.1,12.7,7,14.2,14.9,7.3,7.4,20.6,9.2,10.5,17.1,13.6,13.4,6,20.4,21.6,14.4,8.6,14.6,22.9,6.5,14.5,16.9,17.4,15.9,8.1,5,10.3,8.8 -1145,Immigration and citizenship,Citizenship,Census Profile 98-316-X2016001,Total - Citizenship for the population in private households - 25% sample data,"2,691,665","28,815","23,465","12,030","28,645","27,000","15,580","25,600","21,135","12,660","23,110","6,370","29,090","21,680","21,555","7,685","14,210","9,185","11,325","17,705","10,995","9,910","10,890","13,340","30,310","26,305","16,420","15,795","14,110","9,595","17,075","26,820","24,380","36,195","34,995","11,710","21,010","15,190","22,250","9,445","21,880","18,520","11,470","21,915","12,665","10,595","30,205","14,380","9,650","15,705","21,805","23,350","12,465","16,920","10,110","12,410","15,535","14,230","13,610","43,230","14,075","11,035","17,100","17,460","21,980","9,160","7,985","43,505","16,070","14,560","15,115","16,645","15,055","10,065","43,775","9,865","10,450","26,060","33,320","17,150","18,460","13,260","32,830","16,750","28,925","11,285","15,535","23,630","30,425","11,670","18,355","13,610","20,965","18,495","9,210","13,755","34,725","10,710","7,645","15,805","11,040","10,675","10,355","22,235","14,870","20,615","46,065","10,065","9,755","16,430","20,660","27,045","17,680","24,270","24,895","27,030","15,485","21,445","10,125","20,840","16,230","6,675","17,185","65,620","26,960","32,885","26,125","17,690","11,090","27,550","50,260","16,670","22,145","53,005","12,425","7,855","13,250","11,805","12,300","27,565","14,025" -1146,Immigration and citizenship,Citizenship,Census Profile 98-316-X2016001, Canadian citizens,"2,296,365","23,550","19,015","11,425","25,550","24,105","13,175","17,185","16,205","10,570","20,860","5,395","24,120","20,350","17,520","7,215","11,470","8,400","9,930","14,630","9,965","8,100","10,070","12,820","24,730","23,015","13,820","14,590","12,210","8,920","15,990","20,275","20,720","31,910","28,690","10,180","19,015","13,990","18,485","8,370","18,385","17,515","9,895","17,190","10,660","9,600","25,825","13,430","9,155","10,030","19,170","21,860","11,415","13,975","9,265","10,540","12,585","12,455","10,870","37,920","13,105","8,945","14,910","14,450","18,605","8,865","7,425","34,970","12,975","13,875","14,060","15,805","13,400","9,200","37,720","8,160","9,850","20,830","29,250","14,960","16,245","11,375","25,135","15,305","23,750","10,095","11,655","17,320","27,140","11,040","13,715","10,975","17,600","16,175","8,630","12,460","29,910","9,840","7,090","12,545","10,375","9,360","9,180","19,535","13,530","18,700","42,375","9,540","8,655","13,810","17,530","24,745","15,060","19,310","22,855","21,960","11,825","20,255","8,630","15,215","14,375","5,525","14,695","54,800","24,155","27,405","19,600","14,685","9,620","23,960","35,145","12,730","19,850","43,580","11,665","7,360","12,135","10,425","10,925","21,520","12,160" -1147,Immigration and citizenship,Citizenship,Census Profile 98-316-X2016001, Canadian citizens aged under 18,"431,655","4,280","3,405","2,085","2,615","4,130","2,420","1,310","2,390","1,595","5,220","1,310","5,040","3,880","4,945","1,655","2,035","1,735","1,590","3,655",875,"1,635","1,420","2,635","1,175","5,065","3,050","2,960","2,180","1,840","3,400","3,795","4,635","4,950","6,145","1,365","4,070","2,520","4,365","2,050","5,260","3,210","1,900","4,240","2,110","1,565","6,450","2,755","1,545","1,915","3,025","3,970","1,895","2,310","1,630","2,465","3,160","2,400","2,360","6,245","2,360","1,765","3,130","1,390","4,430","1,885","1,980","6,465","2,610","3,725","3,310","3,875","1,505","1,455","8,870","1,655","1,595","4,040","3,610","3,140","1,545","2,685","7,320","3,335","2,305","1,860","1,630","2,740","2,155","2,220","2,190","2,925","3,415","3,380","1,705","1,425","6,435","2,100","1,325","2,135","2,110","1,935","1,830","4,050","2,490","3,045","9,425","2,295","2,225","3,640","2,175","4,340","2,900","3,265","4,585","4,045","2,705","4,360","1,900","4,895","1,925",520,"2,805","3,635","5,250","5,755","3,265","3,190","1,970","4,685","5,355","1,960","3,840","10,080","2,580","1,295","2,095","1,965","1,215","4,305","2,325" -1148,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Latin American,"77,165",170,230,180,405,350,575,460,410,150,345,335,530,225,"1,780",80,920,65,250,"1,880",260,825,225,115,695,375,255,135,"1,135",85,300,550,270,"1,510","3,605",490,275,675,400,765,550,400,445,390,420,140,"3,680",205,120,365,690,475,205,220,485,895,"1,830",530,225,"1,330",490,910,250,315,980,55,150,415,240,100,110,140,455,255,770,645,135,35,985,345,395,"1,380","1,085",285,950,290,165,360,"1,005",130,615,145,"1,325",340,110,240,"1,025",820,125,145,165,285,850,"2,200",290,270,495,120,735,280,515,310,305,30,400,360,215,215,660,305,190,120,430,"1,405",555,"1,300",450,"1,390",780,600,825,190,935,745,140,155,445,220,160,"1,765",710 -1149,Immigration and citizenship,Citizenship,Census Profile 98-316-X2016001, Canadian citizens aged 18 and over,"1,864,715","19,265","15,605","9,340","22,930","19,975","10,755","15,870","13,820","8,980","15,650","4,085","19,080","16,470","12,590","5,570","9,440","6,665","8,345","10,970","9,085","6,465","8,645","10,185","23,555","17,950","10,770","11,620","10,025","7,085","12,590","16,495","16,090","26,950","22,555","8,810","14,955","11,475","14,125","6,315","13,115","14,305","7,995","12,945","8,545","8,040","19,365","10,680","7,610","8,110","16,140","17,875","9,530","11,670","7,625","8,085","9,420","10,050","8,515","31,670","10,750","7,185","11,765","13,055","14,160","6,980","5,455","28,495","10,375","10,145","10,745","11,945","11,895","7,745","28,860","6,500","8,265","16,790","25,640","11,815","14,705","8,700","17,815","11,980","21,440","8,245","10,030","14,580","24,975","8,810","11,530","8,055","14,190","12,785","6,915","11,030","23,485","7,735","5,765","10,405","8,265","7,425","7,350","15,480","11,035","15,645","32,960","7,245","6,435","10,165","15,355","20,400","12,155","16,045","18,275","17,910","9,125","15,905","6,720","10,315","12,460","5,005","11,880","51,170","18,910","21,635","16,350","11,490","7,660","19,275","29,800","10,775","16,015","33,510","9,070","6,065","10,050","8,460","9,725","17,220","9,835" -1150,Immigration and citizenship,Citizenship,Census Profile 98-316-X2016001, Not Canadian citizens,"395,300","5,270","4,465",600,"3,085","2,900","2,410","8,425","4,920","2,090","2,245",975,"4,985","1,335","4,030",470,"2,735",785,"1,400","3,075","1,030","1,805",820,525,"5,585","3,285","2,595","1,220","1,900",675,"1,080","6,550","3,650","4,300","6,305","1,530","2,000","1,205","3,770","1,075","3,500","1,005","1,575","4,720","2,015",995,"4,400",950,500,"5,680","2,650","1,490","1,050","2,930",850,"1,870","2,965","1,770","2,735","5,325",965,"2,095","2,195","3,010","3,380",300,550,"8,525","3,085",695,"1,055",835,"1,655",860,"6,040","1,710",595,"5,220","4,065","2,190","2,215","1,885","7,700","1,440","5,175","1,190","3,870","6,310","3,305",650,"4,630","2,625","3,365","2,325",585,"1,305","4,810",880,555,"3,255",665,"1,315","1,180","2,705","1,355","1,920","3,675",525,"1,100","2,625","3,115","2,305","2,615","4,970","2,040","5,075","3,660","1,180","1,495","5,625","1,850","1,155","2,485","10,825","2,815","5,485","6,510","3,005","1,465","3,580","15,105","3,940","2,290","9,445",775,490,"1,115","1,380","1,360","6,050","1,865" -1151,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001,Total - Immigrant status and period of immigration for the population in private households - 25% sample data,"2,691,665","28,830","23,475","12,025","28,640","27,000","15,575","25,605","21,140","12,665","23,110","6,365","29,100","21,690","21,565","7,685","14,210","9,185","11,330","17,700","10,990","9,905","10,880","13,340","30,310","26,300","16,420","15,800","14,105","9,590","17,085","26,815","24,375","36,205","35,000","11,710","21,010","15,200","22,250","9,445","21,890","18,525","11,470","21,920","12,675","10,605","30,215","14,375","9,650","15,715","21,810","23,345","12,470","16,920","10,115","12,410","15,535","14,220","13,610","43,220","14,075","11,045","17,100","17,460","21,980","9,165","7,980","43,495","16,065","14,560","15,110","16,640","15,055","10,060","43,765","9,860","10,450","26,060","33,325","17,145","18,455","13,265","32,830","16,760","28,930","11,290","15,535","23,625","30,440","11,680","18,355","13,600","20,955","18,500","9,220","13,760","34,730","10,710","7,640","15,805","11,050","10,675","10,360","22,245","14,875","20,610","46,070","10,070","9,755","16,435","20,655","27,040","17,675","24,265","24,890","27,025","15,485","21,440","10,125","20,835","16,230","6,675","17,180","65,620","26,955","32,890","26,115","17,695","11,090","27,540","50,260","16,670","22,150","53,000","12,430","7,850","13,245","11,805","12,290","27,565","14,030" -1152,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, Non-immigrants,"1,332,090","7,895","7,190","7,975","19,030","13,310","7,135","9,995","7,220","4,735","15,885","2,685","11,675","15,430","8,175","5,175","5,280","5,880","6,240","7,580","6,965","4,275","7,715","8,305","16,650","12,665","8,425","9,795","7,590","6,575","11,310","7,690","9,300","20,635","14,560","6,785","14,820","9,065","8,730","4,600","11,490","10,180","5,415","6,990","7,210","7,535","11,700","9,775","6,455","4,205","13,340","16,315","5,195","5,015","5,360","4,860","5,730","9,135","5,220","22,450","9,355","4,480","7,390","8,570","10,110","7,115","5,485","13,710","7,960","11,085","11,690","13,130","9,720","6,415","15,960","4,345","6,505","6,805","18,925","7,240","11,240","5,545","10,425","11,880","15,955","6,975","4,465","6,450","20,255","8,605","7,405","5,660","10,280","11,180","6,120","9,225","16,630","5,685","5,750","5,270","7,565","5,350","5,255","10,755","10,080","14,490","20,025","7,585","4,495","7,040","11,025","18,260","8,355","5,820","15,905","9,285","6,055","16,900","4,470","6,620","9,830","4,040","7,670","37,035","13,280","12,285","7,070","8,475","5,430","13,180","14,150","5,970","11,775","20,645","9,320","5,490","8,525","8,080","8,325","10,295","6,380" -1153,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, Immigrants,"1,266,005","19,995","15,095","3,970","8,270","13,195","8,020","10,455","12,625","7,535","6,805","3,425","15,865","6,080","12,705","2,420","8,555","3,150","4,790","9,725","3,770","5,285","2,885","4,990","10,935","13,115","7,485","5,835","6,095","2,855","5,575","17,865","14,685","14,395","19,515","4,395","5,920","5,950","13,000","4,725","9,785","8,190","5,805","14,030","4,975","2,755","17,790","4,385","3,130","9,525","7,670","6,565","7,015","11,285","4,645","7,280","9,440","4,660","7,795","19,590","4,550","6,185","9,465","7,615","11,425","1,960","2,410","28,325","7,075","3,340","3,180","3,375","4,835","3,445","26,900","5,245","3,890","18,265","13,425","9,495","6,470","7,430","21,500","4,510","11,295","3,970","9,945","15,665","8,995","2,925","9,485","7,520","9,965","6,890","3,025","4,100","17,210","4,930","1,795","9,765","3,360","5,015","4,975","11,020","4,395","5,495","25,575","2,335","5,105","8,975","8,920","8,210","8,835","17,440","8,635","16,725","8,705","4,225","5,465","13,270","5,810","2,015","9,185","23,820","13,345","19,230","18,155","8,690","5,370","13,905","31,040","9,390","10,030","30,185","2,935","2,190","4,345","3,180","3,580","15,595","7,265" -1154,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, Before 1981,"294,065","3,450","2,830","1,715","3,075","4,225","2,015","1,475","2,060","1,640","2,250",815,"2,890","2,345","2,170",745,"1,920","1,035","1,555","1,970","1,180","1,540","1,240","1,785","1,960","2,250","1,960","1,620","2,435","1,310","2,420","3,005","1,990","5,065","5,675","1,675","1,695","2,245","2,020","1,100","2,245","2,775","1,235","2,000","1,070","1,045","4,345","1,405","1,375",960,"2,135","2,615","2,380","1,955","1,705","2,195","1,755","1,235","1,275","4,840","1,335","1,770","1,695","1,815","2,835","1,055",685,"5,515","1,340","1,325","1,145","1,445","1,855",960,"4,335","1,885","1,405","2,885","3,610","1,650","1,265","1,310","2,465","1,535","2,225",885,"1,620","2,545","1,595","1,385",870,910,"3,565","2,080","1,410","2,115","3,605","1,690",815,"2,715","1,335",430,"1,320","3,310","1,565","2,320","5,265","1,175","1,690","1,270","1,590","2,450","1,890","3,420","2,935","3,500","1,075","1,965","1,175","1,210","2,560",815,"2,230","3,795","2,895","3,790","2,350","1,880","1,740","3,245","3,775","1,820","3,420","4,550","1,045",825,"2,055","1,025","1,245","3,215","2,835" -1155,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, 1981 to 1990,"171,565","3,250","2,255",605,"1,015","1,790",795,910,"1,480","1,085",905,750,"2,050",820,"2,010",360,995,450,465,"1,735",575,"1,185",355,820,"1,445","1,465",800,750,"1,185",410,775,"1,700","2,045","2,890","2,525",875,835,785,"1,670",840,"1,175","1,035",585,"1,635",310,325,"3,450",770,320,760,"1,115",855,"1,390","1,665",660,830,"1,435",745,925,"2,235",975,"1,415","1,305","1,240","1,320",280,370,"3,905",660,340,375,450,865,565,"4,225",670,460,"3,100","2,035","1,360","1,070","1,305","2,290",555,"1,330",645,"1,075","1,340","1,735",425,"1,045",680,"1,385",660,310,530,"1,885",840,215,875,415,685,815,"2,355",710,645,"4,455",360,910,"1,105","1,180","1,635","1,170","2,705","1,135","2,210",640,530,830,755,910,215,"1,055","3,350","1,990","2,925","1,575","1,520","1,235","1,530","3,155",875,"1,230","3,645",475,360,630,325,365,"1,910",965 -1156,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Guadeloupean,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1157,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, 1991 to 2000,"281,870","5,595","3,805",770,"1,405","2,565","1,685","2,315","2,910","1,930",960,775,"4,135","1,090","2,965",565,"1,900",530,"1,000","2,140",670,910,485,"1,060","2,495","3,305","1,475","1,310",995,440,955,"3,445","4,055","2,855","3,865",660,"1,075","1,075","3,130","1,170","1,895","2,230","1,520","2,950",765,340,"4,180","1,005",705,"1,605","1,480","1,440","1,815","3,060","1,045","1,370","2,125",885,"1,800","4,575",990,"1,340","2,550","1,780","2,330",260,595,"6,420","1,440",585,560,480,855,725,"7,845",785,975,"4,880","2,775","2,440","1,620","1,925","4,915",810,"2,250",950,"2,525","2,760","2,120",480,"2,155","1,680","1,650","1,225",540,555,"3,865",890,290,"2,020",650,"1,545","1,080","2,430",765,790,"8,575",320,"1,185","2,120","1,850","1,740","1,825","4,595","1,655","3,875","1,405",640,"1,245","2,275",950,315,"2,035","5,845","3,330","4,935","4,060","1,865","1,220","3,205","7,050","2,145","1,805","7,885",570,475,710,530,605,"3,405","1,305" -1158,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, 2001 to 2010,"330,550","5,535","4,460",685,"1,790","3,105","2,035","3,480","3,650","1,810","1,440",725,"4,820","1,335","3,515",550,"2,330",795,"1,095","2,415",980,965,520,"1,115","3,045","4,275","1,905","1,565",910,460,"1,010","5,935","4,620","2,255","4,305",705,"1,325","1,330","3,870","1,090","2,420","1,810","1,655","4,650","1,690",590,"3,950",860,590,"3,260","1,710","1,145","1,105","3,470",890,"2,020","2,555","1,010","2,270","5,070",875,965,"2,735","1,950","3,120",245,510,"8,520","2,175",745,615,640,760,810,"7,780",955,755,"5,230","3,115","2,825","1,570","1,985","7,095",970,"2,915",995,"2,855","5,380","2,135",440,"2,890","2,490","1,890","1,700",435,570,"5,065","1,155",250,"2,825",680,"1,790","1,130","1,890",830,"1,000","5,700",300,810,"2,855","2,605","1,580","2,550","4,920","1,900","4,720","3,095",710,"1,490","5,160",910,355,"2,165","6,095","3,670","5,145","5,730","1,970",815,"3,950","9,660","2,880","2,360","9,170",570,410,655,710,700,"4,190","1,310" -1159,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, 2001 to 2005,"162,775","2,795","2,320",425,910,"1,435",980,"1,605","1,730",940,530,340,"2,355",610,"1,435",315,"1,020",345,490,"1,190",450,415,195,655,"1,435","2,160",785,820,415,250,555,"3,045","2,365","1,125","1,855",280,565,815,"1,950",605,"1,025","1,030",760,"2,045",795,260,"1,860",475,325,"1,430",785,575,610,"2,235",435,985,"1,135",425,"1,070","2,510",490,385,"1,255",955,"1,625",115,205,"4,765",990,350,260,305,360,435,"3,900",390,465,"2,715","1,540","1,570",730,885,"2,795",465,"1,380",510,"1,560","2,595","1,080",190,"1,310","1,295",825,840,190,265,"2,535",610,140,"1,580",380,"1,085",620,885,390,495,"3,300",150,325,"1,330","1,060",825,"1,305","2,840","1,060","2,410","1,380",320,695,"2,360",440,140,"1,170","3,150","1,795","2,660","2,630",875,415,"2,030","4,605","1,550","1,480","4,525",230,195,375,290,300,"1,955",655 -1160,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, 2006 to 2010,"167,780","2,750","2,140",255,870,"1,665","1,055","1,880","1,925",865,905,380,"2,455",725,"2,075",225,"1,300",455,610,"1,220",525,560,335,465,"1,620","2,110","1,105",730,495,205,450,"2,880","2,265","1,125","2,455",420,770,520,"1,935",485,"1,395",775,885,"2,605",890,325,"2,080",385,265,"1,835",930,565,500,"1,230",460,"1,035","1,415",595,"1,200","2,570",390,590,"1,500",995,"1,500",115,315,"3,745","1,185",400,355,330,390,375,"3,875",570,295,"2,490","1,585","1,255",840,"1,095","4,315",515,"1,535",495,"1,300","2,790","1,060",245,"1,590","1,195","1,065",865,250,300,"2,530",545,120,"1,245",305,700,510,"1,015",430,490,"2,400",160,485,"1,525","1,535",745,"1,235","2,075",835,"2,305","1,715",385,795,"2,800",475,215,990,"2,940","1,875","2,480","3,105","1,100",390,"1,915","5,055","1,335",875,"4,620",335,220,280,420,395,"2,235",660 -1161,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, 2011 to 2016,"187,950","2,165","1,735",200,975,"1,500","1,490","2,275","2,520","1,070","1,260",360,"1,970",485,"2,045",210,"1,425",330,680,"1,475",365,685,285,210,"1,970","1,820","1,345",600,560,235,410,"3,785","1,960","1,330","3,145",480,"1,005",515,"2,315",530,"2,050",350,815,"2,795","1,140",465,"1,875",335,145,"2,935","1,240",505,325,"1,125",345,870,"1,555",775,"1,510","2,850",345,700,"1,170",840,"1,830",95,245,"3,965","1,470",345,475,355,500,375,"2,745",950,295,"2,190","1,895","1,215",945,905,"4,720",635,"2,580",500,"1,855","3,660","1,405",190,"2,525","1,760","1,455","1,245",320,325,"2,790",365,235,"1,320",270,560,625,"1,040",510,750,"1,595",170,510,"1,625","1,695",800,"1,400","1,810","1,005","2,435","2,500",395,720,"3,880",460,315,"1,695","4,730","1,455","2,440","4,430","1,465",370,"1,970","7,405","1,675","1,210","4,925",265,130,315,600,670,"2,850",855 -1162,Immigration and citizenship,Immigrant status and period of immigration,Census Profile 98-316-X2016001, Non-permanent residents,"93,580",930,"1,175",85,"1,350",485,430,"5,145","1,285",390,425,260,"1,555",190,675,90,375,160,300,390,260,345,295,40,"2,745",530,510,165,420,165,195,"1,275",385,"1,185",945,535,255,185,515,120,610,145,250,890,480,300,715,220,70,"1,985",805,470,255,620,110,265,360,430,600,"1,195",180,380,255,"1,270",450,80,80,"1,480","1,025",135,255,140,490,210,920,270,60,990,940,410,750,275,900,360,"1,670",345,"1,110","1,510","1,185",150,"1,470",425,725,425,70,435,870,95,90,760,130,315,130,445,390,620,470,145,150,415,705,580,495,"1,005",355,"1,010",725,325,190,950,600,625,320,"4,775",335,"1,370",930,520,290,470,"5,080","1,310",340,"2,200",185,160,385,540,395,"1,690",375 -1163,Immigration and citizenship,Age at immigration,Census Profile 98-316-X2016001,Total - Age at immigration for the immigrant population in private households - 25% sample data,"1,266,000","19,990","15,090","3,970","8,270","13,205","8,015","10,465","12,625","7,530","6,805","3,430","15,865","6,070","12,700","2,420","8,560","3,145","4,795","9,730","3,780","5,285","2,880","4,990","10,925","13,110","7,480","5,840","6,100","2,850","5,570","17,875","14,690","14,380","19,525","4,395","5,925","5,940","12,995","4,730","9,780","8,200","5,805","14,025","4,975","2,760","17,800","4,385","3,135","9,520","7,675","6,560","7,020","11,285","4,650","7,280","9,430","4,665","7,790","19,575","4,550","6,190","9,465","7,620","11,430","1,955","2,400","28,315","7,075","3,340","3,175","3,370","4,840","3,445","26,895","5,250","3,890","18,260","13,445","9,500","6,470","7,430","21,495","4,520","11,300","3,965","9,950","15,670","9,000","2,925","9,480","7,515","9,960","6,890","3,025","4,105","17,205","4,930","1,795","9,775","3,365","5,010","4,970","11,030","4,395","5,500","25,580","2,330","5,105","8,980","8,925","8,205","8,830","17,445","8,645","16,735","8,710","4,220","5,460","13,275","5,805","2,010","9,180","23,805","13,345","19,230","18,150","8,675","5,375","13,900","31,035","9,390","10,035","30,170","2,925","2,200","4,350","3,180","3,580","15,585","7,275" -1164,Immigration and citizenship,Age at immigration,Census Profile 98-316-X2016001, Under 5 years,"96,800","1,045",785,375,835,"1,120",535,"1,010",875,545,720,225,"1,205",650,760,235,425,295,340,605,370,355,360,465,"1,085","1,115",520,550,390,240,495,"1,245",940,"1,250","1,170",365,610,620,875,320,705,860,455,990,450,375,"1,075",420,325,855,715,785,465,800,380,445,575,395,475,"1,565",325,385,695,585,930,280,245,"1,640",520,410,420,500,480,350,"1,710",395,350,880,"1,195",745,640,495,"1,605",460,965,290,495,765,"1,175",345,570,645,705,560,290,410,"1,405",415,190,595,465,455,400,655,510,495,"1,555",375,375,800,655,720,850,710,865,990,835,700,385,"1,570",580,180,640,"2,555",990,"1,085",870,675,440,815,"1,990",460,820,"2,190",405,210,310,370,385,840,505 -1165,Immigration and citizenship,Age at immigration,Census Profile 98-316-X2016001, 5 to 14 years,"205,915","2,305","2,180",610,"1,710","2,040","1,380","2,805","2,145","1,095","1,250",535,"2,545","1,180","1,910",415,"1,340",650,660,"1,580",625,735,500,870,"2,325","2,220","1,260","1,125","1,080",440,910,"2,535","2,010","2,425","3,080",605,"1,040","1,075","1,905",755,"1,370","1,335","1,085","2,040",820,495,"2,540",790,555,"1,735","1,255","1,300","1,015","1,460",835,"1,095","1,390",760,"1,115","3,305",660,955,"1,375","1,375","2,010",495,400,"3,750","1,230",710,650,695,915,630,"3,980",755,710,"1,775","2,490","1,645","1,260","1,215","3,340",745,"1,905",690,"1,505","2,480","2,165",585,"1,090","1,135","1,435","1,270",500,695,"3,010",835,275,"1,445",715,920,785,"1,815",665,970,"4,045",400,810,"1,430","1,365","1,440","1,625","2,065","1,580","2,320","1,360",925,710,"2,180",920,440,"1,425","5,835","2,355","2,705","2,615","1,425",855,"2,065","5,465","1,515","1,820","4,670",470,420,620,650,700,"2,720","1,135" -1166,Immigration and citizenship,Age at immigration,Census Profile 98-316-X2016001, 15 to 24 years,"270,470","3,790","3,035","1,075","1,635","2,635","1,580","2,165","2,315","1,380","1,345",870,"3,410","1,350","3,285",545,"1,700",620,"1,140","2,510",725,"1,385",575,"1,210","2,140","2,455","1,525","1,155","1,460",775,"1,390","3,040","3,015","3,245","5,330",940,"1,145","1,405","2,660","1,195","1,780","1,640","1,120","2,780",790,465,"4,880",940,725,"1,580","1,475","1,245","1,860","1,435","1,115","2,130","2,470",865,"1,610","4,125","1,080","1,645","1,900","1,450","2,830",445,410,"5,435","1,340",670,560,680,"1,125",595,"6,200","1,535",865,"3,960","2,795","1,895","1,300","1,725","4,910",905,"1,915",770,"1,905","2,900","1,800",700,"1,790","1,425","2,370","1,700",760,940,"3,150","1,360",395,"2,000",625,"1,010","1,215","2,885",835,"1,130","6,560",590,"1,570","1,810","1,765","1,710","1,575","3,500","1,810","3,230","1,370",760,"1,490","2,385","1,350",450,"1,935","4,770","3,025","5,100","2,785","2,230","1,545","3,135","5,735","1,875","2,355","6,600",515,500,"1,135",560,715,"3,925","2,030" -1167,Immigration and citizenship,Age at immigration,Census Profile 98-316-X2016001, 25 to 44 years,"558,625","9,355","7,110","1,690","3,415","6,140","3,530","3,645","5,855","3,460","2,955","1,530","6,995","2,510","5,150",955,"4,215","1,270","2,290","4,185","1,630","2,355","1,200","2,085","4,660","6,130","3,400","2,440","2,785","1,135","2,320","8,885","7,015","6,395","8,345","2,160","2,635","2,435","6,130","2,080","4,745","3,700","2,605","6,490","2,395","1,230","7,555","1,785","1,340","4,355","3,715","2,825","3,045","5,785","1,955","2,790","4,020","2,180","3,750","8,800","2,125","2,700","4,390","3,075","4,605",675,"1,150","13,135","3,215","1,310","1,320","1,365","2,025","1,585","11,455","2,180","1,735","8,385","5,645","4,220","2,850","3,425","8,920","2,080","5,580","1,735","4,485","6,900","3,395","1,130","5,145","3,595","4,440","2,720","1,270","1,770","7,910","1,990",780,"4,680","1,340","2,170","2,125","4,765","1,930","2,530","10,615",830,"1,910","3,890","4,220","3,530","3,935","8,065","3,775","7,690","4,400","1,645","2,270","5,885","2,515",750,"3,985","9,210","5,620","8,075","8,570","3,600","2,210","6,370","13,520","3,980","4,250","13,140","1,275",865,"1,905","1,385","1,540","6,625","3,070" -1168,Immigration and citizenship,Age at immigration,Census Profile 98-316-X2016001, 45 years and over,"134,195","3,485","1,975",215,665,"1,265",985,845,"1,425","1,060",535,260,"1,720",385,"1,580",280,875,310,350,850,450,455,255,365,715,"1,190",770,575,380,270,475,"2,145","1,710","1,080","1,570",335,490,415,"1,420",380,"1,175",650,545,"1,720",525,205,"1,745",435,185,"1,000",485,415,625,"1,800",365,815,990,470,855,"1,785",350,510,"1,100","1,120","1,040",70,200,"4,370",755,245,215,120,295,280,"3,540",375,235,"3,240","1,305",990,425,570,"2,720",315,945,470,"1,570","2,625",460,165,885,710,"1,020",645,200,275,"1,730",335,145,"1,045",220,470,455,890,485,365,"2,790",135,430,"1,040",920,800,850,"3,100",590,"2,525",740,180,600,"1,245",455,190,"1,195","1,455","1,360","2,255","3,325",760,315,"1,500","4,355","1,565",795,"3,590",265,195,370,210,230,"1,490",535 -1169,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001,Total - Selected places of birth for the immigrant population in private households - 25% sample data,"1,266,005","19,990","15,095","3,965","8,275","13,205","8,015","10,465","12,625","7,535","6,810","3,430","15,865","6,075","12,705","2,425","8,560","3,145","4,795","9,725","3,775","5,285","2,885","4,990","10,935","13,115","7,480","5,835","6,095","2,855","5,570","17,855","14,690","14,380","19,520","4,395","5,930","5,950","13,000","4,730","9,780","8,190","5,805","14,020","4,975","2,760","17,795","4,385","3,135","9,530","7,665","6,570","7,010","11,285","4,645","7,285","9,435","4,660","7,790","19,585","4,550","6,190","9,465","7,610","11,430","1,960","2,410","28,330","7,075","3,345","3,170","3,365","4,840","3,450","26,905","5,245","3,895","18,260","13,440","9,495","6,475","7,430","21,505","4,510","11,300","3,970","9,940","15,670","8,995","2,920","9,480","7,510","9,960","6,900","3,020","4,100","17,210","4,935","1,800","9,770","3,365","5,015","4,975","11,030","4,390","5,505","25,580","2,335","5,105","8,975","8,920","8,205","8,835","17,445","8,635","16,735","8,705","4,220","5,455","13,275","5,805","2,015","9,190","23,805","13,340","19,230","18,150","8,690","5,370","13,895","31,040","9,395","10,040","30,180","2,930","2,200","4,355","3,175","3,585","15,595","7,270" -1170,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Americas,"212,010","1,635","1,415",450,"1,630","1,335",920,"1,050",925,550,"1,120","1,290","2,215",970,"4,035",440,"1,620",345,715,"3,560",795,"1,250",740,850,"1,740","1,615",770,880,"1,395",370,715,"1,495","2,120","2,550","5,640",865,"1,065","1,020","2,965","1,440","1,875","1,005",690,"1,065",825,595,"6,470",730,640,825,"1,210","1,025","1,895",755,850,"1,525","3,160","1,095","1,405","2,460",855,"1,535","1,525",795,"2,000",300,505,"2,670",695,555,545,590,650,650,"7,120",965,440,"1,110","2,165","2,205","1,205","3,150","4,940",870,"1,675",830,405,840,"1,680",585,"1,185",810,"2,775","1,230",445,675,"2,910","1,105",340,675,345,550,"1,505","3,335",900,"1,150","6,015",405,"1,640","2,080","1,575","1,075",845,690,940,"1,775",870,920,"1,205",890,470,400,"1,425","3,470","3,865","5,370","1,085","3,655","1,290","1,880","1,800",530,"2,065","4,570",660,490,960,580,695,"3,645","1,510" -1171,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Brazil,"7,025",10,15,30,60,40,30,75,80,0,20,80,30,10,10,0,135,20,15,205,45,85,40,10,115,20,10,20,180,10,40,65,20,330,65,110,60,90,0,10,45,90,25,20,35,40,0,20,10,70,80,35,20,10,80,0,30,25,0,190,60,160,20,35,85,10,25,35,60,0,25,80,95,20,0,30,50,0,155,10,65,240,20,35,130,35,30,50,90,10,80,0,100,15,0,60,55,30,10,0,20,25,0,235,25,90,25,10,0,0,60,60,30,10,85,0,30,10,0,25,55,35,0,235,10,20,10,165,105,10,100,55,115,45,30,25,50,50,25,40,90 -1172,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Colombia,"8,715",15,10,15,40,100,120,60,100,50,60,10,0,45,80,0,170,15,50,185,15,25,50,10,90,60,60,15,80,20,45,205,20,115,320,45,0,190,35,70,95,105,35,105,75,30,155,0,10,65,85,55,10,90,95,85,150,35,0,180,30,35,10,35,100,10,20,40,40,25,10,10,30,15,70,45,20,0,135,0,90,135,55,25,160,30,55,30,165,20,90,0,165,40,50,30,335,35,10,35,20,30,40,10,50,80,30,0,40,20,45,20,70,0,30,30,10,15,75,110,10,10,165,215,10,75,70,85,55,110,180,50,85,70,0,0,45,45,50,170,105 -1173,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, El Salvador,"6,955",10,30,20,10,10,35,10,20,10,35,30,80,45,195,0,35,0,10,195,30,85,0,10,20,50,20,15,85,0,20,25,65,85,465,0,20,35,35,130,75,45,10,10,20,20,465,20,10,25,20,0,15,30,40,85,175,20,50,85,25,85,65,35,105,0,0,95,0,10,0,10,10,35,115,70,10,10,65,10,40,185,190,20,10,0,0,20,60,0,15,10,110,0,0,35,15,95,0,45,0,30,175,340,20,10,35,10,135,25,40,35,20,0,20,50,0,10,50,0,10,15,50,55,80,170,45,115,85,95,30,0,75,65,10,0,10,10,10,160,45 -1174,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Guyana,"34,490",390,295,80,45,155,55,85,60,90,45,120,760,115,"1,235",20,125,30,55,295,50,80,20,270,135,295,80,215,45,25,90,150,650,195,395,45,125,25,910,145,115,75,85,185,25,10,"1,595",110,165,120,65,60,715,125,65,255,500,35,560,185,65,130,575,25,220,30,10,565,25,35,20,25,40,55,"2,430",25,25,340,170,635,160,270,"1,510",35,135,80,65,35,85,20,125,180,110,180,70,20,405,95,0,80,15,65,200,345,130,20,"2,030",40,160,580,220,130,70,165,30,370,135,65,215,110,30,0,235,225,"1,090","1,895",85,245,100,475,115,60,235,"1,530",50,35,20,15,0,495,290 -1175,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Haiti,"1,850",0,20,0,0,0,0,10,0,0,0,0,10,20,25,0,0,10,0,10,10,0,0,0,10,10,0,10,0,0,10,15,20,0,50,0,0,0,95,0,10,0,0,0,0,0,60,10,20,0,0,0,10,0,0,0,60,0,15,30,0,0,10,20,10,0,10,25,0,0,0,0,0,0,125,0,10,0,0,35,10,10,170,10,0,20,0,0,0,10,10,0,0,0,0,0,25,0,10,0,0,10,0,15,0,0,20,10,10,195,0,10,0,0,15,10,20,0,30,10,10,0,25,10,180,45,0,0,0,10,0,0,10,55,0,10,0,10,0,35,0 -1176,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Jamaica,"45,075",500,395,45,175,220,140,85,140,100,90,450,420,195,"1,020",105,285,30,105,930,80,180,55,180,170,355,90,150,105,30,85,320,525,250,"1,410",60,160,125,730,420,315,140,135,190,115,60,"1,450",80,120,110,70,75,520,135,130,550,790,195,320,380,85,345,350,140,570,20,115,980,70,30,45,55,45,75,"2,105",195,50,335,235,760,220,920,"1,475",90,175,130,20,105,185,55,180,195,630,275,75,45,650,260,20,155,25,90,370,650,80,75,"1,925",40,590,550,230,140,140,180,100,540,170,50,275,135,25,15,295,400,"1,195","1,440",290,"1,425",205,340,210,50,460,"1,240",75,70,210,30,50,"1,115",295 -1177,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Mexico,"7,225",15,10,25,60,50,50,85,40,15,55,0,30,30,70,10,95,10,55,95,65,95,65,15,135,15,10,20,95,20,50,50,10,170,180,65,45,65,10,15,60,0,25,60,45,25,140,10,55,10,145,65,10,20,10,45,45,85,0,145,95,25,20,20,50,0,15,45,35,35,35,20,40,20,40,30,30,0,160,65,90,90,80,30,160,35,30,50,120,20,100,20,180,0,10,25,110,65,10,10,35,0,70,155,40,60,30,40,15,35,55,75,70,0,80,20,30,65,65,55,10,30,20,245,80,50,40,110,75,75,125,40,50,20,25,10,25,35,45,85,50 -1178,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Peru,"3,870",40,15,0,60,0,20,35,45,35,30,10,10,0,45,0,35,0,20,50,35,15,10,0,65,20,10,10,70,20,0,50,10,70,120,20,30,20,10,50,45,15,0,20,25,0,155,10,0,0,45,60,10,45,35,20,70,20,0,85,45,35,10,10,20,10,20,25,15,10,0,20,20,0,25,30,10,30,105,0,0,55,10,30,55,0,10,30,50,10,45,0,100,45,0,0,50,0,0,0,20,30,45,130,20,40,60,10,30,10,40,0,15,10,20,20,10,20,25,0,0,10,10,135,25,45,30,80,40,0,40,30,30,0,10,35,35,10,10,55,25 -1179,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Trinidad and Tobago,"19,640",220,240,50,80,225,35,95,80,65,30,85,265,110,165,25,115,10,90,155,70,65,25,175,190,300,65,180,45,55,60,95,340,255,215,60,175,35,460,120,140,110,40,105,45,10,225,65,135,80,50,60,240,105,55,90,115,75,130,205,75,80,205,90,115,20,25,285,50,20,55,20,30,120,"1,075",65,25,175,170,220,95,160,355,90,140,185,40,125,170,45,130,145,170,205,60,75,265,20,45,125,30,40,145,185,120,50,890,10,80,245,230,100,65,120,85,240,110,50,130,100,40,10,150,400,490,590,40,155,105,235,175,45,200,605,50,90,85,40,25,200,95 -1180,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, United States,"24,535",130,115,75,780,300,115,325,130,105,570,60,145,255,70,165,80,210,155,55,280,45,325,60,380,140,220,115,135,115,150,220,80,360,105,135,215,110,110,60,680,115,40,145,185,230,85,160,90,155,300,350,75,105,70,25,75,240,70,265,175,25,75,190,120,150,125,115,210,270,265,210,120,125,200,25,120,40,340,85,210,75,125,305,345,55,70,115,290,305,95,65,185,170,60,235,245,35,145,70,120,80,35,100,240,555,180,160,40,145,180,350,230,35,205,115,120,485,70,185,160,195,115,740,165,110,140,115,50,125,335,90,160,215,240,85,205,210,325,120,95 -1181,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Americas,"52,630",325,285,110,295,230,335,205,245,80,220,425,480,190,"1,120",110,560,10,155,"1,365",130,550,145,130,430,350,210,150,545,75,160,300,375,705,"2,305",310,245,330,565,420,300,290,300,195,245,160,"2,155",260,40,200,355,235,275,105,275,375,"1,145",390,245,705,195,595,215,195,630,55,140,455,195,110,105,155,185,180,935,415,95,185,640,380,225,990,925,195,360,260,100,250,450,85,315,180,"1,015",275,125,160,770,440,80,140,45,150,425,"1,185",175,195,795,75,540,290,480,170,170,160,270,335,220,150,265,150,105,70,340,830,525,935,310,"1,160",480,400,460,130,590,710,170,135,275,135,160,"1,195",430 -1182,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Europe,"298,270",675,"1,075","2,380","2,895","3,495","3,160","1,575","1,650","1,145","2,085","1,095","1,885","2,215","1,580",580,"3,325",895,"2,435","2,100","1,290","2,775","1,175","1,375","2,685","2,100","2,295","1,425","3,630","1,345","2,620","2,535","1,255","6,490","5,420","2,080","1,615","3,590","1,255",975,"2,610","4,505","2,520","1,750","1,760","1,095","3,360",940,"1,185",910,"4,065","3,730",910,"1,320","2,800","1,965","1,380","1,410",915,"8,325","1,855","3,045","1,125",860,"2,870","1,095","1,280","2,385","1,785","1,295","1,225","1,435","2,410","1,855","1,060","2,185","2,725",245,"5,990",955,"1,325","1,395","1,400","1,830","3,775","1,660","1,275","4,035","2,695","1,085","1,065",590,"3,655","2,245","1,445","2,115","3,755","1,980",840,"2,085","1,805",395,"1,340","4,195","1,815","2,205","1,685","1,335","1,720",965,"1,835","1,390","1,660",755,"5,520","1,620","1,205","2,240","1,140","1,285","2,770",600,"1,830","5,390","2,025","1,795","7,105","1,730","2,545","2,890","3,035","2,020","3,915","2,890",920,720,"1,935","1,065","1,420","2,925","3,090" -1183,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Bosnia and Herzegovina,"5,125",0,0,65,45,120,60,20,25,10,0,10,20,35,0,0,185,10,205,0,10,0,45,10,70,25,20,0,10,20,50,40,30,20,30,15,50,90,0,10,30,300,160,30,55,10,0,30,0,0,95,115,0,15,45,0,0,0,0,490,20,0,10,20,20,20,25,35,15,20,25,25,10,35,10,0,220,0,150,0,30,20,25,100,135,25,10,10,60,10,25,0,10,65,50,10,90,30,0,25,20,0,40,30,0,20,0,0,0,20,20,10,60,0,130,45,60,20,20,20,20,0,55,115,0,40,25,10,0,30,45,30,60,0,0,10,25,20,10,10,10 -1184,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Croatia,"4,675",10,0,105,40,50,20,20,25,15,20,0,15,20,10,10,15,30,65,0,15,10,10,15,50,0,25,10,0,20,25,40,20,20,50,50,15,115,35,25,50,145,75,0,10,25,20,10,25,10,60,90,10,10,75,10,10,10,10,310,35,10,30,0,110,25,15,20,30,35,0,20,0,40,10,25,155,0,100,0,35,20,20,25,75,40,40,20,20,20,45,10,30,35,35,0,30,10,20,20,65,0,190,105,50,10,10,80,10,10,70,10,40,0,140,0,25,35,55,10,10,0,25,110,30,70,0,55,25,35,45,35,100,65,0,20,30,15,30,30,20 -1185,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, France,"4,585",0,0,15,145,25,30,60,35,25,40,0,40,25,10,50,50,40,10,25,55,45,30,10,140,0,35,20,30,30,55,40,0,105,60,35,30,30,20,0,25,15,0,20,20,50,20,20,15,30,65,55,0,25,0,20,0,30,10,95,20,20,20,50,35,10,20,20,35,35,65,45,40,25,30,25,20,10,55,10,55,15,25,45,80,10,0,40,70,25,50,10,60,0,10,75,55,20,15,0,20,25,15,15,30,100,25,30,10,20,45,45,45,20,50,25,10,85,0,20,80,25,10,230,30,30,20,40,30,35,55,30,10,35,40,10,50,45,30,35,0 -1186,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Germany,"11,090",35,65,95,235,200,55,85,65,75,160,0,80,150,10,15,15,85,55,45,85,0,55,70,155,50,80,100,50,25,40,80,55,60,70,45,80,145,115,25,95,155,95,65,70,105,25,40,150,35,235,230,50,85,65,15,40,45,60,250,75,10,0,35,75,60,45,140,35,70,90,80,50,70,90,20,75,15,235,80,45,30,85,60,180,45,55,80,105,40,30,35,55,70,30,60,145,30,65,50,85,10,55,80,85,145,160,55,30,80,50,90,105,50,160,50,45,195,75,50,50,10,50,250,135,120,125,40,10,100,155,95,130,220,75,35,100,35,95,65,10 -1187,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Greece,"19,240",100,200,20,150,170,190,50,60,45,80,0,485,125,35,180,110,40,775,55,15,50,10,55,35,430,220,160,40,350,"1,035",200,355,250,90,20,110,45,270,20,80,105,45,370,35,25,85,105,60,60,60,60,85,85,25,15,45,140,230,155,130,55,240,20,75,15,25,545,80,115,50,90,10,10,45,30,55,40,50,60,40,45,115,80,65,55,110,100,20,185,20,80,410,555,550,105,295,45,285,725,50,15,55,160,35,75,50,60,20,100,10,75,60,275,40,340,70,55,40,215,10,10,520,165,145,60,40,15,95,850,90,90,145,410,80,80,300,35,15,60,95 -1188,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Hungary,"7,855",10,20,30,100,115,110,45,105,80,95,10,15,40,110,0,85,25,10,40,40,35,105,25,50,65,150,10,0,0,40,85,20,100,95,45,55,60,25,40,210,135,50,35,125,80,40,20,30,40,115,50,30,65,45,0,65,105,0,120,30,20,20,20,155,40,70,90,70,40,20,50,10,45,30,10,50,0,100,20,35,25,20,65,95,25,65,100,10,0,45,10,70,260,0,20,125,25,20,50,20,0,25,55,125,135,25,10,30,20,125,30,95,0,120,55,10,45,20,45,0,10,30,100,120,50,155,175,30,75,90,80,85,65,30,20,75,65,60,95,75 -1189,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Inuk (Inuit),275,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,10,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,10,0,0,0,0,10,10,0,0,0,0,10,0,0,0,10,0,0,0,0,25,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,0,10,0,10,0,0,0,0,0,0,0,10,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0 -1190,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Ireland,"4,625",10,0,20,80,40,0,40,35,0,50,20,25,145,0,10,10,0,50,20,15,15,40,25,100,65,10,30,0,30,60,25,0,55,10,25,75,30,10,10,10,65,10,0,20,10,15,45,45,10,90,110,20,20,0,0,0,20,10,120,45,10,10,30,20,30,30,20,20,55,55,50,25,10,10,10,30,0,75,45,50,0,20,55,170,55,30,0,105,40,10,10,25,20,80,55,45,0,25,0,20,15,20,0,20,75,10,10,10,10,55,85,20,0,75,20,0,125,0,15,20,20,30,275,65,20,0,20,0,10,30,10,30,20,20,10,25,45,65,20,10 -1191,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Italy,"45,515",65,300,370,310,95,485,80,65,70,225,300,175,165,845,35,625,70,30,715,20,520,30,135,105,295,510,145,"1,195",390,315,35,110,710,"3,470",150,105,595,150,390,360,470,155,20,65,35,"2,475",95,55,30,100,105,265,35,705,"1,615",760,165,115,640,105,535,145,25,900,115,15,510,75,40,85,65,105,45,65,"1,460",130,30,370,115,30,125,600,40,135,50,235,450,80,70,35,105,"1,140",120,75,455,150,935,45,500,180,10,285,485,35,100,145,75,"1,070",150,40,35,75,225,460,235,45,65,430,25,230,60,140,170,305,630,125,345,405,375,195,190,"1,070",305,70,60,360,55,55,"1,545","1,695" -1192,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Netherlands,"2,690",0,0,20,50,65,0,25,20,10,10,10,25,40,10,10,0,0,0,0,35,0,20,15,60,0,20,45,0,10,25,30,10,40,20,10,30,45,0,0,20,20,0,20,10,30,10,10,25,20,25,40,0,20,10,10,0,25,10,70,10,10,35,0,0,35,35,10,25,30,20,45,10,25,40,0,45,10,40,25,30,0,0,55,60,10,0,40,35,30,20,0,10,25,20,10,55,0,20,10,30,10,10,30,10,35,20,30,0,20,0,20,10,10,35,35,10,60,10,10,35,0,0,30,20,10,10,25,0,10,45,35,30,20,0,20,25,20,15,0,0 -1193,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Poland,"21,365",10,35,485,145,200,210,115,90,45,170,30,130,50,85,30,80,10,40,140,50,0,50,135,190,110,155,140,35,30,55,115,45,170,155,75,70,420,70,150,220,595,330,50,55,65,105,30,70,40,725,730,55,55,310,15,40,95,45,"1,270",140,70,0,90,340,130,215,95,105,35,65,30,70,520,105,35,350,0,"1,190",75,110,105,105,120,175,535,70,105,250,35,75,10,90,45,20,55,180,95,25,45,250,30,75,260,455,90,140,175,10,115,505,85,80,20,"1,120",35,35,105,145,45,70,55,50,350,205,130,280,60,35,115,135,100,410,180,40,35,25,85,45,90,55 -1194,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Portugal,"38,575",55,10,250,165,65,130,55,10,30,30,615,75,85,130,40,835,10,20,805,40,"1,895",40,50,55,95,75,40,"1,975",25,80,45,15,"4,060",740,"1,235",50,200,40,110,245,370,155,25,40,10,245,25,25,30,135,135,25,10,300,110,115,110,20,660,490,"2,170",60,125,240,10,110,50,20,15,20,25,"1,740",80,65,450,75,10,470,20,65,575,80,50,40,115,35,55,455,30,35,40,"1,185",85,20,825,105,365,0,60,125,10,95,"2,110",335,35,75,90,390,55,145,145,45,0,375,30,50,35,70,20,"1,865",210,25,200,70,115,55,495,"1,735",95,30,30,330,90,10,25,480,20,35,195,740 -1195,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Romania,"12,875",10,30,60,105,415,135,85,360,140,65,15,90,90,40,0,120,45,55,10,40,10,95,100,110,105,115,30,0,15,50,545,75,40,125,25,90,130,75,0,200,125,60,130,235,45,20,25,65,135,150,100,20,290,100,30,45,55,30,265,45,0,45,30,70,30,60,135,195,50,35,65,25,25,55,10,65,15,180,65,60,35,10,85,335,25,70,225,135,35,50,10,50,85,30,25,830,30,0,135,135,0,95,55,10,125,100,15,30,35,50,30,275,10,130,150,210,35,25,110,20,20,105,305,65,30,340,25,0,215,250,105,105,125,35,0,40,20,130,55,50 -1196,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Russian Federation,"16,225",0,30,35,145,135,640,170,105,100,175,10,60,80,65,20,165,90,55,35,80,20,65,70,335,45,250,40,25,35,35,265,30,75,60,35,30,105,45,0,245,140,110,100,230,90,20,20,10,135,360,210,0,115,100,10,20,95,10,350,80,10,10,50,65,20,60,55,320,55,110,45,35,115,10,10,35,10,340,10,140,30,35,95,430,90,90,"1,020",190,25,185,20,75,65,30,20,155,20,20,55,50,30,20,35,50,100,10,30,20,15,35,30,130,20,275,35,55,90,20,75,30,10,90,590,20,25,"2,415",40,40,70,630,355,50,75,35,20,40,30,85,185,35 -1197,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Serbia,"8,525",0,25,35,65,260,65,40,40,20,35,0,50,10,10,10,85,30,120,50,35,10,30,45,85,10,45,0,20,20,75,105,20,30,0,15,25,170,40,10,50,395,250,90,70,50,50,0,25,20,240,300,10,45,75,0,10,25,25,555,55,0,60,10,20,40,35,30,30,55,50,55,15,70,0,0,415,10,125,45,55,0,10,100,285,25,55,115,60,45,65,10,10,65,70,10,150,20,35,60,70,10,40,45,45,65,25,40,10,20,70,30,75,0,335,40,30,30,15,60,20,0,60,275,35,10,100,10,15,50,70,60,75,95,15,25,25,65,70,30,20 -1198,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Ukraine,"15,780",0,20,245,90,50,535,70,85,50,115,15,20,60,40,0,150,55,30,10,50,0,50,20,180,10,185,35,10,10,25,120,10,90,45,35,20,475,0,30,185,560,375,60,105,55,40,35,30,55,400,275,0,75,425,15,10,40,0,"1,105",95,0,0,10,140,80,180,20,210,40,70,15,10,255,0,20,270,0,740,0,80,55,25,45,205,180,100,785,100,0,50,0,55,0,0,45,110,45,0,0,125,30,60,110,50,35,20,80,10,10,65,75,70,0,860,10,30,30,30,15,20,15,35,290,30,20,"1,780",10,15,20,180,170,230,35,10,10,30,25,40,105,15 -1199,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, United Kingdom,"40,295",210,200,200,655,685,100,420,250,245,455,0,320,845,85,125,125,270,205,95,505,45,360,405,565,340,105,370,95,225,355,275,180,445,185,170,640,295,165,65,190,360,175,210,150,220,80,345,400,115,550,565,190,180,160,70,110,245,115,725,250,60,225,180,195,295,170,305,225,385,300,595,140,260,350,35,270,80,830,245,320,95,105,555,840,230,180,150,595,365,180,125,195,320,235,210,625,115,190,175,265,115,125,195,325,770,580,180,35,140,240,485,250,90,570,335,145,995,95,195,225,110,250,"1,330",465,220,140,165,70,360,425,265,320,580,355,180,160,305,425,120,55 -1200,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Europe,"39,230",135,135,335,355,790,390,220,250,140,335,50,260,240,85,40,680,85,695,55,220,125,100,175,415,410,300,205,125,130,330,495,285,225,255,105,170,655,215,90,395,535,490,550,440,170,105,80,155,145,685,550,155,210,390,20,90,210,220,"1,185",295,50,210,130,410,130,160,360,300,225,200,135,95,235,200,85,460,30,935,130,145,220,125,250,510,195,150,730,400,135,135,100,235,415,180,150,585,200,95,170,295,65,155,405,145,320,270,375,45,150,285,125,210,55,655,185,370,245,100,360,95,40,355,660,290,245,"1,455",205,40,465,565,345,765,535,105,145,160,215,195,295,195 -1201,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Algeria,770,0,10,0,0,10,10,0,10,0,10,0,10,0,0,10,0,0,0,10,0,0,10,0,20,10,0,0,10,0,0,0,25,25,20,25,30,0,10,0,0,10,0,20,0,0,0,0,0,25,10,10,0,0,0,0,0,0,20,10,0,0,10,0,0,0,0,10,0,0,20,0,10,0,25,0,0,0,10,10,10,0,0,0,10,0,0,0,0,0,0,0,0,20,0,0,25,0,0,10,0,10,0,20,0,0,10,0,0,0,10,0,0,0,20,0,0,0,10,85,0,10,10,30,10,15,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0 -1202,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Egypt,"6,625",115,50,10,75,225,50,210,105,65,55,10,85,25,40,0,30,35,25,15,35,0,25,20,80,35,40,20,0,0,10,250,125,10,20,0,20,25,10,10,10,70,0,50,25,10,0,20,0,215,40,55,25,60,25,0,25,35,40,110,10,0,10,15,45,0,0,290,45,10,40,20,10,10,75,0,10,30,100,10,40,10,40,25,100,10,40,60,95,20,65,50,70,10,0,30,300,0,10,110,0,40,30,40,10,60,55,30,10,40,20,40,115,165,25,155,30,15,10,60,0,0,50,225,10,25,85,10,10,95,370,50,40,100,15,10,0,10,65,35,0 -1203,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Ethiopia,"9,080",0,20,10,70,35,20,50,10,0,20,20,105,50,20,50,30,0,30,130,0,20,20,50,115,305,10,20,20,50,25,25,95,165,85,20,85,40,255,70,140,10,0,250,10,0,105,85,20,10,80,20,20,10,85,0,40,15,110,95,10,0,245,70,125,0,25,90,15,0,10,0,10,10,160,10,0,10,70,60,375,75,110,10,50,55,10,0,85,0,445,305,160,60,0,20,60,20,15,15,0,145,30,150,10,45,135,10,105,180,315,15,20,0,10,30,245,0,10,115,10,25,100,230,220,50,35,155,95,115,25,10,35,205,60,10,65,0,15,20,70 -1204,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Kenya,"4,880",65,55,10,20,150,10,20,10,50,30,30,90,20,55,10,0,30,10,30,15,10,0,45,75,15,10,10,10,0,20,95,0,30,15,10,25,0,30,20,45,50,20,170,25,0,35,30,10,30,10,15,30,50,0,10,10,20,20,105,10,0,40,10,255,15,20,110,20,25,10,55,0,10,140,20,20,35,40,15,45,25,130,35,30,35,20,20,75,20,15,10,35,10,0,0,95,20,0,35,0,15,25,35,10,35,45,0,90,40,10,10,40,70,20,75,55,30,20,130,20,10,100,150,50,65,20,55,0,35,45,15,20,65,10,10,10,10,0,85,10 -1205,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Morocco,"1,850",10,0,0,40,35,50,0,10,0,55,0,10,0,10,0,10,20,20,0,10,10,10,0,25,25,80,0,20,0,0,40,15,15,20,10,15,0,0,0,45,0,10,50,35,30,15,10,0,0,0,10,0,15,0,0,0,15,30,20,0,0,10,35,30,0,0,0,25,10,0,10,10,10,20,0,0,0,10,0,10,0,10,20,45,10,10,65,20,10,50,10,10,20,0,10,40,0,0,0,10,15,15,10,0,30,0,10,0,10,10,0,20,0,10,0,25,0,0,25,10,0,10,15,0,20,185,10,0,15,60,0,10,35,0,10,0,0,10,10,0 -1206,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Nigeria,"7,605",15,10,0,20,30,10,75,10,0,0,70,10,30,415,20,10,10,0,140,15,0,10,20,50,30,30,20,10,10,10,60,30,40,215,0,20,25,30,170,65,10,40,40,15,0,475,0,0,35,10,30,20,10,25,65,260,10,0,120,10,0,55,10,230,0,35,85,0,0,0,10,20,0,175,55,0,0,110,135,35,220,725,0,40,40,10,10,55,0,15,50,20,40,0,0,40,35,0,0,0,25,75,30,10,10,50,10,45,80,0,20,30,10,0,30,45,0,65,10,10,10,0,175,170,305,30,255,10,20,25,10,245,165,10,0,10,10,0,420,50 -1207,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Somalia,"9,025",10,45,10,10,10,10,35,10,0,10,75,15,0,305,45,0,0,15,185,0,0,10,10,65,50,20,20,0,0,0,20,25,50,110,0,0,70,60,395,125,135,70,135,0,0,140,10,0,25,0,30,0,25,135,50,40,0,40,345,0,10,110,55,"1,265",0,35,95,10,0,0,0,10,10,100,0,0,0,40,10,245,275,435,0,10,50,0,0,20,0,90,65,10,35,0,0,115,45,0,10,25,120,70,230,10,10,45,0,350,40,10,55,15,10,0,70,35,0,60,15,0,0,30,95,100,270,10,545,50,25,25,0,175,130,10,0,10,0,0,65,25 -1208,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, South Africa; Republic of,"5,560",30,10,0,180,80,45,75,65,40,190,0,40,30,0,20,40,55,20,0,40,10,95,10,75,35,120,20,20,0,10,100,35,85,10,10,65,25,20,0,100,30,35,20,95,60,10,20,30,15,55,45,0,30,0,10,10,75,0,85,0,25,0,30,10,30,10,40,90,60,75,45,30,15,40,0,20,10,70,35,55,10,0,85,160,25,40,55,100,35,30,10,10,10,20,35,100,15,15,40,50,10,10,20,10,140,105,50,10,20,35,45,125,20,30,35,10,100,10,40,50,10,20,230,25,10,60,10,0,10,115,45,10,60,10,10,35,35,95,10,0 -1209,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Africa,"32,055",210,155,55,230,485,75,155,140,100,85,135,295,105,830,115,135,35,75,560,80,60,50,55,325,385,90,70,75,30,40,385,230,300,485,85,100,115,470,200,200,75,55,930,60,45,770,125,55,170,130,85,90,130,150,150,395,145,290,470,100,110,260,80,635,35,85,615,120,10,35,40,175,30,505,50,35,155,240,225,440,430,"1,105",75,260,180,115,100,220,20,375,465,255,290,25,40,550,165,35,125,55,285,115,340,85,55,475,10,340,215,330,150,130,405,125,320,440,40,275,580,25,30,790,650,570,840,180,435,200,335,365,60,510,480,105,30,70,55,55,435,125 -1210,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Asia,"674,490","17,220","12,240","1,035","3,045","7,255","3,680","7,180","9,635","5,570","3,135",695,"11,060","2,590","5,425","1,105","3,350","1,715","1,430","3,000","1,480","1,155",715,"2,555","5,640","8,495","3,995","3,330",910,970,"2,100","12,845","10,705","4,605","7,485","1,285","2,805","1,025","7,845","1,450","4,595","2,260","2,360","9,505","2,130",895,"6,370","2,420","1,165","7,255","1,995","1,425","4,000","8,860",560,"3,510","4,100","1,800","4,915","7,415","1,640","1,450","6,080","5,615","3,935",420,415,"21,875","4,260","1,335","1,145","1,105","1,485",825,"17,440","1,940",625,"16,660","4,515","5,800","2,620","1,835","12,570","1,535","5,130","1,045","8,045","10,460","3,875","1,100","6,125","5,145","2,955","2,925","1,070","1,150","9,175","1,545",495,"6,655","1,025","3,385","1,745","2,630","1,475","1,710","16,890",440,810,"5,290","4,715","5,320","5,825","15,300","1,915","12,575","5,740",805,"2,655","10,035","2,410",910,"4,800","13,015","6,265","10,395","9,340","1,815","1,125","8,450","25,150","6,625","3,035","21,405","1,100",900,"1,225","1,390","1,195","7,890","2,380" -1211,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Afghanistan,"12,740",40,150,0,25,35,15,20,85,20,0,0,435,40,55,50,0,0,35,85,10,0,0,20,40,145,20,75,0,10,15,360,395,25,140,10,20,10,320,160,70,25,80,"1,115",35,10,200,40,25,370,10,0,35,60,25,80,45,10,70,120,0,0,85,40,280,0,10,160,10,0,0,0,10,0,295,0,0,50,15,175,25,25,325,0,30,0,65,80,10,0,45,290,10,230,10,0,420,25,0,55,20,25,100,35,0,0,315,0,10,340,55,25,10,55,20,115,110,0,55,"1,160",0,0,280,50,270,175,90,80,0,195,50,30,50,740,0,0,0,0,20,215,20 -1212,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Master's degree,192120,890,1020,430,4795,2575,1055,3810,2360,1140,2280,65,1090,1135,145,605,610,1265,890,230,1380,175,1590,785,4185,1365,1020,795,770,835,1295,2335,985,2555,590,935,1675,1235,670,185,1170,1010,565,1050,1190,1565,320,1055,560,1725,2805,2795,570,1535,495,310,345,1560,610,3325,1305,125,630,1435,675,1235,820,1755,1825,1855,2350,1940,1365,555,1105,150,685,525,2545,515,2010,345,1000,2160,3840,480,1385,1505,3680,1440,1525,960,1190,820,485,1625,2015,200,970,940,980,710,255,435,1450,3435,1525,1185,90,730,1140,2205,1925,915,1970,1380,1615,2310,365,1365,1430,920,705,10130,820,1260,1605,390,360,985,6160,1770,1005,2135,965,540,1310,1780,2100,1030,430 -1213,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Bangladesh,"25,100",35,145,0,55,75,45,100,20,0,0,0,545,610,10,20,10,0,45,85,30,20,15,240,85,"1,990",15,"1,000",10,10,35,165,445,200,85,100,470,0,400,95,0,40,55,580,15,0,60,40,145,225,10,15,165,40,25,120,10,20,270,240,20,10,"1,135",45,190,0,0,120,25,10,0,15,0,15,510,25,0,20,60,285,190,75,215,15,85,10,50,30,35,10,235,"2,470",20,240,10,0,515,35,0,50,0,840,75,100,30,30,385,0,10,870,75,120,80,25,10,100,"2,560",20,60,385,0,10,155,145,910,170,10,40,65,205,165,30,75,920,30,60,0,0,45,195,30 -1214,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, China,"131,480","8,630","5,920",110,620,"1,910",305,"2,180","2,360","1,945",365,20,"1,680",380,90,485,105,515,205,125,360,60,130,225,"1,080","1,105",205,345,180,315,555,"3,570","1,275","1,215",170,310,425,125,380,40,170,305,150,655,120,180,160,890,115,"1,315",250,260,260,"4,325",0,50,95,80,235,790,320,25,420,"2,990",185,60,60,"9,430",540,235,230,185,585,75,"1,370",25,45,"9,410",710,365,360,70,70,245,625,125,"1,935",965,735,495,390,395,360,260,215,460,"1,180",35,155,"3,255",250,645,25,115,220,315,595,65,0,205,545,"2,620","1,665","9,230",190,"4,670",255,110,45,150,"1,645",330,350,"3,090",280,140,340,85,65,"1,075","6,760","1,390",235,"1,545",365,210,330,260,170,555,275 -1215,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Hong Kong,"38,825","2,450","1,255",10,230,870,25,485,"1,270",920,160,0,635,105,20,60,25,270,45,35,45,25,45,110,465,165,55,105,55,70,205,990,390,140,20,45,135,35,85,20,35,105,40,135,25,70,20,160,45,380,75,65,205,"1,460",0,10,0,45,45,195,55,25,225,395,30,25,10,"1,575",245,120,35,140,60,20,700,0,45,"3,050",200,145,220,25,30,125,185,30,905,250,310,95,65,65,50,45,55,75,345,10,40,495,55,50,10,10,45,180,460,25,0,85,60,325,720,"3,050",60,"1,325",130,45,0,90,140,60,95,"1,190",70,40,125,0,10,125,"2,875",415,60,640,80,90,45,110,90,35,30 -1216,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, India,"79,225",945,980,230,210,690,205,540,450,195,125,80,"1,760",165,190,125,100,70,115,220,125,75,80,450,750,515,160,280,70,250,200,985,"1,325",380,430,115,200,135,985,145,130,365,275,"1,740",50,65,410,240,135,"1,165",300,170,835,560,100,"1,140","1,015",45,665,"1,250",155,285,350,130,770,50,45,"1,360",345,65,95,100,70,80,"3,380",500,50,780,920,875,220,85,"4,815",150,670,140,270,380,515,85,705,370,160,185,40,55,590,165,60,410,170,150,375,175,310,205,"2,940",30,70,740,"1,130",240,260,430,425,"1,075",685,80,"1,100","1,250",55,80,450,"1,975",705,"6,525",210,90,100,625,"1,175",315,705,"6,680",115,65,60,135,185,770,215 -1217,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Iran,"36,440",35,90,0,350,730,190,530,"2,290","1,000",325,0,110,60,40,30,50,350,90,10,40,15,80,45,455,100,135,45,95,40,40,"1,930",90,130,95,20,115,60,60,0,75,60,0,285,90,105,10,35,25,760,200,100,20,690,20,10,10,50,25,195,20,10,35,100,50,35,40,400,915,200,225,110,45,55,80,10,40,10,310,15,175,30,40,210,"1,115",20,"2,170","1,780",310,40,255,85,50,85,45,55,860,0,20,355,25,100,10,40,35,185,65,35,10,100,65,70,"1,075",95,65,125,65,55,15,40,50,35,240,"1,185",45,45,545,25,25,210,"6,225","1,675",45,140,40,15,40,200,170,150,25 -1218,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Iraq,"11,135",70,75,0,35,55,55,40,65,0,10,10,50,20,"1,255",0,0,0,10,10,0,0,10,25,40,10,25,35,0,0,20,200,60,10,160,0,15,0,10,20,0,30,45,40,0,10,325,0,0,360,35,30,15,20,25,365,125,0,35,140,0,10,40,10,80,0,0,495,10,10,0,10,10,0,45,20,0,20,35,15,20,0,"3,535",0,0,10,20,45,55,0,45,25,15,10,10,30,130,40,0,60,10,15,70,0,10,0,55,0,0,25,35,30,30,40,0,230,0,10,425,10,10,0,220,130,0,150,105,30,15,115,95,20,45,180,10,0,10,10,10,110,10 -1219,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Japan,"3,985",45,25,10,90,25,10,90,55,35,10,0,35,35,10,10,25,15,30,20,10,0,30,15,115,35,15,25,0,15,80,60,0,70,20,10,45,0,25,0,10,10,10,20,10,10,10,15,15,40,45,70,10,40,0,0,10,60,0,40,35,10,60,65,0,0,0,40,40,15,10,10,10,10,20,0,0,30,60,25,40,20,10,45,130,25,25,25,50,35,20,20,10,10,15,20,40,0,30,25,40,15,0,30,10,50,10,25,0,10,50,50,60,20,30,85,35,40,0,30,0,30,0,170,15,20,10,20,10,10,205,35,20,30,25,25,20,35,30,10,20 -1220,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Korea; South,"26,830",65,65,40,365,385,170,830,"1,070",470,115,10,160,35,35,15,90,155,45,20,60,0,40,20,370,55,100,35,65,15,60,510,20,220,85,65,95,150,30,90,90,285,195,155,80,20,10,50,45,230,200,155,75,420,90,40,65,85,15,"1,195",30,0,30,185,170,70,30,120,580,175,35,120,75,10,60,20,170,10,395,55,125,135,45,125,445,50,"1,355","1,530",245,10,200,20,70,55,35,85,355,25,20,145,120,10,20,30,35,130,45,25,0,20,55,85,590,90,125,200,75,45,15,60,35,85,95,730,45,45,665,45,0,130,"3,510","1,485",290,165,20,30,75,120,70,265,35 -1221,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Lebanon,"6,010",20,50,35,20,120,40,65,55,30,20,25,30,15,25,0,10,25,10,20,0,0,15,45,110,10,15,10,20,0,45,190,300,20,70,10,15,25,20,0,10,45,80,40,20,10,35,0,10,85,20,0,10,60,10,0,0,10,65,85,0,0,50,10,70,10,0,565,35,20,30,10,0,20,40,20,15,10,75,45,25,0,55,40,75,10,60,20,45,0,25,20,10,20,15,10,255,0,0,65,0,10,10,10,20,65,30,20,10,10,10,10,75,90,15,165,10,10,30,15,10,10,225,215,10,30,25,10,0,335,225,15,10,65,0,0,10,55,10,150,10 -1222,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Pakistan,"34,750",295,435,15,135,365,45,365,105,70,40,10,820,75,95,40,15,40,85,80,40,0,10,100,200,875,25,95,20,60,160,310,705,240,85,60,320,40,275,110,15,175,240,"1,360",15,10,100,210,45,425,70,25,285,95,15,975,790,40,240,335,15,45,345,155,875,0,15,530,85,0,35,10,30,30,"1,540",0,45,160,120,395,95,20,900,10,115,10,105,100,115,10,215,280,35,375,35,10,540,95,25,115,10,255,230,155,35,50,775,15,0,565,100,85,95,165,30,725,640,30,285,"4,440",10,10,645,600,370,505,90,60,20,585,295,50,540,"1,550",95,35,10,15,30,505,20 -1223,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Philippines,"118,775","1,180","1,030",420,175,850,"1,565",345,630,140,"1,410",330,"2,175",645,740,50,"2,460",20,440,"1,025",395,715,50,535,585,"2,410","2,575",555,250,50,315,"1,765","2,690",425,"3,565",125,495,160,"2,405",410,"3,180",300,545,"1,810","1,265",200,"1,155",190,390,"1,025",245,165,590,245,125,285,675,"1,155","1,915","1,360",395,615,"2,050",340,540,65,110,"2,020",830,165,195,135,100,310,"3,660",965,75,885,770,"1,510",375,645,645,280,815,320,420,"3,620",520,65,"2,230",555,"1,500",835,295,70,"1,920",360,40,520,45,240,455,640,185,140,"2,830",100,265,825,"1,155",370,325,480,340,"1,675",470,115,220,"1,260",75,100,"1,020","1,005","1,935","1,265","4,870",475,220,"2,610",720,195,410,"3,150",130,210,285,175,145,"2,080",900 -1224,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Haiti,675,0,15,0,0,0,0,0,0,0,0,0,0,10,15,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,20,0,0,0,50,0,10,0,0,10,0,0,10,0,10,0,0,0,0,0,0,0,35,0,15,10,0,0,0,0,0,0,10,10,0,0,0,0,0,0,35,10,0,0,0,20,0,0,65,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,80,0,0,0,0,0,10,10,0,15,0,0,0,15,0,95,20,0,0,0,15,0,0,10,20,0,0,0,10,0,10,0 -1225,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Sri Lanka,"52,900","2,210","1,070",25,30,165,50,55,175,85,20,40,"1,795",85,440,35,65,20,55,230,40,25,10,510,140,390,25,415,10,15,25,250,"2,190",210,105,40,40,10,"2,070",85,30,155,150,635,10,10,235,45,55,155,10,30,"1,165",180,10,95,180,30,810,140,15,60,820,25,205,0,0,"2,620",35,25,25,10,10,10,"4,860",85,0,"1,150",45,"1,570",125,55,945,25,55,10,0,80,95,10,575,230,30,195,20,10,475,100,0,195,70,410,90,35,125,20,"7,385",15,125,"1,155",225,10,105,270,70,"1,015",150,25,120,220,10,0,300,195,875,585,35,240,15,960,155,55,200,"4,405",0,0,10,10,45,875,65 -1226,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Syria,"5,575",10,40,0,20,60,40,30,20,25,0,0,20,0,100,10,10,0,25,10,15,0,25,20,20,10,0,10,0,0,0,310,130,15,20,10,30,20,55,10,10,20,10,60,20,10,10,0,0,75,25,10,0,25,0,0,40,10,45,135,0,10,20,30,35,0,10,590,10,10,10,10,0,10,65,0,20,10,15,40,30,10,230,10,35,0,20,15,35,0,25,10,0,35,0,0,435,25,0,190,20,15,0,10,0,10,80,0,10,50,20,0,25,60,0,210,30,0,50,170,10,0,380,80,25,10,40,45,0,345,80,25,10,115,0,0,0,10,10,15,10 -1227,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Taiwan,"7,695",115,140,0,120,135,0,515,235,150,40,0,85,10,10,30,10,35,0,10,20,0,25,30,230,20,30,20,0,10,30,245,70,30,0,10,30,10,15,10,20,40,25,10,0,0,0,30,0,70,10,15,10,205,25,0,0,0,10,85,25,0,10,110,20,10,10,130,120,40,30,20,20,0,50,0,20,150,10,40,20,10,0,0,35,0,245,160,40,10,0,10,20,45,30,35,130,0,0,140,20,20,0,0,10,30,15,10,0,10,20,40,185,300,30,115,15,30,0,10,65,20,20,330,20,30,10,10,0,40,"1,065",190,25,110,0,20,10,40,35,10,20 -1228,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Viet Nam,"30,580",495,330,35,70,100,85,125,100,70,55,120,145,180,"1,630",40,105,25,35,860,100,110,10,35,190,155,100,80,90,55,85,140,155,780,"1,500",245,100,60,140,150,105,80,75,115,0,15,"2,785",245,60,65,90,140,65,70,0,295,790,45,95,250,365,240,125,535,165,0,10,600,35,40,30,25,285,55,230,210,10,465,160,75,265,515,365,20,15,80,50,120,170,120,140,45,330,85,120,120,145,535,35,115,30,410,130,970,235,10,265,45,240,50,415,895,35,375,115,275,60,35,115,40,185,45,55,220,115,260,105,405,430,180,225,85,90,200,90,65,195,15,0,980,550 -1229,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Asia,"52,450",600,460,85,515,610,825,860,675,385,455,55,580,165,670,110,295,165,160,165,180,100,150,125,760,490,505,205,40,95,250,860,475,485,915,100,250,180,560,95,620,190,415,740,375,165,830,235,55,500,375,165,245,350,55,65,270,155,370,855,195,90,280,435,265,45,65,"1,185",415,205,155,180,155,145,585,75,75,450,600,195,270,130,380,210,730,210,355,"1,270",555,105,930,270,265,235,155,110,840,95,60,460,120,155,155,300,165,255,615,40,65,230,705,330,500,550,350,495,465,185,85,710,125,100,275,"1,690",525,355,"2,070",165,130,715,"1,345",615,220,750,95,75,135,195,150,975,160 -1230,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Scottish,"256,250",600,725,"1,720","5,225","2,835",510,"2,090","1,135",625,"2,400",165,"2,035","4,795",425,"1,295",695,"1,530","1,580",550,"2,305",385,"2,105","1,925","4,325","2,010",530,"2,685","1,245","1,765","2,840","1,040",960,"4,295","1,005","1,720","4,495","1,795",965,565,720,"1,830",920,515,835,"1,205",465,"2,635","1,975",685,"3,730","4,970",660,545,765,305,190,"1,785",745,"4,015","2,500",320,910,"1,760","1,050","1,955","1,610","1,435","1,130","3,545","3,630","4,565","2,195","1,500","1,360",210,"1,645",215,"4,120","1,040","2,660",495,475,"3,455","4,350","1,770",680,730,"4,630","2,885","1,425",670,"1,550","2,430","1,440","2,535","3,235",525,"1,970",745,"1,535",705,900,"1,255","2,935","5,060","2,485","2,105",235,"1,140","2,615","5,105","1,240",335,"3,770","1,330","1,195","6,065",415,725,"2,410",970,"1,370","8,355","2,210",825,390,"1,330",775,"1,915","1,900",975,"1,720","2,760","2,915","1,485","1,915","2,395","2,665",725,375 -1231,Immigration and citizenship,Immigrants by selected place of birth,Census Profile 98-316-X2016001, Oceania and other places of birth,"3,780",20,0,10,85,45,10,30,35,10,30,0,25,20,0,25,0,20,25,0,15,0,25,10,75,15,30,45,25,45,35,10,20,65,10,10,45,10,0,0,10,20,10,30,0,25,35,10,10,0,55,65,20,20,20,10,0,10,10,50,30,10,10,10,25,65,0,45,0,50,70,70,45,10,45,0,10,0,55,30,40,15,20,40,45,30,10,10,60,70,0,0,10,10,20,20,40,15,30,10,40,15,10,10,75,40,80,40,0,20,55,85,10,20,45,20,10,65,10,0,15,15,0,165,20,65,10,0,20,10,50,25,10,75,35,10,30,10,30,20,10 -1232,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001,Total - Selected places of birth for the recent immigrant population in private households - 25% sample data,"187,945","2,165","1,740",205,990,"1,505","1,495","2,275","2,515","1,065","1,265",360,"1,970",470,"2,045",205,"1,420",335,680,"1,475",370,685,285,210,"1,975","1,820","1,345",600,565,235,405,"3,775","1,960","1,335","3,145",480,"1,005",505,"2,315",540,"2,045",345,815,"2,785","1,140",465,"1,865",335,145,"2,940","1,240",505,335,"1,125",345,865,"1,555",770,"1,515","2,860",345,700,"1,170",840,"1,825",100,240,"3,970","1,465",345,475,345,500,385,"2,730",955,295,"2,185","1,895","1,215",945,900,"4,725",635,"2,570",495,"1,870","3,650","1,405",195,"2,525","1,760","1,465","1,255",320,330,"2,795",365,225,"1,320",270,560,625,"1,045",520,745,"1,590",170,515,"1,620","1,685",790,"1,395","1,800","1,005","2,435","2,495",395,720,"3,885",470,315,"1,700","4,740","1,455","2,440","4,430","1,455",365,"1,965","7,400","1,680","1,205","4,935",265,125,315,595,670,"2,855",855 -1233,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Americas,"23,850",70,115,55,135,115,110,285,170,70,140,175,165,85,515,70,250,50,100,555,110,180,75,15,235,100,100,35,215,55,95,140,260,340,705,160,75,95,290,145,205,30,90,125,80,90,690,85,35,170,210,75,55,45,95,155,500,120,90,335,80,200,90,60,245,10,55,180,110,45,75,115,100,60,465,125,35,10,380,215,130,350,630,115,335,130,120,85,325,65,200,50,295,165,50,75,330,95,50,25,20,45,160,360,110,175,245,25,185,330,160,145,140,40,120,110,120,70,85,180,50,115,175,615,255,365,115,560,80,215,310,85,250,340,55,50,105,135,150,505,270 -1234,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Brazil,"1,910",0,15,15,20,0,10,30,45,0,0,10,10,0,0,0,50,0,0,45,0,20,10,0,40,10,0,0,25,0,10,25,20,55,20,50,35,10,0,10,15,10,10,10,15,30,0,0,0,45,10,0,0,0,0,0,15,10,0,40,10,65,0,15,35,0,0,0,15,0,10,45,10,0,0,10,20,0,40,0,10,60,0,10,55,10,0,25,20,0,20,0,25,0,0,10,0,10,10,0,0,0,0,85,0,25,0,0,0,0,30,20,0,0,20,0,25,0,0,0,10,0,0,65,10,0,0,45,10,10,40,20,55,0,0,0,25,20,0,0,30 -1235,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Colombia,"1,430",0,0,0,0,10,35,25,15,0,0,10,0,15,15,0,40,0,15,35,0,0,0,0,20,10,10,0,35,20,0,0,0,30,30,10,0,35,20,10,0,0,10,0,10,0,30,0,0,20,0,0,0,10,20,0,35,0,0,25,10,0,0,0,0,0,0,0,10,0,0,0,10,0,10,30,0,0,35,0,0,0,20,0,50,0,40,0,25,0,15,0,25,35,15,0,100,0,0,0,0,0,10,0,10,15,0,10,0,0,10,0,20,0,0,0,10,0,0,60,10,0,10,35,0,10,0,15,0,45,0,10,10,15,0,0,15,10,10,20,20 -1236,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Cuba,770,10,0,0,10,0,0,20,0,0,10,0,0,0,10,0,15,0,0,15,10,10,0,10,0,0,25,0,15,0,0,10,0,35,0,0,0,10,20,0,20,0,0,0,0,10,0,10,0,0,20,10,0,0,10,20,15,0,0,10,0,10,0,0,15,0,0,0,0,0,0,10,0,25,25,20,10,0,0,10,0,0,0,0,10,10,10,10,10,0,10,0,20,10,0,0,40,0,0,0,0,0,0,0,0,0,10,0,10,20,20,0,10,0,10,0,0,0,0,0,0,0,20,15,0,10,10,25,15,10,0,0,20,20,0,0,0,0,0,0,10 -1237,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Jamaica,"3,530",10,25,0,10,15,0,10,0,0,0,45,45,10,95,15,30,10,0,100,0,30,0,0,10,20,20,0,0,0,15,20,95,10,120,10,10,25,45,50,20,10,0,10,10,0,120,10,10,15,10,0,20,0,0,40,155,0,10,15,0,20,10,10,65,0,10,95,10,0,0,0,0,10,120,10,0,10,50,60,30,105,175,0,20,10,0,0,15,0,20,10,25,20,0,0,35,20,10,0,0,0,60,25,10,0,75,0,65,70,20,0,10,10,0,35,0,0,15,0,0,0,30,10,30,115,35,160,0,30,0,0,40,110,0,10,0,0,0,165,20 -1238,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Mexico,"2,065",0,0,10,0,0,20,40,10,0,10,0,10,0,10,0,30,0,25,30,10,25,0,0,45,10,10,0,30,10,25,30,0,80,75,10,0,10,0,10,10,0,10,40,20,20,45,0,10,10,65,15,10,0,0,0,20,25,0,10,15,20,0,0,0,0,0,0,15,10,10,10,15,0,20,0,10,0,100,0,20,10,25,10,60,10,10,10,35,10,25,0,30,0,10,10,20,0,0,0,0,0,20,50,0,10,0,10,10,10,35,15,15,0,25,0,25,25,0,30,10,10,10,70,10,20,10,60,0,40,80,25,10,10,0,0,0,10,15,20,0 -1239,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, United States,"4,015",25,10,0,100,40,15,105,40,20,75,20,25,35,20,35,20,35,40,20,25,20,25,0,50,0,35,10,20,20,30,30,10,55,40,30,25,10,15,0,80,0,0,35,0,10,0,30,10,25,65,10,20,25,35,0,0,25,10,50,10,0,15,20,40,10,15,10,40,25,30,50,25,20,50,10,0,10,45,20,35,10,25,50,70,10,30,10,95,45,15,10,20,0,15,20,30,10,25,10,0,25,0,10,40,85,35,10,0,40,30,60,55,10,20,10,25,45,10,70,25,85,20,150,25,20,45,20,10,20,80,15,15,40,45,10,20,55,50,50,15 -1240,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Venezuela,"1,060",0,15,0,0,0,10,0,10,10,10,0,0,0,0,0,10,0,0,0,10,10,30,0,20,15,0,0,0,0,0,0,15,10,10,25,0,10,15,0,0,0,25,0,0,20,0,0,0,35,0,0,10,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,10,0,0,10,10,0,10,10,0,0,60,0,20,10,0,10,20,0,0,0,55,10,40,0,10,0,0,0,10,0,20,0,0,10,0,30,0,10,0,0,0,0,20,25,0,0,10,0,0,10,0,0,0,0,0,95,0,0,0,0,0,20,60,0,0,10,0,0,10,20,15,0,10 -1241,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Americas,"8,390",25,35,30,10,10,15,50,45,35,25,100,60,10,345,15,80,0,15,300,35,75,10,10,40,45,0,20,85,10,10,35,105,45,420,30,15,10,110,65,35,20,20,10,20,20,475,35,10,10,40,30,15,30,25,110,230,35,50,80,25,80,60,10,105,0,15,40,20,0,0,10,25,10,205,40,0,10,65,105,10,150,320,15,90,100,35,20,65,0,45,25,135,85,10,10,85,50,10,20,0,15,65,125,25,10,125,10,100,120,40,10,40,30,25,40,30,0,35,0,0,15,45,170,95,175,20,245,30,50,50,15,90,135,20,30,25,25,20,265,130 -1242,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Europe,"20,260",20,35,45,285,200,265,160,105,45,145,60,60,95,120,35,110,120,190,80,110,185,65,20,385,90,95,30,205,70,95,305,30,350,170,170,85,225,85,20,105,145,305,415,170,105,10,40,0,110,405,190,10,40,120,30,45,120,55,745,125,260,20,125,125,0,95,50,125,100,105,65,220,115,45,45,180,0,515,30,135,120,95,80,430,100,120,415,365,60,130,35,210,290,75,120,195,50,105,25,135,65,35,140,125,155,45,40,25,70,205,155,105,10,520,45,145,210,50,300,105,45,125,915,130,55,750,210,140,125,350,140,100,105,85,25,90,115,135,120,120 -1243,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, France,"1,145",0,0,0,40,0,0,0,10,0,0,0,20,0,0,20,10,25,0,0,30,10,0,0,55,0,0,10,15,0,10,0,0,30,10,20,10,0,10,0,0,0,0,0,15,10,0,0,0,0,20,0,0,15,0,0,0,20,10,30,0,0,0,30,0,0,10,0,0,0,10,0,30,10,0,0,0,0,0,0,15,10,0,10,55,0,0,10,25,10,35,0,10,0,0,20,0,0,0,0,0,15,10,10,10,10,15,0,10,0,20,10,15,0,0,0,0,15,0,0,35,20,10,100,10,0,0,10,10,20,10,15,0,10,25,0,0,10,10,10,0 -1244,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Germany,625,0,0,0,10,0,20,10,0,0,0,0,0,0,0,0,0,15,0,0,10,0,0,10,20,0,10,10,10,0,0,0,10,10,0,0,10,0,15,0,0,0,0,10,10,10,0,0,0,10,10,10,0,0,10,0,10,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,10,0,40,0,0,0,30,10,0,10,10,10,0,0,0,0,10,0,0,0,0,0,35,10,0,0,0,15,0,0,25,0,0,0,0,25,0,10,0,0,0,55,0,0,0,0,0,0,35,10,0,0,0,0,10,0,0,0,0 -1245,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Ireland,"1,220",0,0,0,55,0,0,25,0,0,10,15,0,20,0,0,10,0,0,0,0,0,10,0,40,20,0,0,10,10,0,10,0,15,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,50,30,0,0,0,0,0,10,0,35,0,0,0,25,0,0,10,0,0,20,0,0,35,0,0,10,0,0,20,0,10,0,0,0,70,10,20,0,55,30,10,0,0,0,20,25,10,0,10,0,0,0,0,0,0,10,0,0,0,0,20,45,0,0,0,0,0,40,0,10,0,10,0,185,0,0,0,10,10,0,0,0,0,0,10,0,20,20,30,0,0 -1246,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Moldova,405,0,0,0,0,20,15,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,10,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,70,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,15,0,0,0,0,0,10,0,0,0,125,0,0,0,10,0,0,0,0,0,0,0,0,10,0 -1247,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Romania,860,0,0,0,0,30,15,0,20,15,0,0,0,15,10,0,10,0,0,0,0,0,0,0,10,15,0,0,0,0,0,65,0,0,0,20,25,10,0,0,20,0,0,20,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,30,0,0,10,0,10,0,0,0,25,0,10,0,0,0,0,0,10,0,0,0,10,0,0,15,55,0,0,30,0,0,10,0,0,0,0,0,50,0,0,0,25,0,10,0,0,0,0,0,0,10,0,0,35,0,25,0,35,0,20,10,0,0,0,25,10,0,40,0,0,10,10,0,0,10,0,0,0,0,0,10,0 -1248,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Russian Federation,"2,290",0,0,0,30,0,105,10,20,0,15,0,0,10,0,0,20,40,10,10,30,0,0,10,50,0,20,0,0,0,0,30,0,0,10,0,0,20,0,0,20,0,20,10,40,10,0,0,0,40,105,0,0,10,25,0,0,10,0,60,20,0,0,30,0,0,20,10,50,15,20,10,10,25,10,0,0,0,70,0,40,0,0,0,95,10,10,110,25,0,25,0,0,10,0,0,25,0,0,10,0,10,0,10,0,20,0,0,0,10,0,10,0,0,25,10,20,20,10,35,0,0,10,70,0,0,280,0,0,10,140,50,0,10,0,0,10,0,25,20,0 -1249,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Ukraine,"1,930",0,0,25,10,0,65,15,10,15,10,0,0,15,0,0,0,0,0,0,0,0,0,0,20,0,10,0,0,0,10,45,0,10,10,10,0,80,0,0,20,20,85,10,30,0,0,0,0,15,0,35,0,0,25,15,0,20,0,210,0,0,0,0,0,0,10,10,40,0,25,0,10,30,0,0,45,0,115,0,0,10,0,0,20,10,40,120,0,0,10,10,15,0,0,0,0,0,0,0,15,0,0,0,10,0,0,0,0,10,0,0,0,0,195,0,0,30,0,0,0,0,10,60,0,0,150,0,0,0,35,20,10,0,0,0,0,0,0,10,0 -1250,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, United Kingdom,"2,120",0,10,0,55,30,0,35,10,0,10,0,15,40,0,0,0,20,10,0,10,0,25,10,35,20,0,0,20,10,10,40,0,40,0,25,15,0,0,0,30,20,0,0,10,20,0,35,0,15,65,20,0,0,0,0,10,10,0,30,30,25,10,30,10,0,20,10,10,25,10,30,15,20,0,0,0,0,40,0,35,0,0,20,60,20,20,10,125,10,0,0,10,0,0,20,20,0,35,0,10,15,0,0,0,55,0,0,0,10,35,50,0,0,45,0,10,55,10,30,10,15,10,150,10,10,10,10,10,0,20,0,0,10,30,0,10,15,20,0,10 -1251,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Europe,"9,680",0,15,10,85,145,40,60,40,10,85,45,40,10,100,10,75,30,170,85,30,160,35,0,145,35,40,15,155,60,70,85,25,215,145,105,10,90,25,20,35,100,180,385,65,70,0,0,0,35,110,85,0,10,55,20,25,50,40,330,60,230,0,15,100,0,30,30,20,30,15,20,125,40,35,40,115,0,225,35,30,90,85,30,85,60,40,65,125,20,55,15,150,270,55,60,95,35,35,10,70,25,30,105,75,65,10,35,25,25,120,25,45,10,215,40,65,35,15,215,45,10,90,255,90,45,135,190,120,75,135,30,85,75,20,15,45,55,40,65,105 -1252,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Africa,"13,300",25,25,10,70,100,50,215,90,45,10,35,120,30,220,10,40,10,20,225,20,0,10,10,120,180,35,35,25,10,10,170,70,110,190,10,120,45,250,110,35,15,50,275,35,25,360,30,10,115,75,55,40,10,50,50,265,60,110,245,30,10,80,15,690,0,30,170,45,10,10,10,55,20,115,40,20,0,115,100,200,210,565,20,115,40,75,20,75,10,230,175,125,150,0,10,135,25,0,70,0,65,90,150,10,35,60,40,165,160,180,35,30,25,35,105,225,0,45,290,0,0,130,355,140,315,110,370,70,160,180,35,295,250,40,10,0,25,80,365,40 -1253,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Algeria,130,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,10,0,15,0,20,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1254,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Cameroon,555,0,0,0,0,10,0,0,30,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,10,0,0,10,0,0,10,0,0,0,40,0,0,0,0,0,0,10,10,10,0,0,0,0,0,0,10,0,0,0,0,45,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,30,0,0,0,0,10,0,0,10,0,0,20,0,0,15,0,0,40,0,0,10,0,0,0,0,0,0,10,0,0,0,0,10,0,40,0,0,0,0,0,45,10,0,0,0,20,0,35,0,0,25,0,0,0,0,0,0,25,0 -1255,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Congo; Democratic Republic of the,330,0,0,0,0,0,10,0,0,0,0,0,10,0,10,10,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,10,0,0,0,0,0,15,0,0,0,0,20,0,0,0,0,10,0,0,0,10,0,0,0,10,0,10,20,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,40,0,0,0,0,0,0,0,0,10,0,10,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,10,20,10,10,0,0,10,0,0,0,0,15,0,0,0,0,0,0,0 -1256,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Cte d'Ivoire,170,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,15,0,0,0,15,0,10,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,15,0,0,0,20,0,40,0,0,0,0,0,0,0,0 -1257,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Egypt,"1,350",0,10,0,35,50,30,90,40,15,10,0,0,10,0,0,0,0,10,0,15,0,0,0,10,0,10,0,0,0,0,95,0,0,0,0,10,0,10,10,0,0,0,0,10,0,0,0,0,60,0,15,10,0,10,0,0,0,10,30,10,0,10,0,0,0,0,60,25,0,0,0,0,0,0,0,0,0,25,0,10,0,10,0,20,0,10,10,10,0,10,0,20,0,0,0,20,0,0,20,0,20,0,20,0,0,0,0,0,0,0,0,20,10,0,35,10,0,0,30,0,0,20,50,0,0,25,0,0,10,115,20,0,25,15,0,0,0,45,0,0 -1258,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Eritrea,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,10,75,0,0,0,0,0,25,0,0,0,0,0,10,0,25,10,0,15,0,10,0,20,0,0,30,0,0,10,0,0,0,10,0,0,0,0,0,55,20,40,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,20,0,0,0,20,10,0,0,25,0,0,0,0,0,10,60,50,20,0,0,0,0,0,0,0,0,0,75,10,0,15,10,0,15,40,10,0,0,0,0,20,0,0,30,0,0,10,0,0,30,0,10,15,15,0,0,25,10,0,0,0,0,0,35,0 -1259,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Ethiopia,"1,560",0,0,0,10,10,10,10,0,0,0,0,10,10,0,0,0,0,0,10,0,0,0,0,10,100,10,0,10,0,0,0,10,50,10,0,20,10,100,10,10,0,0,50,10,0,0,10,0,10,15,0,0,0,10,0,0,0,25,20,10,0,30,10,20,0,0,35,0,0,0,0,0,0,40,0,0,0,10,25,60,15,15,0,20,10,0,0,0,0,65,50,30,20,0,10,0,0,0,10,0,10,0,10,0,10,0,0,30,45,90,0,0,0,0,0,70,0,0,55,0,0,0,25,25,0,0,45,15,20,0,0,0,15,10,0,0,0,15,0,15 -1260,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Morocco,215,0,0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,30,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,10,10,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,10,0,0,15,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0 -1261,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Nigeria,"2,550",0,0,0,0,10,0,30,10,0,0,15,0,10,100,0,0,10,0,20,0,0,0,10,20,15,0,10,0,0,0,20,20,10,90,0,0,10,10,55,0,0,35,15,0,0,210,0,0,15,10,30,20,0,0,20,130,10,0,40,0,0,0,0,125,0,0,0,0,0,0,0,10,0,0,40,0,0,30,65,20,75,245,0,0,25,0,10,10,0,0,10,10,10,0,0,0,0,0,0,0,0,25,15,0,0,0,0,10,30,0,0,0,0,0,0,30,0,10,0,0,0,0,90,15,125,25,95,0,10,10,10,150,90,10,0,0,0,0,165,10 -1262,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Somalia,"1,010",0,0,0,0,0,0,0,0,0,0,0,10,0,40,0,0,0,0,40,0,0,0,0,20,0,0,10,0,0,0,0,0,0,10,0,0,0,0,35,0,0,0,30,0,0,20,0,0,0,0,0,0,0,10,0,10,0,0,35,0,0,20,0,325,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,20,40,0,0,0,0,0,0,0,10,0,0,0,0,0,15,0,0,0,0,0,40,10,0,0,0,0,55,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,30,0,105,0,0,0,0,25,0,0,0,0,0,0,10,0 -1263,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, South Africa; Republic of,395,0,0,0,0,0,0,0,10,0,0,0,20,0,0,0,20,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,20,0,0,0,10,0,10,0,10,0,0,0,10,0,15,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,10,0,0,10,0,0,0,20,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,20,0,0,0,0,0,0,10,10,0,0,0,10,0,0,0,20,0,0,0,0,0,0,35,0,0,35,0,0,0,10,0,0,0 -1264,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Tunisia,80,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,10,0,0,10,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1265,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Africa,"3,985",25,10,0,0,20,10,70,10,20,10,20,75,20,70,0,10,0,0,40,10,0,10,0,55,15,0,0,20,10,10,25,30,30,55,10,30,35,45,15,10,15,10,75,20,0,95,10,0,45,10,10,10,0,20,25,60,30,10,30,10,10,10,10,180,0,30,65,0,10,0,0,25,0,55,0,0,0,40,25,50,65,170,15,40,10,30,10,40,0,80,55,30,70,0,0,30,10,0,10,0,20,35,25,10,20,45,10,75,45,50,10,0,0,0,45,50,10,10,130,0,0,50,140,75,115,40,100,35,70,20,0,35,70,10,10,10,10,20,120,10 -1266,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Asia,"129,690","2,075","1,565",90,465,"1,070","1,065","1,605","2,150",910,970,85,"1,615",260,"1,195",80,"1,000",145,365,605,125,315,135,160,"1,185","1,450","1,105",470,105,65,210,"3,165","1,605",510,"2,070",135,730,150,"1,695",265,"1,705",145,370,"1,965",855,240,765,190,100,"2,540",520,175,215,"1,020",80,645,740,470,"1,250","1,520",115,230,980,625,770,55,60,"3,560","1,180",180,270,160,105,185,"2,100",740,60,"2,155",875,860,445,225,"3,440",425,"1,690",215,"1,560","3,125",605,50,"1,960","1,505",830,640,190,115,"2,120",185,60,"1,200",110,375,335,400,240,360,"1,235",65,140,"1,060","1,105",425,"1,120","1,730",330,"2,150","2,020",100,545,"3,130",290,150,"1,280","2,800",930,"1,715","3,450",310,70,"1,455","6,530","1,420",550,"4,235",75,45,120,330,300,"1,860",425 -1267,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Afghanistan,"3,170",10,10,0,0,0,15,0,0,0,0,0,60,0,0,0,0,0,25,10,0,0,0,10,0,45,0,0,0,10,0,150,75,10,25,0,0,10,155,40,0,0,10,305,25,0,50,0,10,115,0,0,0,20,0,10,0,0,30,0,0,0,10,0,65,0,0,30,0,0,0,0,0,0,40,0,0,0,10,20,10,0,85,0,0,0,20,20,0,0,10,110,0,85,0,0,55,0,0,30,0,10,25,25,0,0,40,0,0,95,10,0,0,0,0,15,60,0,20,620,0,0,40,0,25,25,25,15,0,15,0,0,15,185,0,0,0,0,0,20,0 -1268,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Bangladesh,"5,790",0,30,0,25,0,0,30,10,0,10,0,110,35,0,0,0,0,10,0,0,0,0,25,20,435,15,175,0,0,0,95,115,30,0,30,225,0,80,30,0,20,0,140,0,0,0,20,0,80,0,0,0,0,0,35,0,0,100,45,0,0,215,10,65,0,0,15,15,0,0,10,0,15,120,0,0,0,15,60,40,15,30,10,30,0,30,15,10,10,45,920,0,85,0,0,150,0,0,20,0,70,30,10,0,10,45,0,0,220,0,20,15,0,0,50,890,0,0,110,0,0,20,20,135,0,0,20,0,35,35,10,0,135,0,0,0,0,10,15,0 -1269,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Japan,740,0,10,0,30,0,0,30,10,0,20,0,0,10,0,10,10,0,10,0,0,0,20,0,10,0,10,0,0,0,0,0,0,20,0,0,10,0,10,0,10,0,0,20,0,0,0,0,10,0,10,25,10,10,0,0,0,20,0,15,0,0,0,15,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,45,0,10,0,10,10,20,10,0,0,0,0,0,0,0,10,0,0,0,10,0,10,0,10,0,0,20,10,20,0,0,10,20,0,0,0,0,15,0,55,0,10,0,10,10,0,35,0,0,0,0,10,0,0,10,0,0 -1270,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, China,"23,200","1,440",970,0,80,400,50,680,510,370,110,0,410,10,0,25,25,80,30,10,10,10,25,0,215,130,0,60,0,25,30,770,155,115,40,35,70,15,50,10,20,30,10,40,25,70,0,60,0,385,30,35,20,630,0,0,0,0,25,150,35,0,20,375,0,10,15,"1,555",120,35,35,10,35,40,220,20,10,"1,930",115,20,60,10,0,55,145,25,355,225,150,15,75,55,75,20,30,55,240,10,15,575,60,80,0,25,50,90,80,0,0,45,135,235,465,"1,485",0,620,25,25,0,10,210,35,40,830,20,0,65,0,0,145,"2,135",375,20,270,35,15,30,50,50,75,60 -1271,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Hong Kong,640,20,10,0,0,10,0,0,20,25,0,0,20,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,10,15,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,10,0,0,0,0,0,0,0,30,0,0,10,10,0,10,0,0,0,10,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,20,20,0,25,10,0,0,10,0,0,0,20,0,0,0,0,10,0,75,0,0,10,0,0,0,0,0,0,0 -1272,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, India,"20,095",185,235,50,55,135,75,215,165,20,10,0,305,30,30,20,15,15,70,50,30,15,20,10,370,145,55,75,20,10,40,240,340,70,65,0,65,10,380,30,15,35,45,305,15,10,95,50,0,685,145,30,50,100,10,125,80,0,320,400,20,40,150,35,110,0,10,290,175,25,35,10,40,0,485,105,0,25,360,285,100,0,"1,110",50,415,65,50,50,150,10,440,170,10,60,0,10,210,25,15,75,25,45,60,20,95,50,235,10,10,220,410,55,40,40,110,350,425,0,235,375,10,30,95,765,115,"1,285",55,10,10,185,550,125,195,"2,130",20,0,0,60,65,235,50 -1273,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Iran,"10,935",0,20,0,50,140,65,160,"1,005",310,85,0,0,10,10,10,15,10,45,10,10,10,25,0,170,30,65,10,35,0,10,550,0,0,25,0,10,15,10,0,35,0,0,60,20,35,0,0,0,390,35,20,0,40,0,0,0,10,10,40,0,0,10,25,10,0,10,55,335,30,30,30,0,0,0,0,20,10,95,10,50,0,10,80,480,0,635,645,40,0,125,30,10,10,20,10,205,0,0,100,0,10,0,0,10,75,0,15,0,25,20,0,210,10,10,20,15,15,0,10,20,20,35,320,0,0,190,0,10,10,"2,500",505,0,30,0,0,10,75,90,35,0 -1274,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Iraq,"3,715",15,30,0,0,10,10,20,20,0,0,0,0,0,605,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,60,10,0,30,0,0,0,0,10,0,10,10,10,0,0,100,0,0,145,20,0,0,0,0,105,40,10,10,35,0,0,0,10,0,0,0,100,0,0,0,0,0,0,0,0,0,0,10,0,0,0,"1,560",0,0,0,0,0,20,0,10,0,0,0,0,20,10,0,0,30,0,0,35,0,0,0,0,0,10,0,15,0,0,0,0,95,0,0,100,0,10,0,120,40,0,60,10,0,0,15,10,0,25,10,0,0,0,0,0,50,0 -1275,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Israel,585,0,0,0,25,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,10,0,0,0,0,0,0,0,0,55,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,20,0,0,0,10,10,0,0,0,0,0,10,0,20,0,10,10,0,0,0,25,10,0,0,0,10,0,0,20,0,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,105,0,0,10,10,20,0,0,0,0,0,10,0,0,0 -1276,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Korea; South,"2,930",10,0,0,25,20,0,75,125,40,10,0,10,10,0,10,10,0,0,0,0,0,0,0,50,0,10,0,10,0,0,85,0,10,10,20,10,0,0,20,15,40,10,10,25,10,0,0,0,25,25,0,0,50,10,0,0,10,0,130,0,0,0,10,0,0,10,10,70,0,0,0,10,0,0,0,15,0,30,0,30,0,0,45,150,0,120,125,40,0,35,0,0,25,0,0,20,0,0,55,15,0,0,0,0,15,0,0,0,0,10,15,85,10,0,10,25,0,0,0,0,10,0,70,0,0,105,0,0,0,480,200,20,0,0,0,10,10,40,20,0 -1277,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Lebanon,615,0,0,15,0,10,10,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,25,35,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,0,20,10,0,0,10,0,0,0,10,10,20,0,0,0,0,0,0,0,20,10,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,15,0,10,0,0,0,10,0,10,10,0,0,20,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,10,0,0,10,0,0,10,55,0,0,10,0,10,45,50,10,0,10,0,0,0,10,0,0,0 -1278,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Nepal,"1,575",0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,10,0,0,0,0,10,45,10,10,0,0,10,0,10,10,0,0,0,0,100,0,0,0,0,10,0,0,0,20,0,10,10,0,0,0,0,10,0,0,65,25,0,0,25,0,0,0,0,15,0,0,0,0,0,10,0,0,0,0,25,0,0,0,0,0,10,25,0,0,10,0,390,20,0,0,0,0,0,0,0,0,0,10,15,40,20,0,0,0,0,30,210,0,0,0,10,0,170,0,0,15,0,10,10,10,50,10,20,0,0,0,0,0,15,15,0,0,0,0,0,10,10 -1279,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Pakistan,"6,725",50,35,0,30,90,10,120,0,0,0,0,90,25,20,0,0,10,0,35,0,0,0,0,40,140,0,25,0,10,45,90,95,20,20,10,110,0,30,10,0,10,35,355,0,0,10,25,0,95,35,0,15,10,0,250,290,0,35,40,0,0,50,10,195,0,0,125,0,0,25,0,0,0,215,0,0,10,10,55,20,0,160,0,45,0,40,15,20,0,60,45,10,45,0,0,80,15,10,10,10,20,30,35,0,10,65,15,0,75,10,0,25,0,10,90,190,0,85,"1,235",0,0,170,130,90,70,10,0,0,35,100,20,120,305,0,0,0,0,0,175,0 -1280,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Philippines,"31,725",95,105,15,10,205,675,25,105,45,680,90,335,110,250,10,885,20,155,355,40,250,10,75,95,435,885,90,45,0,55,615,505,80,"1,530",0,195,60,510,105,"1,460",20,165,425,625,95,245,0,55,300,90,25,45,35,35,80,220,380,420,340,50,160,405,45,210,25,10,595,355,30,85,50,15,85,485,555,20,45,100,165,35,175,205,110,175,65,240,"1,740",40,10,610,110,595,240,50,10,560,60,10,150,0,90,115,160,30,35,235,20,100,215,190,20,100,90,50,495,65,10,35,310,10,30,300,80,355,115,"2,385",150,20,510,130,35,40,520,35,20,65,40,30,870,255 -1281,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Saudi Arabia,865,0,0,0,0,10,0,25,10,0,20,0,20,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,15,0,20,0,20,0,0,0,0,25,10,0,0,0,0,10,0,10,0,10,0,0,0,0,20,10,0,0,0,0,0,0,0,0,15,0,0,0,0,0,20,10,0,0,10,20,20,0,0,0,35,0,0,0,0,0,0,0,25,15,0,0,30,0,0,0,0,0,0,0,30,20,0,0,0,10,0,0,10,0,0,20,0,0,0,120,0,0,0,60,0,10,35,0,10,10,25,10,10,0,0,0,0,0,0,20,0 -1282,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Sri Lanka,"4,355",200,55,0,10,10,0,10,30,20,0,0,170,0,85,0,10,0,0,15,0,0,0,25,0,25,0,10,0,0,0,10,170,15,0,0,0,0,240,0,0,0,0,60,10,0,45,0,15,20,0,0,65,25,0,0,25,10,115,0,0,0,100,0,25,0,0,185,0,0,10,0,0,0,425,20,0,45,0,190,10,0,105,0,10,0,0,0,10,0,15,10,10,20,0,0,45,10,0,0,10,25,10,10,0,0,400,0,0,55,15,0,10,10,0,115,0,0,10,60,0,0,25,30,60,55,0,15,0,100,0,0,40,475,0,0,0,0,0,100,10 -1283,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Syria,"3,260",0,25,0,0,10,15,10,10,30,0,0,0,0,45,0,0,0,10,0,0,0,15,0,0,0,0,0,0,0,0,215,35,0,0,0,30,10,0,0,0,10,0,25,20,0,0,0,0,50,30,0,0,0,0,0,10,0,35,90,0,0,0,0,30,0,0,370,10,0,0,0,0,10,30,0,0,0,15,40,40,0,130,0,15,0,0,0,10,0,20,0,0,35,0,0,375,20,0,90,0,0,0,0,0,0,85,0,0,45,10,0,0,20,0,155,30,0,40,155,0,0,345,20,10,10,0,40,0,260,35,0,0,45,0,0,0,0,0,10,0 -1284,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Taiwan,325,10,0,0,0,0,0,35,0,10,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,10,0,15,0,0,0,0,10,0,0,20,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,0,50,10,0,20,0,0,0,10,0,0,0 -1285,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Turkey,"1,675",0,0,0,35,30,10,60,20,0,25,0,0,0,10,0,0,15,0,0,0,25,0,0,30,10,0,0,0,0,0,20,10,15,170,0,10,20,10,10,20,0,30,10,55,10,0,10,0,0,20,0,0,0,0,15,10,0,0,10,0,0,0,10,0,0,0,10,0,40,35,0,0,0,0,10,0,0,30,0,0,0,20,30,65,25,0,10,10,0,30,0,20,0,0,0,50,10,10,0,0,0,0,10,0,35,0,0,0,0,15,0,10,0,0,10,45,0,10,35,0,10,0,70,10,0,15,10,0,40,20,40,0,0,0,0,0,20,0,90,0 -1286,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, United Arab Emirates,940,25,0,0,0,0,0,15,20,0,10,0,15,10,0,0,0,0,0,0,0,0,0,0,15,0,0,10,0,0,0,10,10,0,0,0,0,0,10,0,0,0,0,60,0,0,0,0,0,55,0,0,0,0,0,0,0,0,15,25,0,0,0,0,20,0,10,25,0,0,0,0,0,0,25,0,0,0,10,0,10,0,15,0,0,0,0,10,25,0,10,0,0,0,0,0,30,0,0,10,0,0,0,10,0,10,0,0,0,10,10,0,0,10,10,20,0,0,15,20,0,0,10,35,0,10,10,0,0,10,80,10,30,55,0,0,0,0,10,10,0 -1287,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Viet Nam,"1,380",0,20,0,0,0,0,0,10,0,0,0,0,0,85,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,10,0,55,95,0,0,0,20,0,15,0,0,30,0,0,150,0,10,0,20,10,0,0,0,10,50,10,0,20,0,0,0,0,10,0,0,10,0,0,0,10,10,10,0,15,0,40,10,0,0,20,0,10,10,0,20,15,0,10,0,0,15,0,10,0,0,40,0,0,0,20,20,55,0,0,20,0,10,0,25,10,0,0,35,15,0,0,0,0,0,0,0,20,0,20,0,30,0,0,0,0,0,25,10,0,10,0,0,40,25 -1288,Immigration and citizenship,Generation status,Census Profile 98-316-X2016001, Third generation or more,"574,025","1,075","1,335","4,295","10,675","5,525","2,565","4,325","2,510","1,535","8,520",680,"4,080","9,425","1,320","2,785","1,680","3,290","2,980","1,735","4,285","1,245","4,345","4,180","9,375","5,565","3,330","5,575","3,085","3,650","6,070","2,050","2,735","9,125","3,755","3,155","8,885","4,345","2,815","1,375","3,580","4,735","2,120","1,200","3,830","4,320","1,490","5,525","3,605","1,305","7,135","8,705","1,420","1,130","1,930",890,"1,050","5,125","1,865","9,580","4,820",970,"2,815","4,050","2,860","4,240","2,960","3,270","3,930","6,615","7,390","8,305","4,725","3,620","2,880","1,200","3,300",560,"9,865","2,485","6,170","1,430","1,185","6,800","8,855","3,875","1,345","2,030","10,275","4,980","3,335","2,060","4,145","5,925","3,260","4,880","7,130","1,775","3,570","1,525","3,745","2,100","2,200","3,530","5,340","8,950","5,085","4,325",905,"2,530","5,745","10,085","3,455",665,"8,090","2,755","2,595","10,165","1,220","1,460","4,950","2,165","3,130","18,820","5,570","2,685","1,910","2,935","1,800","5,350","4,290","2,395","4,615","6,360","5,535","3,200","4,315","4,790","5,000","2,410","1,690" -1289,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth in Asia,"4,460",30,20,0,40,20,70,70,55,50,0,0,40,0,50,15,10,0,20,0,20,10,0,0,100,10,10,20,0,0,20,165,40,35,40,0,20,10,60,0,45,15,30,60,20,0,60,10,0,155,30,0,10,45,20,20,0,10,55,150,10,0,10,25,20,0,10,75,40,10,0,20,0,10,10,0,0,35,35,10,20,10,10,15,70,0,25,175,50,0,40,0,30,0,65,0,80,0,0,45,10,0,0,10,0,0,25,0,10,20,20,35,75,10,100,20,15,30,10,45,10,0,30,170,65,30,405,15,0,10,200,70,0,40,0,0,0,35,35,60,0 -1290,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Oceania and other,850,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,15,10,0,25,0,0,10,30,0,10,0,0,0,0,0,0,0,0,0,0,20,0,0,0,30,20,0,0,0,0,0,0,0,0,10,0,0,0,0,45,0,0,0,0,15,10,20,0,10,0,0,0,10,10,35,0,0,0,10,0,0,0,40,20,10,0,10,0,0,15,0,10,0,0,10,0,0,10,20,10,0,10,0,0,40,35,0,0,10,20,0,0,0,0,10,10,0,60,0,0,0,0,10,10,20,10,0,0,10,0,0,0,10,10,10 -1291,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Australia,665,0,0,0,30,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,15,10,0,30,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,10,0,0,0,0,0,10,10,0,0,0,0,10,0,45,0,0,10,10,25,10,10,0,0,0,0,0,0,10,30,0,0,0,10,0,0,0,45,20,10,0,0,0,0,10,10,10,10,0,20,0,0,10,20,10,0,10,0,10,35,20,0,0,0,0,0,10,0,0,0,0,0,45,0,0,0,0,0,0,20,10,0,0,10,0,0,0,10,0,0 -1292,Immigration and citizenship,Recent immigrants by selected place of birth,Census Profile 98-316-X2016001, Other places of birth,185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,25,0,0,0,20,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0 -1293,Immigration and citizenship,Generation status,Census Profile 98-316-X2016001,Total - Generation status for the population in private households - 25% sample data,"2,691,665","28,810","23,475","12,030","28,645","26,995","15,575","25,605","21,140","12,660","23,110","6,370","29,095","21,685","21,555","7,685","14,215","9,185","11,325","17,710","10,985","9,905","10,880","13,340","30,300","26,295","16,425","15,805","14,100","9,595","17,085","26,830","24,375","36,205","35,010","11,705","21,010","15,190","22,255","9,445","21,885","18,530","11,470","21,915","12,665","10,605","30,205","14,380","9,650","15,705","21,810","23,345","12,470","16,910","10,110","12,415","15,530","14,230","13,610","43,235","14,085","11,045","17,105","17,460","21,980","9,165","7,980","43,500","16,070","14,560","15,115","16,645","15,060","10,060","43,770","9,860","10,450","26,060","33,320","17,145","18,465","13,260","32,830","16,760","28,920","11,290","15,535","23,630","30,440","11,675","18,345","13,605","20,965","18,500","9,205","13,770","34,720","10,710","7,640","15,805","11,040","10,675","10,360","22,245","14,875","20,610","46,070","10,065","9,745","16,440","20,660","27,050","17,675","24,270","24,890","27,035","15,485","21,450","10,120","20,840","16,225","6,670","17,175","65,610","26,965","32,885","26,120","17,685","11,090","27,545","50,255","16,665","22,145","53,010","12,435","7,845","13,255","11,800","12,300","27,565","14,030" -1294,Immigration and citizenship,Generation status,Census Profile 98-316-X2016001, First generation,"1,377,465","21,040","16,430","4,105","10,045","13,840","8,505","15,910","13,965","7,975","7,610","3,700","17,570","6,370","13,485","2,565","9,010","3,440","5,155","10,210","4,140","5,675","3,365","5,085","13,920","13,760","8,095","6,055","6,590","3,155","5,915","19,250","15,150","15,950","20,570","5,020","6,360","6,235","13,590","4,880","10,735","8,400","6,095","15,010","5,515","3,215","18,630","4,800","3,240","11,595","8,675","7,330","7,295","12,000","4,800","7,595","9,855","5,280","8,400","21,025","4,830","6,615","9,800","9,060","11,975","2,155","2,560","29,920","8,195","3,665","3,670","3,680","5,540","3,730","27,995","5,550","4,000","19,325","14,580","9,990","7,415","7,760","22,555","5,040","13,215","4,370","11,120","17,240","10,525","3,195","11,035","7,985","10,845","7,415","3,150","4,750","18,245","5,050","2,020","10,610","3,560","5,360","5,125","11,565","4,955","6,510","26,270","2,615","5,290","9,450","9,775","9,045","9,460","18,520","9,135","17,855","9,520","4,855","5,665","14,355","6,570","2,740","9,555","29,120","13,780","20,690","19,155","9,270","5,715","14,470","36,425","10,735","10,460","32,515","3,290","2,390","4,870","3,945","4,140","17,475","7,710" -1295,Immigration and citizenship,Generation status,Census Profile 98-316-X2016001, Second generation,"740,175","6,705","5,705","3,630","7,925","7,640","4,510","5,365","4,660","3,145","6,985","1,990","7,450","5,885","6,760","2,335","3,515","2,455","3,195","5,760","2,570","3,000","3,170","4,075","7,015","6,970","4,995","4,165","4,420","2,805","5,100","5,535","6,495","11,140","10,655","3,535","5,775","4,615","5,835","3,200","7,575","5,390","3,250","5,705","3,325","3,055","10,085","4,060","2,805","2,805","5,995","7,320","3,765","3,775","3,365","3,930","4,630","3,815","3,335","12,620","4,420","3,445","4,485","4,340","7,145","2,775","2,460","10,315","3,935","4,285","4,050","4,655","4,785","2,705","12,905","3,110","3,145","6,180","8,870","4,675","4,875","4,065","9,095","4,920","6,855","3,040","3,075","4,370","9,625","3,510","3,990","3,555","5,970","5,165","2,820","4,130","9,340","3,885","2,055","3,670","3,740","3,220","3,035","7,125","4,575","5,150","14,705","3,125","3,560","4,445","5,130","7,900","4,775","5,080","7,675","6,415","3,370","6,420","3,235","5,015","4,705","1,775","4,480","17,670","7,610","9,530","5,070","5,490","3,575","7,730","9,535","3,535","7,065","14,140","3,600","2,255","4,075","3,070","3,145","7,695","4,625" -1296,Immigration and citizenship,Admission category and applicant type,Census Profile 98-316-X2016001,Total - Admission category and applicant type for the immigrant population in private households who landed between 1980 and 2016 - 25% sample data,"988,325","16,870","12,430","2,270","5,305","9,140","6,125","9,090","10,665","5,990","4,665","2,675","13,130","3,875","10,740","1,715","6,720","2,155","3,280","7,890","2,650","3,845","1,700","3,250","9,130","11,010","5,565","4,295","3,785","1,625","3,245","15,035","12,825","9,625","14,160","2,835","4,290","3,775","11,025","3,680","7,630","5,485","4,640","12,135","3,965","1,750","13,725","3,125","1,840","8,655","5,615","4,065","4,775","9,475","2,980","5,165","7,825","3,485","6,600","14,915","3,320","4,535","7,865","5,985","8,710",930,"1,740","23,140","5,785","2,090","2,065","1,995","3,075","2,525","22,875","3,405","2,505","15,705","9,985","7,925","5,320","6,235","19,230","3,055","9,185","3,130","8,380","13,255","7,545","1,595","8,670","6,700","6,570","4,910","1,670","2,055","13,775","3,325","1,000","7,150","2,050","4,650","3,710","7,970","2,930","3,240","20,650","1,200","3,480","7,780","7,515","6,070","7,040","14,305","5,820","13,445","7,675","2,315","4,335","12,140","3,360","1,235","7,065","20,275","10,595","15,680","16,005","6,990","3,805","10,790","27,535","7,680","6,685","25,930","1,970","1,430","2,400","2,190","2,360","12,565","4,610" -1297,Immigration and citizenship,Admission category and applicant type,Census Profile 98-316-X2016001, Economic immigrants,"475,155","6,485","5,935",935,"3,500","5,715","3,595","7,090","7,855","4,285","2,835",955,"5,825","1,830","1,695",555,"3,820","1,625","1,425","2,210","1,375","1,885",940,"1,615","5,840","5,625","3,580","2,230","1,990",675,"1,405","9,370","5,795","4,080","4,830","1,310","2,085","1,795","4,320","1,025","4,315","2,995","2,215","5,210","2,625","1,070","2,420","1,230",920,"5,500","2,930","2,025","2,040","6,555","1,230","1,465","2,060","2,000","2,895","7,515","1,420","1,980","3,225","2,465","2,525",490,750,"10,305","3,955","1,350","1,425","1,225","1,410","1,115","8,445","1,655","1,330","5,290","4,955","3,435","2,200","1,895","5,010","1,875","6,110","1,080","5,885","9,135","4,525",715,"4,385","3,065","2,990","2,195",710,"1,050","7,520","1,135",510,"4,675","1,150","1,670","1,425","2,730","1,015","2,180","6,630",620,810,"3,130","2,215","2,255","5,165","6,725","2,640","6,835","4,470","1,265","1,370","5,580","1,325",710,"3,040","13,990","4,230","5,570","9,990","1,825","1,400","5,105","21,535","5,460","2,885","11,035",905,690,"1,140","1,440","1,530","5,010","1,845" -1298,Immigration and citizenship,Admission category and applicant type,Census Profile 98-316-X2016001, Principal applicants,"201,865","2,890","2,520",435,"1,470","2,460","1,565","1,885","2,980","1,635","1,330",475,"2,275",800,925,240,"1,900",570,740,"1,025",740,970,445,630,"2,420","2,320","1,795",875,840,340,650,"3,875","2,590","1,825","2,430",640,"1,080",745,"1,995",490,"2,200","1,145",865,"2,340","1,205",550,"1,205",575,355,"2,015","1,420",900,775,"2,585",530,640,985,"1,025","1,350","3,135",715,945,"1,460",975,"1,135",230,355,"4,375","1,725",520,555,510,525,550,"3,590",750,530,"2,295","2,110","1,340","1,020",990,"2,150",860,"2,855",520,"2,245","3,635","1,715",335,"2,315","1,315","1,445",970,405,435,"3,095",455,280,"1,910",430,680,645,"1,235",545,"1,030","2,910",235,420,"1,245","1,030","1,010","1,840","2,820","1,165","2,870","1,805",620,600,"2,235",575,275,"1,350","5,115","1,665","2,375","4,200",950,645,"2,370","7,775","2,025","1,145","4,445",455,320,615,620,700,"2,175",930 -1299,Immigration and citizenship,Admission category and applicant type,Census Profile 98-316-X2016001, Secondary applicants,"273,295","3,590","3,400",495,"2,030","3,250","2,030","5,195","4,870","2,655","1,515",480,"3,550","1,035",775,310,"1,925","1,055",690,"1,175",650,915,505,990,"3,420","3,305","1,790","1,350","1,145",330,740,"5,505","3,215","2,260","2,415",675,"1,000","1,045","2,330",540,"2,115","1,845","1,350","2,870","1,420",515,"1,215",660,565,"3,495","1,515","1,125","1,270","3,965",705,830,"1,070",975,"1,550","4,365",700,"1,035","1,760","1,485","1,380",265,390,"5,935","2,230",820,880,710,880,570,"4,870",910,795,"3,015","2,845","2,095","1,185",915,"2,870","1,010","3,265",570,"3,640","5,510","2,815",370,"2,060","1,760","1,540","1,230",310,610,"4,425",690,220,"2,770",725,990,775,"1,485",470,"1,140","3,730",380,380,"1,885","1,185","1,240","3,330","3,910","1,480","3,965","2,670",650,775,"3,355",740,440,"1,690","8,875","2,570","3,195","5,780",880,755,"2,735","13,770","3,440","1,745","6,600",445,370,525,820,845,"2,825",910 -1300,Immigration and citizenship,Admission category and applicant type,Census Profile 98-316-X2016001, Immigrants sponsored by family,"320,945","7,045","4,240",865,"1,315","2,300","1,595","1,480","1,925","1,185","1,405","1,130","4,785","1,340","4,770",750,"1,860",425,950,"3,645",860,"1,435",480,"1,145","2,110","3,610","1,505","1,305","1,195",780,"1,355","3,125","4,615","3,860","6,050","1,010","1,515","1,035","3,965","1,485","2,205","1,355","1,280","3,635",815,540,"7,315","1,320",695,"1,645","1,570","1,245","1,710","2,100",940,"2,290","3,555","1,055","2,390","4,315","1,170","1,785","2,905","2,190","3,070",310,595,"7,890","1,260",575,460,555,"1,135",840,"9,865","1,290",660,"7,110","2,875","2,835","1,460","2,785","7,450",810,"1,945","1,130","1,600","2,575","1,910",660,"2,405","1,970","2,400","1,490",610,660,"3,185","1,335",365,"1,675",580,"1,555","1,275","3,235","1,065",785,"8,635",375,"1,565","2,575","2,450","2,555","1,215","4,995","1,775","4,260","1,870",870,"1,770","3,600","1,320",350,"2,045","4,200","3,870","7,630","3,755","3,010","1,455","3,445","4,275","1,645","2,420","9,545",840,495,895,540,625,"4,470","1,910" -1301,Immigration and citizenship,Admission category and applicant type,Census Profile 98-316-X2016001, Refugees,"176,120","2,945","1,910",465,465,"1,050",875,475,740,415,385,525,"2,295",660,"4,015",380,990,85,805,"1,830",355,445,250,455,"1,040","1,630",420,725,455,145,440,"2,290","2,210","1,595","3,030",470,640,895,"2,525","1,100",985,"1,070","1,060","3,095",505,135,"3,730",495,215,"1,410","1,075",755,940,715,745,"1,370","2,105",325,"1,215","2,905",700,600,"1,580","1,230","2,980",120,365,"4,385",465,125,175,185,500,560,"4,170",430,520,"2,670","2,040","1,515","1,590","1,395","6,510",325,"1,055",860,750,"1,365","1,040",215,"1,820","1,565","1,030","1,155",320,295,"2,930",825,110,740,320,"1,340",925,"1,825",805,240,"5,090",205,995,"1,835","2,745","1,170",540,"2,025","1,365","2,010","1,200",180,"1,135","2,620",685,160,"1,905","1,930","2,275","2,250","2,050","1,965",865,"2,130","1,405",460,"1,285","4,920",195,235,330,195,170,"2,865",825 -1302,Immigration and citizenship,Admission category and applicant type,Census Profile 98-316-X2016001, Other immigrants,"16,105",395,365,10,40,80,65,40,140,115,45,65,210,65,265,35,55,10,95,200,45,85,25,30,120,140,65,35,130,10,45,245,195,95,220,40,60,65,220,65,110,75,80,195,35,10,250,65,10,90,40,40,90,105,65,40,100,105,105,170,20,180,165,105,135,10,40,555,105,40,0,30,40,10,395,35,0,625,130,140,70,155,265,55,70,45,135,170,65,10,60,95,155,75,20,65,155,30,25,60,0,75,90,180,60,40,310,0,115,230,100,105,110,555,55,340,145,10,65,320,30,20,70,155,220,215,240,185,90,110,305,125,100,425,20,10,40,15,30,230,35 -1303,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001,Total - Aboriginal identity for the population in private households - 25% sample data,"2,691,665","28,825","23,470","12,030","28,645","27,000","15,580","25,605","21,135","12,660","23,105","6,375","29,100","21,690","21,560","7,690","14,205","9,190","11,325","17,710","10,985","9,910","10,890","13,340","30,305","26,300","16,420","15,805","14,105","9,595","17,075","26,830","24,380","36,200","35,005","11,705","21,010","15,195","22,250","9,450","21,880","18,520","11,470","21,910","12,670","10,595","30,215","14,380","9,650","15,705","21,805","23,345","12,470","16,915","10,115","12,415","15,530","14,220","13,610","43,230","14,080","11,045","17,095","17,465","21,980","9,165","7,985","43,495","16,060","14,565","15,115","16,645","15,055","10,065","43,750","9,865","10,455","26,060","33,320","17,155","18,450","13,255","32,830","16,760","28,925","11,290","15,530","23,630","30,440","11,675","18,355","13,610","20,960","18,500","9,220","13,755","34,720","10,715","7,640","15,805","11,045","10,680","10,360","22,235","14,875","20,615","46,070","10,070","9,755","16,430","20,660","27,040","17,680","24,275","24,895","27,030","15,485","21,445","10,120","20,840","16,235","6,675","17,185","65,625","26,960","32,890","26,125","17,690","11,090","27,550","50,260","16,670","22,140","53,010","12,435","7,850","13,250","11,805","12,295","27,565","14,030" -1304,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Aboriginal identity,"23,065",30,70,180,255,115,60,165,55,35,50,85,140,400,195,240,135,10,150,110,220,60,95,200,395,345,60,200,140,150,250,40,225,395,245,120,450,90,230,30,90,135,110,85,90,75,145,350,80,40,210,240,65,30,35,15,90,160,120,250,215,100,310,140,65,25,115,155,60,50,70,155,250,160,245,25,60,10,370,120,370,125,205,115,225,210,45,65,300,100,195,235,255,380,125,160,330,25,80,65,60,210,115,300,190,150,255,125,45,210,470,510,50,10,155,145,225,305,50,100,125,80,240,625,605,150,50,200,170,200,105,95,85,440,280,190,180,95,95,170,70 -1305,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Single Aboriginal responses,"21,920",35,70,160,245,80,65,140,60,35,20,80,135,390,180,240,125,20,140,120,210,50,85,190,390,330,50,205,120,130,235,45,220,390,220,110,440,80,220,35,80,140,105,100,80,75,140,340,70,35,215,235,50,30,30,20,90,165,110,230,200,90,305,145,55,20,105,150,65,45,50,150,235,155,230,25,55,30,355,105,370,125,205,110,215,200,30,60,305,95,190,220,255,375,125,150,310,35,75,65,55,195,100,270,170,125,260,115,50,210,475,475,60,10,160,110,215,290,45,80,125,80,205,605,555,145,55,175,150,190,100,90,70,435,260,165,170,85,95,160,80 -1306,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian),"14,380",30,35,105,150,60,50,90,30,10,10,50,100,240,95,155,85,10,110,75,115,50,75,160,250,220,40,145,55,90,170,40,155,270,190,85,320,70,160,15,65,75,80,35,40,60,95,265,50,15,155,170,30,15,10,0,35,110,70,165,120,80,140,105,35,20,35,95,40,25,35,75,110,85,200,10,40,0,210,80,245,85,130,60,145,130,40,20,150,30,125,190,220,295,110,80,185,10,55,45,30,105,70,240,110,65,175,75,25,115,265,335,60,10,95,105,140,155,20,50,80,30,145,325,475,95,25,130,110,115,60,55,40,285,205,110,85,40,70,125,60 -1307,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Mtis,"7,265",0,15,50,65,30,20,60,20,20,10,20,40,150,70,85,40,0,35,30,90,0,10,35,155,110,10,60,50,50,65,10,60,120,35,25,120,25,55,20,20,70,20,45,40,20,40,75,20,25,60,75,20,10,20,0,40,50,45,80,85,20,160,40,25,0,75,30,15,25,30,45,130,75,40,10,0,10,140,35,120,35,70,50,80,65,10,40,135,55,60,40,30,80,15,55,110,15,25,20,20,85,35,45,55,55,55,45,25,100,185,155,0,20,55,20,65,140,25,30,45,45,70,285,100,55,30,50,40,80,50,45,40,165,65,45,75,30,20,40,10 -1308,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Multiple Aboriginal responses,500,0,0,0,0,10,0,10,0,0,0,0,20,20,30,0,0,0,0,0,0,0,0,0,10,0,0,0,15,0,0,0,10,10,15,10,10,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,15,10,20,0,10,0,0,0,10,20,10,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,20,0,10,10,10,0,0,0,0,0,20,0,0,0,10,10,10,0,15,0,0,20,10,10,0,0,20,0,10,0,0,0,0,10,25,0,0,0,0,0 -1309,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Aboriginal responses not included elsewhere,640,0,0,10,20,10,0,10,0,10,20,10,0,10,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,15,20,10,0,0,20,0,0,10,0,0,10,0,0,0,10,0,0,10,0,0,0,0,10,0,0,10,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,10,0,10,0,10,0,0,0,0,0,0,0,10,10,0,10,0,10,0,10,10,0,0,0,0,10,0,10,10,10,0,0,0,0,30,10,0,0,0,10,10,10,0,0,0,0,20,0,35,0,10,0,20,10,0,0,0,30,0,10,10,0,10,10,0 -1310,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Non-Aboriginal identity,"2,668,600","28,795","23,415","11,855","28,390","26,895","15,520","25,445","21,085","12,625","23,075","6,285","28,950","21,290","21,355","7,450","14,080","9,170","11,180","17,590","10,775","9,850","10,790","13,145","29,920","25,955","16,360","15,595","13,980","9,445","16,830","26,780","24,150","35,815","34,745","11,585","20,555","15,100","22,030","9,415","21,795","18,380","11,360","21,820","12,580","10,525","30,065","14,020","9,570","15,675","21,605","23,100","12,410","16,880","10,080","12,390","15,445","14,055","13,490","42,985","13,865","10,950","16,795","17,310","21,930","9,145","7,870","43,355","16,005","14,505","15,045","16,485","14,810","9,905","43,515","9,840","10,390","26,040","32,965","17,045","18,075","13,135","32,615","16,635","28,695","11,075","15,490","23,565","30,135","11,570","18,165","13,380","20,710","18,115","9,090","13,600","34,415","10,685","7,560","15,740","10,980","10,465","10,245","21,945","14,680","20,480","45,810","9,945","9,710","16,230","20,175","26,525","17,615","24,260","24,735","26,885","15,260","21,135","10,070","20,740","16,105","6,595","16,940","64,995","26,350","32,745","26,060","17,490","10,915","27,360","50,150","16,575","22,060","52,560","12,150","7,660","13,075","11,710","12,195","27,395","13,955" -1311,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001,Total - Population by Registered or Treaty Indian status for the population in private households - 25% sample data,"2,691,665","28,820","23,470","12,025","28,650","26,995","15,580","25,605","21,135","12,660","23,115","6,370","29,095","21,685","21,555","7,685","14,210","9,185","11,325","17,700","10,990","9,910","10,885","13,340","30,315","26,290","16,420","15,800","14,105","9,600","17,075","26,820","24,375","36,215","34,985","11,710","21,015","15,200","22,255","9,445","21,885","18,525","11,465","21,910","12,675","10,595","30,225","14,380","9,655","15,710","21,815","23,355","12,465","16,915","10,110","12,415","15,535","14,220","13,605","43,220","14,070","11,045","17,100","17,460","21,985","9,165","7,975","43,500","16,065","14,560","15,115","16,645","15,060","10,065","43,770","9,865","10,455","26,050","33,320","17,145","18,460","13,255","32,830","16,750","28,925","11,290","15,530","23,630","30,435","11,675","18,360","13,610","20,965","18,495","9,215","13,765","34,730","10,710","7,640","15,815","11,045","10,675","10,360","22,235","14,870","20,620","46,070","10,070","9,755","16,440","20,655","27,045","17,680","24,265","24,895","27,025","15,485","21,440","10,125","20,840","16,230","6,680","17,180","65,615","26,955","32,890","26,110","17,685","11,095","27,545","50,250","16,675","22,145","53,020","12,425","7,845","13,255","11,805","12,300","27,570","14,030" -1312,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Registered or Treaty Indian,"7,960",20,40,55,85,45,50,70,10,10,20,50,25,140,45,50,75,10,45,30,85,30,50,45,170,105,25,75,55,70,85,20,70,160,95,40,180,40,50,0,55,10,45,25,25,30,30,100,30,10,85,65,10,0,20,10,25,50,25,65,60,60,65,30,0,10,65,45,25,10,25,35,90,25,60,10,40,10,115,35,160,45,95,30,100,70,10,20,65,40,60,105,130,105,45,70,90,10,25,35,10,60,45,140,70,40,55,70,10,40,160,180,40,0,55,55,90,95,30,40,50,20,40,205,170,55,10,90,65,50,10,25,40,110,175,80,85,10,40,75,50 -1313,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Not a Registered or Treaty Indian,"2,683,705","28,800","23,440","11,970","28,560","26,940","15,540","25,530","21,130","12,640","23,080","6,325","29,060","21,550","21,500","7,635","14,140","9,190","11,275","17,670","10,890","9,880","10,830","13,295","30,145","26,195","16,405","15,730","14,050","9,530","16,970","26,810","24,310","36,020","34,905","11,665","20,840","15,160","22,200","9,450","21,820","18,505","11,420","21,895","12,645","10,580","30,175","14,280","9,625","15,700","21,740","23,275","12,455","16,915","10,105","12,410","15,510","14,170","13,575","43,140","14,010","10,985","17,035","17,420","21,980","9,145","7,915","43,450","16,040","14,555","15,100","16,585","14,965","10,040","43,695","9,855","10,415","26,055","33,205","17,110","18,295","13,205","32,730","16,725","28,835","11,215","15,515","23,610","30,370","11,635","18,295","13,500","20,830","18,390","9,170","13,705","34,625","10,715","7,615","15,775","11,030","10,615","10,315","22,090","14,815","20,555","46,015","9,995","9,745","16,415","20,495","26,860","17,635","24,285","24,855","26,980","15,405","21,350","10,095","20,810","16,180","6,660","17,140","65,410","26,785","32,820","26,115","17,585","11,030","27,500","50,240","16,650","22,110","52,895","12,245","7,765","13,160","11,795","12,250","27,495","13,980" -1314,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001,Total - Aboriginal ancestry for the population in private households - 25% sample data,"2,691,665","28,820","23,470","12,025","28,650","27,000","15,585","25,595","21,135","12,660","23,115","6,370","29,095","21,685","21,560","7,685","14,205","9,185","11,330","17,705","10,995","9,905","10,880","13,340","30,315","26,305","16,425","15,800","14,105","9,590","17,075","26,820","24,375","36,205","34,995","11,710","21,010","15,190","22,260","9,445","21,875","18,530","11,470","21,915","12,670","10,595","30,205","14,380","9,650","15,715","21,820","23,355","12,465","16,920","10,115","12,410","15,535","14,220","13,605","43,230","14,070","11,045","17,095","17,455","21,980","9,170","7,975","43,505","16,065","14,560","15,115","16,645","15,055","10,070","43,765","9,860","10,455","26,055","33,315","17,150","18,450","13,260","32,825","16,750","28,920","11,290","15,535","23,630","30,435","11,675","18,355","13,605","20,960","18,500","9,205","13,765","34,720","10,715","7,645","15,805","11,045","10,675","10,360","22,230","14,880","20,610","46,055","10,065","9,750","16,430","20,660","27,035","17,675","24,270","24,890","27,030","15,485","21,450","10,125","20,845","16,230","6,675","17,185","65,620","26,970","32,890","26,125","17,685","11,095","27,555","50,255","16,665","22,145","53,015","12,435","7,845","13,250","11,805","12,290","27,570","14,025" -1315,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Aboriginal ancestry (only),"4,215",20,40,40,50,10,40,40,10,0,0,30,25,80,10,45,10,0,40,40,50,10,10,20,80,70,20,45,20,15,35,0,55,55,85,25,80,20,70,0,25,20,0,20,10,0,0,70,10,0,35,0,0,0,0,0,10,40,35,50,50,20,55,55,10,0,0,0,20,0,0,30,40,25,30,0,0,0,65,10,150,45,70,15,40,35,0,0,20,20,40,50,40,20,0,10,60,10,10,20,0,30,10,85,55,20,10,25,0,25,90,110,20,0,30,20,40,45,0,25,20,15,40,145,125,30,10,30,40,45,0,10,20,85,100,45,40,0,25,30,20 -1316,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Single Aboriginal ancestry (only),"4,125",20,40,35,40,10,40,45,10,0,0,30,25,65,15,45,20,0,35,40,60,20,10,20,100,65,20,40,30,20,30,0,60,70,65,20,80,20,45,0,25,20,0,15,0,0,0,70,10,10,50,0,0,0,0,10,0,35,35,55,45,15,45,60,0,0,10,10,0,0,0,40,30,30,30,0,0,0,70,10,140,35,70,10,30,10,0,20,25,20,20,50,40,35,20,0,80,10,15,10,10,30,15,80,40,20,20,20,10,40,100,110,10,0,30,20,40,45,0,10,10,10,25,125,125,30,20,20,35,30,0,10,10,85,110,50,30,0,25,35,20 -1317,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian) single ancestry,"3,335",15,40,20,50,10,40,45,0,10,0,20,25,50,15,30,10,0,35,40,50,15,10,25,70,45,15,40,30,15,20,0,50,45,80,30,75,20,45,0,25,20,0,20,0,0,0,55,10,0,25,0,0,0,0,0,0,35,35,40,35,20,40,30,10,0,10,10,0,0,0,40,30,25,25,0,0,0,60,0,120,30,60,15,40,10,0,0,15,0,30,30,40,25,10,10,50,0,0,0,0,10,15,75,30,20,20,20,0,25,95,105,20,0,10,10,45,25,0,0,0,0,25,55,105,30,0,15,40,35,0,0,20,40,90,45,40,0,10,25,10 -1318,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Mtis single ancestry,705,0,0,0,0,0,0,0,0,0,0,0,0,10,0,20,0,0,0,0,10,0,0,0,25,10,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,10,0,10,0,10,20,10,10,20,10,0,0,0,0,0,0,10,10,0,0,0,0,10,10,0,20,10,10,0,10,0,0,10,0,10,0,10,0,0,10,0,15,10,0,10,10,20,0,0,0,0,20,0,0,15,0,10,0,0,10,0,0,20,0,0,0,10,10,55,20,0,10,0,0,0,0,0,0,40,10,10,0,0,10,0,0 -1319,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Inuit single ancestry,95,0,0,10,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1320,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Multiple Aboriginal ancestries (only),90,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1321,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian) and Mtis ancestries,65,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,10,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,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,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 -1322,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian) and Inuit ancestries,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1323,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Mtis and Inuit ancestries,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1324,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian); Mtis and Inuit ancestries,20,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,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,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,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1325,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Aboriginal and non-Aboriginal ancestries,"31,410",20,65,275,420,215,45,205,110,100,100,55,270,550,205,300,120,35,150,95,255,50,170,225,550,380,100,365,215,250,390,100,220,600,315,210,540,175,260,75,95,255,120,70,125,110,150,290,130,115,415,450,75,25,60,25,80,210,165,415,315,110,310,200,135,100,190,185,75,105,185,280,385,260,295,25,85,10,540,190,290,135,105,305,380,290,55,55,470,200,240,245,260,600,170,345,520,95,130,80,80,215,95,310,290,245,260,190,45,295,560,705,95,30,335,210,185,530,65,105,255,120,315,845,625,120,90,205,185,215,215,95,125,510,320,220,310,145,185,200,100 -1326,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Single Aboriginal and non-Aboriginal ancestries,"30,560",30,60,270,410,205,50,185,85,95,105,60,270,545,200,300,110,30,140,95,235,40,165,225,535,375,100,365,205,230,385,100,220,550,305,205,530,175,260,75,85,250,125,65,115,100,155,270,125,115,395,450,70,25,65,10,75,200,165,385,295,110,305,210,130,95,185,195,85,100,185,260,350,255,310,15,85,20,535,195,290,130,115,290,370,295,55,55,475,200,235,235,255,595,170,335,510,100,125,75,70,195,95,300,260,240,265,175,40,290,540,695,95,30,345,200,165,530,65,105,255,125,310,840,615,130,105,190,185,215,200,100,115,500,315,205,280,135,195,200,90 -1327,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Mtis; Inuit and non-Aboriginal ancestries,20,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,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,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,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 -1328,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian) and non-Aboriginal ancestries,"23,355",10,45,170,305,155,45,140,75,65,95,45,205,355,135,255,90,20,125,65,160,30,120,190,435,275,70,280,170,215,285,80,165,445,290,160,405,140,230,65,75,170,100,65,85,90,105,195,105,110,325,360,55,35,60,25,60,135,120,270,235,100,210,115,105,80,110,150,60,80,110,165,225,200,250,10,50,10,395,170,215,100,100,220,285,235,65,50,315,155,175,225,200,510,140,235,350,65,110,55,50,135,90,255,205,140,190,110,30,210,420,505,85,30,260,155,135,370,70,70,165,95,265,590,560,95,65,175,160,170,160,60,85,415,250,170,210,85,115,175,75 -1329,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Mtis and non-Aboriginal ancestries,"6,885",10,25,90,90,60,0,50,30,40,10,20,55,180,70,50,15,0,10,40,65,20,50,40,75,95,25,85,40,20,80,10,50,125,20,40,125,30,30,20,20,65,25,20,25,20,40,75,25,0,85,85,15,10,0,0,10,55,50,95,60,25,85,100,30,25,65,30,25,20,75,70,115,55,55,0,0,0,130,30,75,25,10,80,85,65,0,10,140,45,50,10,60,80,25,100,155,35,15,20,25,60,0,40,75,95,75,65,10,80,115,180,0,10,70,45,15,150,0,30,85,30,40,235,40,40,20,20,15,45,40,35,20,50,50,35,60,45,65,15,20 -1330,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Inuit and non-Aboriginal ancestries,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,10,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,25,0,0,10,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,25,0,0,0,0,0,0,0 -1331,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Multiple Aboriginal and non-Aboriginal ancestries,850,0,0,0,10,10,0,10,10,0,0,10,10,10,15,0,10,0,10,0,25,0,0,0,45,20,0,0,20,15,10,0,10,35,10,0,10,0,0,0,0,0,0,0,20,10,0,20,0,10,10,0,0,0,0,0,0,10,0,30,30,0,10,0,0,0,10,0,0,0,0,10,40,0,0,0,0,0,0,0,0,10,0,15,10,0,0,0,0,0,0,0,0,10,0,10,10,0,0,0,0,20,0,20,30,0,0,10,10,0,10,20,0,0,0,10,30,0,0,0,0,0,10,30,20,0,0,0,0,10,10,0,10,0,10,15,15,0,0,0,0 -1332,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian); Mtis and non-Aboriginal ancestries,770,0,10,0,10,0,0,10,10,0,0,0,10,10,10,0,10,0,10,0,20,0,0,0,25,0,0,0,10,15,10,10,10,45,0,20,0,0,0,0,0,0,0,0,0,0,0,15,0,10,10,0,10,0,0,0,0,10,0,20,30,0,10,0,0,0,10,0,0,0,0,10,25,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,20,0,10,20,10,0,25,10,0,30,20,0,0,0,10,25,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,10,20,15,10,0,10,0 -1333,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian); Inuit and non-Aboriginal ancestries,60,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,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 -1334,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, First Nations (North American Indian); Mtis; Inuit and non-Aboriginal ancestries,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1335,Aboriginal peoples,Aboriginal population,Census Profile 98-316-X2016001, Non-Aboriginal ancestry (only),"2,656,035","28,785","23,365","11,720","28,170","26,765","15,490","25,345","21,020","12,555","23,005","6,285","28,790","21,055","21,330","7,340","14,075","9,150","11,150","17,565","10,675","9,845","10,710","13,090","29,660","25,840","16,300","15,385","13,865","9,330","16,655","26,715","24,090","35,550","34,625","11,470","20,400","15,010","21,925","9,365","21,780","18,260","11,340","21,820","12,545","10,490","30,070","14,015","9,515","15,580","21,355","22,900","12,390","16,890","10,050","12,380","15,455","13,985","13,410","42,755","13,705","10,900","16,740","17,195","21,845","9,070","7,785","43,295","15,970","14,460","14,920","16,335","14,635","9,780","43,450","9,845","10,370","26,045","32,710","16,950","18,025","13,080","32,645","16,440","28,505","10,960","15,480","23,570","29,935","11,455","18,085","13,320","20,660","17,870","9,020","13,415","34,140","10,605","7,495","15,720","10,965","10,435","10,245","21,835","14,545","20,345","45,785","9,850","9,695","16,110","20,000","26,215","17,575","24,250","24,530","26,810","15,255","20,875","10,060","20,705","15,975","6,530","16,825","64,645","26,210","32,735","26,005","17,460","10,870","27,285","50,045","16,565","22,015","52,425","12,005","7,570","12,910","11,665","12,080","27,350","13,925" -1336,Visible minority,Visible minority population,Census Profile 98-316-X2016001,Total - Visible minority for the population in private households - 25% sample data,"2,691,665","28,825","23,470","12,025","28,640","26,995","15,580","25,605","21,140","12,655","23,115","6,370","29,100","21,695","21,565","7,685","14,205","9,185","11,330","17,705","10,990","9,905","10,885","13,340","30,305","26,295","16,420","15,805","14,100","9,595","17,080","26,825","24,380","36,210","35,010","11,710","21,010","15,190","22,265","9,445","21,880","18,525","11,465","21,915","12,670","10,600","30,210","14,380","9,650","15,715","21,815","23,355","12,465","16,915","10,115","12,405","15,535","14,225","13,610","43,225","14,085","11,045","17,100","17,455","21,980","9,165","7,985","43,500","16,065","14,560","15,110","16,635","15,055","10,070","43,765","9,865","10,455","26,060","33,310","17,150","18,460","13,260","32,830","16,760","28,920","11,290","15,530","23,620","30,440","11,680","18,355","13,610","20,960","18,500","9,210","13,760","34,730","10,720","7,640","15,805","11,045","10,675","10,360","22,235","14,870","20,610","46,060","10,070","9,755","16,430","20,655","27,045","17,675","24,265","24,900","27,030","15,485","21,445","10,125","20,845","16,230","6,675","17,185","65,620","26,960","32,890","26,120","17,685","11,085","27,545","50,255","16,670","22,150","53,005","12,435","7,850","13,250","11,805","12,300","27,570","14,030" -1337,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Total visible minority population,"1,385,855","26,365","20,155","2,490","7,270","12,700","5,420","15,925","14,505","8,250","4,845","3,760","21,075","5,740","17,435","2,960","6,500","2,765","3,135","11,630","3,170","3,585","1,870","5,810","12,440","16,110","6,305","6,570","3,545","2,480","5,090","19,025","18,940","12,275","20,070","3,630","6,475","3,230","17,375","6,365","8,855","5,130","4,520","17,220","3,570","1,775","23,155","5,625","2,870","12,030","5,185","4,465","9,290","12,785","2,745","8,140","11,970","4,095","9,950","16,035","4,160","4,700","11,885","10,520","13,130","1,100","1,950","33,540","6,930","3,110","2,560","2,935","4,265","2,305","39,195","4,300","1,395","25,165","10,395","12,865","7,860","9,005","28,455","3,825","9,730","3,615","11,215","13,825","10,665","2,815","12,270","10,250","9,045","6,975","2,470","2,950","19,075","4,675","1,560","10,155","2,105","7,470","5,365","10,225","3,795","3,740","37,315","1,600","5,810","12,065","9,920","11,225","8,940","22,075","4,595","20,325","10,355","2,980","6,510","16,495","4,820","2,205","10,155","28,895","17,075","26,945","11,715","10,755","4,210","15,285","37,715","9,630","8,870","40,510","3,380","2,435","3,635","3,155","2,555","19,135","6,340" -1338,Visible minority,Visible minority population,Census Profile 98-316-X2016001, South Asian,"338,965","5,315","4,190",540,"1,125","2,825",550,"2,420","1,360",670,455,330,"8,305","1,405","2,110",445,410,375,630,"1,190",525,230,360,"2,475","2,510","6,140",400,"3,000",325,705,"1,030","2,890","7,245","2,105","1,380",665,"1,700",390,"6,490",840,365,"1,275","1,165","7,650",170,245,"2,150","1,070",815,"3,365",950,800,"4,515","1,525",325,"3,590","3,275",320,"3,730","3,525",525,915,"4,165",760,"3,630",205,270,"7,240","1,005",355,315,450,445,330,"17,465",985,230,"3,080","1,865","5,155","1,315",510,"11,095",680,"1,895",590,745,"1,025","2,210",405,"3,770","4,800",625,"1,730",295,395,"3,610",750,240,"1,310",590,"2,770","1,420",990,835,605,"20,175",245,420,"5,520","1,830","1,170","1,075","1,560",925,"4,690","5,975",645,"2,555","9,845",280,395,"2,985","6,735","5,060","13,920",720,765,410,"4,195","3,375",860,"2,340","21,545",610,345,255,445,560,"4,180",865 -1339,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Chinese,"299,465","16,460","11,110",275,"2,145","4,630",655,"7,435","5,860","4,360","1,030",110,"4,400","1,190",765,950,260,"1,410",470,450,720,235,420,710,"3,835","2,120",500,765,445,820,"1,530","6,960","2,745","2,825",780,845,"1,325",370,895,105,390,790,335,"1,015",265,460,"1,170","2,090",275,"3,080",830,740,955,"8,225",100,135,375,295,600,"1,875",885,160,"1,035","6,075",410,300,175,"16,165","1,740","1,195",865,"1,025","1,435",200,"3,275",140,260,"18,715","1,635",880,"1,435",310,285,990,"1,515",340,"4,830","2,650","2,260","1,230",890,705,880,635,745,"1,135","2,875",230,505,"5,630",500,"1,350",165,465,560,"1,150","2,100",365,135,390,680,"5,800","3,845","17,755",565,"8,665",675,615,110,435,"3,225",835,730,"9,020",685,470,775,335,285,"1,910","16,980","3,655",515,"3,715","1,025",730,805,980,575,"1,500",850 -1340,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Black,"239,850","1,340","1,545",300,935,970,550,775,755,530,315,"2,070","1,910",890,"6,315",950,"1,170",115,565,"4,770",510,860,280,945,"1,465","2,670",560,990,655,340,700,"1,285","2,205","2,110","5,455",595,"1,285",795,"4,130","2,930","2,305",975,790,"2,130",500,205,"7,360",940,625,810,755,855,"1,550",620,"1,150","1,835","3,440",710,"1,705","3,055",550,"1,195","2,130",880,"5,340",80,835,"3,625",405,220,240,280,640,470,"8,295",790,180,"1,070","1,730","3,065","2,590","4,360","8,390",470,"1,185","1,250",205,485,"1,635",330,"2,115","2,500","2,720","1,865",265,330,"3,910","1,200",190,745,160,"1,465","1,470","3,400",770,395,"6,525",215,"3,455","3,330","2,105","1,380",660,595,585,"1,860","1,535",345,"1,645","1,115",320,180,"2,075","3,650","5,835","6,260","1,050","6,045","1,255","2,055","1,135",220,"2,960","5,835",775,475,865,295,235,"5,205","1,460" -1341,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Filipino,"152,715","1,420","1,280",615,350,"1,135","1,950",380,765,175,"1,790",395,"2,885",830,920,55,"3,035",50,500,"1,250",485,890,85,785,755,"3,140","3,315",775,370,90,440,"2,170","3,430",610,"4,535",170,685,200,"2,970",465,"3,950",445,635,"2,270","1,595",335,"1,515",300,490,"1,200",380,325,805,305,170,345,880,"1,435","2,400","1,675",615,760,"2,590",445,685,110,170,"2,495","1,045",260,295,225,190,410,"4,830","1,200",100,"1,015","1,145","1,865",425,860,815,405,"1,055",405,465,"4,355",780,135,"2,800",675,"1,910","1,120",430,95,"2,435",485,90,610,90,305,515,785,300,210,"4,095",145,355,950,"1,505",565,395,595,510,"2,145",670,230,305,"1,505",140,140,"1,240","1,380","2,330","1,615","5,990",590,315,"3,405",845,265,645,"4,090",235,290,440,290,230,"2,645","1,110" -1342,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Arab,"36,030",275,300,90,300,550,155,"1,310",355,130,90,70,335,105,705,45,45,40,125,50,110,0,65,175,625,160,155,80,45,25,95,885,810,180,255,90,145,100,240,40,90,145,170,370,65,40,345,80,30,805,225,150,85,180,50,205,155,115,235,680,30,25,165,300,275,20,40,990,185,20,30,75,55,55,365,35,45,165,340,135,260,75,"2,650",60,410,95,150,105,490,10,395,125,110,155,30,55,"1,515",55,40,405,20,250,110,145,60,155,395,20,45,140,165,160,185,515,110,570,115,90,380,685,65,40,"1,070","1,440",115,240,270,120,80,"1,185","1,320",190,135,610,40,45,95,105,125,280,50 -1343,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Southeast Asian,"41,650",260,155,55,190,110,150,340,200,135,75,215,310,265,"2,595",90,170,45,85,"1,095",125,160,55,55,320,250,210,60,95,65,140,190,265,"1,000","2,065",235,95,55,195,370,215,110,155,230,20,75,"3,985",190,70,115,185,240,85,90,25,440,"1,085",80,135,490,395,335,240,585,270,25,35,280,90,115,45,85,325,125,200,270,50,240,405,210,340,655,590,50,115,105,110,185,365,105,270,125,385,100,190,85,195,705,60,125,75,390,170,"1,285",315,45,295,50,260,70,680,650,70,170,275,165,175,160,120,95,165,80,95,675,215,490,120,550,495,215,385,170,110,315,75,55,165,75,50,"1,375",535 -1344,Visible minority,Visible minority population,Census Profile 98-316-X2016001, West Asian,"60,320",125,375,20,340,755,270,615,"2,440","1,015",305,10,815,95,620,145,40,325,140,130,50,10,65,100,500,185,165,165,80,30,155,"2,450",795,210,510,45,155,55,555,285,180,125,290,"2,190",165,90,425,85,45,"1,255",220,85,100,650,60,255,145,55,175,530,35,75,175,195,535,40,55,790,975,185,245,160,85,105,650,10,50,130,335,270,280,95,"1,415",245,"1,125",30,"2,320","1,875",365,30,380,600,145,435,100,75,"1,600",45,25,480,85,175,215,85,30,235,535,25,30,570,145,130,"1,120",110,175,425,260,55,250,"1,795",50,40,720,"1,300",510,300,850,145,30,535,"5,985","1,730",150,"1,320",30,30,55,215,190,605,50 -1345,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Korean,"41,640",70,140,65,605,560,305,"1,340","1,655",710,195,15,205,30,40,15,130,185,70,50,95,30,110,40,665,110,175,55,65,65,140,835,25,435,130,120,190,270,40,105,175,390,295,250,115,45,10,85,45,445,380,270,130,650,135,45,65,150,35,"1,620",70,20,50,330,210,135,50,195,875,300,125,200,180,15,75,45,245,0,515,65,175,155,70,240,745,50,"1,920","2,210",475,25,325,30,120,100,55,200,580,30,40,250,220,75,10,55,70,300,65,115,0,20,100,165,820,120,230,255,160,115,40,130,65,165,160,"1,055",80,60,925,75,10,190,"5,255","1,930",410,210,50,65,135,250,135,390,55 -1346,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Japanese,"13,415",60,40,35,255,210,35,335,180,70,65,0,155,195,30,35,70,55,70,10,35,10,80,85,235,180,50,90,60,90,260,135,65,245,50,60,165,100,65,15,25,100,30,45,55,35,10,125,100,50,175,150,35,60,0,0,35,120,10,195,115,40,75,220,35,45,10,145,70,135,60,75,120,20,30,20,40,35,200,65,105,45,10,145,240,65,70,100,180,140,85,25,125,145,65,125,225,20,130,110,55,30,35,90,95,135,105,135,0,20,60,175,145,60,150,175,55,110,15,20,80,105,75,555,55,60,105,65,30,70,665,145,90,100,100,70,60,115,115,30,40 -1347,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Visible minority; n.i.e.,"36,975",245,275,140,125,155,95,155,105,45,10,135,475,160,785,70,120,10,80,295,100,150,40,115,215,370,120,180,65,45,70,140,555,425,400,150,215,85,950,210,190,65,115,255,70,10,"1,435",70,100,175,125,110,535,60,90,235,400,90,405,570,205,55,540,135,325,0,45,435,75,20,50,55,95,225,"1,805",55,35,150,760,440,215,285,"1,445",50,210,220,20,120,295,75,310,240,260,115,60,75,415,140,50,85,45,110,235,330,295,65,"1,255",75,120,385,"1,600",165,80,125,400,370,285,140,285,165,65,20,265,460,925,"1,535",150,280,275,395,135,60,340,"1,000",55,80,70,50,65,535,235 -1348,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Multiple visible minorities,"47,670",630,490,180,480,470,135,370,425,260,170,95,720,340,790,85,125,110,145,455,140,185,100,230,595,405,415,280,185,120,245,520,535,645,895,165,230,135,455,245,405,275,100,430,120,105,"1,090",380,160,380,270,275,270,205,180,170,290,200,320,530,245,210,475,265,425,95,120,790,200,220,185,170,245,85,"1,420",100,35,540,445,355,320,285,610,215,270,180,210,345,610,190,325,280,440,230,115,140,700,175,65,230,100,255,170,390,180,190,"1,270",75,240,400,535,545,230,440,275,640,240,260,160,405,160,80,310,"1,240",695,685,300,390,255,530,810,220,260,"1,025",230,110,260,140,120,620,350 -1349,Visible minority,Visible minority population,Census Profile 98-316-X2016001, Not a visible minority,"1,305,815","2,465","3,320","9,535","21,380","14,290","10,165","9,675","6,635","4,405","18,270","2,610","8,020","15,940","4,125","4,725","7,710","6,415","8,200","6,075","7,815","6,320","9,025","7,525","17,880","10,185","10,115","9,235","10,570","7,110","11,985","7,795","5,440","23,935","14,945","8,080","14,535","11,980","4,880","3,085","13,030","13,395","6,950","4,695","9,100","8,820","7,065","8,755","6,785","3,680","16,640","18,885","3,185","4,130","7,365","4,265","3,565","10,125","3,660","27,195","9,925","6,350","5,215","6,940","8,835","8,060","6,030","9,945","9,140","11,455","12,560","13,710","10,790","7,760","4,580","5,565","9,060",900,"22,915","4,290","10,595","4,255","4,375","12,930","19,200","7,675","4,320","9,805","19,765","8,875","6,075","3,365","11,910","11,520","6,750","10,810","15,655","6,035","6,085","5,660","8,945","3,205","4,990","12,000","11,080","16,880","8,750","8,465","3,945","4,370","10,730","15,815","8,735","2,200","20,310","6,705","5,125","18,465","3,615","4,345","11,410","4,470","7,035","36,715","9,885","5,940","14,410","6,925","6,885","12,270","12,545","7,040","13,270","12,495","9,050","5,415","9,605","8,650","9,740","8,430","7,695" -1350,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001,Total - Ethnic origin for the population in private households - 25% sample data,"2,691,665","28,820","23,470","12,025","28,635","26,995","15,580","25,600","21,135","12,655","23,110","6,365","29,090","21,690","21,560","7,685","14,205","9,190","11,330","17,705","10,990","9,910","10,880","13,340","30,310","26,300","16,425","15,795","14,110","9,600","17,080","26,830","24,380","36,205","34,990","11,710","21,015","15,195","22,255","9,445","21,880","18,520","11,470","21,915","12,675","10,595","30,205","14,380","9,655","15,705","21,825","23,350","12,465","16,910","10,110","12,410","15,530","14,220","13,610","43,225","14,080","11,040","17,095","17,455","21,985","9,170","7,980","43,510","16,065","14,555","15,110","16,635","15,060","10,065","43,770","9,860","10,450","26,050","33,310","17,150","18,455","13,255","32,825","16,755","28,925","11,280","15,530","23,635","30,440","11,675","18,355","13,605","20,965","18,505","9,210","13,765","34,715","10,710","7,645","15,800","11,050","10,675","10,360","22,235","14,870","20,615","46,070","10,070","9,755","16,430","20,660","27,035","17,670","24,265","24,890","27,025","15,485","21,435","10,120","20,840","16,230","6,675","17,180","65,615","26,955","32,885","26,130","17,685","11,095","27,555","50,250","16,670","22,135","53,015","12,425","7,845","13,250","11,805","12,295","27,575","14,020" -1351,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, North American Aboriginal origins,"35,630",40,105,305,475,230,90,250,110,110,100,85,300,625,220,345,135,40,180,135,315,65,180,250,635,445,115,415,240,260,420,105,285,650,395,235,610,185,325,85,110,265,120,100,125,115,155,365,140,130,455,450,75,30,75,20,90,240,200,465,375,140,365,265,145,95,195,195,100,105,195,305,420,280,335,15,85,30,610,205,435,180,185,320,405,330,50,70,500,225,265,290,300,630,190,360,590,105,145,85,80,240,105,400,330,270,285,210,55,330,655,830,105,30,355,225,235,565,65,130,255,135,355,965,755,155,110,230,220,270,205,105,130,605,425,270,335,140,215,220,105 -1352,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, First Nations (North American Indian),"27,610",25,90,200,345,175,75,205,90,75,95,60,255,430,150,275,115,35,170,110,230,50,135,215,540,320,90,325,200,245,320,100,225,535,365,195,485,155,285,65,100,185,95,75,100,100,110,260,110,120,355,355,65,25,60,10,70,175,150,350,295,105,270,150,105,70,125,155,70,75,115,210,285,220,270,10,55,20,445,180,335,140,145,240,330,260,50,35,340,165,205,260,240,540,165,250,420,65,125,55,60,165,95,355,250,170,185,140,45,225,525,630,95,35,265,165,205,400,65,90,175,90,305,665,680,110,50,210,200,210,165,60,110,470,355,235,275,90,130,200,85 -1353,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Inuit,515,0,0,15,20,10,0,10,0,0,0,10,0,10,0,0,0,0,0,0,10,0,0,0,10,10,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,10,0,0,0,0,0,10,10,0,10,15,0,10,0,0,0,0,0,0,0,0,25,0,0,30,0,20,0,10,0,10,0,10,0,0,0,0,0,10,0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,10,0,10,0,0,0,10,10,10,0,10,0,10,0,0,20,0,10,0,0,10,0,10,0,0,0,10,0,0,25,0,0,10,0,0,0,0 -1354,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Mtis,"8,465",10,25,100,115,60,0,50,40,30,20,20,70,215,70,65,25,0,15,30,100,25,45,35,130,120,30,100,55,40,100,20,65,170,30,50,135,35,55,25,20,75,30,30,25,10,40,115,20,10,80,90,15,0,20,10,15,70,50,140,100,30,100,110,40,15,75,50,25,25,80,90,165,60,65,10,20,0,145,20,95,35,20,85,95,75,0,30,165,60,55,30,55,85,35,100,165,45,20,25,30,95,10,65,105,110,90,85,10,90,130,215,0,10,80,75,50,180,0,55,75,45,60,305,85,50,30,35,15,50,45,40,35,110,80,60,80,45,75,40,10 -1355,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other North American origins,"345,710","1,345","1,190","2,355","5,255","3,230","1,630","2,445","1,450",920,"4,940",620,"2,915","5,365","1,840","1,700","1,180","1,615","1,570","1,555","2,080",965,"2,290","2,435","4,525","4,205","2,185","3,175","1,810","2,090","3,230","1,575","2,600","5,070","2,640","1,870","4,565","2,025","2,700","1,175","3,195","2,835","1,240","1,345","1,900","2,160","1,930","3,200","1,905",890,"3,630","4,160","1,180",925,925,995,"1,320","2,715","1,385","4,920","2,415",800,"2,120","2,235","1,820","2,090","1,355","2,880","2,030","3,650","3,825","4,045","2,590","2,270","3,785",595,"1,615","1,010","5,375","2,355","3,260","1,490","2,270","3,665","4,610","2,275",855,"1,270","5,255","2,475","1,985","1,660","2,695","3,545","1,720","2,680","4,525","1,090","1,530","1,100","1,730","1,450","1,310","2,220","2,975","4,475","4,885","2,040",745,"1,925","2,935","5,445","1,800",880,"4,295","2,180","1,960","5,405",880,"1,340","2,530","1,100","1,955","9,470","4,050","2,450","1,685","1,940","1,280","3,830","2,500","1,330","2,190","5,385","3,340","1,590","2,010","2,695","2,525","2,045","1,040" -1356,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Acadian,"2,315",20,0,10,60,0,10,55,10,0,40,0,0,30,10,15,15,0,10,15,15,20,0,0,40,25,0,0,20,10,75,0,0,70,10,10,50,20,10,0,20,10,0,25,10,10,0,15,0,0,30,35,0,0,0,0,0,30,0,25,30,0,0,30,0,0,20,0,15,30,30,65,45,20,30,0,0,0,40,0,30,0,0,30,30,35,0,20,35,30,10,10,30,15,10,25,35,10,30,0,0,10,10,10,30,10,20,30,10,10,25,40,0,0,40,0,20,20,20,10,25,20,15,85,0,20,10,0,0,10,35,0,0,10,45,20,30,10,0,10,0 -1357,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, American,"27,470",40,70,100,705,325,105,305,105,105,705,25,180,240,85,200,85,175,130,50,250,75,325,100,425,125,240,140,195,190,280,110,115,560,175,160,335,150,115,80,830,120,65,75,230,260,105,310,140,60,410,600,45,40,30,20,40,320,55,360,255,70,90,180,130,180,95,160,200,370,450,305,275,205,160,25,120,0,425,65,245,90,80,380,365,155,50,100,395,375,160,65,240,140,85,310,300,0,145,60,190,95,40,135,235,690,230,220,40,80,250,430,150,20,315,85,90,450,25,85,260,150,135,720,130,60,110,140,85,135,155,155,145,140,275,95,275,320,280,175,100 -1358,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Canadian,"323,175","1,295","1,125","2,245","4,655","3,035","1,500","2,180","1,350",830,"4,405",570,"2,765","5,145","1,760","1,580","1,100","1,465","1,480","1,495","1,870",915,"2,055","2,355","4,180","4,125","1,980","3,080","1,640","1,935","2,965","1,480","2,505","4,600","2,515","1,695","4,240","1,915","2,590","1,100","2,595","2,715","1,200","1,250","1,735","1,995","1,850","2,970","1,770",855,"3,345","3,710","1,160",915,885,965,"1,285","2,430","1,345","4,630","2,205",740,"2,070","2,090","1,745","1,990","1,250","2,695","1,920","3,385","3,500","3,815","2,385","2,105","3,620",560,"1,520","1,010","4,985","2,285","3,050","1,415","2,200","3,385","4,340","2,145",815,"1,145","4,860","2,170","1,875","1,585","2,495","3,365","1,640","2,415","4,205","1,085","1,425","1,040","1,580","1,380","1,260","2,100","2,765","4,045","4,665","1,855",715,"1,835","2,705","5,100","1,705",855,"4,060","2,120","1,875","5,065",835,"1,260","2,350",970,"1,810","8,870","3,890","2,395","1,560","1,820","1,190","3,710","2,325","1,245","2,085","5,265","3,170","1,525","1,800","2,450","2,270","1,890",955 -1359,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, New Brunswicker,50,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,10,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 -1360,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Newfoundlander,"1,430",10,0,15,10,0,15,10,0,0,0,10,10,35,0,0,0,0,10,0,10,0,0,0,35,30,0,25,10,0,0,0,10,55,10,20,10,0,30,10,0,10,0,0,15,0,0,10,0,0,0,20,0,0,10,0,15,0,10,20,35,10,10,0,0,0,10,35,0,10,0,0,10,10,10,10,0,0,30,0,0,10,20,15,10,10,20,0,20,0,10,0,10,60,25,0,45,0,10,0,10,0,15,10,10,0,0,0,0,0,30,20,0,0,20,0,15,40,10,0,20,10,0,25,45,0,10,25,0,35,0,0,10,65,20,20,0,0,0,10,0 -1361,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Nova Scotian,335,0,0,0,10,10,0,0,10,0,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,20,0,0,0,0,10,0,20,0,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,10,10,0,10,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,10,10,0,0,0,0,0,10,0,20,0,0,10,0,0,0,10,10,10,0,0,10,0,0,0,0 -1362,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ontarian,375,0,0,0,0,0,10,0,0,0,0,10,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,10,10,0,10,0,0,25,0,0,0,0,0,0,0,10,0,10,0,0,0,10,0,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0,20,0,0,20,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,10,0,10,0,0,0,15,0,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0 -1363,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Qubcois,880,0,0,20,15,15,0,10,10,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,50,0,0,10,0,0,0,0,0,40,10,20,20,10,0,0,0,0,0,0,0,0,0,25,15,0,10,10,10,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,10,0,0,0,15,10,0,0,0,0,30,0,25,0,0,0,10,10,0,0,30,10,0,0,0,10,0,20,20,10,10,0,0,0,15,0,10,10,20,10,0,10,0,10,0,0,0,0,0,30,10,0,10,10,25,40,0,0,40,0,0,0,0,0,25,10,0,0,0,10,10,10,0 -1364,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Portuguese,"100,415",275,165,740,545,345,405,345,155,135,240,"1,175",395,475,255,155,"1,605",110,165,"1,780",160,"3,560",170,385,515,370,220,400,"3,690",145,385,460,250,"7,360","1,820","2,215",425,595,305,275,700,930,505,170,210,135,700,275,235,235,515,585,210,135,775,305,315,415,185,"1,815","1,140","3,925",270,390,780,225,350,385,215,150,100,290,"3,000",295,590,970,370,135,"1,355",295,330,"1,465",310,310,465,365,145,280,"1,490",230,200,145,"2,415",390,165,"1,380",655,925,65,205,525,160,295,"4,335",770,345,865,345,800,275,610,600,225,130,"1,235",315,370,380,165,120,"2,925",470,165,"1,385",680,585,200,"1,250","3,380",470,470,210,"1,060",800,220,150,"1,090",170,175,605,"1,455" -1365,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other North American origins; n.i.e.,150,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0 -1366,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, European origins,"1,288,850","3,055","3,770","9,135","21,055","13,435","9,370","9,360","6,645","4,255","16,150","2,780","8,285","14,840","4,240","4,505","7,755","5,965","8,025","6,690","7,805","6,565","8,790","7,495","17,270","9,420","9,220","8,850","10,930","6,955","12,095","7,425","5,445","24,280","15,615","8,225","14,325","11,825","5,100","3,270","12,475","13,055","6,720","4,695","8,720","8,240","8,395","8,520","6,635","3,565","16,455","19,030","3,470","4,135","7,520","4,370","3,950","9,810","3,735","26,915","10,080","6,615","5,160","6,820","8,985","7,650","6,115","8,490","8,510","10,935","11,740","13,150","10,835","7,370","6,350","5,500","8,760","1,355","22,165","4,775","10,135","4,760","3,955","12,560","18,685","7,315","4,005","9,190","19,725","8,695","5,990","3,145","12,695","11,280","6,665","10,720","15,140","5,965","6,190","5,460","8,565","3,015","5,115","12,080","10,930","16,140","10,040","8,370","4,230","4,575","10,710","15,485","8,035","2,285","19,560","6,655","4,975","18,205","3,440","4,065","11,205","4,395","6,865","36,195","10,245","6,725","13,470","7,575","6,875","11,355","11,950","6,625","13,460","12,855","8,855","5,275","9,685","8,455","9,460","8,735","7,820" -1367,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, British Isles origins,"597,295","1,500","1,750","3,940","11,725","6,460","1,455","4,845","2,845","1,640","5,635",465,"4,395","10,875","1,260","2,950","1,515","3,380","3,560","1,500","5,215","1,050","4,715","4,440","9,885","4,965","1,605","5,860","2,990","4,105","6,580","2,560","2,350","10,065","2,765","3,575","10,480","4,195","2,540","1,210","2,190","4,595","2,190","1,340","2,105","2,980","1,635","5,995","4,455","1,515","8,085","10,690","1,670","1,300","1,755",695,875,"4,040","1,800","9,480","5,370",980,"2,605","3,965","2,725","4,635","3,300","3,650","2,825","7,255","7,200","9,625","5,170","3,650","3,565",615,"3,800",600,"10,040","2,700","6,215","1,365","1,395","7,920","10,135","3,920","1,595","1,825","10,955","5,930","3,365","1,860","3,940","5,420","3,415","5,585","7,305","1,255","4,035","1,540","3,820","1,850","2,020","3,295","6,490","10,855","5,930","4,800",675,"2,470","6,170","10,955","3,210",875,"8,400","3,340","2,735","13,560","1,055","1,830","5,290","2,420","3,240","20,655","5,655","2,385","1,475","3,050","1,840","4,895","4,750","2,530","4,230","6,865","6,430","3,195","4,470","5,075","5,780","2,190","1,070" -1368,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Channel Islander,175,0,0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,0,10,0,0,0,0,0,15,0,0,0,0,0,0,10,0,0,0,0,10,0,0,10,0,0,0,10,10,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0 -1369,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Cornish,155,0,0,0,0,10,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,10,0,10,15,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,20,0,0,0,0 -1370,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, English,"331,895",870,985,"2,320","6,745","3,615",800,"2,800","1,645",960,"3,365",270,"2,465","6,110",755,"1,700",760,"1,960","1,980",745,"2,855",495,"2,505","2,540","5,255","2,810",935,"3,225","1,595","2,305","3,625","1,545","1,365","5,510","1,535","1,875","5,915","2,280","1,445",650,"1,215","2,685","1,295",790,"1,215","1,510",955,"3,415","2,600",830,"4,385","6,115",870,690,880,325,630,"2,185","1,000","5,045","2,970",480,"1,435","2,055","1,610","2,720","1,840","2,180","1,640","4,340","4,260","5,605","2,555","1,870","2,005",385,"2,190",400,"5,410","1,530","3,325",765,745,"4,580","5,435","2,020",940,"1,185","5,710","3,680","1,815",955,"2,155","2,740","1,860","3,100","3,965",745,"2,320",800,"2,380",875,"1,120","1,910","3,455","6,280","3,340","2,515",355,"1,360","3,160","5,710","1,940",560,"4,555","1,850","1,560","7,960",525,"1,045","2,905","1,270","1,700","10,640","3,120","1,315",970,"1,500","1,080","2,695","2,575","1,505","2,440","3,960","3,730","1,670","2,455","2,845","3,190","1,170",585 -1371,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Irish,"262,965",425,620,"1,900","5,235","3,075",520,"1,940","1,155",645,"2,335",150,"1,815","5,170",440,"1,450",625,"1,440","1,675",610,"2,435",425,"2,185","1,820","4,705","2,115",470,"2,625","1,450","1,865","3,080","1,095",880,"4,560",900,"1,605","4,915","1,970",945,505,690,"2,000",910,490,820,"1,170",495,"2,965","1,985",605,"3,860","5,265",675,490,825,270,285,"1,780",750,"4,160","2,705",330,"1,085","1,805","1,015","2,115","1,505","1,305","1,195","3,215","3,165","4,185","2,310","1,760","1,260",250,"1,635",195,"4,235",865,"2,755",530,495,"3,510","4,320","1,770",805,615,"4,940","2,790","1,475",775,"1,760","2,480","1,660","2,730","3,090",385,"1,780",595,"1,655",935,855,"1,380","3,215","4,785","2,335","2,450",275,"1,025","2,970","5,270","1,255",210,"4,020","1,385","1,050","6,375",440,845,"2,520","1,220","1,380","9,530","2,425",820,385,"1,225",815,"2,010","1,850","1,065","1,695","2,780","3,035","1,580","2,050","2,400","2,595",880,425 -1372,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Manx,435,0,0,0,10,0,0,10,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,20,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,20,0,0,10,10,20,0,0,10,0,0,0,0,0,0,0,15,0,10,10,0,0,0,10,0,0,0,0,0,10,10,0,25,0,0,0,0,10,15,10,0,0,0,0,0,10,10,0,10,0,0,10,0,0,0,10,0,20,10,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0 -1373,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Welsh,"28,210",30,25,150,690,340,30,255,125,75,215,0,170,485,20,170,80,150,195,60,350,25,245,215,415,220,60,320,160,190,415,105,35,570,35,230,660,150,90,35,85,295,95,40,80,175,20,250,235,70,420,590,50,35,100,55,15,235,55,430,340,45,145,145,105,275,125,150,110,480,370,475,250,165,65,15,110,0,445,65,315,95,40,510,515,265,55,80,475,380,145,60,205,270,155,290,315,25,360,65,220,75,55,100,395,405,190,305,0,85,325,515,215,15,390,70,100,670,35,55,310,110,170,940,195,85,50,100,80,280,155,95,180,225,340,145,245,240,225,70,20 -1374,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, British Isles origins; n.i.e.,"52,905",110,110,235,"1,160",390,130,410,255,85,535,15,290,810,100,210,170,170,340,125,515,155,510,375,970,375,170,400,325,460,660,195,140,985,180,375,795,320,175,80,270,375,105,120,215,325,95,525,350,120,755,970,225,120,110,25,55,485,60,845,445,95,165,395,140,415,310,255,240,605,730,910,670,405,285,30,330,30,920,235,650,125,110,765,"1,025",365,115,125,"1,225",305,370,205,425,430,270,510,565,65,315,130,255,150,175,270,625,920,535,570,30,190,610,"1,160",360,65,685,235,250,"1,155",115,140,520,290,260,"2,095",360,215,175,275,150,335,520,235,280,465,490,250,515,475,580,175,85 -1375,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, French origins,"122,870",265,260,855,"2,670","1,095",285,"1,195",555,335,770,100,795,"1,855",335,740,465,640,890,415,"1,160",310,895,700,"2,390",975,325,965,840,835,"1,360",475,525,"2,215",750,940,"2,060",790,465,325,410,825,370,315,535,695,455,"1,455",735,355,"1,875","2,135",240,260,265,150,230,820,365,"2,000","1,230",295,570,995,500,880,595,645,610,"1,130","1,230","1,385","1,195",760,700,165,575,90,"2,175",510,"1,525",380,210,"1,435","2,030",910,260,315,"2,440","1,095",895,460,945,"1,110",685,"1,240","1,500",290,770,330,480,525,330,730,"1,460","1,900",835,935,190,515,"1,545","2,500",625,155,"1,615",575,595,"2,525",235,325,"1,250",610,680,"5,210",990,520,315,625,415,920,935,460,695,"1,205","1,390",705,"1,170","1,085","1,005",515,285 -1376,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Alsatian,265,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,20,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,10,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,10,0,0,0,0,0,0,10,0,0,15,10,10,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0 -1377,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Breton,40,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,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,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,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 -1378,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Corsican,35,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,10,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,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0 -1379,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, French,"122,610",265,255,850,"2,665","1,100",285,"1,190",540,330,760,100,785,"1,845",345,730,460,645,885,410,"1,160",315,890,700,"2,390",975,330,965,845,840,"1,365",475,520,"2,205",745,910,"2,065",785,470,330,410,810,370,325,535,690,450,"1,460",725,350,"1,875","2,135",235,255,265,145,240,820,370,"1,990","1,215",290,570,995,510,865,595,645,610,"1,130","1,220","1,390","1,190",760,690,160,575,110,"2,185",510,"1,515",385,205,"1,435","2,025",900,245,310,"2,440","1,100",895,460,945,"1,110",680,"1,230","1,490",290,765,330,480,525,330,730,"1,450","1,910",820,935,190,520,"1,545","2,505",630,165,"1,605",570,600,"2,525",230,325,"1,230",600,670,"5,200",990,520,315,625,415,920,925,465,695,"1,190","1,380",705,"1,165","1,080","1,005",505,285 -1380,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Western European origins (except French origins),"187,190",350,425,"1,150","4,310","1,955",625,"1,770",925,565,"2,555",100,880,"2,680",320,900,635,"1,050","1,045",545,"1,835",295,"1,590","1,210","3,360","1,015",980,"1,390","1,145","1,195","2,125",920,580,"3,455",760,"1,245","2,825","1,400",535,340,"1,650","1,370",645,460,880,"1,280",350,"1,915","1,210",510,"3,205","3,485",360,605,605,205,230,"1,730",380,"3,305","2,005",245,650,"1,350",785,"1,425","1,165",940,"1,230","2,095","2,350","2,425","1,670","1,275",785,240,"1,040",125,"3,070",615,"1,995",420,365,"2,475","3,040","1,270",465,745,"4,020","1,925","1,185",405,"1,285","1,355",880,"1,955","2,355",310,"1,310",530,"1,130",555,640,"1,015","1,960","2,995","1,590","1,535",175,610,"1,955","3,210","1,045",265,"2,555",805,885,"3,725",415,510,"1,705",815,835,"6,925","1,550",695,860,805,480,"1,355","1,795",860,"1,310","1,505","1,935",945,"1,505","1,610","1,845",735,370 -1381,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Austrian,"16,145",40,30,70,390,220,75,160,100,85,435,20,100,195,15,45,30,95,60,60,125,10,185,80,215,80,150,95,95,60,155,85,55,290,70,105,240,95,35,0,295,125,75,45,210,330,20,110,105,0,250,310,45,105,90,35,10,190,15,340,195,10,35,120,105,85,95,115,150,170,290,115,115,125,30,20,75,10,225,50,110,20,20,325,300,110,40,80,295,120,30,45,135,60,105,95,170,10,115,25,160,20,20,30,180,270,45,85,25,10,110,210,140,35,155,55,40,315,25,35,100,105,85,570,120,70,160,30,40,55,200,120,155,130,135,75,180,125,155,55,35 -1382,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bavarian,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1383,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Belgian,"4,895",10,0,20,75,40,40,50,20,45,130,0,30,70,0,25,10,25,25,10,65,10,45,35,105,10,30,25,25,0,15,0,10,100,0,40,65,10,15,10,35,25,0,0,0,15,0,55,40,0,90,80,30,0,10,0,0,50,10,100,55,20,25,30,10,60,20,10,30,70,95,135,35,20,20,10,20,0,95,10,55,20,0,45,90,75,10,15,105,45,25,10,60,40,20,75,75,0,40,0,0,25,20,30,45,125,20,10,0,10,50,140,10,0,75,10,20,150,0,10,50,15,10,300,40,20,20,25,15,20,15,10,25,25,40,10,20,35,45,20,20 -1384,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Dutch,"41,650",95,100,170,940,385,85,375,160,105,400,10,215,705,25,250,170,170,160,155,410,55,360,265,920,215,190,325,265,315,550,175,160,945,185,290,600,285,110,110,205,250,95,120,110,135,55,455,205,125,680,825,100,100,110,50,70,365,125,675,435,95,165,385,155,365,260,215,310,445,440,480,480,295,270,50,245,40,650,115,470,105,75,575,665,340,95,200,845,430,350,95,280,320,165,420,575,45,315,85,200,125,175,270,420,615,450,260,30,150,385,940,185,85,470,215,235,970,115,145,435,145,205,"1,545",425,120,160,100,145,300,380,175,275,225,385,230,295,305,455,160,60 -1385,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Flemish,465,0,0,0,20,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,10,0,0,0,10,0,0,0,15,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,15,0,0,0,0,15,20,0,0,0,0,0,0,0,20,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,10,0,10,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,0,35,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,10,0,10,0,0,0,0,10,0,0,10,20,0,10 -1386,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Frisian,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,10,0,10,10,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,20,10,0,10,0 -1387,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, German,"130,895",225,280,940,"3,030","1,295",440,"1,245",635,350,"1,610",65,615,"1,790",280,590,450,725,820,380,"1,280",220,"1,085",885,"2,315",745,635,"1,025",800,885,"1,510",640,370,"2,275",540,800,"2,055",980,385,210,"1,150","1,040",490,305,575,835,285,"1,330",935,395,"2,265","2,365",250,395,405,120,155,"1,180",230,"2,330","1,430",165,430,900,545,965,760,650,845,"1,505","1,570","1,745","1,105",890,535,200,710,90,"2,200",435,"1,395",285,285,"1,710","2,085",840,330,505,"2,885","1,380",790,280,850,955,625,"1,420","1,730",270,915,400,780,400,460,730,"1,375","2,065","1,140","1,180",125,445,"1,440","2,080",750,145,"1,870",550,600,"2,490",285,350,"1,170",600,580,"4,805","1,050",535,605,650,335,"1,020","1,225",570,890,"1,180","1,430",660,"1,110","1,145","1,230",525,275 -1388,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Luxembourger,125,0,0,0,10,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,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,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0 -1389,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Swiss,"7,635",0,30,50,160,80,30,100,65,20,200,10,40,130,0,55,25,75,30,0,70,0,85,45,80,35,10,20,30,75,110,40,25,170,10,55,70,80,10,10,125,45,25,30,0,35,10,80,65,15,210,185,10,25,30,0,10,65,10,95,150,10,0,35,10,60,80,30,30,130,150,110,60,50,10,0,45,10,105,40,70,0,0,60,110,60,40,0,120,85,40,10,45,45,50,95,70,10,45,15,55,20,30,20,115,85,60,85,0,15,80,120,45,10,70,20,25,160,0,10,100,45,15,190,55,0,20,15,0,65,100,10,0,55,85,45,90,110,90,65,25 -1390,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Western European origins; n.i.e.,340,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,15,0,0,0,20,0,0,10,0,10,0,0,10,0,10,0,10,0,0,0,0,15,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,10,0,0,30,0,0,15,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,10,30,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0 -1391,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Northern European origins (except British Isles origins),"36,720",80,95,230,965,365,55,310,155,100,255,10,135,545,35,305,65,275,280,50,310,40,385,170,700,280,175,200,245,255,410,150,125,775,170,265,675,295,30,55,155,240,60,50,150,205,20,310,195,75,560,735,65,60,95,35,25,290,35,430,410,50,105,375,120,335,180,185,180,455,550,660,340,180,60,25,155,35,620,95,470,45,20,510,690,245,110,75,905,375,200,85,255,250,190,535,395,40,405,50,205,150,110,170,505,795,265,265,10,150,420,665,200,50,450,105,160,"1,115",35,95,580,150,140,"1,480",170,95,55,90,95,185,360,130,230,290,360,175,465,325,430,175,45 -1392,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Danish,"7,575",20,50,55,190,100,10,60,20,30,25,0,40,70,0,65,10,40,50,10,80,10,90,25,150,15,60,70,25,60,110,20,35,145,20,65,120,35,0,0,10,45,20,25,15,45,0,80,75,30,90,155,15,15,35,10,10,65,25,70,45,0,0,70,60,75,60,35,0,35,75,75,115,40,20,0,35,0,120,25,175,0,0,80,135,55,10,30,190,115,40,0,45,45,40,135,80,20,75,0,45,30,0,55,100,225,30,25,0,10,85,165,25,10,85,30,40,275,10,35,150,30,25,325,10,10,0,20,10,70,55,35,55,80,65,30,110,75,85,25,0 -1393,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Finnish,"8,160",25,25,10,180,85,0,60,35,40,75,10,30,200,10,55,10,55,60,10,25,10,35,85,85,105,30,45,25,70,80,55,40,180,75,35,175,70,30,35,30,25,20,10,70,0,0,60,70,10,95,140,30,35,45,10,10,80,0,85,100,15,40,70,20,75,45,45,70,130,55,165,40,40,20,0,25,10,140,10,75,20,10,125,165,50,45,40,210,55,45,20,80,90,50,95,155,0,65,20,45,45,35,20,95,120,55,65,0,50,95,125,70,10,55,15,45,185,20,30,85,20,40,310,70,30,20,10,15,60,125,55,120,30,95,35,75,55,75,35,25 -1394,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Icelandic,"2,310",10,0,10,65,0,0,30,20,0,35,0,0,30,15,10,0,20,0,0,0,0,15,0,55,20,0,10,20,10,60,10,0,40,0,0,45,15,0,0,0,20,0,0,0,10,0,30,0,0,20,60,0,0,0,0,0,10,0,50,30,0,15,40,10,10,40,20,15,10,75,70,20,0,0,0,10,0,75,0,35,0,0,10,20,20,0,0,70,35,25,10,0,15,20,75,30,0,35,20,10,10,0,0,30,55,40,0,0,0,20,40,0,0,20,0,15,65,10,0,15,10,0,90,10,0,0,20,0,0,25,0,0,30,65,0,50,25,25,15,0 -1395,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Norwegian,"9,175",35,10,115,270,90,10,85,30,30,10,10,20,105,0,60,25,90,105,35,115,10,95,0,180,30,40,20,105,65,80,10,35,240,20,80,200,85,0,0,75,65,10,0,35,50,0,75,30,20,200,190,20,0,10,10,15,95,10,95,115,20,20,85,0,55,45,55,30,145,165,210,85,65,10,0,45,10,125,20,110,10,10,140,150,50,0,10,215,90,45,10,50,20,25,115,65,15,85,20,65,20,50,60,135,200,50,100,0,30,100,180,30,10,80,50,15,325,0,30,225,45,45,340,50,40,25,20,10,0,80,40,35,110,50,30,115,100,95,30,10 -1396,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Swedish,"10,400",10,30,50,250,130,30,100,50,10,100,0,50,120,10,90,10,110,75,10,100,15,170,50,255,85,40,45,70,80,90,40,35,200,50,75,200,70,20,0,50,75,15,0,60,75,10,55,45,30,155,250,10,25,35,10,0,70,0,75,135,10,30,130,25,120,35,75,75,135,220,175,115,45,0,10,15,20,195,40,105,15,0,195,180,90,35,20,260,105,45,35,70,85,75,145,90,0,135,0,20,35,10,45,190,180,40,60,0,20,135,150,35,10,175,45,15,350,20,20,130,60,10,370,10,20,10,15,30,75,75,20,50,50,75,70,125,100,170,55,20 -1397,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Northern European origins; n.i.e.,"1,950",0,0,10,65,10,0,10,0,0,10,0,0,50,0,25,10,0,20,0,20,0,0,10,20,35,10,10,10,20,0,0,0,40,10,35,20,20,0,0,10,15,10,0,0,25,0,30,10,0,20,35,0,10,0,10,10,15,0,40,15,0,0,35,0,10,0,0,10,10,40,10,0,10,10,0,25,0,25,10,0,0,0,10,70,10,0,10,50,10,20,10,30,20,10,20,0,0,25,0,20,15,0,10,35,65,20,10,0,35,10,30,30,0,30,0,20,65,0,0,20,0,10,105,30,10,20,10,35,10,10,10,20,0,35,10,35,0,30,35,0 -1398,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Eastern European origins,"302,485",265,430,"2,415","5,800","3,710","4,440","2,595","2,410","1,580","7,475",220,985,"2,120",665,770,"1,475","1,395","1,360",655,"1,545",370,"3,155","1,075","4,190","1,465","4,225","1,305","1,300","1,155","1,670","2,545",600,"3,710","1,430","1,715","2,295","3,595",615,520,"6,540","4,010","2,110","1,490","4,800","4,150",550,"1,525","1,025",935,"5,415","5,835",445,"1,770","1,985",295,375,"3,855",480,"8,245","2,245",390,510,"1,590","1,790","1,865","1,915","1,180","3,835","2,695","3,220","2,195","1,905","2,530",655,235,"2,535",90,"6,585",695,"2,155",650,505,"3,190","5,300","2,185","1,090","4,495","4,330","1,850","1,305",410,"2,155","1,730",740,"2,190","3,795",570,"1,095",725,"2,320",580,725,"1,665","3,100","3,490","1,400","2,410",200,605,"2,645","2,735","3,145",210,"6,735",850,"1,035","3,120",510,995,"1,945","1,110",925,"8,260","1,550",870,"9,130","1,155",630,"1,320","4,115","2,405","2,700","1,650","1,615","1,015","2,485","2,215","2,675","1,365",765 -1399,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bulgarian,"6,495",15,10,40,25,170,70,60,20,20,45,35,50,35,10,0,35,25,240,0,40,0,30,20,140,105,85,0,30,10,180,145,30,30,10,50,60,120,0,0,10,105,100,90,55,50,0,10,25,65,40,80,0,25,30,10,20,30,10,115,20,10,60,25,35,0,10,50,85,50,55,45,10,40,30,0,115,10,130,10,35,45,10,50,160,15,0,50,100,10,40,25,20,60,55,10,255,15,20,35,0,35,25,30,45,60,10,65,0,0,50,35,40,10,120,60,90,55,10,55,10,15,120,120,55,0,165,25,10,80,110,35,70,45,20,75,30,35,20,35,10 -1400,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Caribbean origins,"165,735","1,445","1,395",350,750,815,440,510,570,510,330,"1,400","1,680",840,"3,445",475,980,110,420,"3,045",395,710,245,970,940,"1,545",460,945,625,265,545,"1,005","1,830","1,600","3,830",500,960,525,"2,875","1,275","1,315",600,600,880,435,250,"4,815",630,605,605,505,705,"1,540",435,525,"1,320","2,065",645,"1,135","1,595",400,960,"1,415",695,"1,780",85,565,"2,635",355,260,295,290,420,510,"6,985",685,235,950,"1,275","2,280",945,"2,605","4,335",435,910,930,160,490,"1,365",390,715,925,"2,155","1,300",395,335,"2,710",855,165,570,165,505,"1,125","2,150",585,355,"6,280",185,"1,545","2,285","1,305","1,020",465,460,655,"1,580",820,510,855,535,320,155,"1,380","2,625","4,375","4,390",805,"3,550",850,"1,615",860,215,"1,415","4,665",585,460,740,280,295,"3,345",935 -1401,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Byelorussian,"4,085",0,15,25,70,85,120,15,80,10,25,0,10,40,0,0,35,0,0,15,25,10,50,10,80,10,45,20,10,10,10,55,0,35,10,35,45,20,10,0,65,0,20,0,75,60,0,10,0,10,100,70,0,25,30,0,10,50,0,135,20,10,0,20,0,25,20,20,30,35,40,0,30,10,0,0,25,0,60,0,50,10,0,10,170,25,15,145,85,15,20,10,55,10,0,25,10,20,15,0,0,0,0,20,45,50,10,35,0,0,35,40,30,10,50,10,25,20,10,15,25,10,0,115,20,10,435,10,0,0,115,45,0,10,0,0,25,10,45,30,30 -1402,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Czech,"9,505",20,10,45,230,160,55,55,45,30,235,0,40,105,20,80,30,35,30,25,70,10,80,30,105,0,75,55,30,45,40,30,60,150,45,75,90,110,0,10,215,105,35,85,90,110,40,60,60,10,175,240,20,40,45,0,30,85,60,250,105,0,40,105,50,70,20,50,80,150,135,40,50,50,100,15,45,0,180,40,105,10,35,70,195,45,10,40,175,110,50,35,70,70,35,90,70,60,35,10,20,30,10,55,155,185,45,75,0,10,125,100,70,10,175,20,10,140,0,30,60,40,0,370,0,10,135,50,0,45,80,55,80,115,55,10,95,60,85,35,10 -1403,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Czechoslovakian; n.o.s.,"2,320",0,20,20,30,45,10,15,10,0,85,0,10,20,0,10,0,10,0,0,15,0,20,0,20,10,150,10,0,10,0,0,0,40,10,0,10,10,10,10,160,0,0,0,25,35,0,10,0,0,30,20,0,10,0,10,0,0,0,20,0,0,15,20,30,30,0,0,40,55,20,20,30,20,0,0,20,0,65,10,0,0,0,35,25,10,10,45,25,35,0,0,10,0,0,10,20,0,0,0,55,10,10,10,40,20,25,10,0,10,20,35,65,0,35,0,0,15,30,0,20,0,10,85,10,0,30,0,0,0,20,35,70,30,20,20,10,25,10,10,10 -1404,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Estonian,"4,615",30,15,35,30,135,15,20,75,25,60,10,20,90,0,15,0,30,40,0,20,20,15,30,50,55,0,30,55,10,70,35,10,50,10,20,45,40,10,0,10,20,10,0,30,25,0,55,65,15,60,85,20,30,10,0,20,60,40,35,70,0,35,10,0,30,30,10,30,55,115,155,10,45,10,10,45,15,70,10,35,20,10,170,120,20,35,10,65,40,20,20,20,65,10,10,80,0,40,0,0,0,10,40,25,80,50,15,0,20,15,35,30,10,45,10,20,45,0,20,15,15,70,150,85,10,25,10,20,45,60,40,35,25,70,20,25,35,50,0,0 -1405,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Hungarian,"33,700",45,45,110,685,455,390,265,295,215,"1,110",35,125,300,310,85,205,215,90,105,145,70,290,155,405,300,635,180,180,90,190,265,90,500,350,175,260,270,115,70,"1,480",260,125,105,470,330,60,175,65,75,405,485,100,230,95,45,85,455,110,595,295,125,95,180,275,170,195,155,415,320,320,330,215,160,75,20,160,10,460,100,270,60,60,260,485,165,160,225,360,250,130,60,305,495,80,205,575,55,140,155,165,45,85,225,480,410,135,105,70,85,315,390,325,25,400,140,75,405,100,85,205,115,95,870,220,120,485,250,115,225,415,275,230,200,145,160,375,330,200,275,130 -1406,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Latvian,"5,710",0,0,25,115,130,85,60,35,25,95,0,10,10,0,0,20,20,0,30,0,0,105,40,110,10,60,50,50,50,50,10,10,95,20,45,85,45,10,0,75,65,10,20,75,50,15,55,20,0,100,120,0,0,30,0,0,50,0,70,80,0,10,25,25,15,35,40,65,65,55,45,50,20,20,0,30,0,85,25,50,0,0,80,95,15,10,85,120,65,10,0,10,30,20,50,80,0,20,0,70,0,10,15,50,40,20,200,0,20,35,75,65,30,120,10,15,110,0,0,45,35,40,170,40,10,185,0,10,35,60,60,10,20,85,20,40,80,60,25,10 -1407,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Lithuanian,"11,675",25,10,65,300,105,175,110,65,70,625,0,15,20,0,55,45,60,40,0,50,10,180,35,120,20,365,35,40,40,20,35,0,155,10,105,30,55,0,10,455,95,55,0,300,295,0,25,20,40,375,425,0,45,70,0,0,260,20,315,125,20,15,55,35,75,115,20,235,150,105,120,85,60,0,0,85,0,190,15,60,20,0,125,155,75,20,85,220,55,30,0,75,40,20,95,70,25,45,0,85,15,0,55,145,100,60,145,0,10,85,115,170,0,200,10,40,95,0,15,115,70,0,270,35,0,245,30,30,10,115,50,75,10,80,10,120,120,190,10,45 -1408,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Moldovan,"1,270",0,0,0,20,35,30,0,0,10,0,0,10,0,0,0,20,0,0,0,10,0,25,0,20,0,15,0,0,0,10,30,0,0,0,0,10,25,0,0,45,25,15,0,10,10,0,0,0,0,30,25,0,10,15,0,0,35,0,45,0,0,0,15,10,0,0,0,35,0,0,10,10,20,0,0,15,0,30,0,0,0,10,20,0,0,10,135,0,0,0,0,0,10,0,0,10,0,0,10,20,0,0,0,10,0,0,0,0,10,10,0,0,0,0,0,25,10,0,0,0,0,10,10,0,0,200,0,0,0,20,20,10,0,0,0,0,0,0,0,0 -1409,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Polish,"114,535",45,155,"1,225","2,445","1,225","1,735",950,685,675,"3,990",50,325,705,155,280,510,510,410,340,510,120,"1,510",365,"1,530",455,"2,135",555,480,410,415,580,150,"1,450",390,675,890,"1,150",200,250,"3,665","1,480",795,215,"2,700","2,325",225,665,385,180,"2,005","2,250",180,530,625,90,115,"1,985",120,"3,240",790,155,140,565,740,715,735,280,"1,625","1,030","1,545",660,715,"1,180",275,90,895,30,"2,780",215,740,265,220,"1,225","1,940","1,100",335,870,"1,720",695,385,135,965,305,260,"1,080",880,260,380,180,970,200,265,700,"1,365","1,260",475,905,45,220,"1,195","1,115","1,355",50,"2,900",205,170,"1,185",240,200,735,545,270,"2,755",620,345,"1,840",310,205,320,"1,210",670,"1,025",560,595,390,"1,070",905,"1,115",250,245 -1410,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Romanian,"26,255",15,65,45,510,670,405,280,570,255,720,20,120,150,65,60,190,170,115,15,85,45,300,130,280,105,440,60,90,105,105,660,115,240,160,95,285,185,105,0,730,240,70,145,655,435,35,120,70,175,210,240,25,445,105,30,50,360,30,400,110,10,70,100,95,35,115,190,425,255,260,225,115,65,70,10,100,15,295,85,145,60,60,300,565,50,135,355,330,145,110,15,150,120,30,170,995,70,70,155,185,35,85,70,105,250,165,80,30,65,110,150,410,15,260,195,275,105,20,140,95,105,120,710,75,55,740,45,10,260,465,210,135,180,80,30,285,160,290,95,110 -1411,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Russian,"74,470",10,85,225,"1,790",825,"2,005",685,660,585,"2,790",30,115,445,80,190,535,550,255,105,375,125,"1,095",155,"1,145",155,"1,590",195,315,310,315,700,80,760,280,415,330,475,55,75,"2,010",580,335,240,"2,085","1,740",70,235,130,320,"1,205",865,30,555,225,40,50,"1,485",35,"1,060",400,35,35,380,175,230,310,195,"1,540",710,"1,255",425,455,350,40,40,195,10,"1,045",75,560,120,55,860,"1,745",265,390,"2,410",990,495,375,65,635,295,90,505,540,105,295,190,210,90,75,155,425,910,155,285,10,85,345,540,"1,050",55,820,70,175,715,40,140,430,290,145,"2,135",140,115,"4,950",170,140,195,"1,630",955,165,205,325,185,760,625,835,465,160 -1412,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Slovak,"7,615",0,0,95,125,155,60,85,0,10,40,0,0,20,0,50,25,30,75,10,75,0,35,50,80,65,15,10,40,10,45,40,10,80,20,55,80,135,45,0,90,115,35,565,35,35,25,45,40,20,180,140,20,25,40,40,0,80,25,265,65,10,0,35,85,25,40,35,20,140,75,105,45,70,30,0,125,0,270,10,45,0,20,100,80,45,35,25,175,40,30,20,30,85,20,45,115,20,0,45,45,30,10,35,50,90,30,55,10,15,70,90,25,0,145,40,20,40,45,250,10,40,10,235,35,70,30,25,35,0,35,35,95,65,30,15,55,35,30,30,0 -1413,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ukrainian,"72,340",85,100,810,"1,110",460,795,625,390,160,625,55,260,635,75,140,265,185,275,220,425,50,480,230,"1,165",375,435,315,350,305,500,415,75,925,255,435,565,"1,555",150,150,560,"1,560",875,210,465,380,115,410,320,220,"1,645","1,760",120,230,990,55,55,495,75,"3,165",650,70,95,420,500,650,730,285,540,550,445,485,615,825,85,60,"1,000",30,"2,350",140,630,160,140,670,960,690,230,"1,190","1,145",505,340,80,380,380,220,525,655,105,325,135,805,200,260,475,740,715,350,935,30,160,660,850,410,50,"2,605",160,270,760,95,160,550,210,165,"2,170",365,175,"2,000",315,165,240,770,445,"1,050",345,350,275,490,395,480,310,190 -1414,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Eastern European origins; n.i.e.,"5,210",0,0,10,255,85,85,45,35,30,415,0,10,0,0,15,0,25,10,0,40,0,60,10,55,10,120,0,20,0,40,45,15,150,10,30,40,30,0,0,335,65,0,10,170,235,0,30,20,0,30,35,0,25,0,0,0,245,0,40,15,10,0,0,0,30,0,0,125,55,80,45,40,10,0,0,0,15,25,0,25,0,0,50,120,0,0,40,20,60,10,10,125,0,15,90,20,0,10,0,0,20,0,0,35,105,10,35,0,0,20,20,70,10,20,0,0,60,0,35,80,40,0,70,0,0,135,0,30,0,45,95,10,15,55,10,95,120,80,10,10 -1415,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Southern European origins,"441,485","1,215","1,635","3,345","4,540","3,545","3,390","2,095","1,610",875,"2,860","2,070","3,130","2,955","2,295","1,060","4,900","1,265","3,650","4,545","1,275","5,390","1,345","2,190","3,675","3,500","3,115","2,165","7,220","2,380","4,645","2,260","2,315","12,080","11,710","3,555","2,870","4,740","2,005","1,620","2,860","5,320","2,715","1,750","1,830","1,240","6,245","1,915","1,365","1,195","3,750","4,285","1,625",940,"3,990","3,550","2,590","2,445","1,435","10,620","3,315","5,450","1,995","1,500","4,650","1,780","1,460","3,705","1,725","2,090","2,010","2,570","4,545","1,550","2,040","4,740","3,030",565,"6,470","1,445","2,280","2,810","1,995","2,625","4,070","1,625","1,355","2,520","5,735","1,750","1,290",980,"7,255","4,695","2,945","3,615","4,385","4,345","1,445","3,190","3,350",740,"2,410","7,435","2,495","2,425","3,045","2,360","3,395","1,435","2,590","2,980","1,830","1,155","6,015","2,630","1,535","2,900","1,850","1,245","4,715","1,145","2,755","9,090","3,130","3,420","1,795","3,740","4,770","5,195","3,340","1,785","7,060","4,485","1,350","1,455","3,550","1,665","1,565","5,260","6,150" -1416,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Albanian,"11,120",0,0,120,115,205,40,40,10,40,45,0,110,110,0,15,600,0,360,15,20,100,20,65,35,125,25,30,0,40,180,210,105,50,115,10,0,270,70,50,135,160,260,30,345,25,0,20,15,40,75,65,10,20,225,0,0,55,60,415,20,20,30,15,175,20,30,45,10,10,35,20,0,25,45,50,35,0,440,25,30,180,45,15,85,75,35,45,35,10,25,50,105,180,80,0,155,105,35,10,155,10,65,130,20,50,95,15,20,30,55,40,55,10,260,10,140,20,40,125,0,0,180,65,10,75,100,115,0,315,155,10,530,170,10,50,65,35,35,150,140 -1417,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bosnian,"2,960",0,0,50,30,75,0,10,30,0,0,0,30,40,0,0,85,0,70,0,10,0,35,0,55,30,0,0,20,0,0,0,30,10,10,30,25,70,0,0,10,190,60,15,25,0,0,30,0,0,20,55,0,25,30,0,0,10,0,265,10,0,0,0,10,15,0,10,10,25,15,15,10,20,0,0,145,0,115,0,15,15,10,15,65,10,0,10,65,0,0,10,0,30,10,0,30,0,10,0,40,0,45,30,0,10,10,20,0,0,40,0,45,0,55,35,65,10,0,0,20,0,25,75,10,10,15,0,0,25,35,10,30,10,0,0,10,0,0,30,15 -1418,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Catalan,120,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1419,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Croatian,"13,675",15,10,300,175,120,40,60,120,25,55,10,30,100,35,20,60,70,85,10,40,75,60,80,150,50,45,35,40,35,75,95,40,155,195,135,85,250,30,40,55,290,165,45,55,80,25,65,25,40,305,385,55,20,245,15,25,35,25,740,100,25,60,70,290,145,100,10,60,95,40,75,60,40,50,35,290,0,260,15,135,60,45,150,235,100,75,100,230,35,75,25,75,115,35,70,90,40,65,25,160,10,315,165,145,85,45,165,0,30,165,145,115,0,445,65,20,115,100,10,75,40,90,405,45,125,45,100,35,70,125,75,275,70,35,15,95,80,85,90,35 -1420,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Cypriot,"1,465",0,0,0,10,25,0,0,0,0,0,0,35,10,0,10,15,0,15,0,0,0,0,40,30,40,0,30,10,30,40,35,20,10,0,0,0,0,20,0,20,20,10,30,15,0,15,20,0,0,10,35,50,10,0,0,0,0,0,0,0,0,10,0,0,0,0,50,0,10,30,30,0,10,0,10,45,0,0,20,0,0,0,0,50,0,10,0,30,45,0,10,10,20,25,0,35,0,0,45,0,0,0,0,0,10,15,15,10,0,0,0,0,0,0,10,10,10,0,0,0,0,30,25,55,0,0,0,0,20,0,0,20,35,0,0,0,0,10,10,0 -1421,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Greek,"57,425",195,395,200,650,830,645,250,320,120,510,40,985,540,60,450,335,250,"1,560",130,135,185,115,340,375,980,480,345,275,810,"2,195",415,710,730,340,100,360,215,490,85,215,335,135,830,140,135,150,300,235,230,420,350,225,245,115,70,75,380,495,770,345,125,550,145,265,100,155,"1,260",295,395,435,520,125,190,160,90,250,80,295,220,255,90,90,425,425,145,215,300,435,655,115,215,810,"2,160","1,555",245,"1,085",215,735,"1,265",245,85,140,335,225,290,325,260,70,275,240,310,350,430,430,945,175,325,110,450,75,90,"1,230","1,020",415,160,195,145,190,"2,325",365,290,470,950,220,410,540,245,170,225,230 -1422,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Italian,"182,500",335,630,"1,275","2,170","1,040","1,785","1,020",585,360,"1,505",610,780,"1,205","1,565",260,"1,655",740,530,"1,985",605,"1,270",705,900,"1,665","1,210","1,705",905,"2,920","1,160","1,415",445,625,"3,155","8,205",740,"1,275","2,590",435,880,"1,195","2,135",740,95,475,445,"4,310",840,545,340,"1,320","1,785",665,210,"2,295","2,970","1,620","1,110",285,"4,195","1,015","1,060",530,585,"2,730","1,075",615,"1,270",765,975,"1,035","1,230","1,115",575,385,"3,550",905,150,"2,945",460,"1,090",670,"1,145","1,080","1,545",610,670,"1,255","2,575",625,420,315,"3,145","1,080",655,"1,620","1,300","2,855",370,"1,220","1,960",290,"1,135","1,560",965,"1,070",895,935,"2,250",385,930,"1,230",720,365,"2,610",715,405,"1,480","1,165",185,"1,370",465,455,"4,350","1,115","1,685",485,"1,575","1,125","1,285","1,475",825,"4,280","1,305",690,575,"1,415",755,825,"3,465","4,055" -1423,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kosovar,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,30,0,0,0,20,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,15,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,25,0 -1424,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Macedonian,"13,320",95,145,55,145,290,35,80,110,45,205,15,330,185,0,40,60,40,260,20,30,15,20,155,115,300,35,180,20,110,205,70,180,115,20,40,75,115,230,0,20,165,55,75,35,30,15,95,115,85,65,45,210,30,50,20,40,40,135,225,85,10,200,20,75,40,30,315,55,195,70,120,25,60,120,25,155,25,105,90,45,10,15,135,155,30,75,100,90,60,10,20,20,360,120,45,135,25,35,295,70,10,10,35,50,85,245,30,30,195,80,110,115,115,95,210,95,135,0,100,10,10,230,160,195,20,15,20,25,365,60,90,145,450,35,100,20,30,30,70,15 -1425,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Maltese,"6,765",0,40,75,45,25,25,30,10,0,25,20,40,80,0,20,25,0,20,35,15,10,10,20,85,60,10,15,15,30,25,10,30,90,20,35,80,195,10,55,0,190,80,10,10,55,20,20,30,0,205,105,10,0,75,0,0,30,0,305,245,20,30,0,75,70,30,40,20,15,45,10,55,80,50,0,50,0,160,25,30,25,35,10,50,55,20,65,145,15,10,20,100,20,25,25,140,25,15,10,75,20,60,345,50,45,40,320,20,10,55,90,30,0,150,10,30,65,40,10,35,15,10,180,40,130,10,35,35,30,25,25,190,55,15,25,30,20,0,10,10 -1426,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Montenegrin,935,0,0,35,0,10,0,10,15,0,25,0,10,0,0,10,10,0,30,0,0,0,10,15,45,0,0,0,0,10,0,20,0,0,0,0,0,0,0,0,15,0,30,0,0,0,0,10,0,0,20,20,0,25,10,0,0,0,0,55,10,0,0,0,10,25,0,0,10,0,0,10,0,0,0,0,35,0,20,0,0,0,0,20,60,0,10,15,0,0,0,10,0,10,10,0,0,0,0,0,35,0,0,0,10,15,0,0,0,0,0,10,35,0,20,0,10,10,0,10,0,10,0,10,0,0,10,0,0,0,0,0,25,0,0,0,0,10,0,0,0 -1427,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Serbian,"19,375",0,35,140,225,420,160,100,105,15,135,0,110,50,35,40,255,70,545,45,75,10,65,90,265,65,65,20,35,75,185,175,70,135,10,50,115,300,85,25,110,865,580,150,170,160,45,60,50,20,495,685,15,100,110,0,0,60,20,"1,475",150,0,55,35,55,145,105,50,100,105,145,145,40,160,30,0,890,0,345,70,120,15,10,275,560,70,75,130,190,70,145,20,60,155,165,50,320,45,50,100,220,0,65,90,135,130,75,115,10,10,170,90,185,0,705,70,120,110,15,65,65,10,120,585,55,55,115,45,15,75,155,135,150,65,10,50,55,135,165,25,35 -1428,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Sicilian,675,0,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,15,0,0,0,0,0,10,10,0,0,0,0,0,60,0,0,0,0,10,0,0,0,10,0,10,0,0,0,20,0,0,0,0,0,0,0,30,0,0,25,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,10,0,10,10,0,10,0,0,0,0,10,10,40,0,10,10,0,10,0,0,0,0,0,10,10,10,10,0,10,10,10,0,0,0,10,0,10,10,10,0,10,20,25,20,0,0,0,0,0,0,15,0,25,10,0,25,0,0,0,20 -1429,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Slovenian,"5,475",15,30,390,105,55,20,20,35,20,70,0,10,0,0,10,10,10,20,0,10,10,25,15,70,30,15,10,35,70,55,40,20,30,40,40,25,60,10,20,35,55,80,10,15,30,25,0,10,15,95,115,30,10,45,0,10,10,10,280,35,0,15,10,50,35,35,20,10,135,60,90,15,35,20,25,135,0,95,0,35,10,0,90,90,30,20,50,110,40,30,10,35,20,20,40,45,40,10,80,70,0,30,40,45,55,35,65,15,0,50,30,70,0,150,0,35,70,25,0,30,25,30,135,10,30,0,50,10,45,85,25,165,60,25,10,20,25,40,35,15 -1430,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Spanish,"56,815",335,270,155,675,380,465,370,320,135,340,265,550,245,415,115,500,110,230,675,250,405,275,330,730,490,620,275,530,95,210,540,475,915,"1,490",385,520,390,445,225,535,405,245,425,490,275,"1,265",270,195,295,515,465,275,215,360,315,655,510,285,"1,105",430,460,405,275,440,100,190,495,310,170,220,350,325,160,740,180,215,225,745,375,370,475,385,295,740,255,120,395,795,175,440,190,765,465,225,295,735,290,155,170,120,185,415,655,235,395,705,220,320,315,430,475,175,145,370,405,260,345,215,245,240,130,355,"1,430",640,725,720,695,210,550,760,245,420,850,215,140,385,340,220,830,350 -1431,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Yugoslavian; n.o.s.,"3,310",0,0,50,65,20,10,25,25,10,15,0,25,70,10,0,15,35,20,15,40,0,30,30,55,30,15,25,30,15,50,40,10,30,10,30,35,35,0,25,10,75,30,20,0,25,20,20,20,10,25,65,20,0,40,10,20,0,10,105,25,0,25,30,10,30,0,40,15,0,10,40,10,30,30,0,10,0,70,15,40,0,35,55,75,30,20,10,50,30,10,10,20,30,30,40,60,30,0,75,50,10,10,35,35,10,20,25,0,25,30,0,25,0,45,10,15,40,20,65,45,0,0,45,30,0,10,10,10,60,10,25,20,10,0,15,30,20,25,20,10 -1432,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Southern European origins; n.i.e.,260,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,10,0,0,0,0,20,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,40,0,0,0,10,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,10,0,0,15,0,0,0,20,0,0,0,20,0,0,0,10,0,0 -1433,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Antiguan,"1,320",10,0,10,10,30,10,0,0,15,10,10,10,30,10,0,0,0,0,0,0,0,10,0,10,10,0,15,0,0,0,15,20,0,10,10,15,0,30,10,10,15,0,15,0,0,30,0,0,0,0,0,0,0,0,15,0,0,0,20,0,0,25,10,30,0,0,70,10,0,0,0,0,0,150,0,0,20,10,0,0,10,10,10,20,0,0,10,10,0,10,25,10,25,0,0,30,10,0,20,0,10,10,0,0,0,35,0,0,35,0,10,10,0,0,10,10,0,10,10,0,0,10,15,0,10,10,20,0,10,25,0,10,60,0,10,10,10,10,20,0 -1434,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other European origins,"42,130",0,35,75,"1,360",455,"1,265",435,305,340,"2,005",10,60,110,25,150,250,220,105,80,265,85,720,50,555,85,"1,405",90,180,165,200,275,35,675,260,290,215,120,35,25,"2,065",130,55,280,"1,335",980,110,185,25,60,360,385,30,270,45,25,35,985,65,300,220,30,50,250,145,40,130,120,935,345,600,295,360,115,140,25,35,10,255,25,220,50,75,395,700,115,50,"1,335",400,305,125,40,525,120,50,470,290,40,215,70,100,120,75,100,280,510,125,210,20,25,170,385,445,20,170,100,70,350,40,125,295,240,85,955,145,105,"2,725",75,110,110,620,485,80,145,205,95,585,400,355,240,85 -1435,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Basque,510,0,0,0,30,0,0,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,10,0,10,0,0,0,0,10,0,0,0,10,0,0,10,0,10,0,0,20,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,20,0,20,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,20,0,0,0,10,10,0,20,0,0,15,0,0,0,0,10,0,10,0,0,10,0,0,10,0,0,0,0,0,15,0,0,15,20,0,30,0,0,0,0,10,0,0,10,0,10,0,0,10,0,20,0,0 -1436,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Jewish,"34,270",0,20,65,"1,235",370,"1,170",315,265,290,"1,645",10,15,60,20,130,210,215,65,45,225,25,670,10,425,10,"1,235",45,120,130,185,230,15,535,135,240,110,85,20,10,"1,830",30,20,45,"1,200",865,45,135,10,30,275,305,10,250,50,20,10,910,20,200,180,10,30,205,95,30,90,60,840,300,510,240,310,70,60,15,25,0,180,15,150,30,45,345,615,65,70,"1,295",335,280,70,10,435,80,35,425,240,15,180,70,70,75,55,35,225,395,50,175,15,0,110,305,405,20,150,60,40,320,25,45,225,235,60,645,60,70,"2,640",40,85,80,555,420,55,95,175,60,545,315,270,145,70 -1437,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Roma (Gypsy),900,0,10,0,20,10,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,20,45,0,0,0,0,0,10,0,30,85,0,10,0,0,0,0,20,15,215,0,0,10,15,0,0,10,0,0,0,0,0,0,0,0,20,0,0,0,0,45,0,10,0,0,0,0,0,0,0,40,0,0,0,40,0,0,0,0,10,0,0,0,0,0,0,10,0,10,0,0,0,10,0,0,0,0,10,0,0,35,10,0,0,0,0,20,0,10,0,0,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,10,0,10,0,10,0,0,0,35,10 -1438,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Slavic; n.o.s.,495,0,0,0,0,0,20,0,0,10,0,0,0,10,0,0,0,10,0,0,0,0,0,15,10,10,0,0,10,0,15,0,0,0,0,0,0,10,0,0,0,30,0,0,15,0,15,0,0,10,15,25,0,0,0,0,0,0,0,15,0,0,10,0,0,0,10,0,10,0,0,0,20,0,0,0,10,0,10,0,0,0,0,0,10,20,0,15,20,0,0,0,10,0,10,10,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,35,10,10,10,0,0,0,0,0,0,0 -1439,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other European origins; n.i.e.,"6,320",0,10,20,95,65,95,110,45,30,375,0,30,30,15,10,40,0,25,25,35,65,60,20,80,20,170,30,40,15,0,35,15,105,35,35,90,30,20,15,250,25,15,10,130,110,45,30,10,25,75,70,25,25,10,10,25,80,40,60,30,20,15,50,10,10,30,50,85,20,80,50,35,40,55,10,0,0,50,10,40,0,35,60,70,25,0,40,55,45,45,35,55,40,10,20,85,20,10,10,20,25,25,50,20,110,80,25,0,15,30,65,50,10,20,45,55,25,15,85,65,30,20,270,60,40,90,35,25,20,30,35,10,55,35,25,45,75,80,60,0 -1440,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bahamian,620,0,0,0,0,0,0,25,10,0,0,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,25,0,15,0,20,0,0,20,0,0,0,10,0,0,10,10,10,0,0,10,0,0,15,0,0,0,15,10,0,0,10,0,0,0,0,0,15,0,0,0,10,35,0,0,0,35,0,10,0,0,0,0,0,0,0,25,0,10,0,20,10,10,0,25,0,0,0,0,0,10,10,10,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,40,0,0,15,0,0,0,0,0,0,35,0,0,10,20,0,0,0 -1441,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Barbadian,"9,015",125,65,35,45,50,0,30,35,0,30,35,125,65,105,55,55,0,15,95,20,25,10,65,115,100,10,80,50,25,115,110,65,85,110,80,75,35,110,35,25,10,60,90,30,10,75,115,55,80,25,30,105,10,40,25,35,60,95,110,40,10,95,30,80,10,60,130,45,50,35,25,30,25,310,15,10,80,90,90,85,75,85,30,35,40,15,45,90,20,20,55,110,110,0,50,200,50,10,20,20,55,40,105,75,45,475,25,65,125,160,75,10,25,20,105,70,75,20,30,15,0,110,215,270,115,20,65,15,110,75,15,50,270,60,45,35,0,20,105,25 -1442,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bermudan,650,0,0,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,20,10,20,10,10,10,35,0,0,0,0,25,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,15,10,0,0,10,0,0,0,0,25,10,0,0,0,10,0,0,0,0,10,20,0,25,0,10,15,0,20,0,0,0,0,0,0,0,0,15,15,10,0,0,0,20,0,0,15,0,0,10,0,0,15,0,30,40,0,0,0,15,0,0,0,0,0,25,0,0,0,20,0,10,0 -1443,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Carib,995,25,0,0,10,0,10,10,0,0,10,0,0,20,20,0,30,0,10,0,0,25,0,0,0,10,0,0,0,10,10,10,15,15,35,0,15,0,35,0,0,0,0,0,0,0,10,0,0,0,0,0,25,10,20,10,0,0,10,10,0,10,0,10,25,0,0,20,0,0,20,0,0,0,30,0,0,10,10,10,0,0,0,0,10,25,0,0,0,10,10,0,25,15,10,0,10,10,0,0,10,0,0,30,20,0,45,0,0,0,0,0,0,10,10,10,15,20,0,10,15,0,15,10,20,0,0,15,0,20,10,0,0,35,0,0,0,0,0,0,15 -1444,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Cuban,"5,345",20,45,50,65,30,50,30,70,0,20,55,70,20,35,15,55,30,0,65,25,35,0,15,65,60,75,0,75,0,25,35,10,110,100,25,30,45,35,10,70,25,100,45,80,45,60,40,10,20,45,60,25,10,35,75,50,25,25,80,40,60,0,35,100,0,25,25,15,0,0,15,25,85,115,30,30,10,70,25,40,60,60,20,60,30,15,45,20,25,40,10,160,20,25,10,95,30,0,10,25,10,25,95,40,45,75,0,25,40,35,15,25,0,70,45,50,35,40,0,10,20,35,65,20,140,25,55,25,35,40,25,45,105,20,10,35,10,30,65,55 -1445,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Dominican,"3,580",20,20,0,35,10,25,25,20,0,25,20,10,10,100,25,50,0,10,100,20,10,0,10,0,35,0,0,15,10,0,10,25,75,150,0,10,10,15,40,20,10,50,20,0,0,290,0,0,0,20,10,25,0,10,20,55,0,25,10,30,20,40,10,35,0,0,10,25,0,0,15,10,10,80,60,0,15,40,20,50,45,10,10,0,15,0,0,35,0,35,35,65,35,0,0,10,25,0,0,0,0,100,120,0,0,75,0,70,30,40,20,30,0,0,50,10,15,30,10,10,10,30,40,20,75,35,40,15,55,30,15,60,105,10,0,25,10,15,45,30 -1446,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Grenadian,"7,370",75,35,10,20,40,30,15,25,15,0,170,60,30,140,10,115,0,0,260,10,105,20,10,25,80,25,120,55,0,10,35,65,130,170,15,85,30,95,85,85,10,0,50,40,0,185,20,20,35,10,0,45,25,10,0,120,35,40,65,10,110,45,50,45,0,40,105,15,0,20,0,15,10,245,20,0,10,45,55,20,205,185,10,25,20,0,50,40,0,0,10,200,95,10,0,125,35,0,25,0,10,40,195,40,10,155,0,150,40,75,15,20,10,0,70,40,10,25,10,10,15,60,125,130,160,10,320,95,70,0,10,30,170,10,25,40,20,20,165,75 -1447,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Haitian,"3,440",10,50,0,0,0,15,30,0,0,0,10,45,55,75,0,10,0,10,50,0,10,0,0,35,15,0,15,25,0,10,15,35,30,55,20,10,0,165,20,25,0,10,40,0,0,65,0,20,10,10,10,20,10,0,0,85,10,35,55,10,0,0,10,35,10,10,40,10,0,0,0,10,20,150,10,0,0,20,55,20,20,225,0,10,25,0,0,55,25,0,10,0,10,10,10,30,15,0,0,0,20,0,15,20,0,90,15,0,210,45,40,15,0,15,15,40,0,0,15,20,0,20,55,230,75,10,35,10,15,10,10,0,150,30,10,0,20,10,55,0 -1448,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Jamaican,"90,065",780,645,125,405,410,200,160,280,275,175,775,720,425,"2,050",280,425,65,170,"1,640",210,240,115,510,385,845,225,500,265,160,225,560,965,715,"2,350",215,475,295,"1,450",725,810,315,245,410,180,135,"2,870",295,270,295,270,395,850,270,270,975,"1,230",350,600,890,165,550,815,370,"1,235",30,315,"1,595",140,105,105,140,215,185,"4,065",375,110,575,680,"1,495",470,"1,510","2,465",200,430,420,70,200,575,150,300,480,"1,040",630,150,135,"1,620",560,80,320,75,260,585,"1,155",250,150,"3,610",110,"1,025","1,255",480,540,330,280,320,935,355,145,615,260,140,70,680,"1,155","2,595","2,460",570,"2,360",380,700,440,100,780,"2,740",290,210,420,75,100,"2,045",570 -1449,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kittitian/Nevisian,905,0,10,10,0,0,10,10,0,0,0,0,0,0,0,0,20,0,10,10,0,0,0,0,0,10,0,10,0,0,0,0,0,0,10,10,0,10,30,10,0,10,10,0,10,0,60,30,0,15,0,0,0,0,0,20,10,0,0,0,0,0,0,10,20,0,0,10,0,10,0,0,0,30,20,0,0,0,0,10,25,0,20,0,20,15,0,10,10,10,0,0,0,40,0,0,20,0,0,0,10,15,0,15,10,10,10,0,0,25,0,10,0,0,0,20,10,0,20,10,0,0,20,10,10,0,0,25,0,0,0,0,0,15,0,0,15,0,0,45,0 -1450,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Martinican,75,0,0,0,0,0,10,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,15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1451,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Montserratan,240,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,10,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,35,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,10,0,0,10,0,0,0,20,25,0,0,0,0,0,0 -1452,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Puerto Rican,450,0,0,10,10,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,10,0,10,0,10,0,10,0,10,0,10,0,0,10,10,0,20,0,0,0,20,0,0,0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,10,10,0,0,0,0,0,10,0,0,0,10,20,10,0,10,0,0,10,10,15,0,0,25,10,0,0,0,10,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,25,0 -1453,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, St. Lucian,"3,525",0,40,0,10,20,0,0,15,20,15,80,25,10,85,25,10,0,50,195,0,25,0,20,0,20,10,50,15,0,0,0,60,0,180,10,0,0,40,60,25,20,0,15,10,0,145,10,0,0,10,10,30,20,0,20,125,15,15,10,0,45,25,0,0,0,10,45,0,0,0,0,0,15,80,35,0,35,20,15,0,160,195,0,0,0,10,10,10,10,0,20,40,25,0,0,40,15,0,0,0,10,15,30,15,0,55,0,95,20,15,20,0,0,10,20,20,0,0,0,0,0,50,25,65,110,20,90,15,40,10,10,45,50,0,10,10,0,0,125,15 -1454,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Arawak,470,0,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,25,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,10,0,0,0,10,0,30,0,0,0,10,10,0,0,0,0,0,10,0,0,0,0,0,0,10,10,10,10,15,0,0,0,0,0,0,0,0,0,15,0,0,0,10,10,0,10,20,10,15,0,0,0,10,0,0,0,0,15,0,10,0,10,10,0,30,35,0,10,0,0,0,0,0 -1455,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Trinidadian/Tobagonian,"20,215",180,305,70,75,145,70,80,55,85,55,70,265,90,165,65,140,0,70,175,85,80,45,175,175,250,25,145,65,25,35,170,255,240,260,80,115,75,370,160,115,45,80,100,55,35,225,80,115,130,75,130,170,90,100,85,70,95,100,200,50,65,250,140,140,10,120,295,30,30,50,70,100,140,"1,005",65,45,145,170,160,155,135,250,100,190,145,20,140,285,100,125,135,210,215,130,50,330,70,45,125,40,80,125,160,90,45,870,30,35,225,270,185,40,85,100,170,135,135,100,110,60,10,200,585,475,495,50,175,95,280,160,55,135,625,50,95,105,45,70,225,90 -1456,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Vincentian/Grenadinian,"6,165",25,30,0,0,20,10,10,15,45,0,135,125,25,225,10,55,0,10,200,0,40,10,15,10,50,40,80,35,0,25,20,60,45,250,0,25,15,145,35,30,20,15,25,0,0,330,0,0,20,10,20,85,15,40,0,85,10,45,60,10,55,20,10,55,0,55,50,10,0,10,0,10,15,225,10,10,20,10,130,25,140,170,30,25,50,0,10,30,10,25,75,65,65,10,0,90,35,15,30,0,15,35,85,0,10,140,0,70,140,45,10,20,0,20,70,0,10,75,35,20,0,30,30,185,185,10,165,30,40,50,0,15,155,10,10,40,10,10,175,35 -1457,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, West Indian; n.o.s.,"20,315",235,220,75,70,110,35,85,95,65,15,80,350,90,460,45,70,10,60,300,30,80,10,140,75,160,50,135,55,35,70,25,340,220,250,30,110,35,565,125,95,100,85,75,30,10,730,55,55,55,55,80,290,25,40,160,235,65,165,155,50,50,240,50,180,20,0,370,55,35,45,15,40,25,975,75,20,115,105,270,20,240,730,10,100,135,65,30,190,25,95,130,245,185,40,40,375,75,10,45,10,50,170,180,55,15,"1,040",25,160,345,140,110,30,40,65,165,120,65,35,60,55,30,215,210,570,755,75,275,145,280,75,20,245,675,90,50,95,40,25,380,95 -1458,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Caribbean origins; n.i.e.,"7,870",45,125,0,30,50,10,40,55,55,0,85,75,40,200,20,30,15,20,290,30,45,25,80,90,40,45,40,30,0,20,65,45,135,200,20,55,20,85,40,95,15,10,85,10,20,150,45,80,40,15,35,40,0,15,10,95,60,60,35,20,75,35,0,70,10,0,95,25,0,25,0,25,20,295,30,0,40,45,70,75,195,145,25,65,35,0,45,105,10,45,45,125,35,10,30,145,20,10,45,10,40,20,45,20,10,260,0,60,45,55,80,30,15,55,55,30,30,0,30,0,25,65,275,135,190,20,175,65,65,50,0,55,195,0,40,55,30,10,140,40 -1459,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Latin; Central and South American origins,"113,820",470,480,315,765,585,670,720,585,300,520,385,"1,020",440,"2,100",180,"1,185",150,450,"2,025",365,960,325,365,"1,150",675,470,510,"1,315",170,485,720,695,"2,205","3,955",650,645,825,945,"1,000",840,715,455,545,460,205,"4,025",500,295,570,915,790,640,320,600,"1,005","2,020",740,510,"1,835",765,"1,095",585,475,"1,200",120,350,790,395,250,245,390,610,365,"2,115",730,250,270,"1,395",665,670,"1,590","1,735",525,"1,335",430,165,510,"1,550",300,670,370,"1,585",625,245,540,"1,580",860,170,310,290,415,830,"2,635",505,515,"1,700",285,785,665,980,640,500,90,670,670,460,495,795,385,440,230,660,"2,325","1,640","2,240",615,"1,450","1,045",960,"1,090",340,"1,150","1,745",330,245,645,370,300,"2,055","1,025" -1460,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Aboriginal from Central/South America (except Arawak and Maya),"4,495",50,20,0,25,10,20,20,40,25,30,35,70,0,35,10,50,0,10,115,10,35,10,0,65,20,10,40,135,0,10,10,50,105,130,30,40,75,10,10,45,0,10,30,10,15,60,15,10,30,20,35,30,10,20,20,100,55,10,40,20,115,10,0,25,0,15,65,15,10,20,0,35,20,60,15,0,10,35,45,35,50,25,10,70,50,0,10,45,25,35,10,115,25,0,40,85,0,15,0,0,20,60,75,30,10,55,0,10,25,50,20,35,0,20,20,30,10,20,20,20,10,30,65,75,60,0,70,25,10,10,20,0,105,20,0,35,10,20,125,15 -1461,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Argentinian,"4,250",0,0,20,65,45,25,30,30,10,25,0,0,0,50,0,85,10,0,65,30,10,0,0,35,0,20,10,45,25,10,10,0,75,245,10,35,20,0,75,40,40,25,0,25,0,195,30,15,15,30,40,0,0,10,60,135,95,30,125,50,55,0,15,65,10,10,0,20,25,0,30,45,0,25,55,25,0,80,0,10,25,40,30,35,25,0,35,50,15,25,10,45,0,10,25,35,80,0,15,15,0,60,75,45,30,20,0,45,25,60,20,30,0,20,10,10,10,10,0,0,10,25,95,10,55,45,45,10,60,15,15,25,0,10,0,35,20,25,190,20 -1462,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Belizean,185,0,0,0,0,15,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,15,0,0,0,25,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0 -1463,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bolivian,780,0,0,0,20,10,10,10,15,0,15,10,10,0,0,0,0,0,0,10,0,10,0,0,0,10,0,0,20,0,0,0,0,0,60,0,10,60,0,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,10,15,0,0,0,15,0,0,10,10,0,0,0,0,0,10,20,0,0,0,0,0,0,0,0,0,35,0,0,10,0,0,10,0,0,0,15,30,20,10,10,0,25,0,0,0,0,10,10,0,15,0,0,0,0,0,0,20,0,15,25,20,0,30,0,0,0,0,15,0,10,0,0,0,0,0,10,0,0,0,0,20,0,10,0,0 -1464,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Brazilian,"8,365",0,15,30,45,30,35,90,55,0,65,95,40,10,40,20,200,35,20,200,55,140,35,10,140,15,25,20,180,0,45,45,10,405,135,160,65,60,0,35,40,80,25,20,25,0,35,10,0,55,90,45,10,10,70,15,50,55,10,230,80,230,15,65,85,10,15,40,35,10,20,80,125,40,10,55,30,0,150,0,50,200,20,35,160,35,20,50,160,20,105,25,155,45,20,95,70,50,10,0,35,10,0,300,35,70,10,40,0,0,80,45,15,0,125,20,85,30,0,35,95,30,20,240,25,15,0,145,195,30,125,85,75,25,25,10,85,95,40,20,145 -1465,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Chilean,"5,900",20,0,25,50,20,40,50,30,25,10,0,50,25,110,0,45,0,40,50,35,65,10,25,25,25,0,20,220,20,45,55,10,120,310,60,15,55,35,95,35,85,30,10,15,25,225,60,0,0,105,55,0,10,65,35,75,60,20,105,20,55,0,10,100,0,40,45,10,10,30,10,25,50,0,130,15,0,95,25,15,45,65,20,45,35,0,20,130,25,20,15,60,40,0,60,40,15,25,0,15,45,110,60,20,10,10,25,0,35,85,80,0,0,45,35,15,35,65,10,45,0,0,110,0,130,0,100,60,10,50,0,205,20,0,20,110,20,0,30,10 -1466,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Colombian,"12,235",25,30,30,85,155,140,65,105,50,70,10,25,70,140,10,280,25,55,255,30,35,70,25,120,90,165,40,95,20,60,230,30,150,455,55,40,235,55,105,140,170,55,130,100,30,150,30,25,80,105,105,20,95,145,110,185,65,0,315,70,60,10,35,190,30,30,75,50,45,10,45,50,35,95,75,30,0,190,10,95,170,70,90,235,40,55,50,200,10,105,0,155,60,65,45,410,45,10,35,55,60,45,50,80,115,25,0,55,40,65,55,115,0,45,65,10,50,125,145,20,30,220,300,30,100,135,120,35,140,245,95,135,75,0,0,90,40,70,200,165 -1467,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Costa Rican,"1,070",15,0,0,10,0,0,10,0,0,0,15,10,0,0,0,25,0,0,70,0,35,0,10,10,10,0,0,0,0,0,10,0,10,75,0,20,0,0,10,0,10,10,0,10,0,35,0,0,0,10,0,0,0,0,0,25,0,0,20,10,0,0,10,0,0,10,0,10,0,10,0,10,0,0,0,0,0,10,15,10,10,15,0,0,0,0,0,15,10,0,10,40,10,0,0,15,10,0,0,0,0,0,55,0,10,20,0,10,0,10,0,0,0,0,15,0,0,0,0,10,0,0,20,10,30,0,10,0,10,0,0,35,0,15,0,0,0,10,50,25 -1468,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ecuadorian,"9,990",10,45,10,55,15,50,25,25,0,45,25,35,25,305,0,65,10,30,315,20,115,0,0,0,20,80,40,165,0,15,10,0,375,620,25,15,85,55,120,40,30,110,15,55,20,880,20,0,25,30,80,10,0,45,175,475,70,0,120,50,170,0,85,110,0,0,20,20,15,10,0,45,20,65,170,15,0,80,0,50,180,130,25,60,25,10,50,60,0,10,10,190,50,10,30,35,210,0,35,20,55,90,490,20,10,0,35,100,20,60,10,20,0,75,0,15,0,110,0,50,35,10,100,25,140,65,235,230,25,50,0,80,20,25,15,50,25,20,390,115 -1469,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Guatemalan,"3,110",0,30,0,10,0,20,20,0,0,0,10,10,0,140,10,0,10,0,75,0,25,0,10,30,40,10,0,0,10,0,10,0,60,285,0,0,20,15,40,40,15,0,0,15,10,130,15,10,0,50,10,0,10,10,40,95,10,10,70,30,60,0,0,85,0,10,0,10,10,0,20,10,0,35,0,0,0,15,25,20,65,105,10,0,10,0,10,40,0,10,0,55,20,0,25,30,65,10,0,0,0,30,165,10,20,20,10,70,25,10,20,15,0,20,0,0,0,10,20,10,0,0,35,20,115,15,65,15,20,0,0,55,30,10,0,25,10,10,80,30 -1470,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Guyanese,"26,690",245,240,30,105,130,50,70,85,85,45,80,445,145,665,40,115,25,95,230,40,90,20,200,190,290,85,245,55,40,135,85,435,255,375,70,230,25,615,125,120,60,50,130,45,20,"1,010",100,120,140,100,95,470,30,105,210,280,30,305,210,80,75,350,65,165,40,50,340,45,60,20,80,35,40,"1,440",35,30,210,170,375,190,295,800,35,105,65,25,55,250,120,75,205,115,240,55,90,430,80,15,100,20,110,60,290,140,45,"1,190",50,160,415,190,165,90,40,50,285,120,120,205,60,70,20,210,355,970,"1,210",65,165,140,290,135,35,215,"1,010",105,55,25,20,45,355,180 -1471,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Hispanic,"2,150",10,0,0,10,0,45,10,50,0,10,0,10,10,70,0,20,0,10,10,0,10,0,25,0,20,0,10,20,0,25,0,0,35,60,0,10,25,25,0,20,40,0,10,10,0,90,0,0,25,0,10,0,0,10,35,40,30,0,40,15,10,15,35,35,0,30,0,20,0,0,10,25,0,10,10,10,0,25,0,20,20,10,0,0,0,0,10,20,0,0,0,90,0,10,10,45,0,0,10,0,0,10,55,0,10,40,15,35,20,25,0,0,0,10,35,0,0,20,20,0,0,10,35,50,15,10,50,10,15,25,0,30,10,10,10,10,10,0,105,10 -1472,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Honduran,"1,020",0,0,0,0,0,30,0,0,0,0,0,0,10,20,0,0,0,0,30,0,30,0,10,10,0,0,0,15,10,25,0,0,10,55,0,0,0,0,15,10,0,0,0,10,0,55,0,0,0,15,0,0,0,10,0,0,0,0,0,15,40,0,20,10,0,0,0,0,0,0,0,0,0,10,10,0,0,25,0,0,60,0,10,0,50,0,0,10,0,0,0,25,0,0,0,0,10,0,0,0,0,0,40,0,0,0,0,15,0,0,10,0,0,0,10,10,10,10,0,0,0,0,50,0,40,10,45,25,10,0,0,10,10,0,0,0,0,0,10,40 -1473,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Maya,785,0,0,0,10,0,0,0,0,0,0,0,25,30,20,0,20,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,25,20,0,20,0,0,15,0,0,0,0,0,15,0,0,0,0,0,10,0,0,0,10,0,0,10,0,15,0,0,0,0,10,10,0,0,0,0,55,0,10,15,0,0,10,20,0,0,10,20,10,0,0,15,10,20,15,0,45,0,0,10,10,0,0,10,0,10,10,25,10,10,0,0,15,0,10,0,0,0,0,0,0,20,0,10,0,0,10,10,0,0,15,10,0,10,10,0,0,15,10,0,0,0,0,25,0 -1474,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Beninese,235,0,0,0,0,10,0,0,0,0,0,0,0,0,15,0,10,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,15,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,10,0,0,0,0,10,0,0,0,0,10,0,0,10 -1475,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Mexican,"12,095",30,20,55,110,65,85,180,55,15,75,25,80,65,140,40,155,30,85,220,75,155,95,60,240,40,25,65,165,20,75,75,10,270,330,135,75,110,10,25,75,30,50,60,70,30,220,35,105,35,205,165,20,40,15,110,105,135,15,185,150,65,35,30,110,0,45,60,40,60,75,35,65,75,55,60,40,20,230,80,120,115,115,105,235,90,20,95,230,20,100,35,240,45,15,65,130,90,35,15,60,25,110,275,75,95,50,60,35,30,110,115,100,20,105,55,30,110,105,80,55,10,30,340,140,45,70,90,130,100,185,50,110,90,60,30,60,50,55,130,105 -1476,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Nicaraguan,"2,330",0,20,0,10,0,0,10,15,0,20,0,70,15,30,40,20,0,25,40,0,20,10,0,60,35,0,25,20,0,10,20,0,80,80,10,10,40,15,10,15,0,0,30,0,0,60,25,10,0,10,25,10,0,0,15,95,0,55,0,10,0,25,20,50,0,0,15,0,0,0,30,10,0,10,20,0,0,20,0,0,10,35,10,10,25,0,0,30,0,10,20,0,35,0,0,45,0,0,0,0,0,75,15,0,0,20,0,65,0,55,20,25,10,10,0,20,0,40,0,0,0,30,40,60,35,10,25,10,35,0,0,50,105,0,10,0,0,0,45,10 -1477,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Panamanian,890,20,0,0,10,0,25,0,0,0,0,0,0,10,20,0,0,0,0,25,0,0,0,0,0,0,10,20,0,0,0,10,0,0,20,0,10,10,25,30,10,15,20,0,10,0,10,10,0,0,20,30,0,0,0,0,0,20,0,0,0,15,20,10,0,0,0,30,20,10,0,10,0,0,0,0,0,0,10,45,10,0,0,0,15,0,0,0,10,0,10,0,10,10,0,0,15,0,0,0,0,10,10,20,0,10,40,10,10,0,0,0,10,0,15,25,10,10,10,0,0,0,10,0,10,10,0,0,0,0,10,0,20,20,0,0,15,0,0,0,0 -1478,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Paraguayan,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,15,0,0,10,10,0,30,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,10,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0 -1479,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Peruvian,"4,990",35,0,30,85,20,30,50,40,35,40,10,10,10,110,10,50,0,20,50,0,30,10,0,110,0,0,20,60,15,20,60,10,110,220,45,30,30,0,55,55,25,0,30,10,0,220,0,0,0,60,55,10,55,15,20,105,20,0,85,75,30,15,10,25,10,40,25,0,0,20,15,25,10,10,30,25,0,95,10,10,50,25,65,120,10,0,55,70,15,25,0,120,30,10,10,45,10,0,15,55,30,30,210,30,30,40,0,55,0,35,35,0,25,35,30,10,20,40,0,40,20,10,155,20,45,55,100,50,10,45,25,50,10,10,35,60,10,20,40,55 -1480,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Salvadorean,"9,565",10,70,20,20,25,40,0,10,30,60,30,125,40,260,0,75,0,10,235,30,85,10,0,65,60,35,25,100,15,35,30,65,230,575,0,10,65,40,210,70,55,35,65,20,25,690,20,0,40,45,20,20,35,55,165,325,10,50,160,50,120,45,45,150,0,10,60,0,0,20,0,55,45,135,85,20,0,45,10,25,255,180,15,60,10,0,55,90,10,35,10,95,30,0,45,10,165,0,65,10,25,215,490,35,15,50,25,175,35,120,50,10,0,35,65,25,15,85,0,30,40,30,65,165,155,35,165,140,75,30,0,80,85,45,0,10,0,0,230,35 -1481,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Uruguayan,"1,300",0,0,0,10,0,0,0,0,0,0,10,10,0,0,0,20,0,10,65,0,10,0,0,0,10,0,0,20,0,0,25,0,10,65,10,0,0,0,25,25,40,30,0,15,0,50,10,0,0,10,20,0,10,0,0,35,10,0,10,25,0,0,0,25,0,0,10,10,15,25,0,10,20,0,0,0,0,35,0,0,10,0,0,0,10,10,0,0,0,0,0,10,15,0,0,30,15,0,10,10,0,25,10,25,0,0,15,20,0,0,10,0,10,20,10,0,10,15,10,10,0,0,20,0,20,30,25,10,10,20,10,0,0,0,0,0,30,0,65,35 -1482,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Venezuelan,"4,215",10,25,30,70,30,55,60,40,25,15,20,15,30,25,0,70,0,45,45,15,45,30,10,70,40,20,20,20,20,20,70,40,50,15,15,60,10,0,0,20,20,10,0,40,0,0,30,0,90,40,40,0,10,35,0,10,55,0,130,25,10,0,10,30,20,25,10,65,0,10,10,50,10,60,15,10,45,115,0,45,35,0,50,160,0,0,15,110,15,65,0,85,10,20,0,60,30,30,15,15,10,0,40,10,45,20,0,10,10,35,40,10,10,30,10,40,25,10,15,0,30,20,275,20,0,10,35,40,50,155,20,10,65,0,15,10,30,30,20,20 -1483,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Latin; Central and South American origins; n.i.e.,"5,075",30,35,30,30,10,40,10,15,25,40,40,55,10,55,0,45,0,0,115,20,90,10,20,70,10,0,0,75,0,20,30,25,75,215,35,10,15,55,55,145,10,40,30,40,0,225,40,15,20,10,35,40,0,15,30,20,75,20,65,75,55,20,35,35,0,10,40,25,0,25,25,25,0,130,10,15,0,60,50,0,20,130,25,30,35,0,10,110,20,25,0,45,40,15,30,90,30,15,10,0,25,20,65,10,35,65,10,20,15,55,0,55,0,20,25,25,30,10,10,10,20,25,130,115,110,35,65,25,70,75,0,35,70,0,0,40,20,20,150,50 -1484,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, African origins,"146,875",535,625,215,"1,040",990,600,"1,135",640,415,625,730,"1,100",545,"3,320",645,565,235,345,"2,440",335,330,340,520,"1,535","1,585",850,460,385,270,435,"1,000","1,060","1,440","2,120",475,845,535,"1,980","2,025","1,645",760,460,"2,055",510,280,"3,425",640,225,835,665,660,515,400,870,760,"1,700",650,980,"2,385",405,405,"1,355",745,"4,315",120,470,"1,990",555,335,305,270,640,265,"3,035",255,110,310,"1,165","1,255","2,120","1,955","4,975",490,"1,250",820,180,415,"1,590",225,"1,875","1,820","1,375",885,130,315,"2,600",500,190,550,205,"1,275",790,"1,870",535,580,"2,270",190,"2,160","1,375","1,485",890,590,615,460,"1,110","1,185",410,920,"1,180",250,210,"1,410","3,435","2,595","3,180",810,"3,285",675,"1,130","1,545",280,"1,910","2,470",530,245,610,310,370,"2,450",820 -1485,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Central and West African origins,"31,135",55,110,15,115,105,80,190,175,45,10,280,100,45,"1,595",70,50,20,35,660,40,40,35,35,345,190,105,60,65,55,35,170,150,220,725,95,30,100,420,485,240,45,105,360,55,20,"1,595",150,40,115,120,115,45,60,170,300,655,50,85,615,85,35,200,105,515,0,100,340,30,30,30,40,170,25,680,30,0,0,250,335,285,630,"2,140",85,130,150,30,80,200,25,160,255,190,250,25,15,385,225,25,110,15,230,195,300,150,25,345,25,455,270,155,75,145,20,85,175,155,30,465,60,10,25,285,575,730,"1,235",125,810,130,195,185,20,815,445,105,45,80,65,10,"1,155",195 -1486,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Akan,460,0,15,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,20,0,0,0,0,10,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,15,0,0,0,0,0,0,0,0,0,35,0,0,0,10,0,30,25,10,0,0,0,35,0,25,0,0,0,0,0,0,10,0 -1487,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Angolan,840,0,10,0,25,0,0,0,0,0,0,10,10,0,0,0,0,0,0,20,0,20,10,0,20,0,0,0,15,0,0,0,15,40,10,15,0,10,30,0,15,0,20,20,0,0,0,0,0,0,0,0,0,0,15,0,0,10,10,15,15,10,10,0,15,0,15,0,0,0,0,0,30,0,0,0,0,0,0,0,25,15,0,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,45,0,60,0,0,0,0,10,0,35,0,0,0,0,0,10,0,0,0,10,0,10,15,10,0,10,40,30,0,0,0,0,0,0,0,45,0,0,20,0 -1488,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ashanti,555,0,10,0,0,0,0,0,0,0,10,0,0,0,60,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,15,0,0,10,0,0,10,0,0,10,0,0,0,0,0,35,0,0,0,0,0,0,15,0,10,20,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,115,0,0,0,0,10,0,0,0,0,30,0,15,0,0,0,0,0,0,0,15,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,20,20,0,15,0,0,0,0,20,0,0,0,0,0,0,10,10 -1489,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Burkinabe,45,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,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,10,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,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0 -1490,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Cameroonian,"1,570",0,10,0,0,35,10,25,30,0,0,10,0,0,25,10,0,0,0,35,10,10,0,0,0,0,10,0,0,10,10,10,15,10,25,0,0,0,90,0,0,0,0,10,0,0,45,10,0,10,15,0,0,0,10,0,0,0,0,75,0,0,0,0,15,0,0,15,10,0,15,15,0,10,30,0,0,0,10,25,0,15,60,0,0,30,0,10,10,0,25,10,10,45,0,0,110,0,0,45,0,0,15,0,0,0,15,0,0,30,20,0,0,0,10,15,50,0,0,30,0,0,55,20,30,15,15,55,0,30,25,0,30,0,0,0,0,0,0,55,0 -1491,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Chadian,130,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,10,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0 -1492,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Congolese,"2,630",0,0,0,45,10,20,25,15,0,0,0,20,10,45,15,0,10,10,25,10,10,0,0,60,10,10,20,10,0,10,10,55,0,10,10,0,0,30,20,20,10,10,145,10,0,45,70,0,15,10,35,20,0,0,0,0,0,20,35,0,0,25,10,10,0,0,20,0,0,15,0,10,0,175,10,0,0,0,15,85,110,45,30,20,10,0,0,10,0,60,95,0,55,0,10,60,0,0,0,0,55,30,10,10,0,50,0,10,45,0,10,0,0,10,10,0,10,10,0,0,0,65,30,105,70,0,10,10,0,20,0,0,65,10,25,10,0,0,15,55 -1493,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Edo,490,0,0,0,0,0,0,0,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,10,20,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,15,0,0,135,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,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,40,0,25,0,0,0,0,50,0,0,0,0,0,0,20,0 -1494,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ewe,75,0,0,0,10,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,0,0,0,0,0,0,30,0,0,0,0,0,0,0,10,0,0,0,0,0,0,20,0 -1495,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Gabonese,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,10,0,0,0,0,0,0,0 -1496,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Gambian,435,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,80,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,40,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,15 -1497,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ghanaian,"9,965",0,70,0,20,20,25,15,75,35,0,115,40,10,870,10,0,0,10,260,0,0,10,0,115,30,50,10,0,10,0,20,45,35,365,25,10,50,70,200,85,0,10,40,0,15,605,45,10,10,10,20,10,20,105,190,215,10,30,240,45,10,35,40,155,10,0,70,10,0,10,20,30,0,155,0,0,0,50,80,60,130,930,30,50,20,0,20,20,0,35,30,80,40,0,0,45,140,0,15,0,20,45,110,20,0,60,0,315,65,20,20,45,0,35,60,25,0,330,0,10,10,30,80,155,685,0,240,10,55,50,10,265,115,45,10,15,30,0,295,25 -1498,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Guinean,470,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,40,0,0,15,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,40,0,0,0,0,40,0,0,0,0,10,0,15,0,0,0,0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,20,0,0,10,0,0,0,0,10,0,10,0,0,0,0,25,0,0,0,0,0,35,0,25,0,0,30,0,0,0,0,10,35,10,0,0,15,0,0,0 -1499,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ibo,665,0,10,0,0,20,15,0,0,0,0,30,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,10,15,0,0,40,0,0,0,15,15,0,0,0,0,0,0,25,0,0,0,0,0,10,0,0,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,35,0,0,10,0,0,10,0,0,10,0,0,0,15,0,0,0,10,15,0,0,0,0,0,15,0,0,0,0,0,10,10,0,0,20,0,30,0,0,0,10,0,0,0,10,10,75,0,0,0,0,0,0,20,0,0,0,0,0,0,35,0 -1500,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ivorian,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,20,30,0,0,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,10,0,0,15,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,10,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,15,20,0,0,20,20,15,0,10,0,30,0,0,0,0,0,0,0,0 -1501,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Liberian,170,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,10,0,0,0,0,0,0,0,0,10,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,10,0,10,0,10,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,10,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10 -1502,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Malian,175,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,15,10,0,0,0,0,0,0,0,0,25,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,10,0 -1503,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Malink,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,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,25,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,50,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,15,0,0,0,0,0,0 -1504,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Nigerian,"9,745",40,0,0,10,50,20,85,20,0,0,105,10,10,450,15,15,0,0,190,10,10,10,35,80,55,20,0,10,10,20,65,10,45,185,30,10,40,60,175,55,35,50,50,15,0,730,20,20,55,60,45,20,0,25,70,330,0,10,145,40,10,65,35,260,0,35,130,0,10,0,0,45,15,285,20,0,10,170,140,65,205,660,0,45,40,15,40,110,15,40,90,40,45,0,0,90,35,10,45,0,25,80,55,30,15,100,25,40,120,20,0,55,0,15,35,35,10,70,25,10,30,35,290,175,275,45,305,25,35,20,15,300,195,10,20,20,0,0,575,85 -1505,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Peulh,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,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,10,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,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0 -1506,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Senegalese,365,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,30,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,0,0,0,0,10,0,0,0,0,0,0,0,20,15,10,0,0,0,10,0,0,0,0,10,0,10,20,0,10,0,0,25,10,15,0,0,10,10,0,0,0,0,0,0 -1507,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Sierra Leonean,595,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,10,0,0,50,0,0,0,0,20,15,0,0,0,0,0,0,0,0,35,0,0,0,0,0,10,0,0,35,20,0,50,0,0,0,0,0,0,0,0,0,20,10,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,20,15,20,0,0,0,0,0,10,0,0,0,0,0,0,0,30,0,0,0,0,0,0,15,0,10,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,15,10,10,0,15,0,10,0,15,0,0,0,0,0,0,30,15 -1508,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Togolese,205,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,10,15,0,0,0,10,0,0,0,0,0,15,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,30,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0 -1509,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Wolof,45,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,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,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,20,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,10,0 -1510,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Yoruba,"1,105",0,0,0,0,0,0,0,0,0,0,0,0,10,45,0,0,0,10,10,0,0,0,0,10,0,0,25,0,0,0,0,0,0,35,0,0,0,40,65,10,0,0,15,0,0,55,0,25,0,0,0,0,0,10,10,10,0,0,40,0,0,0,0,25,0,40,0,0,0,0,0,0,0,20,0,0,0,0,30,10,45,95,0,0,10,0,0,0,0,10,0,0,10,10,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,15,0,0,0,40,65,50,15,35,0,15,0,0,20,0,0,0,0,0,0,70,0 -1511,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Central and West African origins; n.i.e.,"1,500",0,0,0,30,0,0,10,25,0,0,0,20,0,30,30,20,0,10,10,10,0,20,0,20,45,0,0,15,10,0,0,20,35,10,10,0,0,0,0,10,0,0,10,0,10,45,15,0,10,0,0,0,0,0,30,10,0,0,0,10,0,10,0,15,0,10,30,0,10,10,0,35,0,10,0,0,0,0,25,15,35,0,10,0,20,20,10,20,10,0,40,45,30,10,0,10,20,0,0,0,30,15,10,10,0,115,0,20,20,20,15,10,0,10,15,10,0,0,0,0,0,30,50,10,20,0,15,10,20,20,0,45,0,10,0,0,0,0,45,0 -1512,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Maure,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,20,0,0,0,10,0,0,0,0,0,0,0 -1513,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, North African origins,"19,510",160,85,45,270,350,290,440,185,110,270,10,215,55,75,65,85,70,60,45,80,0,95,45,335,125,395,55,35,40,80,355,290,135,100,120,135,45,140,20,245,80,35,280,130,115,50,50,15,395,130,135,65,115,25,0,45,210,110,235,30,10,105,150,110,55,40,425,220,65,95,85,120,25,130,0,0,95,240,85,190,10,75,95,285,90,55,160,335,60,165,125,140,100,10,50,735,0,25,215,20,175,65,100,80,155,160,45,20,90,150,115,180,370,145,270,100,105,40,345,55,60,115,750,155,155,355,70,35,230,715,125,120,235,50,25,100,100,130,90,80 -1514,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Algerian,895,0,0,10,20,0,20,0,0,0,10,0,30,0,0,0,0,0,0,0,0,10,10,0,20,0,0,0,0,0,0,0,35,10,20,35,30,0,10,0,15,0,0,40,10,10,0,0,0,25,0,15,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,60,0,0,0,20,0,0,0,0,10,15,0,0,10,10,0,10,0,0,10,0,0,35,0,10,25,0,15,0,20,0,20,20,10,0,0,15,0,20,0,15,0,0,0,0,0,0,15,15,30,0,20,10,20,0,0,10,0,0,0,0,10,0,0,0,0,0 -1515,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Berber,455,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,10,10,0,0,0,0,25,15,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,15,0,0,0,0,0,0,15,20,0,0,0,0,0,0,0,0,0,10,20,0,0,15,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,15,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,15,75,0,0,15,10,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1516,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Coptic,285,10,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,10,0,0,20,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,15,10,0,10,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0 -1517,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Dinka,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,10,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,0,0,0,0,0 -1518,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Egyptian,"10,490",140,70,25,110,275,90,345,165,100,100,10,100,35,50,10,50,70,40,15,60,0,35,35,180,50,65,40,10,20,65,315,120,55,35,50,55,50,40,10,25,80,25,100,15,20,0,35,0,285,65,80,30,45,20,0,35,70,40,175,10,0,35,55,30,10,0,345,50,25,50,55,75,10,65,0,0,70,170,30,100,0,40,35,185,20,55,30,230,40,65,35,85,20,10,35,475,10,20,175,0,55,30,40,65,90,100,35,0,40,80,65,135,300,70,220,45,70,0,85,30,20,55,460,45,55,100,0,30,135,535,105,70,110,40,20,25,50,120,30,20 -1519,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Libyan,715,0,0,0,20,0,10,20,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,45,0,20,0,0,0,0,0,0,35,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,15,25,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,15,0,0,0,0,0,0,20,15,0,0,0,0,40,0,0,25,0,10,0,0,10,20,0,0,0,0,10,0,0,0,0,0,20,0,0,85,0,10,0,65,0,0,0,0,0,30,45,10,10,0,0,0,0,10,0,0,25 -1520,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Moroccan,"4,100",10,0,10,75,40,180,60,25,15,150,0,20,0,10,25,20,10,10,0,0,0,40,0,95,40,315,10,0,0,0,25,35,30,40,20,30,0,35,0,140,0,0,105,85,65,0,10,0,20,0,30,30,35,0,0,0,95,25,20,20,0,20,65,35,0,0,10,125,30,30,25,45,0,0,0,0,0,20,0,30,0,10,30,65,10,10,105,80,0,20,0,35,40,0,15,55,0,0,0,15,50,40,20,0,35,10,0,0,25,20,0,10,0,20,0,35,0,0,15,25,35,10,110,25,15,230,20,0,20,60,15,10,45,20,10,35,20,10,20,15 -1521,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Sudanese,"2,310",10,10,10,20,15,0,40,0,20,10,0,65,0,20,20,0,0,10,20,0,0,0,0,10,30,0,10,0,0,0,0,45,20,10,10,20,0,55,10,10,0,10,55,0,10,40,0,0,45,35,0,0,20,0,0,20,20,0,30,0,0,30,0,40,0,30,70,10,0,10,10,0,0,10,0,0,25,20,25,30,0,15,0,0,60,0,10,10,10,30,65,0,10,0,0,100,0,0,10,0,50,0,30,0,0,15,0,20,15,30,25,10,75,0,40,10,20,10,70,10,0,10,50,75,0,0,60,10,25,65,0,50,50,15,0,45,0,0,40,15 -1522,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Tunisian,550,0,0,0,20,0,10,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,20,30,10,10,0,15,0,15,0,15,0,0,15,0,10,0,0,0,0,0,0,0,20,0,0,0,0,0,10,0,0,20,0,0,30,0,0,10,0,10,0,0,0,0,0,0,10,10,0,10,10,0,0,0,0,0,20,0,0,0,0,20,0,0,0,10,0,0,0,0,0,0,0,0,0,15,0,0,10,10,0,0,0,0,15,0,30,0,0,0,0,15,35,0,0,20,0,0,0,0,0,0,0,0,0,10,10,0,0,0 -1523,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, North African origins; n.i.e.,470,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,20,0,10,0,10,0,0,35,0,20,0,0,0,10,0,15,10,0,15,10,10,0,0,0,0,0,10,0,0,0,0,10,10,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,10,10,0,0,0,0,0,0,0,35,15,0,0,0,20,0,0,0,20,0,0,10,0,0,0,15,0,0,20,0,0,10,10,0,0,0 -1524,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Southern and East African origins,"56,405",65,205,100,430,265,130,285,130,105,275,245,430,190,745,345,220,115,150,860,105,105,150,170,460,910,270,150,80,80,95,310,330,605,515,130,365,295,805,"1,175",885,445,190,"1,140",175,70,780,240,60,155,260,235,115,140,520,165,490,190,470,"1,205",145,140,750,345,"3,175",45,225,515,190,155,120,80,210,85,780,110,35,55,375,340,"1,230",820,"1,590",150,525,365,60,60,560,65,"1,280","1,075",480,270,35,135,685,150,95,80,115,650,225,"1,045",140,310,545,70,"1,305",550,770,410,195,170,100,315,750,135,255,465,85,90,600,"1,290",815,"1,040",190,"1,450",330,385,385,80,665,845,155,60,290,105,170,570,295 -1525,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Afrikaner,185,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,10,0,30,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 -1526,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Amhara,330,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,20,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,30,10,0,0,0,0,20,0,0,0,0,0,0,0,0,0,10,10,0,0,10,0,0,0,0,10,15,0,0,10,0,0,0,10,10,0,0,20,0,0,0,0,0,35,0,0,0,0,0,0,0 -1527,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bantu; n.o.s.,175,0,0,0,0,10,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0 -1528,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Burundian,475,0,0,0,0,0,10,0,0,0,10,0,10,0,25,0,0,0,0,0,20,0,0,0,30,0,0,0,0,0,0,15,0,0,0,0,0,0,60,0,0,0,0,25,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,10,0,0,10,0,15,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,15,0,0,0,0,0,0,10,0,0,20,20,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,25,0,0,0,0,0,20,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 -1529,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Djiboutian,160,0,0,0,10,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,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,15,0,0,0,0,0,0,20,0,0,10,0,15,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0 -1530,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Eritrean,"6,455",20,0,20,55,90,0,10,0,0,10,50,0,25,10,45,110,20,15,140,15,55,15,0,45,230,10,50,30,0,15,30,40,80,95,20,15,15,120,10,70,0,10,280,10,0,85,30,0,10,60,30,40,0,35,0,180,65,155,100,40,30,95,45,15,0,0,0,15,0,10,10,45,0,20,10,20,0,0,20,100,185,45,10,115,0,0,0,65,0,280,290,165,20,0,10,10,0,10,0,0,75,25,105,55,30,60,0,70,50,185,35,0,45,0,0,175,0,30,115,20,0,65,145,60,70,20,65,80,55,35,0,45,35,35,0,55,0,10,130,45 -1531,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ethiopian,"13,085",0,25,20,95,30,40,45,10,0,25,10,215,45,30,80,65,20,30,190,10,45,30,95,70,475,0,35,45,55,40,55,120,195,120,30,135,50,315,170,165,0,0,410,35,0,175,160,25,25,75,60,45,15,125,10,50,25,205,130,40,20,255,105,145,0,35,105,15,0,10,10,15,20,250,10,0,15,105,130,505,90,180,0,60,85,0,10,145,0,630,515,205,90,0,25,90,10,15,15,0,185,30,225,15,75,210,0,170,290,420,30,10,20,10,0,380,0,10,175,15,30,120,285,350,125,70,190,105,150,40,50,40,260,85,10,105,0,15,30,100 -1532,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Harari,395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,25,60,0,0,0,10,0,10,0,20,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,20,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 -1533,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kenyan,"2,150",0,20,0,10,0,0,20,0,25,10,20,0,30,65,10,0,10,0,0,0,0,0,10,25,0,0,10,0,0,10,40,10,10,45,20,10,0,30,50,15,40,10,50,10,0,35,0,10,10,0,10,10,0,25,0,0,0,0,95,0,0,45,0,20,15,15,0,10,10,15,0,10,10,30,10,0,20,25,40,25,10,50,25,30,10,15,0,50,0,20,0,40,10,0,0,45,0,0,0,0,45,0,10,10,40,10,0,30,50,0,30,0,15,0,25,45,0,0,20,0,10,80,110,45,20,0,20,0,15,10,10,0,0,0,0,0,0,0,55,20 -1534,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Malagasy,80,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1535,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Mauritian,940,15,10,0,10,15,0,10,15,60,0,0,15,0,0,0,0,0,15,0,10,0,0,0,20,0,10,0,0,0,0,10,15,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,20,0,0,0,15,0,0,0,0,0,0,10,0,0,10,55,0,0,35,10,0,20,0,10,0,20,0,0,0,10,20,10,0,35,0,35,0,0,10,20,0,10,0,0,0,0,0,0,0,0,0,15,0,15,0,10,0,55,0,0,0,0,0,10,0,35,0,0,0,0,0,10,0,0,0,15,50,0,0,0,0,10,0,10,10,0,15,0,0,10,0,0 -1536,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Oromo,640,0,0,0,10,0,0,0,0,0,15,0,10,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,25,0,0,20,40,0,75,0,0,0,0,10,0,0,0,0,10,10,0,0,20,0,0,0,0,15,0,0,20,0,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,25,0,0,0,25,20,0,0,0,0,0,10,15,15,0,0,0,15,0,0,0,0,0,0,0,0,10,0,40,15,0,0,45,0,0,0,10,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,10,0,0,15,0,0,0,20 -1537,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Rwandan,790,0,0,0,10,0,10,0,0,0,0,0,20,0,0,10,0,0,0,0,20,0,0,0,10,20,0,0,0,0,0,0,0,45,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,25,0,0,0,10,0,0,10,0,0,10,10,15,0,15,10,0,0,0,0,10,0,0,0,0,0,0,10,20,10,0,15,0,10,0,0,35,0,40,15,10,10,0,0,40,0,0,0,0,15,0,10,0,0,0,0,10,0,10,10,0,0,0,35,0,0,0,25,0,0,45,70,15,0,0,20,0,0,20,0,0,0,10,0,0,10,0,10,0 -1538,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Seychellois,75,0,0,0,0,0,0,15,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,15,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0 -1539,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Somali,"20,960",20,130,15,10,45,15,55,35,0,10,140,55,0,530,135,10,0,50,410,0,0,10,25,55,105,20,10,10,0,10,30,60,120,205,10,90,145,195,"1,015",405,395,170,210,0,0,380,15,0,30,25,60,0,95,340,150,170,0,65,760,35,55,240,120,"2,815",0,145,265,0,10,10,0,10,20,275,10,0,20,65,25,445,475,"1,225",10,20,110,0,0,45,0,205,130,10,40,0,10,245,65,10,35,45,290,115,575,10,20,145,10,"1,005",90,30,115,30,50,0,160,60,0,205,20,0,10,65,205,185,650,45,"1,085",110,65,85,0,500,350,0,15,70,10,0,245,105 -1540,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, South African,"5,435",0,25,20,175,10,45,45,25,20,205,10,40,65,0,0,35,60,30,20,25,0,95,30,80,20,215,30,25,35,10,40,10,95,0,10,80,25,35,10,150,0,0,20,90,65,20,40,15,25,25,50,0,10,0,10,20,55,0,70,25,0,10,25,0,35,10,0,105,120,70,35,55,25,35,0,15,0,65,45,60,10,10,45,140,60,20,20,145,30,20,10,30,10,10,55,75,35,30,25,60,0,10,30,40,140,20,35,0,35,20,65,95,0,30,30,20,105,0,20,30,30,30,215,35,15,60,25,10,0,90,20,25,20,35,0,45,65,95,10,0 -1541,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Tanzanian,"1,145",10,10,0,30,10,0,20,0,0,10,10,0,0,35,55,0,0,0,15,15,0,0,15,20,0,0,0,10,10,0,0,10,10,20,35,15,0,10,0,0,0,0,20,10,0,65,0,0,0,10,0,10,0,0,0,0,0,0,20,0,20,10,10,20,0,10,10,0,0,0,0,0,0,25,0,0,0,10,0,0,0,20,15,20,0,0,0,20,0,0,30,0,10,0,0,10,0,10,10,0,35,0,30,15,0,10,0,0,15,0,20,0,20,0,0,30,0,0,15,0,10,25,55,15,15,0,10,0,10,25,10,0,45,0,0,0,25,0,0,0 -1542,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Tigrian,360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,30,0,0,0,0,10,65,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,0,0,15,0,0,0,0,0,15,0,10,0,0,0,0,0,0,0,10,10,15,0,0,10,0,0,0,0,0,0,30,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,25,0,10,10,0,0,0,0,0,0,0,0,0,0,10,0 -1543,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Ugandan,"1,285",0,10,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,15,40,0,0,0,0,0,0,0,35,0,0,15,0,20,10,0,10,0,25,10,0,35,10,10,0,10,10,25,0,20,0,25,15,15,10,0,10,10,0,35,0,10,0,0,0,0,0,0,10,45,0,0,0,10,10,50,40,15,0,0,15,0,0,0,0,15,10,0,10,0,10,0,0,0,15,0,0,20,0,10,0,10,0,25,0,45,35,0,0,0,10,10,0,0,15,0,0,30,115,0,50,0,40,10,25,10,0,15,30,10,0,0,0,15,25,10 -1544,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Zambian,170,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,10,0,20,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,25,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1545,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Zimbabwean,"1,025",0,0,35,0,0,10,20,0,10,0,10,20,0,10,0,0,0,0,15,0,10,0,0,10,0,10,0,0,10,0,20,20,10,0,0,0,10,10,0,10,0,0,15,0,0,0,0,0,10,0,10,0,10,10,0,30,10,25,0,0,25,10,0,0,0,0,15,0,0,0,10,30,0,0,0,0,0,0,45,25,0,10,0,25,45,0,0,0,0,25,0,10,0,0,10,75,0,20,0,0,0,0,10,0,10,0,0,10,0,0,10,10,0,15,0,25,10,0,10,10,10,40,10,20,10,0,10,0,0,0,0,10,10,0,0,0,0,0,20,0 -1546,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Zulu,140,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,20,0,0,0,0,0,20,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0 -1547,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Southern and East African origins; n.i.e.,"3,275",0,0,0,35,50,0,40,25,15,0,0,10,10,60,0,0,15,0,30,10,0,0,10,55,35,0,15,0,0,30,80,20,35,30,25,20,30,20,20,45,20,0,80,10,10,50,10,0,0,30,10,10,15,0,10,10,20,0,40,0,0,30,10,75,0,15,35,20,0,0,10,10,0,130,0,0,0,60,20,40,10,10,30,60,30,15,0,50,10,50,75,10,30,10,15,90,0,0,0,0,10,0,85,0,0,35,10,85,45,45,50,10,25,10,40,35,30,10,70,10,10,110,140,50,35,0,10,15,20,40,0,25,60,0,10,45,30,20,50,10 -1548,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other African origins,"41,955",265,225,70,240,270,100,230,155,150,65,210,360,245,935,160,225,50,110,895,105,190,55,260,425,365,105,200,190,100,225,195,315,500,780,150,345,95,625,375,300,180,145,325,145,80,"1,065",220,110,195,205,190,285,75,155,305,505,210,335,350,145,220,340,180,570,20,85,815,110,90,65,60,170,125,"1,495",105,50,140,335,545,435,555,"1,190",160,320,230,30,140,515,75,275,380,565,300,60,115,900,110,50,165,60,255,300,435,155,95,"1,215",45,385,525,430,320,75,80,130,335,195,155,185,325,65,40,490,915,935,760,155,975,180,355,285,60,330,970,210,125,150,55,70,655,240 -1549,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Black; n.o.s.,"6,535",50,40,10,30,40,10,40,10,20,10,10,40,45,135,25,30,0,10,40,35,70,20,40,75,40,35,65,35,0,20,25,80,55,130,0,55,30,210,20,45,20,25,30,20,20,140,40,50,10,20,20,35,10,10,35,65,40,55,55,25,10,65,45,90,0,20,130,30,30,10,0,10,30,340,20,10,20,50,70,20,45,100,55,40,30,10,15,50,20,50,25,135,65,20,35,130,25,0,40,0,35,10,40,60,10,245,0,50,65,110,65,0,20,30,50,50,20,40,40,0,0,95,130,200,145,20,100,30,70,70,10,90,150,35,10,10,0,0,95,70 -1550,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other African origins; n.i.e.,"35,855",205,195,70,220,235,110,205,140,160,65,200,315,200,830,135,190,50,100,865,75,120,30,225,380,310,70,135,180,100,195,175,245,450,645,150,305,65,405,365,265,150,120,320,135,70,925,180,55,185,195,170,255,55,140,280,440,165,280,305,125,205,270,130,510,10,75,700,80,75,40,55,165,95,"1,160",90,50,115,280,490,420,500,"1,105",110,265,200,30,115,465,70,225,345,435,245,50,95,785,95,45,130,45,225,290,400,100,95,"1,000",45,340,475,315,260,70,65,110,295,145,145,145,290,80,30,395,775,740,610,130,880,160,300,205,50,235,850,175,115,135,50,55,575,190 -1551,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Asian origins,"1,079,290","24,305","17,955","2,055","6,485","12,025","5,190","15,040","13,845","7,920","5,210","1,345","17,890","4,590","9,055","2,020","4,645","3,005","2,500","4,730","2,440","1,805","1,480","4,750","10,740","12,705","6,005","5,305","1,820","2,235","4,245","17,955","15,965","8,760","11,365","2,595","5,205","1,885","11,815","2,485","6,685","3,815","3,560","14,665","3,270","1,880","11,120","4,490","2,285","10,975","4,140","3,400","7,175","12,030","1,145","5,250","6,405","3,020","7,790","11,785","3,255","2,545","9,150","9,140","6,575","1,085",980,"30,785","6,815","3,325","2,510","2,740","3,275","1,595","28,455","2,915","1,220","23,750","7,780","9,160","4,920","3,105","18,675","3,525","8,225","2,160","11,295","14,075","8,255","2,535","9,355","7,305","5,020","4,910","2,085","2,505","14,610","2,640","1,280","9,515","1,950","5,585","2,925","4,510","2,870","3,485","28,705","1,350","1,575","8,120","7,325","9,575","8,615","21,160","3,845","17,925","8,435","2,680","4,435","15,040","4,495","2,015","7,765","24,810","10,040","18,060","11,680","3,120","2,000","12,930","36,920","9,770","4,810","32,850","2,535","1,735","2,500","2,895","2,330","12,550","4,090" -1552,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, West Central Asian and Middle Eastern origins,"152,055",475,805,205,"1,420","2,305","1,460","2,460","3,520","1,525","1,435",105,"1,530",315,"2,045",275,425,805,525,350,245,120,330,410,"1,870",615,"1,035",390,315,270,435,"4,460","1,875",895,"1,525",310,750,400,895,440,"1,235",540,785,"3,310",890,545,"1,095",360,225,"2,470",980,600,340,"1,195",260,685,535,480,500,"1,855",310,125,630,570,"1,160",175,175,"3,885","1,735",735,615,525,355,265,"1,430",165,230,270,"1,150",635,830,290,"5,440",770,"2,400",255,"3,070","3,280","1,440",270,"1,005",890,530,815,205,295,"4,205",265,125,"1,280",295,495,475,410,285,835,"1,280",165,205,905,595,620,"2,105",800,685,"1,530",640,560,970,"3,255",375,215,"2,210","4,210",965,955,"2,890",425,250,"2,640","8,805","2,585",510,"2,655",200,100,360,670,495,"1,945",310 -1553,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Afghan,"20,915",85,255,10,35,70,50,35,145,25,20,0,745,55,130,120,0,10,70,120,10,0,0,30,65,200,20,105,0,10,75,455,655,45,140,20,55,15,430,285,120,10,190,"1,855",35,15,365,90,30,460,35,10,85,75,30,95,85,15,145,160,15,0,135,70,475,15,30,325,20,0,0,0,25,0,520,0,0,110,100,240,55,35,515,0,30,0,75,95,20,0,60,515,40,355,35,0,665,30,0,65,45,70,145,55,0,0,485,0,15,515,90,50,35,75,30,260,190,10,145,"1,860",0,0,385,80,505,300,155,135,0,305,95,45,95,"1,280",0,0,0,10,35,340,15 -1554,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Arab; n.o.s.,"9,280",35,120,40,55,110,15,395,65,10,10,0,90,25,105,15,0,0,35,0,30,10,10,0,135,10,35,20,30,10,50,255,95,55,130,0,50,55,75,35,45,25,15,140,30,10,45,35,0,205,105,45,45,0,0,20,55,15,65,195,10,20,90,105,100,0,15,240,40,15,15,35,0,25,135,10,10,10,85,10,105,10,330,10,155,40,100,30,115,15,135,65,0,40,10,35,325,35,10,90,10,85,40,25,40,65,105,0,60,50,45,30,75,170,20,135,25,10,70,385,35,15,290,275,125,90,50,95,35,175,300,50,15,230,0,10,0,20,25,30,20 -1555,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Armenian,"12,265",35,55,0,130,340,110,155,180,145,80,0,50,45,30,20,0,75,0,50,25,0,10,60,95,35,35,10,10,20,45,730,210,60,20,30,30,50,30,0,55,60,40,90,55,25,45,45,10,180,40,40,40,125,45,40,35,20,65,115,30,0,45,25,35,20,20,"1,990",60,65,60,40,25,25,30,10,20,45,60,30,40,0,65,110,95,15,50,165,90,55,30,20,0,15,10,10,765,0,0,270,20,35,0,15,45,95,50,10,15,0,20,55,215,265,40,445,20,45,25,15,40,25,180,265,55,10,235,15,10,390,350,110,0,195,15,0,50,40,50,135,30 -1556,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Assyrian,"3,125",0,0,0,0,25,10,10,0,0,0,10,0,0,500,0,0,10,10,0,10,0,15,15,15,0,10,0,0,10,0,10,10,0,80,0,10,0,0,50,0,10,30,20,0,0,155,0,0,0,15,0,0,0,0,110,20,10,0,10,0,0,0,0,10,0,0,25,0,0,15,15,0,0,0,0,0,0,15,30,0,0,"1,145",0,0,0,0,0,10,0,0,0,10,0,0,10,10,0,0,0,0,0,40,10,0,0,0,0,0,10,25,10,10,10,0,50,0,0,200,10,0,0,0,20,0,45,30,0,0,0,15,0,30,0,0,0,10,0,0,100,0 -1557,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Azerbaijani,"1,670",0,0,0,0,0,60,0,60,20,35,0,10,0,0,0,10,0,25,0,0,0,0,0,40,0,35,10,10,0,10,60,10,0,0,10,0,0,0,0,0,20,0,40,0,10,15,0,0,0,20,0,0,0,10,0,0,0,0,20,10,0,0,0,0,0,0,0,10,0,0,10,10,0,10,0,0,0,10,0,10,0,0,10,50,0,40,160,20,0,0,10,0,10,0,0,15,0,0,10,0,10,0,0,0,10,0,0,0,15,0,0,0,10,0,10,35,0,0,0,0,0,15,65,0,10,235,0,10,25,155,50,10,10,0,0,10,0,10,50,0 -1558,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Georgian,"1,605",0,0,0,10,10,105,0,10,0,15,0,15,0,0,0,30,0,0,0,0,0,0,0,0,0,35,0,0,0,0,10,0,0,0,10,20,0,55,0,45,40,15,10,0,0,0,0,10,10,10,0,10,0,10,0,0,0,15,10,35,0,0,0,0,0,0,10,30,0,10,20,0,10,0,0,0,0,0,0,0,10,10,10,20,0,15,240,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,10,15,0,10,0,10,0,0,0,0,0,0,30,0,0,380,0,0,0,10,40,0,10,0,0,0,0,20,10,0 -1559,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Hazara,330,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,25,0,0,0,20,15,0,0,0,0,0,45,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,25,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,20,0,0,0,0,0,0,0,0,0,0,0 -1560,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Iranian,"45,540",45,110,15,480,875,235,685,"2,565","1,165",450,0,190,70,55,50,40,475,110,60,40,20,90,105,605,195,230,95,120,60,75,"2,100",190,225,140,70,175,90,105,0,100,135,10,405,135,155,10,85,45,860,250,160,55,775,30,10,20,85,80,325,30,30,70,125,100,60,45,360,"1,105",250,275,225,90,100,145,15,50,30,375,110,270,45,90,250,"1,245",55,"2,530","1,935",415,90,360,105,80,120,70,65,"1,035",10,25,470,60,120,40,55,40,300,205,50,35,110,95,165,"1,365",70,165,150,100,120,30,115,90,45,345,"1,505",105,100,640,35,25,235,"6,805","1,890",95,230,85,55,90,260,205,250,80 -1561,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Hmong,15,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,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,0,0,0,10,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,0,0,0,10,0,0,0,0,0,0 -1562,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Iraqi,"10,475",65,65,0,60,50,80,105,55,20,70,0,15,30,920,0,0,10,10,0,10,10,20,55,60,10,40,35,20,0,30,185,35,50,115,10,10,10,10,25,10,40,25,10,35,50,300,0,10,265,55,55,20,10,25,380,135,40,35,100,20,0,65,10,70,0,0,300,60,30,30,0,20,0,80,15,0,25,10,0,55,10,"3,135",0,40,0,45,60,65,0,30,35,55,0,0,30,130,30,10,75,0,40,50,15,0,10,50,0,10,20,40,25,35,10,10,170,0,90,415,10,10,20,135,130,10,100,130,30,10,115,100,15,30,100,20,0,15,15,0,75,20 -1563,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Israeli,"6,715",0,0,25,120,50,380,65,35,0,575,0,10,0,10,15,60,60,10,10,0,0,85,15,65,20,470,10,15,45,0,35,0,120,10,20,10,15,10,0,630,0,0,10,275,125,0,25,0,0,30,60,0,25,0,0,10,150,0,20,20,0,0,10,20,0,10,30,175,115,60,15,55,0,0,0,0,0,45,0,65,0,10,115,125,15,20,215,90,10,25,10,65,0,0,50,35,10,0,0,15,20,0,10,20,55,10,0,0,0,20,55,55,10,10,0,0,40,0,10,55,35,25,160,20,10,475,0,20,10,85,135,10,15,0,0,50,90,15,35,20 -1564,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Jordanian,"1,480",30,0,0,20,10,0,95,35,0,0,0,20,0,10,0,0,0,0,0,0,0,0,10,85,0,10,0,0,0,0,20,10,10,20,10,30,10,10,0,0,0,25,10,0,0,0,0,0,35,10,0,10,10,0,0,10,0,0,30,10,0,0,15,20,0,0,10,10,0,0,0,15,25,20,0,15,0,20,20,0,0,0,0,45,0,0,0,40,0,15,0,10,10,0,0,135,0,10,0,0,0,10,25,0,0,0,0,0,25,10,0,35,10,0,0,10,15,0,0,10,0,45,120,0,0,10,0,0,0,70,30,0,15,0,10,0,10,0,10,15 -1565,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kazakh,630,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,45,0,15,25,0,0,10,25,10,30,0,0,0,10,0,0,0,0,10,15,20,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,10,0,0,20,0,0,0,0,10,0,0,0,0,10,0,0,0,0,20,0,10,0,0,0,0,0,0,35,0,0,10,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,60,10,10,85,0,0,0,0,10,0,0,0,0,0,0,10,45,0 -1566,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kurd,"2,565",0,0,10,20,85,35,15,55,10,10,0,0,0,0,0,40,0,25,25,10,10,0,0,0,40,15,25,0,0,0,90,30,25,245,0,35,0,0,0,0,0,90,45,55,0,0,0,0,115,40,10,30,0,0,0,0,0,0,35,0,30,35,15,35,0,0,60,0,20,10,10,10,0,0,15,0,10,0,0,10,0,0,0,85,0,20,25,25,0,10,25,15,0,10,0,100,10,0,35,0,0,0,0,0,10,0,0,0,0,10,0,10,10,30,30,30,0,0,55,0,0,115,45,0,0,10,0,0,60,40,30,10,0,20,0,0,0,10,105,25 -1567,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kuwaiti,155,0,0,0,0,0,0,25,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,10,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,10,0,0,0,15,0,0,0,0,0,0,20,20,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0 -1568,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kyrgyz,130,0,0,0,10,0,10,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,35,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,10,0,15,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,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,15,15,0 -1569,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Maori,145,0,0,0,10,10,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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 -1570,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Lebanese,"13,125",40,105,55,215,220,80,225,140,45,65,25,60,60,40,20,25,40,50,25,20,15,50,65,315,25,35,30,60,55,90,250,505,80,140,80,115,85,15,0,50,80,95,105,35,80,60,50,85,140,130,65,25,90,25,10,10,80,40,290,75,0,50,50,90,45,10,420,45,80,75,130,65,0,105,30,50,10,185,65,65,60,55,145,220,20,105,35,275,45,75,45,95,35,45,35,445,30,25,95,50,50,25,15,65,130,125,65,50,45,65,120,100,120,115,145,40,30,60,35,100,30,330,560,45,65,80,10,15,760,350,75,50,140,40,0,30,90,55,165,30 -1571,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Palestinian,"4,095",40,25,15,65,95,10,180,55,0,10,35,20,0,15,0,0,20,15,0,0,0,15,50,95,0,30,10,0,0,40,55,20,55,10,15,30,10,25,0,20,25,55,55,20,10,15,10,0,10,40,45,20,25,0,0,35,25,35,100,10,0,10,10,75,0,0,150,10,10,25,0,10,10,85,20,0,10,35,0,60,0,50,25,70,20,0,10,105,0,40,0,30,30,0,20,385,0,10,30,0,0,10,20,30,45,75,0,10,10,30,30,10,20,15,20,20,20,0,25,25,0,10,250,10,20,0,10,10,170,155,35,25,25,0,0,10,40,10,10,0 -1572,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Pashtun,825,0,0,0,0,0,10,15,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,35,0,10,0,10,0,0,0,0,0,0,0,70,0,0,55,20,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,10,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,15,0,10,195,0,0,0,10,0,0,10,0,0,60,0,0,0,55,0,0,0,0,0,0,0 -1573,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Saudi Arabian,"1,120",0,0,20,15,10,0,205,30,0,20,0,0,0,0,0,0,15,0,0,0,0,0,0,100,15,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,10,0,15,0,0,0,0,0,0,0,10,0,0,0,20,10,0,0,0,40,0,0,0,0,0,0,10,10,0,10,0,10,0,0,15,10,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,30,0,0,20,150,0,35,0,0,0,0,155,20,0,10,0,0,0,10,0,25,10 -1574,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Syrian,"6,655",10,35,25,60,100,60,105,55,10,50,10,45,20,150,0,15,15,35,10,30,10,20,30,80,20,15,10,20,0,10,215,85,30,40,35,55,20,55,0,15,10,35,35,60,40,15,0,30,85,40,55,10,25,0,35,25,45,45,190,20,10,20,10,30,20,0,315,40,35,10,45,10,15,135,0,65,20,75,130,30,15,160,20,45,10,20,45,115,30,35,10,20,20,0,0,240,30,10,115,15,25,10,20,10,35,170,15,30,65,30,35,40,55,30,60,40,35,40,140,20,0,355,205,45,35,20,35,10,220,125,20,45,145,10,0,25,20,25,25,20 -1575,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Tajik,775,0,0,0,0,15,20,15,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,10,0,0,0,30,0,0,0,0,0,0,65,0,0,0,0,0,15,0,0,10,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,10,0,15,0,0,0,0,0,0,0,0,0,10,0,0,0,20,0,0,60,10,0,0,15,0,25,0,0,25,0,0,0,0,0,10,0,0,0,10,0,0,35,0,10,0,0,0,0,0,0,0,110,0,0,60,0,0,0,65,15,0,10,0,0,0,50,0,0,0,0,0,10,0 -1576,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Tatar,860,0,0,10,15,0,20,25,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,10,0,0,25,0,20,0,0,10,10,0,0,0,0,0,10,10,10,25,0,0,0,0,0,25,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,10,0,30,0,0,0,0,0,10,0,10,0,10,0,10,0,10,0,10,0,35,30,0,0,10,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,15,0,10,0,0,30,20,10,0,85,0,0,30,20,0,0,0,0,0,0,10,10,0,0 -1577,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Turk,"13,345",40,30,25,220,325,205,230,150,75,105,30,80,30,125,15,225,115,135,60,35,45,20,0,160,60,45,30,35,40,25,150,140,215,490,35,95,75,40,20,85,50,140,280,135,55,90,25,10,75,145,95,25,35,30,50,95,30,35,190,50,25,70,45,85,10,30,120,60,130,105,10,50,25,75,80,30,0,160,10,60,105,150,95,245,65,50,115,125,50,100,10,165,95,30,45,175,65,40,105,25,20,80,120,30,105,30,0,0,45,110,75,210,70,115,150,130,125,45,330,20,35,90,470,105,145,160,55,100,310,255,75,100,90,30,10,80,75,10,620,45 -1578,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Turkmen,200,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,15,0,0,0,0,0,0,40,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,10,0 -1579,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Uighur,370,0,0,0,0,0,10,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,10,95,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,55,0,0,0,0,20,0,0,0,15,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,10,0,20,0,0,0,20,0,0,0,0,0,0,0 -1580,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Uzbek,"1,020",0,0,0,0,0,30,0,25,10,25,0,0,0,0,0,0,0,0,15,0,0,0,10,0,25,20,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,40,15,0,0,0,0,0,30,25,15,0,0,0,15,0,0,0,20,0,0,0,0,0,0,0,0,15,0,0,0,0,0,25,0,0,0,0,0,0,0,10,0,10,0,35,85,0,0,0,25,0,0,0,0,25,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125,0,15,0,0,20,0,0,0,20,0,0,145,0,0,0,30,15,0,35,0,0,0,0,10,0,0 -1581,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Yemeni,"1,405",15,0,0,0,10,30,20,10,20,0,0,0,10,0,0,10,0,0,10,30,0,0,0,20,0,20,0,0,0,0,10,0,10,0,0,20,0,0,10,55,0,0,35,25,10,0,0,0,0,0,0,0,0,50,0,0,10,0,60,0,0,55,20,25,0,0,0,0,0,15,0,0,0,15,0,0,20,0,15,15,0,45,25,25,10,0,0,20,0,25,10,0,15,0,10,45,0,0,0,0,45,0,10,10,0,0,0,0,10,15,0,0,0,0,0,10,10,0,10,0,0,0,65,20,40,20,10,10,30,10,10,20,85,0,0,0,15,0,0,0 -1582,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, West Central Asian and Middle Eastern origins; n.i.e.,"4,215",20,25,0,40,30,50,150,85,10,15,10,50,0,200,0,0,15,15,25,30,0,0,15,120,10,0,15,0,25,0,145,70,25,65,0,20,0,65,45,40,45,15,40,10,10,20,0,10,70,25,30,10,60,10,20,30,10,10,35,0,10,40,20,10,10,0,35,30,10,10,20,15,20,60,0,0,10,45,40,35,0,240,30,35,0,55,85,15,0,85,0,20,35,0,0,55,35,0,10,20,20,50,20,10,20,45,0,0,40,20,20,30,10,20,55,25,15,15,65,10,0,45,135,0,15,65,10,0,40,125,65,10,70,0,10,0,15,25,35,20 -1583,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, South Asian origins,"350,040","5,260","4,170",575,"1,320","2,940",565,"2,515","1,410",805,535,410,"8,225","1,530","2,320",525,445,410,655,"1,245",525,275,355,"2,525","2,730","6,060",495,"2,995",390,760,"1,110","2,945","7,380","2,390","1,685",750,"1,760",400,"6,440",870,470,"1,340","1,220","7,460",265,280,"2,600","1,125",970,"3,295","1,055",910,"4,685","1,520",415,"3,520","3,320",355,"3,845","3,595",535,985,"4,360",815,"3,670",275,315,"7,265","1,135",430,425,520,480,380,"18,085","1,025",255,"3,215","1,940","5,370","1,400",690,"11,395",785,"2,035",645,795,"1,120","2,420",495,"3,800","4,750",800,"1,775",370,455,"3,685",765,275,"1,330",615,"2,780","1,440","1,155",800,685,"20,265",305,540,"5,535","1,700","1,240","1,205","1,580","1,010","4,750","5,850",795,"2,770","9,545",290,440,"3,070","7,130","5,420","14,275",815,885,470,"4,245","3,460",935,"2,455","21,505",680,355,330,470,620,"4,455",970 -1584,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bangladeshi,"18,155",10,80,0,35,50,0,85,35,0,0,0,490,460,10,25,10,0,15,90,20,20,20,135,110,"1,390",0,595,0,0,40,130,365,130,65,30,295,0,170,55,0,55,95,360,15,0,45,10,75,180,15,10,60,20,15,105,15,0,245,210,55,0,850,85,80,10,0,85,20,0,10,0,0,10,420,10,0,25,45,220,145,40,150,10,65,20,40,15,45,15,135,"1,900",0,195,10,20,310,25,0,10,0,810,35,20,25,45,215,15,20,670,100,155,50,35,30,100,"1,995",10,20,235,0,0,110,155,720,15,0,25,75,75,60,25,20,590,15,30,15,10,10,95,10 -1585,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bengali,"9,455",30,60,0,45,10,80,85,20,0,0,0,110,220,20,0,0,0,20,35,30,0,0,130,20,700,25,385,0,25,0,20,60,125,10,75,175,0,225,25,0,15,0,165,0,0,20,35,95,125,0,10,20,20,35,15,0,15,80,105,0,10,395,20,155,0,10,25,15,0,15,10,10,15,190,0,0,10,45,110,45,40,55,0,20,15,30,20,35,0,100,790,10,45,10,0,165,20,0,10,0,455,0,60,10,10,195,0,0,300,10,75,35,10,10,40,710,55,50,135,20,0,85,100,225,140,10,10,20,130,75,0,45,370,0,0,15,10,20,85,10 -1586,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Bhutanese,125,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,20,0,0,0,0,0,15,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,25,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1587,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, East Indian,"202,675","2,090","2,180",495,965,"2,365",360,"1,865","1,025",570,430,315,"4,340",655,"1,505",355,270,285,405,720,325,215,285,"1,420","2,045","2,185",385,"1,240",305,595,785,"2,135","3,355","1,485","1,265",485,745,330,"2,860",570,365,925,620,"4,420",200,230,"1,965",630,660,"2,290",860,745,"2,595","1,060",280,"1,990","2,245",245,"2,025","2,585",360,815,"1,555",470,"2,065",235,240,"3,395",960,370,320,440,350,325,"9,325",850,220,"1,310","1,560","2,570",855,480,"8,540",680,"1,695",510,580,865,"1,975",340,"1,700","1,145",685,790,205,380,"2,165",410,245,905,440,760,"1,015",780,465,515,"8,645",250,315,"2,270",930,820,870,"1,115",840,"2,645","1,950",650,"2,030","3,725",225,350,"1,810","5,550","2,660","11,565",590,465,305,"1,935","2,640",695,"1,385","12,465",530,250,250,380,460,"2,315",780 -1588,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Goan,"1,280",10,30,20,10,30,0,0,0,20,15,0,10,0,0,0,0,0,0,0,10,0,0,0,10,20,0,0,0,0,0,20,10,15,0,0,10,0,30,10,10,10,30,0,0,0,0,0,0,0,30,10,60,25,0,0,0,0,10,40,0,0,10,10,10,10,0,35,15,0,0,0,10,0,20,0,0,0,35,30,0,0,20,0,20,10,45,35,10,25,0,0,0,0,0,0,20,10,10,10,10,0,25,10,10,10,50,0,0,30,0,0,0,20,10,35,10,10,0,0,0,0,10,65,25,20,0,10,0,0,0,0,10,10,0,10,0,0,10,25,0 -1589,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Gujarati,"1,990",20,10,0,0,40,0,20,0,0,0,0,55,0,0,0,0,0,0,10,0,0,0,0,0,30,0,0,0,35,0,0,15,10,0,0,0,0,0,0,0,0,0,95,0,0,25,0,0,40,0,15,0,0,0,30,0,10,15,25,10,0,10,0,40,0,0,10,0,0,0,0,0,0,90,20,0,0,0,25,15,0,170,0,10,0,0,0,0,10,0,0,10,20,0,0,0,0,0,20,0,0,0,0,0,0,75,0,0,15,0,0,0,0,20,0,20,0,10,55,0,0,0,20,10,185,0,0,0,0,25,0,20,495,0,0,0,0,0,10,0 -1590,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Kashmiri,345,0,10,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,10,0,0,0,30,10,0,0,0,0,0,0,10,0,0,10,15,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,15,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,30,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0 -1591,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Nepali,"3,080",0,0,0,10,0,0,20,0,0,0,0,35,20,0,10,0,0,10,0,0,0,0,0,40,135,10,35,0,0,10,30,70,10,0,10,10,0,250,0,0,0,10,20,0,10,0,90,0,10,15,10,0,15,0,10,10,0,150,30,25,0,70,0,0,0,0,40,10,0,0,15,0,10,0,0,0,0,25,10,0,0,0,0,20,25,0,15,20,10,580,30,0,10,0,10,0,0,0,0,0,10,25,50,25,0,30,0,0,15,115,0,0,0,0,20,225,0,0,30,0,0,25,40,155,20,40,0,10,50,10,20,15,20,10,10,10,0,0,30,15 -1592,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Pakistani,"36,135",230,410,50,125,325,30,340,140,65,25,20,745,65,130,45,0,110,115,100,45,0,25,175,260,975,35,160,60,95,230,215,655,240,150,70,455,45,210,90,30,200,245,"1,370",15,20,80,245,70,300,145,40,160,125,15,"1,005",850,10,300,410,65,75,380,200,845,20,70,515,125,30,25,40,50,20,"1,415",0,60,120,195,355,140,35,825,50,130,20,90,120,175,55,245,280,30,310,65,30,520,105,20,110,75,345,250,155,40,55,670,20,0,515,120,120,210,125,50,555,495,30,280,"4,640",10,60,490,860,325,505,65,75,30,635,400,30,590,"1,605",80,55,10,40,55,515,35 -1593,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Punjabi,"6,205",55,20,20,15,10,10,60,0,0,40,0,85,10,80,10,0,20,0,0,10,0,25,10,25,0,0,0,10,0,35,40,50,45,0,15,10,35,25,15,10,0,0,60,10,20,40,25,0,55,20,25,30,0,55,260,210,20,0,40,35,0,20,0,110,15,10,35,20,0,0,10,0,0,185,0,0,65,25,20,20,10,420,0,10,35,0,0,60,25,25,0,10,35,0,0,25,25,0,20,20,10,0,0,30,10,285,0,25,15,0,60,10,0,10,55,10,20,245,165,10,10,35,95,35,"1,450",55,15,0,0,45,15,100,210,0,20,20,0,0,115,10 -1594,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Sinhalese,"1,735",0,65,0,10,20,0,10,15,15,15,0,55,0,0,0,0,10,0,0,0,15,10,50,0,0,0,10,0,0,0,20,45,25,15,0,0,0,45,10,0,10,20,25,0,0,30,0,0,0,10,0,25,45,0,0,10,15,30,10,10,0,50,0,10,0,0,60,15,0,10,10,0,0,60,0,0,25,0,95,10,0,10,10,30,0,0,15,15,0,0,0,10,10,0,0,30,0,0,35,0,0,0,0,0,10,95,10,0,10,0,10,20,0,0,30,30,10,0,0,0,0,10,0,15,15,0,10,0,45,15,0,105,45,0,0,0,0,0,10,0 -1595,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Sri Lankan,"58,185","2,230","1,145",30,85,135,40,125,155,75,30,60,"1,735",70,520,25,80,0,65,245,100,20,20,575,215,480,25,435,25,15,50,325,"2,305",225,130,75,80,15,"2,185",85,35,155,190,630,20,0,270,90,60,125,35,45,"1,445",205,15,80,245,30,845,140,10,30,905,30,220,20,0,"2,660",30,60,0,10,55,0,"5,225",130,0,"1,330",75,"1,775",160,55,"1,130",40,30,10,10,70,125,35,550,230,65,170,30,10,425,160,0,160,80,475,80,40,170,35,"8,400",10,155,"1,190",295,55,100,305,85,"1,015",95,30,115,275,20,25,405,305,980,650,70,295,15,"1,065",190,105,210,"4,725",15,20,0,30,35,915,95 -1596,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Indonesian,"2,950",65,55,50,50,20,30,95,65,15,10,0,10,15,0,10,0,0,0,25,0,0,10,0,95,40,30,20,30,0,0,45,15,55,20,0,45,0,15,0,20,10,10,25,0,10,0,20,0,45,20,70,0,45,0,10,0,15,0,40,30,0,15,35,10,25,0,25,45,15,25,55,0,0,10,0,0,60,30,30,25,0,30,25,30,0,25,0,40,30,35,0,10,0,20,20,85,0,10,55,25,15,20,0,20,30,25,0,10,0,20,0,0,150,30,30,35,30,0,0,10,10,25,115,0,25,25,10,10,40,95,30,0,10,10,10,20,0,25,0,10 -1597,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Tamil,"20,350",855,425,0,10,65,35,15,35,15,0,0,650,85,170,25,35,15,30,135,10,0,0,210,55,190,0,205,20,15,0,35,910,55,40,0,35,0,910,30,10,80,40,235,0,20,70,15,10,80,0,25,570,30,0,35,25,10,230,25,10,25,315,0,75,20,0,"1,025",0,0,10,25,10,10,"1,930",15,0,590,0,480,50,0,315,0,10,0,0,55,50,0,320,100,15,70,20,0,150,70,0,55,10,150,45,10,15,20,"2,600",0,45,620,90,20,10,95,40,370,100,10,60,80,10,0,100,95,210,195,0,45,0,300,110,25,15,"1,750",0,10,10,0,45,350,10 -1598,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, South Asian origins; n.i.e.,"18,470",225,185,10,70,80,15,90,120,25,30,15,485,35,55,70,30,25,45,80,0,0,0,75,145,455,25,215,10,20,95,75,400,150,60,30,100,20,310,35,25,30,120,455,25,10,90,20,40,310,10,35,195,65,35,115,155,25,165,220,20,50,330,45,275,0,0,230,70,0,30,0,25,0,870,40,10,100,75,180,60,50,455,20,60,15,50,45,85,25,360,555,20,180,55,25,250,35,10,45,20,150,115,35,45,0,700,0,0,405,135,75,50,55,10,335,570,50,90,860,15,10,190,335,305,540,40,10,25,280,220,75,160,"1,090",40,15,55,30,35,490,10 -1599,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, East and Southeast Asian origins,"586,515","18,575","13,075","1,295","3,945","6,920","3,200","10,135","8,970","5,675","3,295",840,"8,345","2,785","4,760","1,270","3,775","1,815","1,365","3,140","1,710","1,425",825,"1,895","6,325","6,065","4,550","1,990","1,165","1,260","2,770","10,660","6,805","5,635","8,230","1,600","2,740","1,105","4,490","1,180","5,045","2,015","1,580","4,150","2,125","1,085","7,520","3,080","1,125","5,170","2,145","1,995","2,200","9,415",485,"1,045","2,560","2,245","3,435","6,440","2,485","1,455","4,295","7,800","1,715",705,510,"19,680","3,990","2,210","1,490","1,745","2,465",945,"9,360","1,725",755,"20,360","4,775","3,350","2,745","2,125","1,920","2,015","3,870","1,295","7,515","9,735","4,540","1,845","4,655","1,655","3,770","2,350","1,515","1,820","6,925","1,630",895,"6,950","1,040","2,345","1,045","3,005","1,840","2,025","7,435",900,860,"1,715","5,125","7,805","5,425","18,780","2,230","11,750","1,960","1,415",710,"2,325","3,845","1,385","2,505","13,710","3,825","2,995","8,035","1,805","1,305","6,165","24,815","6,320","1,910","8,965","1,715","1,310","1,860","1,805","1,230","6,295","2,875" -1600,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Burmese,"1,200",0,10,10,20,0,35,10,0,30,0,10,10,0,0,15,20,0,40,0,25,20,30,0,20,15,0,0,0,35,20,10,0,70,35,15,0,0,30,0,0,0,10,30,0,0,0,20,0,0,10,25,0,25,0,0,25,15,10,10,0,0,20,0,0,0,0,20,0,0,0,10,0,10,15,0,0,10,0,0,30,0,0,0,10,10,0,10,0,0,0,0,0,0,35,15,10,10,0,0,0,0,0,15,25,0,0,0,10,0,0,10,10,10,15,10,20,0,0,0,0,0,0,20,0,0,0,0,0,30,0,0,0,0,10,10,0,30,0,55,0 -1601,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Cambodian (Khmer),"2,965",10,0,0,30,0,10,20,20,15,0,0,10,0,345,0,0,0,0,30,0,15,10,0,30,10,0,0,0,0,10,0,15,35,195,10,0,0,0,55,0,0,0,0,0,20,855,0,15,0,0,10,10,0,0,0,120,0,30,10,0,0,10,30,10,0,0,0,15,0,0,15,0,0,0,0,0,0,20,10,15,25,25,10,20,0,0,0,30,0,35,0,20,10,0,0,0,25,0,20,0,20,10,70,0,0,0,0,10,0,20,90,0,20,0,0,0,0,0,0,20,10,0,70,0,60,20,35,10,0,10,10,10,0,0,0,0,0,0,160,0 -1602,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Chinese,"332,830","16,950","11,455",420,"2,400","4,850",825,"7,585","6,065","4,480","1,185",170,"4,765","1,490","1,375","1,035",450,"1,445",585,900,855,325,450,975,"4,305","2,440",835,"1,040",520,925,"1,760","7,390","3,115","3,315","1,650",920,"1,495",470,"1,230",190,675,970,475,"1,285",385,560,"2,260","2,365",420,"3,365","1,020",920,"1,195","8,265",135,260,655,390,855,"2,250","1,110",250,"1,240","6,250",540,335,220,"16,745","1,910","1,390",935,"1,125","1,605",250,"4,215",260,270,"19,140","2,010","1,330","1,650",475,635,"1,095","1,675",465,"4,765","2,785","2,720","1,385","1,115",825,"1,140",880,840,"1,260","3,475",445,550,"5,795",545,"1,530",335,825,715,"1,300","2,905",440,230,665,"1,050","6,405","3,890","17,835",685,"9,070",835,765,190,625,"3,310",920,980,"9,790","1,215",880,"1,045",530,430,"2,310","17,240","3,825",655,"4,385","1,260",805,"1,000","1,100",645,"2,105","1,130" -1603,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Filipino,"162,600","1,465","1,405",660,435,"1,280","2,030",455,830,210,"1,880",435,"3,045",910,980,75,"3,135",75,575,"1,330",510,885,90,855,820,"3,250","3,505",805,390,100,505,"2,245","3,660",745,"4,790",195,795,220,"3,110",570,"4,090",510,715,"2,370","1,580",405,"1,675",345,505,"1,380",400,345,880,310,195,365,920,"1,540","2,535","1,895",685,850,"2,750",470,710,125,185,"2,545","1,120",290,285,215,260,425,"5,095","1,220",115,"1,135","1,180","1,965",480,840,895,425,"1,080",425,515,"4,475",850,170,"2,910",700,"1,985","1,190",465,145,"2,515",520,85,685,90,305,575,855,315,220,"4,365",170,405,"1,040","1,615",615,435,675,545,"2,180",745,240,315,"1,565",175,135,"1,290","1,750","2,545","1,755","6,045",650,315,"3,535","1,010",295,650,"4,345",275,365,495,305,250,"2,715","1,190" -1604,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Japanese,"17,265",60,60,50,285,275,35,385,235,115,95,10,180,225,40,75,100,100,70,45,70,25,110,110,315,215,70,115,70,90,295,160,95,280,85,95,200,120,90,15,35,115,40,80,105,45,30,150,110,90,180,185,45,85,0,0,25,130,10,185,160,60,145,270,40,70,25,150,115,190,90,95,140,40,50,20,40,40,285,70,140,75,20,195,280,75,75,155,245,180,105,50,140,175,70,155,300,25,145,135,75,55,35,110,95,160,130,140,0,55,105,215,175,95,180,210,60,135,30,40,90,140,75,750,75,60,90,90,45,90,775,205,90,140,140,80,85,145,185,25,65 -1605,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Karen,230,0,0,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,10,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,20,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1606,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Korean,"43,455",100,145,75,635,575,305,"1,370","1,685",730,210,15,235,35,55,15,125,220,85,40,105,30,105,45,720,115,200,60,85,65,165,875,15,460,145,130,205,270,45,105,190,395,295,225,120,60,10,90,50,455,410,290,115,695,140,45,60,150,35,"1,625",80,20,95,355,220,145,55,245,910,315,145,210,175,20,85,45,250,20,550,75,190,165,60,285,765,60,"1,960","2,275",485,50,330,45,135,110,50,195,635,35,50,265,235,75,20,65,75,305,65,130,10,20,110,195,830,140,260,295,165,125,40,135,65,170,165,"1,085",80,60,925,80,0,190,"5,395","1,955",415,225,50,70,135,260,155,405,50 -1607,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Laotian,"1,260",10,10,0,10,0,15,0,20,0,0,0,40,15,95,10,15,0,0,10,15,0,0,0,40,0,0,0,0,0,20,0,15,20,45,0,15,0,0,0,25,10,0,15,0,10,65,0,0,0,0,10,0,0,0,0,60,0,0,0,10,35,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,30,0,25,0,55,0,10,0,0,15,30,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,10,30,0,0,10,0,0,0,0,0,0,0,0,40,0,40,0,50,0,0,0,0,10,50,0,0,20,0,0,10,45 -1608,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Malaysian,"2,875",10,65,10,65,35,20,40,15,15,10,0,70,0,10,0,0,0,0,0,0,0,0,25,70,65,15,10,0,10,10,85,45,75,25,20,10,0,50,0,30,15,0,80,10,10,0,10,0,40,20,20,0,0,10,0,0,0,15,35,20,10,10,80,0,0,25,75,10,0,0,20,10,0,110,0,0,40,65,25,35,0,0,10,10,0,10,0,50,0,10,10,15,10,15,25,10,10,0,10,10,35,0,0,30,25,45,10,0,10,20,65,0,10,0,40,25,10,0,60,20,0,10,125,60,70,70,0,0,10,60,20,0,60,0,25,0,10,15,30,0 -1609,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Mongolian,"1,090",0,45,0,20,0,0,40,10,10,0,0,10,10,10,10,0,0,0,0,35,0,0,0,35,10,30,0,10,0,0,10,20,10,0,0,0,0,0,0,25,0,0,0,15,10,0,0,0,0,10,10,10,0,0,0,0,0,15,35,10,0,10,10,0,10,0,0,10,10,10,0,0,0,10,0,0,0,45,0,0,0,0,0,0,10,0,10,0,0,40,0,40,10,0,0,10,0,10,20,0,15,0,0,20,0,0,10,0,0,25,0,25,0,10,0,25,0,25,15,0,25,0,35,0,10,25,10,0,0,40,0,0,15,0,0,10,0,10,20,10 -1610,Housing,Household characteristics,Census Profile 98-316-X2016001, 1981 to 1990,"109,900","1,950","1,645",195,"1,480","1,815",460,"2,545",410,465,860,330,350,555,680,145,420,220,325,520,"1,215",170,300,610,"2,735",255,415,335,160,190,290,965,785,920,855,270,540,305,"1,305",615,840,620,275,995,485,605,"1,170",645,385,315,655,605,"1,700",900,390,265,470,345,310,"1,455",160,365,890,"1,325",955,245,215,"2,215",720,290,190,190,180,405,"3,750",250,130,"4,090","1,500",775,810,580,"2,245",610,"1,650",510,"1,105",775,"1,710",135,785,690,525,350,145,280,830,290,140,340,140,300,205,680,195,845,"3,575",55,420,590,"1,010",615,630,"3,555",295,925,475,260,365,680,240,140,670,"3,465","1,120","1,905","2,370",650,255,530,"1,960",655,550,"1,165",310,85,575,340,470,940,285 -1611,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Singaporean,560,0,0,0,10,15,0,20,20,10,0,0,0,0,0,20,0,0,10,0,10,0,10,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,15,0,10,0,10,0,0,0,0,0,0,40,0,0,0,10,0,10,0,0,0,0,0,0,0,20,0,0,0,0,0,20,0,0,10,0,0,0,0,0,0,0,0,0,20,0,0,10,10,10,0,0,0,0,0,0,0,10,0,0,50,0,0,0,10,0,0,20,25,0,0,0,0,0,15,0,0,0 -1612,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Taiwanese,"4,495",40,25,0,105,90,0,315,135,40,10,0,65,20,0,30,10,45,0,0,0,0,35,10,135,20,25,10,0,20,15,65,35,40,0,10,10,0,10,10,30,35,20,0,0,10,20,20,0,15,35,0,0,110,15,0,0,10,0,35,40,0,0,80,0,10,0,110,65,40,10,45,45,10,10,0,25,10,40,20,45,0,0,10,30,0,170,90,35,10,30,10,10,0,0,0,70,0,0,85,25,15,15,0,20,10,10,0,0,30,10,50,90,120,50,30,0,30,0,10,45,0,15,220,20,20,10,10,0,0,560,100,25,30,0,10,10,20,25,10,10 -1613,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Thai,"1,795",0,0,0,50,0,20,40,10,0,0,0,25,20,40,0,30,15,0,10,10,0,15,0,40,15,10,0,0,0,10,30,0,15,30,0,20,0,0,10,45,10,0,30,0,10,60,30,0,0,20,10,20,0,0,10,15,20,0,40,20,15,0,65,10,0,10,20,15,0,0,10,25,0,10,0,0,20,25,0,20,10,20,0,20,0,20,10,30,0,15,10,30,10,15,25,25,0,0,15,0,35,0,0,0,10,10,0,15,0,10,10,0,0,20,0,15,40,0,0,10,0,0,65,20,55,10,0,0,0,10,10,10,35,10,10,0,10,15,35,10 -1614,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Tibetan,"5,430",0,0,110,0,0,15,20,0,0,0,20,15,30,0,0,0,0,10,0,20,20,25,0,0,50,20,0,0,20,0,0,0,50,0,45,40,0,0,0,0,0,40,25,0,10,0,10,0,30,25,20,0,0,0,0,0,0,35,245,180,10,70,0,0,0,0,0,0,0,0,0,30,125,25,0,10,0,545,0,55,0,0,10,0,190,0,0,10,25,80,0,15,0,0,0,0,0,20,0,0,10,0,80,380,10,20,0,10,0,"1,920",0,25,0,365,0,30,20,0,0,0,0,0,30,30,25,0,0,80,0,0,0,0,10,0,0,0,0,0,0,10 -1615,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Vietnamese,"36,840",320,180,45,145,115,100,200,155,130,65,230,160,205,"2,300",50,155,35,70,"1,115",145,145,35,30,245,140,120,70,125,65,150,140,150,875,"1,950",260,75,65,110,285,115,170,125,115,0,20,"3,585",240,85,45,170,240,65,40,15,450,"1,000",65,50,410,365,290,115,405,240,35,30,290,50,110,55,60,355,95,135,310,55,260,250,135,340,650,430,15,95,110,90,150,325,100,180,55,395,75,125,65,170,785,45,65,85,445,140,"1,240",300,10,295,60,275,75,510,795,20,185,215,160,55,95,115,20,230,55,90,570,170,335,60,505,565,210,310,100,90,200,90,75,215,45,40,"1,290",605 -1616,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, East and Southeast Asian origins; n.i.e.,"1,375",20,10,0,15,0,0,15,10,10,10,0,40,10,0,20,0,0,0,20,10,0,0,25,0,20,0,0,0,30,0,30,15,10,0,10,10,0,45,0,0,0,0,75,0,10,10,10,0,0,10,0,0,10,10,0,15,0,20,0,0,0,45,10,10,0,0,10,0,10,10,0,0,0,50,0,0,10,10,0,10,0,0,15,0,0,0,10,25,0,30,45,0,30,0,0,30,0,0,20,10,0,15,0,10,0,65,0,0,10,10,15,40,0,0,15,55,10,0,15,0,0,35,30,25,55,0,0,0,0,20,0,10,10,0,0,0,0,0,0,0 -1617,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Hawaiian,130,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,10,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0 -1618,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other Asian origins,"4,605",150,50,0,30,40,15,50,0,0,0,0,55,0,35,0,15,15,0,30,25,0,0,0,20,160,10,75,0,0,0,30,110,10,35,0,30,0,95,25,10,30,20,40,30,0,60,15,0,90,10,10,25,0,0,85,35,0,70,10,30,20,55,0,120,0,0,85,25,0,30,0,35,45,140,10,0,10,35,40,10,0,45,10,55,10,20,20,15,0,25,140,0,80,0,0,20,0,0,25,10,10,0,10,0,10,150,10,10,120,50,25,0,95,15,60,105,0,65,275,0,0,40,85,40,95,30,35,10,40,40,25,0,210,0,0,0,0,10,30,0 -1619,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Other Asian origins; n.i.e.,"4,605",135,55,0,25,45,15,50,0,0,0,0,70,0,40,0,20,20,0,30,25,0,0,20,10,165,10,65,0,0,0,20,100,20,35,0,40,0,95,25,10,30,25,45,30,0,60,15,0,105,35,20,25,0,0,90,35,10,70,15,30,15,55,0,115,0,0,100,20,0,30,0,25,40,120,15,0,0,25,40,10,0,50,10,55,10,20,25,25,0,25,140,0,75,10,0,20,10,0,25,10,10,0,10,10,0,125,10,10,120,65,20,0,110,25,60,105,0,65,280,0,0,45,70,40,95,10,35,10,30,45,25,0,215,0,10,0,0,0,25,0 -1620,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Oceania origins,"5,790",10,0,0,140,20,0,60,45,15,50,0,25,95,0,25,10,60,15,25,30,0,25,15,125,45,55,40,40,90,50,10,0,140,0,30,90,30,60,0,10,10,10,25,45,15,20,60,25,20,75,75,10,35,20,0,10,55,10,60,45,10,0,55,40,10,45,40,50,60,180,140,70,20,55,10,20,0,115,50,60,20,10,55,95,45,0,15,155,90,20,25,80,35,15,70,65,10,15,30,55,25,10,10,100,75,50,40,0,0,65,150,25,0,85,35,10,125,0,10,85,15,0,235,10,20,10,20,30,40,55,0,25,80,75,20,90,50,80,20,10 -1621,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Australian,"3,705",0,0,10,110,20,10,40,15,10,40,10,20,70,0,0,10,35,10,15,10,0,0,15,85,20,45,10,0,95,10,0,0,75,0,20,50,20,25,0,10,20,10,25,25,15,0,30,10,0,45,50,10,10,10,0,10,35,0,30,35,10,0,20,40,10,45,10,35,45,135,95,75,15,20,0,0,0,35,10,35,0,0,45,55,45,10,0,120,50,0,10,60,25,15,50,40,0,15,15,60,20,20,20,80,50,30,40,0,0,60,90,10,0,80,15,0,90,0,0,80,10,0,210,0,0,0,0,20,15,40,0,0,10,65,20,60,20,60,10,0 -1622,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, New Zealander,"1,230",0,0,0,15,10,0,20,15,20,0,0,0,20,0,20,0,0,10,0,10,0,20,0,30,15,10,10,45,15,0,0,0,25,0,10,30,0,0,0,10,0,0,0,0,0,0,10,0,15,15,20,0,10,0,0,0,15,0,10,10,0,0,15,0,0,0,0,0,20,30,55,10,20,15,0,0,0,0,0,25,0,0,10,20,0,0,0,35,35,10,0,15,10,0,20,30,0,0,0,0,0,10,0,15,30,10,0,0,0,10,100,20,0,0,0,0,45,0,0,10,10,0,40,0,0,0,0,10,10,10,0,10,0,10,0,20,20,0,0,0 -1623,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Pacific Islands origins,"1,025",0,0,0,10,0,0,10,20,0,0,10,15,0,10,0,0,25,0,10,0,0,10,0,20,10,0,25,0,20,25,0,0,25,0,0,0,10,10,0,0,0,10,0,10,0,20,25,0,0,10,10,0,10,15,0,0,10,10,30,0,0,10,20,0,0,0,20,0,10,10,10,0,0,15,10,0,0,55,30,0,20,0,10,0,10,0,10,0,10,10,10,20,0,0,0,10,0,10,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,20,20,0,10,10,10,0,10,0,0,10,15,0,0,0,0,0,0,10,80,10,0,0,20,10,0,0 -1624,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Fijian,465,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,20,0,0,0,10,30,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,20,0,0,0,20,0,0,15,0,0,0,30,15,0,10,0,0,0,0,0,15,0,0,0,10,0,0,0,0,0,0,10,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,20,20,10,0,10,10,0,10,0,0,10,25,0,0,0,10,0,0,0,65,0,0,0,0,0,10,0 -1625,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Polynesian; n.o.s.,65,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,10,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,10,0,0,0,0,0,0,0,0,10,0,20,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,10,0,0 -1626,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Samoan,75,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0 -1627,Ethnic origin,Ethnic origin population,Census Profile 98-316-X2016001, Pacific Islands origins; n.i.e.,220,0,0,0,10,0,0,0,10,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,15,0,10,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,30,20,0,0,0,10,0,0,0,0,10,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0 -1628,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Private households by tenure - 25% sample data,"1,112,930","9,120","8,135","4,615","15,930","12,130","6,090","15,080","9,530","4,700","8,610","2,650","10,770","9,200","7,325","3,130","5,740","3,240","5,665","6,485","6,445","3,680","5,410","4,385","19,690","9,250","6,560","5,905","5,505","3,930","7,025","9,960","8,775","15,300","13,125","5,440","9,180","6,255","7,910","3,225","8,245","6,865","4,585","7,830","5,445","4,950","9,910","6,055","3,990","6,355","11,020","10,875","3,695","6,390","4,135","3,895","5,050","6,570","5,165","19,325","6,030","4,180","6,575","8,735","7,785","3,585","3,125","15,045","6,585","5,415","5,745","6,435","7,425","4,820","13,435","3,555","4,305","7,685","17,790","5,885","11,555","5,180","9,875","7,435","17,505","5,375","6,110","8,960","18,775","5,010","9,560","5,285","8,690","7,465","3,790","6,330","13,310","3,710","3,580","5,520","3,860","4,955","3,840","9,050","6,895","10,055","13,390","3,815","3,645","5,925","11,390","12,075","6,430","7,820","10,375","10,065","6,270","9,430","3,280","7,125","6,920","3,395","7,420","40,760","9,980","10,275","10,220","7,600","4,225","10,105","22,295","7,560","8,505","18,430","5,455","3,450","5,890","5,670","7,020","10,170","5,340" -1629,Housing,Household characteristics,Census Profile 98-316-X2016001, Owner,"587,095","7,395","5,890","3,675","6,060","7,390","3,285","4,835","5,605","2,720","6,005",895,"7,000","6,145","2,440","1,690","2,835","2,940","1,805","2,620","2,855","2,380","2,170","4,095","5,800","6,065","3,545","3,950","3,450","2,520","4,965","5,100","5,380","7,630","6,275","2,205","4,990","3,510","3,560","1,750","3,445","5,810","2,410","3,500","1,855","2,615","5,105","3,595","3,085","2,355","3,725","6,135","3,290","4,895","2,515","2,725","2,660","2,325","2,020","11,215","3,575","2,585","3,600","2,540","4,055","2,910","1,845","9,825","3,840","4,115","4,005","4,635","3,280","2,240","9,395","2,000","3,200","6,810","9,150","3,530","3,920","2,440","4,425","4,205","4,415","2,335","3,965","4,710","9,380","2,805",955,"1,680","4,605","3,465","2,475","2,620","5,300","3,070","1,655","4,180","3,270","1,260","2,155","5,135","3,000","5,570","11,195","3,000","1,390","2,685","1,520","7,230","4,275","6,560","6,710","5,675","2,060","5,885","2,035",780,"3,600","1,275","3,050","16,825","5,930","7,010","4,060","2,800","2,475","6,090","13,800","4,810","4,595","9,765","3,170","2,355","2,855","2,195","2,695","4,600","3,300" -1630,Housing,Household characteristics,Census Profile 98-316-X2016001, Renter,"525,835","1,720","2,250",950,"9,870","4,735","2,800","10,245","3,930","1,985","2,595","1,755","3,765","3,055","4,880","1,435","2,900",295,"3,855","3,860","3,590","1,300","3,235",280,"13,865","3,180","3,010","1,955","2,055","1,400","2,060","4,870","3,400","7,665","6,855","3,235","4,190","2,745","4,355","1,470","4,795","1,055","2,175","4,335","3,590","2,320","4,810","2,455",905,"4,010","7,295","4,745",410,"1,505","1,620","1,165","2,400","4,240","3,140","8,105","2,460","1,610","2,980","6,200","3,735",660,"1,280","5,205","2,740","1,315","1,750","1,800","4,145","2,575","4,020","1,560","1,105",860,"8,635","2,345","7,630","2,740","5,455","3,230","13,070","3,040","2,155","4,250","9,395","2,205","8,610","3,595","4,085","4,005","1,320","3,715","8,020",645,"1,920","1,340",595,"3,700","1,685","3,920","3,885","4,485","2,205",815,"2,265","3,235","9,865","4,840","2,140","1,260","3,665","4,390","4,215","3,540","1,245","6,335","3,305","2,125","4,350","23,930","4,055","3,275","6,165","4,795","1,750","4,015","8,505","2,755","3,925","8,670","2,275","1,095","3,040","3,480","4,315","5,565","2,045" -1631,Housing,Household characteristics,Census Profile 98-316-X2016001, Band housing,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1632,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Occupied private dwellings by condominium status - 25% sample data,"1,112,930","9,115","8,145","4,615","15,930","12,125","6,090","15,075","9,530","4,700","8,610","2,650","10,775","9,200","7,325","3,130","5,735","3,240","5,665","6,485","6,435","3,680","5,410","4,380","19,685","9,240","6,555","5,910","5,505","3,930","7,020","9,965","8,780","15,285","13,130","5,440","9,180","6,250","7,910","3,220","8,240","6,860","4,580","7,835","5,450","4,940","9,915","6,050","3,990","6,365","11,025","10,875","3,705","6,405","4,135","3,900","5,055","6,565","5,160","19,335","6,025","4,185","6,580","8,735","7,780","3,585","3,120","15,020","6,590","5,420","5,750","6,440","7,425","4,810","13,425","3,560","4,305","7,685","17,780","5,875","11,555","5,175","9,880","7,435","17,500","5,375","6,110","8,960","18,770","5,005","9,560","5,285","8,690","7,465","3,790","6,335","13,320","3,715","3,575","5,515","3,860","4,960","3,845","9,055","6,885","10,050","13,395","3,815","3,650","5,925","11,390","12,080","6,430","7,805","10,380","10,060","6,270","9,435","3,280","7,130","6,920","3,395","7,405","40,755","9,980","10,285","10,220","7,595","4,225","10,105","22,310","7,565","8,510","18,425","5,455","3,450","5,895","5,680","7,015","10,170","5,350" -1633,Housing,Household characteristics,Census Profile 98-316-X2016001, Condominium,"292,265","2,450","3,335",190,"4,510","4,455",955,"10,745","5,770",430,"1,175",130,"3,680",420,"1,260",75,965,950,540,705,"1,905",30,890,190,"9,935","1,045","1,595",150,225,55,155,"2,845","3,465","1,850","1,370",600,410,"1,035","2,360",830,"1,775","1,640","1,785","4,100",450,910,"1,165",130,870,"3,225","1,495","3,510",35,"2,115",925,355,645,115,365,"8,340",980,390,"1,180","2,705","2,590",700,35,"4,835","2,570",160,625,455,"2,660",760,"4,395",135,"1,520","2,215","9,360","1,215","5,265","1,265","2,860",460,"5,005",560,"2,350","2,165","15,710",105,"1,305",405,95,315,35,295,"1,505",535,40,"1,135",0,"2,040",105,"1,215",570,"3,070","1,265",25,80,"1,625","1,530","2,370","1,185","2,870",605,"2,650","1,430","1,150",90,"1,125",515,510,"1,560","35,730","1,990","2,130","2,870",905,140,495,"16,330","3,880",430,"3,460",310,65,555,650,"1,840","2,870","1,435" -1634,Housing,Household characteristics,Census Profile 98-316-X2016001, Not condominium,"820,665","6,665","4,810","4,430","11,430","7,665","5,130","4,330","3,760","4,260","7,425","2,520","7,085","8,785","6,065","3,050","4,775","2,290","5,125","5,780","4,535","3,655","4,515","4,180","9,745","8,200","4,965","5,760","5,275","3,870","6,860","7,125","5,305","13,455","11,755","4,845","8,775","5,215","5,540","2,385","6,470","5,225","2,805","3,725","4,995","4,035","8,730","5,925","3,120","3,130","9,525","7,365","3,660","4,285","3,215","3,530","4,410","6,450","4,795","10,980","5,055","3,790","5,395","6,035","5,190","2,885","3,085","10,205","4,020","5,260","5,135","5,980","4,770","4,055","9,020","3,430","2,795","5,450","8,430","4,655","6,290","3,910","7,030","6,980","12,490","4,810","3,755","6,790","3,070","4,900","8,255","4,880","8,600","7,150","3,770","6,040","11,800","3,170","3,530","4,375","3,855","2,915","3,735","7,845","6,310","7,000","12,125","3,795","3,575","4,300","9,860","9,710","5,255","4,945","9,780","7,410","4,850","8,285","3,190","5,995","6,410","2,885","5,855","5,030","7,990","8,150","7,340","6,690","4,085","9,605","5,970","3,680","8,090","14,980","5,140","3,370","5,340","5,020","5,165","7,300","3,910" -1635,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Occupied private dwellings by number of bedrooms - 25% sample data,"1,112,925","9,115","8,140","4,610","15,940","12,125","6,090","15,075","9,525","4,700","8,605","2,650","10,765","9,190","7,325","3,120","5,735","3,240","5,665","6,480","6,440","3,680","5,405","4,380","19,685","9,240","6,550","5,905","5,500","3,925","7,025","9,955","8,775","15,300","13,120","5,440","9,185","6,260","7,915","3,215","8,245","6,865","4,585","7,835","5,445","4,945","9,925","6,055","3,995","6,360","11,015","10,875","3,705","6,400","4,140","3,895","5,055","6,560","5,170","19,335","6,030","4,175","6,580","8,730","7,785","3,585","3,125","15,030","6,590","5,420","5,745","6,435","7,425","4,815","13,430","3,555","4,305","7,680","17,785","5,875","11,555","5,175","9,880","7,440","17,505","5,370","6,120","8,960","18,770","5,010","9,555","5,280","8,685","7,470","3,790","6,330","13,310","3,705","3,575","5,515","3,860","4,965","3,850","9,055","6,890","10,055","13,390","3,820","3,650","5,925","11,385","12,075","6,420","7,820","10,380","10,070","6,270","9,430","3,280","7,115","6,910","3,395","7,420","40,750","9,990","10,275","10,220","7,595","4,230","10,105","22,300","7,565","8,505","18,430","5,445","3,450","5,890","5,675","7,020","10,170","5,345" -1636,Housing,Household characteristics,Census Profile 98-316-X2016001, No bedrooms,"22,355",20,15,20,855,50,150,560,105,10,100,65,115,150,140,95,105,0,120,25,320,10,85,0,"1,320",35,45,135,25,135,40,20,45,235,150,155,395,0,40,0,185,10,10,75,100,65,180,100,10,60,570,120,20,170,25,10,20,195,65,150,120,40,90,560,20,0,20,110,10,20,70,95,110,55,65,10,25,35,470,20,905,80,115,130,"1,230",165,80,55,715,75,565,275,255,100,45,115,30,10,140,20,0,340,10,280,400,140,10,20,20,160,935,285,20,0,40,110,95,175,10,55,95,90,285,905,285,25,225,230,150,35,210,275,0,295,140,95,60,260,270,145,30 -1637,Housing,Household characteristics,Census Profile 98-316-X2016001, 1 bedroom,"310,010",965,915,325,"6,995","3,010","1,200","8,070","3,685",515,"1,570",665,"2,285","1,475","1,335",675,"1,325",150,"2,625","1,485","2,790",620,"1,825",35,"11,825","1,505","2,175",680,950,780,"1,190","1,610","1,845","4,280","2,935","2,060","2,230","1,220","1,550",230,"2,410",405,790,"1,835","2,035","1,785","1,290","1,380",410,"2,710","4,955","3,730",80,705,445,320,590,"2,610","1,505","5,930","1,670",930,"1,630","3,665",965,315,515,"2,085","1,690",735,"1,065","1,025","2,830","1,395","1,495",620,340,500,"7,270",930,"6,785","1,255","1,195","2,060","9,885","1,605","1,445","1,880","10,410","1,340","5,960","2,075","2,230","1,835",795,"2,090","2,200",315,"1,185",450,135,"2,210",625,"1,990","2,590","3,175",520,415,775,"1,095","6,370","3,250",595,895,"1,785","1,760","2,805","2,105",345,"3,380","1,730","1,270","2,215","24,695","1,515","1,335","1,890","2,680",865,"1,680","7,680","2,020","1,335","3,365","1,405",665,"1,860","2,045","3,005","2,795",975 -1638,Housing,Household characteristics,Census Profile 98-316-X2016001, 2 bedrooms,"315,685","1,790","2,235","1,145","4,555","4,245","1,475","5,750","2,555","1,050","1,985","1,200","2,470","2,750","2,580",780,"2,425",700,"1,610","2,280","2,110","1,140","1,655",205,"5,845","2,375","1,755","1,220","1,240",565,"1,730","3,870","2,950","4,000","3,510","1,405","2,135","1,875","2,865",920,"2,480","1,135","1,745","3,590","1,430","1,085","2,385","1,575",910,"1,965","2,680","2,910",190,"1,220","1,545",665,"1,505","1,485","1,630","6,645","1,460","1,215","1,890","2,470","3,180",990,690,"3,820","2,280",735,"1,000","1,190","2,360","1,755","2,760",910,"1,195","1,665","6,720","1,330","2,830","1,845","4,030","1,590","5,195","1,970","1,655","2,780","6,240","1,005","2,615","1,485","2,140","2,375","1,060","1,570","4,670",635,770,955,395,"1,515",830,"2,790","1,415","3,100","1,745",620,"1,250","2,345","3,135","3,295","1,645","1,820","3,110","3,095","2,080","2,265",600,"2,975","1,760",870,"2,145","13,060","2,150","1,970","4,440","2,570",935,"2,225","8,905","2,650","1,995","5,830","1,145","1,120","1,420","1,335","2,320","2,765","1,300" -1639,Housing,Household characteristics,Census Profile 98-316-X2016001, 3 bedrooms,"270,925","2,860","2,560","2,055","2,000","2,545","1,860",655,"1,700","1,215","1,395",480,"3,700","3,030","2,330","1,080","1,400",665,985,"2,000",865,"1,395",885,"1,620",580,"3,305","1,145","2,090","2,290","1,835","3,100","2,310","2,550","4,565","4,365","1,110","3,345","1,310","2,325","1,500","1,665","3,280","1,535","2,005",705,535,"3,730","2,250","1,330","1,145","1,635","2,330",800,"2,195","1,415","1,620","1,535","1,140","1,290","4,060","1,735","1,425","1,660","1,000","2,495","1,030","1,235","4,760","1,115","2,475","1,180","2,290","1,360","1,095","4,835","1,265","1,700","2,655","2,455","1,985",710,"1,510","2,905","2,455",860,"1,160","1,100","2,250","1,180","1,355",400,895,"2,820","1,930","1,250","1,330","3,865","1,785",835,"1,970","1,505",715,"1,605","3,050","1,510","1,270","4,450","1,890","1,100","1,640",575,"3,840","1,310","2,300","3,370","2,810","1,005","2,950","1,295",680,"1,835",675,"1,930","1,870","3,510","3,460","2,685","1,370","1,630","3,580","2,990","1,390","3,310","4,940","2,240","1,130","1,610","1,085",815,"2,620","1,885" -1640,Housing,Household characteristics,Census Profile 98-316-X2016001, 1991 to 2000,"85,645",895,640,165,950,"1,185",375,"2,165",375,310,"1,335",420,570,505,445,70,310,400,275,605,250,235,205,900,"2,585",460,680,355,160,80,205,390,"1,145","1,015",855,250,555,215,830,130,965,105,80,695,240,210,435,295,425,295,310,370,760,385,325,145,250,240,310,"1,075",250,405,725,765,370,235,75,770,440,230,275,335,195,310,"2,165",350,40,"1,265","1,775",335,"1,100",650,"1,320",455,"1,855",710,"1,180",740,"1,690",65,365,250,315,545,105,170,795,300,95,205,155,165,105,435,130,670,"1,840",25,555,565,565,620,640,920,535,"1,335",305,550,185,635,210,95,560,"4,055",630,"1,650",750,870,125,555,"3,845",760,295,"2,305",340,95,425,190,415,645,245 -1641,Housing,Household characteristics,Census Profile 98-316-X2016001, 4 or more bedrooms,"193,955","3,490","2,405","1,090","1,540","2,280","1,395",25,"1,475","1,920","3,565",255,"2,180","1,805",945,485,480,"1,740",325,695,355,515,945,"2,510",100,"2,030","1,435","1,785","1,005",625,930,"2,170","1,380","2,210","2,150",705,"1,060","1,855","1,095",565,"1,515","2,040",510,325,"1,160","1,480","2,345",755,"1,330",485,"1,190","1,775","2,610","2,120",715,"1,290","1,395","1,130",685,"2,545","1,055",585,"1,320","1,055","1,115","1,250",670,"4,270","1,485","1,455","2,435","1,840",755,515,"4,285",755,"1,055","2,815",860,"1,605",325,495,"1,610","1,205",340,485,"1,835","2,000",230,"1,220",20,550,"1,250","1,240",650,"1,230","2,565",975,645,"2,125","1,840",185,770,945,970,"2,365","6,660",865,510,675,370,"1,420","2,855","2,805","2,060","2,290",280,"1,935","1,030",35,"1,490",505,835,230,"2,530","3,505",965,760,635,"2,575","2,510","1,220","1,840","3,990",520,435,940,945,615,"1,850","1,155" -1642,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Occupied private dwellings by number of rooms - 25% sample data,"1,112,930","9,125","8,140","4,615","15,935","12,135","6,085","15,075","9,530","4,700","8,610","2,645","10,760","9,200","7,325","3,125","5,740","3,240","5,665","6,480","6,440","3,685","5,400","4,380","19,675","9,250","6,555","5,900","5,505","3,925","7,020","9,970","8,775","15,290","13,120","5,430","9,180","6,250","7,915","3,220","8,250","6,860","4,580","7,825","5,445","4,950","9,915","6,050","3,995","6,360","11,025","10,875","3,700","6,400","4,135","3,900","5,055","6,565","5,165","19,330","6,030","4,180","6,570","8,725","7,780","3,585","3,125","15,040","6,585","5,420","5,745","6,430","7,430","4,810","13,425","3,560","4,310","7,685","17,775","5,880","11,555","5,170","9,880","7,435","17,500","5,370","6,110","8,960","18,775","5,010","9,555","5,285","8,690","7,470","3,795","6,330","13,315","3,710","3,575","5,520","3,855","4,960","3,845","9,050","6,885","10,060","13,385","3,820","3,645","5,920","11,390","12,070","6,420","7,820","10,375","10,055","6,275","9,425","3,280","7,125","6,905","3,385","7,410","40,755","9,970","10,275","10,225","7,605","4,225","10,105","22,310","7,555","8,510","18,435","5,455","3,450","5,895","5,670","7,020","10,165","5,340" -1643,Housing,Household characteristics,Census Profile 98-316-X2016001, 1 to 4 rooms,"559,150","2,795","3,265",790,"10,255","5,990","2,610","12,965","5,840","1,320","2,560","1,495","4,995","2,870","4,000","1,185","3,050",435,"3,770","3,370","4,210","1,280","2,670",285,"17,020","3,280","3,420","1,605","1,685","1,180","2,040","4,950","4,480","7,055","5,995","3,105","3,745","2,400","4,205","1,075","4,415","1,225","2,015","5,015","3,200","2,325","3,915","2,215",785,"4,585","7,215","5,165",330,"1,815","1,425",985,"2,155","3,695","2,945","10,460","2,635","1,750","3,115","6,245","3,420",635,995,"5,380","3,305","1,060","1,475","1,650","4,530","2,560","4,600","1,325","1,045","2,285","11,865","2,225","9,365","2,710","5,250","2,965","14,560","2,890","2,900","4,500","15,065","1,835","8,765","3,430","3,590","3,305","1,210","3,015","5,870",865,"1,695","1,395",390,"3,880","1,310","3,835","3,700","4,715","2,360",675,"1,855","3,270","9,525","5,430","1,900","2,535","3,420","4,520","4,545","3,235","1,000","5,935","2,925","1,920","4,390","34,395","3,595","3,415","5,980","4,630","1,585","3,435","15,055","4,350","2,895","9,310","2,010","1,110","2,860","2,935","4,400","5,385","2,210" -1644,Housing,Household characteristics,Census Profile 98-316-X2016001, 5 rooms,"150,730","1,650","1,370",745,"1,825","1,770",815,"1,410",935,850,815,440,"1,695","1,270","1,265",435,910,305,560,"1,125",760,645,815,465,"1,750","1,480",725,805,760,320,"1,015","1,505","1,515","2,130","1,910",715,"1,185",875,"1,450",770,"1,230","1,050",915,"1,800",555,595,"1,665",990,605,755,"1,025","1,390",360,"1,145",800,605,785,575,680,"2,585",875,715,"1,050","1,025","1,485",445,345,"2,880",770,475,485,520,835,740,"2,415",360,860,"1,310","2,380",905,"1,010",985,"1,665",725,"1,550",835,740,"1,175","2,100",535,575,600,"1,200","1,195",490,870,"2,245",470,315,880,255,550,645,"1,605",695,"1,330","2,305",350,405,"1,060",875,"1,765",785,"1,250","1,360","1,460",840,"1,245",500,905,880,345,"1,155","4,190","1,585","1,550","1,955",985,580,"1,610","2,645",750,"1,235","2,600",750,565,630,535,895,"1,525",690 -1645,Housing,Household characteristics,Census Profile 98-316-X2016001, 6 rooms,"119,130","1,410","1,080",845,"1,245","1,170",595,515,700,620,750,190,"1,355","1,345",795,540,705,305,455,680,610,600,485,670,615,"1,485",435,840,890,690,"1,300","1,025","1,150","2,020","1,655",460,"1,340",450,745,475,785,"1,210",610,675,210,275,"1,405","1,125",650,400,710,"1,120",490,"1,130",545,540,730,505,530,"1,995",710,515,785,500,935,430,405,"2,395",585,740,415,720,640,485,"2,390",470,595,"1,305","1,435",805,575,735,"1,210",920,605,560,490,835,890,555,120,440,"1,305",865,620,615,"1,815",725,425,830,400,345,635,"1,400",695,740,"2,340",650,400,560,360,"1,750",550,"1,300","1,405","1,330",305,"1,290",430,165,810,355,640,"1,425","1,585","1,695",950,625,745,"1,500","1,445",685,"1,145","2,020","1,020",590,630,545,490,"1,130",755 -1646,Housing,Household characteristics,Census Profile 98-316-X2016001, 7 rooms,"94,780","1,250",825,780,825,870,445,155,570,430,715,170,"1,030","1,345",510,475,455,340,410,530,445,470,370,660,200,"1,210",405,855,795,840,"1,180",825,695,"1,570","1,190",390,"1,430",465,620,385,395,"1,165",410,240,255,185,"1,245",770,555,200,640,965,525,925,450,635,570,495,375,"1,250",690,520,525,375,615,355,465,"1,635",385,970,555,925,430,360,"1,785",385,510,"1,085",910,720,350,415,695,"1,045",395,425,450,790,405,675,70,355,955,620,510,550,"1,165",470,375,760,510,110,495,960,655,545,"2,000",865,275,355,185,"1,445",550,960,"1,275","1,040",270,"1,130",445,75,680,285,480,545,"1,190","1,300",530,455,620,"1,195","1,015",625,"1,020","1,685",860,520,635,490,395,710,390 -1647,Housing,Household characteristics,Census Profile 98-316-X2016001, 8 or more rooms,"189,140","2,005","1,595","1,450","1,785","2,330","1,615",50,"1,485","1,485","3,775",355,"1,690","2,380",760,485,620,"1,845",460,785,430,680,"1,065","2,285",115,"1,785","1,575","1,800","1,355",885,"1,465","1,665",935,"2,525","2,370",765,"1,465","2,095",895,520,"1,425","2,205",620,90,"1,230","1,570","1,705",955,"1,400",435,"1,430","2,265","1,995","1,375",925,"1,135",835,"1,295",645,"3,035","1,120",690,"1,100",600,"1,335","1,720",910,"2,745","1,540","2,175","2,815","2,635","1,000",670,"2,220","1,020","1,300","1,715","1,175","1,205",255,335,"1,035","1,780",405,670,"1,535","1,660",330,"1,405",25,455,"1,625","1,490",965,"1,280","2,230","1,185",775,"1,660","2,300",80,765,"1,250","1,135","2,715","4,410","1,270",720,680,435,"1,715","2,640","1,795","2,910","1,715",300,"2,520",910,35,"1,620",495,765,215,"2,030","2,320",825,900,705,"2,375","2,145","1,145","2,215","2,805",820,655,"1,140","1,165",845,"1,415","1,300" -1648,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Private households by number of persons per room - 25% sample data,"1,112,930","9,110","8,140","4,615","15,940","12,120","6,090","15,075","9,530","4,695","8,605","2,650","10,770","9,195","7,325","3,120","5,740","3,235","5,665","6,485","6,440","3,680","5,410","4,380","19,670","9,240","6,550","5,905","5,505","3,925","7,025","9,965","8,780","15,295","13,120","5,440","9,175","6,250","7,910","3,225","8,245","6,865","4,585","7,835","5,440","4,950","9,915","6,050","3,995","6,365","11,025","10,880","3,700","6,400","4,140","3,900","5,055","6,570","5,170","19,330","6,025","4,180","6,575","8,730","7,785","3,585","3,120","15,040","6,585","5,420","5,745","6,440","7,430","4,815","13,420","3,560","4,310","7,680","17,775","5,880","11,550","5,170","9,865","7,440","17,490","5,370","6,115","8,960","18,775","5,010","9,560","5,285","8,695","7,465","3,790","6,340","13,320","3,710","3,575","5,520","3,860","4,960","3,845","9,060","6,890","10,055","13,380","3,815","3,650","5,920","11,385","12,075","6,425","7,815","10,375","10,060","6,270","9,425","3,275","7,125","6,905","3,395","7,410","40,755","9,995","10,285","10,220","7,600","4,225","10,105","22,310","7,565","8,515","18,435","5,460","3,450","5,895","5,680","7,010","10,170","5,345" -1649,Housing,Household characteristics,Census Profile 98-316-X2016001, Major repairs needed,"78,600",365,460,280,"1,200",480,405,395,345,305,470,235,545,825,"1,000",290,435,100,635,655,685,285,385,175,"1,060",615,325,435,400,340,635,685,605,"1,245","1,295",500,690,390,885,350,690,440,310,835,365,320,"1,065",645,145,390,795,725,150,390,250,255,405,630,470,"1,375",320,285,645,850,665,160,310,"1,195",355,295,390,365,480,455,905,255,215,250,"1,015",550,895,575,995,410,830,460,245,455,375,350,920,670,895,815,295,685,"1,150",170,275,270,220,480,265,905,830,550,445,240,320,760,"1,245",930,310,330,685,535,760,770,205,885,520,295,480,895,"1,155",500,920,730,395,750,645,390,565,"1,470",520,420,470,325,565,820,375 -1650,Housing,Household characteristics,Census Profile 98-316-X2016001, One person or fewer per room,"1,054,450","8,455","7,590","4,515","15,730","11,720","5,765","14,585","9,070","4,555","8,350","2,495","9,915","9,045","6,380","3,035","5,340","3,220","5,375","5,900","6,350","3,495","5,350","4,320","19,250","8,610","6,085","5,735","5,390","3,865","6,885","9,205","7,930","14,900","12,180","5,255","8,910","6,120","7,055","2,955","7,595","6,715","4,290","6,610","5,125","4,920","8,945","5,930","3,955","5,565","10,655","10,760","3,565","6,240","4,010","3,495","4,460","6,365","4,630","18,480","5,930","3,970","6,130","8,395","6,920","3,580","3,040","13,960","6,335","5,395","5,690","6,380","7,310","4,720","12,160","3,265","4,225","7,025","17,360","5,390","11,285","4,860","8,020","7,310","16,795","5,220","5,845","8,145","18,415","4,970","8,485","4,510","8,290","7,045","3,670","6,270","12,455","3,600","3,535","5,290","3,820","4,480","3,640","8,585","6,635","9,960","12,660","3,810","3,380","5,170","10,485","11,785","6,260","7,305","10,135","9,230","5,220","9,380","3,005","5,005","6,815","3,360","6,905","39,960","9,495","9,455","9,350","7,070","4,085","9,580","21,070","7,285","8,005","16,340","5,375","3,405","5,775","5,580","6,920","9,145","5,065" -1651,Housing,Household characteristics,Census Profile 98-316-X2016001, More than 1 person per room,"58,480",675,555,95,210,405,325,490,465,140,260,155,855,150,945,85,390,15,290,585,100,180,55,55,430,650,470,165,95,60,140,760,855,380,925,175,260,130,855,260,645,155,295,"1,215",315,30,965,130,35,795,370,115,135,160,130,400,590,200,535,840,105,215,445,330,860,10,75,"1,075",255,15,65,50,115,100,"1,260",285,85,660,435,485,280,320,"1,855",125,700,150,275,820,355,50,"1,080",770,390,420,125,60,875,105,35,230,45,475,200,475,255,105,730,0,270,750,915,285,175,510,245,825,"1,045",40,270,"2,120",105,30,510,795,500,815,875,525,150,530,"1,225",270,505,"2,090",85,45,125,95,105,"1,025",275 -1652,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Private households by housing suitability - 25% sample data,"1,112,930","9,125","8,130","4,620","15,925","12,120","6,095","15,075","9,530","4,700","8,610","2,650","10,765","9,200","7,320","3,130","5,730","3,240","5,665","6,480","6,445","3,680","5,405","4,380","19,675","9,250","6,555","5,910","5,510","3,925","7,020","9,970","8,780","15,305","13,115","5,435","9,180","6,255","7,910","3,215","8,245","6,865","4,585","7,830","5,445","4,945","9,920","6,055","3,990","6,360","11,025","10,875","3,700","6,395","4,140","3,895","5,050","6,570","5,170","19,330","6,030","4,185","6,575","8,740","7,785","3,585","3,125","15,035","6,590","5,425","5,745","6,440","7,430","4,810","13,420","3,555","4,310","7,680","17,785","5,875","11,555","5,180","9,875","7,435","17,485","5,370","6,115","8,960","18,770","5,005","9,555","5,280","8,690","7,470","3,790","6,330","13,310","3,710","3,575","5,515","3,860","4,955","3,840","9,055","6,890","10,055","13,385","3,820","3,650","5,925","11,390","12,080","6,430","7,825","10,375","10,060","6,275","9,425","3,285","7,120","6,910","3,395","7,415","40,750","9,980","10,295","10,225","7,605","4,230","10,105","22,300","7,560","8,510","18,430","5,450","3,450","5,890","5,680","7,020","10,165","5,350" -1653,Housing,Household characteristics,Census Profile 98-316-X2016001, Suitable,"978,105","7,805","7,165","4,285","15,125","11,255","5,380","13,175","8,445","4,365","7,995","2,140","9,215","8,635","5,365","2,895","4,755","3,190","4,805","5,055","6,070","3,185","5,170","4,235","17,965","7,985","5,610","5,405","5,025","3,700","6,535","8,390","7,055","13,960","10,635","4,905","8,405","5,740","6,095","2,645","6,865","6,410","3,920","5,610","4,670","4,780","7,620","5,575","3,840","4,905","10,010","10,350","3,420","5,990","3,770","3,235","3,890","5,920","3,995","17,255","5,630","3,630","5,620","7,930","6,175","3,515","2,900","12,990","5,840","5,270","5,535","6,185","6,950","4,360","11,090","2,875","4,070","6,545","16,360","4,885","10,625","4,135","6,820","7,045","15,805","4,885","5,435","7,465","17,660","4,815","7,380","3,975","7,600","6,340","3,425","5,980","11,390","3,345","3,405","5,045","3,750","4,165","3,305","7,750","6,235","9,570","11,910","3,710","2,895","4,605","9,570","11,370","5,995","6,865","9,615","8,545","4,455","9,085","2,760","4,115","6,505","3,160","6,290","37,805","8,770","8,495","8,400","6,125","3,715","8,830","19,175","6,815","7,565","14,910","5,155","3,225","5,480","5,330","6,640","8,005","4,695" -1654,Housing,Household characteristics,Census Profile 98-316-X2016001, Not suitable,"134,825","1,315",970,325,800,865,705,"1,900","1,095",335,610,510,"1,550",570,"1,950",225,975,55,855,"1,425",360,500,235,150,"1,715","1,255",955,495,485,225,485,"1,575","1,720","1,330","2,485",530,780,510,"1,810",570,"1,380",455,670,"2,220",775,170,"2,290",480,150,"1,450","1,015",515,280,410,360,660,"1,155",655,"1,165","2,075",405,555,955,805,"1,605",55,225,"2,040",750,150,210,255,470,450,"2,330",680,240,"1,150","1,420",990,940,"1,045","3,055",395,"1,695",490,680,"1,500","1,105",195,"2,185","1,310","1,080","1,130",360,355,"1,935",370,170,470,100,790,540,"1,305",645,480,"1,475",110,745,"1,320","1,810",725,440,950,770,"1,545","1,815",340,520,"3,005",400,240,"1,120","2,955","1,220","1,795","1,815","1,470",505,"1,260","3,125",750,945,"3,535",305,215,410,345,380,"2,155",655 -1655,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Occupied private dwellings by period of construction - 25% sample data,"1,112,930","9,120","8,135","4,615","15,945","12,125","6,095","15,075","9,530","4,700","8,615","2,650","10,755","9,200","7,320","3,120","5,740","3,240","5,665","6,485","6,440","3,680","5,410","4,385","19,690","9,250","6,550","5,900","5,510","3,920","7,025","9,960","8,775","15,300","13,120","5,440","9,175","6,255","7,915","3,220","8,245","6,865","4,580","7,830","5,445","4,950","9,920","6,050","3,990","6,365","11,025","10,870","3,700","6,395","4,135","3,895","5,055","6,570","5,165","19,320","6,025","4,185","6,580","8,735","7,780","3,585","3,125","15,025","6,590","5,420","5,750","6,440","7,430","4,815","13,430","3,555","4,310","7,685","17,785","5,880","11,555","5,180","9,875","7,435","17,495","5,375","6,110","8,960","18,780","5,010","9,555","5,280","8,685","7,465","3,790","6,330","13,325","3,710","3,580","5,525","3,865","4,955","3,845","9,050","6,885","10,055","13,390","3,820","3,650","5,920","11,395","12,065","6,425","7,815","10,375","10,060","6,270","9,425","3,285","7,120","6,900","3,390","7,410","40,755","9,980","10,285","10,230","7,600","4,225","10,110","22,305","7,565","8,515","18,440","5,455","3,450","5,890","5,680","7,020","10,180","5,350" -1656,Housing,Household characteristics,Census Profile 98-316-X2016001, 1960 or before,"363,130",245,835,"2,905","6,920","2,970","2,165",665,"1,475",400,"2,935","1,045","3,970","6,050","1,250","2,200","2,310",865,"2,305","1,945","2,680","2,175","2,810",300,"3,400","3,875","2,265","2,930","3,930","3,045","5,110",990,"2,395","8,555","4,810","3,120","5,390","1,875","2,175",985,"2,515","2,120","1,085",985,"2,660","2,630","2,010","3,875","1,020",465,"4,340","5,935",340,465,"1,175",605,"1,345","4,165","2,265","4,260","3,550","1,870","2,505","2,720","2,130","2,165","2,180","1,210","1,920","3,855","4,105","4,640","3,355","2,260",510,"1,310",820,95,"4,255","1,180","2,585","1,635","1,405","4,065","2,690","2,485","1,080","1,825","1,395","3,870","2,080","1,695","5,665","4,020","2,740","4,810","3,895","1,255","2,300",365,"2,175","1,120","2,255","4,250","4,825","4,805",685,"3,320","1,045","1,430","4,840","6,965","1,120",120,"6,205","1,810","1,655","6,550","1,255","1,405","5,050","1,935","2,220",705,"2,255","1,520","1,010","2,720","2,575","5,955","1,510","1,650","2,315","6,010","3,575","2,485","3,190","2,995","3,280","1,245","2,025" -1657,Housing,Household characteristics,Census Profile 98-316-X2016001, 1961 to 1980,"347,615","4,905","3,275","1,030","4,080","3,675","2,235","2,405","2,110","3,375","1,670",800,"2,595","1,655","4,840",625,"2,415",375,"2,410","2,700","1,765",895,"1,495","1,940","4,660","2,230","1,350","1,675",935,535,"1,000","6,830","3,165","2,485","4,885","1,270","1,845","2,855","3,200","1,435","2,515","3,710","2,615","4,835","1,880","1,035","6,105","1,020","2,035","2,410","4,715","1,850",475,"4,560","1,865","2,640","2,500","1,595","2,125","4,880",710,"1,125","2,235","2,495","4,200",380,570,"9,995","1,065",470,470,620,800,"1,290","5,505","1,445","3,265","1,765","3,185","3,230","2,120","1,790","4,610","1,640","6,950","1,020","1,745","3,745",940,865,"4,880","2,355","1,950","2,195",620,900,"7,265",880,965,"4,475","1,055",905,"1,160","3,425","1,380","2,530","2,375",335,"1,525","2,665","3,415","1,555","3,000","2,615","2,220","5,140","3,735",965,"1,385","3,685",915,810,"3,205","2,695","5,150","3,540","5,675","2,745",880,"2,655","2,050","1,165","4,800","7,175",785,605,"1,195","1,380","2,040","5,470","1,860" -1658,Housing,Household characteristics,Census Profile 98-316-X2016001, 2001 to 2005,"58,310",720,170,75,715,950,325,940,"1,230",30,615,40,995,135,35,45,180,315,85,380,250,105,60,190,"1,500",285,345,125,55,35,55,165,785,650,430,160,415,295,170,20,710,195,30,205,70,90,65,40,40,195,255,205,165,60,65,130,125,55,95,"1,545",555,205,100,440,75,215,0,455,995,220,325,230,125,100,900,105,10,120,"1,485",180,"1,020",260,170,165,"1,345",260,350,340,"2,370",25,210,90,80,160,40,25,135,180,35,85,55,95,40,115,40,850,"3,375",25,60,285,165,305,590,305,395,330,50,620,30,250,150,25,535,"6,070",320,510,165,250,320,135,"5,850",795,70,910,130,50,80,145,430,475,265 -1659,Housing,Household characteristics,Census Profile 98-316-X2016001, 2006 to 2010,"67,530",350,370,115,840,990,290,"2,415","1,770",20,655,10,"1,305",125,10,25,85,600,205,225,225,55,285,335,"2,690","1,450",370,305,45,35,115,265,295,580,745,280,285,395,140,10,215,75,20,50,65,95,75,95,20,375,295,645,195,20,230,95,320,75,40,"2,920",490,105,35,390,10,230,40,120,680,190,210,210,545,195,410,45,35,210,"1,445",140,"1,325",200,45,150,"2,375",205,420,895,"4,425",35,905,50,80,115,65,20,165,290,10,35,100,610,80,70,220,170,"1,225",25,20,270,610,705,285,135,410,260,15,265,25,135,190,180,135,"9,600",310,820,50,325,55,50,"3,860","1,215",205,565,80,45,165,75,255,830,125 -1660,Housing,Household characteristics,Census Profile 98-316-X2016001, 2011 to 2016,"80,805",45,"1,200",120,940,540,220,"3,925","2,150",80,555,25,960,170,60,10,10,450,50,115,35,45,255,105,"2,115",665,"1,125",180,225,25,255,350,210,"1,085",540,80,155,315,90,25,475,35,485,60,60,285,35,80,60,"2,310",475,"1,270",75,15,85,15,50,85,10,"3,190",315,110,80,585,40,140,30,285,770,165,175,210,"2,225",255,205,55,10,105,"4,100",40,"2,605",65,80,350,630,195,245,625,"6,230",30,325,140,70,105,75,120,250,525,40,15,165,"1,750",0,80,95,195,290,35,25,105,785,"1,270",140,200,310,280,25,215,20,325,160,210,85,"14,160",190,355,195,40,30,255,"3,215","1,320",290,320,215,75,275,555,135,590,545 -1661,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Occupied private dwellings by dwelling condition - 25% sample data,"1,112,930","9,115","8,135","4,615","15,935","12,120","6,090","15,075","9,530","4,690","8,610","2,650","10,770","9,205","7,320","3,120","5,740","3,240","5,665","6,485","6,440","3,680","5,410","4,380","19,685","9,255","6,550","5,900","5,505","3,925","7,020","9,955","8,775","15,290","13,115","5,430","9,185","6,255","7,910","3,220","8,250","6,875","4,585","7,830","5,445","4,945","9,915","6,055","3,995","6,365","11,020","10,875","3,700","6,400","4,135","3,900","5,050","6,565","5,165","19,315","6,025","4,185","6,575","8,740","7,780","3,585","3,115","15,035","6,590","5,415","5,740","6,440","7,430","4,815","13,425","3,555","4,315","7,680","17,790","5,880","11,550","5,175","9,865","7,435","17,490","5,375","6,115","8,960","18,770","5,005","9,560","5,285","8,685","7,465","3,795","6,335","13,305","3,710","3,575","5,515","3,860","4,960","3,845","9,055","6,885","10,050","13,390","3,825","3,650","5,925","11,390","12,090","6,430","7,820","10,375","10,065","6,270","9,425","3,280","7,125","6,905","3,390","7,410","40,760","9,980","10,290","10,220","7,595","4,225","10,105","22,300","7,560","8,510","18,435","5,450","3,450","5,895","5,675","7,020","10,160","5,340" -1662,Housing,Household characteristics,Census Profile 98-316-X2016001, Only regular maintenance or minor repairs needed,"1,034,330","8,755","7,675","4,345","14,745","11,650","5,680","14,665","9,185","4,400","8,135","2,415","10,220","8,365","6,330","2,835","5,295","3,145","5,035","5,825","5,765","3,395","5,030","4,200","18,625","8,630","6,225","5,475","5,105","3,590","6,385","9,280","8,170","14,055","11,830","4,935","8,490","5,865","7,035","2,870","7,565","6,425","4,265","6,995","5,075","4,620","8,840","5,405","3,850","5,975","10,235","10,140","3,555","6,005","3,890","3,650","4,645","5,945","4,695","17,940","5,705","3,900","5,950","7,880","7,100","3,430","2,805","13,840","6,235","5,120","5,355","6,080","6,950","4,355","12,535","3,300","4,095","7,430","16,765","5,330","10,655","4,600","8,880","7,025","16,665","4,905","5,875","8,505","18,400","4,650","8,630","4,610","7,795","6,650","3,505","5,655","12,170","3,535","3,300","5,250","3,635","4,475","3,585","8,155","6,065","9,500","12,950","3,580","3,325","5,170","10,155","11,135","6,115","7,490","9,700","9,520","5,510","8,655","3,080","6,235","6,390","3,105","6,935","39,850","8,830","9,785","9,305","6,865","3,830","9,360","21,655","7,175","7,940","16,955","4,945","3,035","5,425","5,350","6,455","9,360","4,965" -1663,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Private households by number of household maintainers - 25% sample data,"1,112,930","9,120","8,130","4,615","15,925","12,125","6,085","15,075","9,535","4,700","8,605","2,650","10,770","9,200","7,325","3,130","5,730","3,240","5,660","6,480","6,440","3,680","5,405","4,375","19,675","9,245","6,555","5,900","5,500","3,930","7,020","9,975","8,775","15,295","13,130","5,435","9,180","6,255","7,910","3,220","8,250","6,860","4,580","7,840","5,450","4,950","9,920","6,050","3,995","6,360","11,025","10,870","3,700","6,400","4,135","3,895","5,045","6,565","5,165","19,330","6,030","4,180","6,575","8,740","7,790","3,585","3,125","15,030","6,590","5,425","5,750","6,445","7,425","4,815","13,420","3,555","4,310","7,685","17,780","5,875","11,555","5,180","9,875","7,440","17,505","5,370","6,110","8,960","18,780","5,000","9,560","5,280","8,690","7,470","3,790","6,330","13,310","3,710","3,580","5,520","3,865","4,960","3,845","9,060","6,885","10,045","13,390","3,815","3,645","5,925","11,395","12,075","6,425","7,820","10,375","10,070","6,270","9,425","3,280","7,125","6,905","3,390","7,410","40,760","9,995","10,290","10,215","7,595","4,225","10,105","22,295","7,560","8,510","18,435","5,460","3,450","5,895","5,680","7,010","10,175","5,340" -1664,Housing,Household characteristics,Census Profile 98-316-X2016001, 1 household maintainer,"693,405","5,030","4,680","2,430","10,660","7,915","3,580","10,605","6,330","2,690","5,330","1,875","6,665","5,635","4,950","1,885","3,420","1,935","3,725","4,245","4,470","2,025","3,685","2,000","14,270","5,215","4,115","3,390","2,940","2,095","3,930","5,730","5,305","8,460","7,920","3,250","5,660","3,885","5,010","2,025","5,465","3,485","2,905","5,275","3,485","3,425","6,145","3,550","2,345","4,065","7,180","6,545","1,665","3,705","2,570","2,255","3,035","4,120","3,240","12,020","3,295","2,530","4,505","5,785","4,840","1,905","1,795","8,685","3,890","2,865","3,360","3,755","4,275","3,000","7,735","1,975","2,435","4,105","12,275","3,495","8,745","3,545","6,160","4,560","12,945","3,615","3,795","5,190","12,860","2,815","6,705","3,765","5,215","4,595","2,170","3,420","8,195","1,930","2,185","3,050","2,020","3,580","2,225","5,845","4,170","7,000","6,485","1,925","2,500","3,890","8,090","7,255","3,915","4,440","6,035","5,975","4,255","5,610","1,915","4,950","3,805","1,995","4,915","28,380","6,420","5,595","5,940","5,280","2,530","5,850","14,640","4,810","4,960","11,530","3,350","1,975","3,605","3,760","5,080","6,290","3,215" -1665,Housing,Household characteristics,Census Profile 98-316-X2016001, 2 household maintainers,"374,460","3,450","2,885","2,045","4,815","4,000","2,225","4,040","2,980","1,785","3,180",700,"3,400","3,355","1,785","1,160","1,990","1,255","1,775","1,880","1,850","1,450","1,630","2,240","5,060","3,570","2,235","2,335","2,285","1,670","2,855","3,680","2,945","5,855","4,425","1,910","3,345","2,210","2,395","1,025","2,490","3,065","1,435","2,205","1,805","1,455","3,015","2,285","1,555","1,915","3,635","4,100","1,750","2,350","1,425","1,415","1,620","2,320","1,685","6,695","2,515","1,430","1,750","2,225","2,620","1,645","1,260","5,355","2,490","2,530","2,330","2,615","2,775","1,690","4,705","1,325","1,755","3,075","5,225","1,985","2,675","1,355","2,940","2,800","4,350","1,600","2,005","3,110","5,640","2,090","2,455","1,335","3,090","2,620","1,510","2,455","4,415","1,565","1,320","2,135","1,775","1,185","1,415","2,870","2,490","2,975","5,885","1,790","1,010","1,785","2,985","4,430","2,310","2,915","4,140","3,510","1,750","3,725","1,130","1,865","2,590","1,150","2,220","11,765","3,070","3,720","3,530","2,025","1,455","3,645","7,020","2,495","3,265","5,875","2,005","1,370","2,040","1,835","1,900","3,065","1,835" -1666,Housing,Household characteristics,Census Profile 98-316-X2016001, 3 or more household maintainers,"45,060",640,580,140,465,205,290,425,230,215,95,80,695,210,585,80,330,45,155,360,110,210,90,140,340,455,200,185,280,155,240,550,530,985,770,270,180,170,510,170,290,305,245,355,160,70,760,220,90,385,215,235,290,350,135,225,395,135,235,615,220,225,320,715,325,35,70,995,200,20,50,50,370,120,995,255,115,515,280,395,130,280,780,80,205,155,315,650,270,95,395,180,390,240,115,455,705,210,75,335,70,195,210,350,225,100,"1,030",100,140,250,320,380,200,470,195,595,270,70,235,310,505,250,280,620,505,980,735,290,245,590,650,255,290,"1,035",95,100,245,70,45,820,295 -1667,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Private households by age of primary household maintainers - 25% sample data,"1,112,925","9,130","8,140","4,615","15,935","12,120","6,085","15,070","9,530","4,700","8,600","2,655","10,770","9,195","7,330","3,125","5,740","3,240","5,660","6,480","6,440","3,680","5,410","4,385","19,680","9,240","6,550","5,905","5,510","3,925","7,020","9,970","8,775","15,310","13,120","5,440","9,185","6,255","7,910","3,220","8,240","6,865","4,585","7,830","5,445","4,945","9,920","6,045","3,990","6,360","11,025","10,880","3,700","6,400","4,140","3,890","5,055","6,560","5,170","19,335","6,030","4,180","6,570","8,735","7,775","3,580","3,125","15,030","6,590","5,410","5,755","6,435","7,430","4,810","13,430","3,555","4,310","7,670","17,780","5,875","11,555","5,180","9,880","7,435","17,495","5,375","6,110","8,960","18,770","5,005","9,555","5,280","8,690","7,465","3,785","6,340","13,310","3,715","3,575","5,525","3,855","4,960","3,845","9,055","6,890","10,060","13,390","3,820","3,655","5,925","11,390","12,080","6,435","7,825","10,375","10,060","6,275","9,425","3,275","7,125","6,915","3,395","7,415","40,745","9,985","10,285","10,230","7,595","4,225","10,105","22,300","7,560","8,510","18,450","5,455","3,450","5,890","5,675","7,015","10,170","5,340" -1668,Housing,Household characteristics,Census Profile 98-316-X2016001, 15 to 24 years,"38,565",120,260,20,"1,290",115,70,"3,700",390,70,80,60,690,120,190,65,110,20,110,145,335,75,140,0,"2,480",115,140,40,145,65,70,205,135,595,220,160,195,55,160,20,85,20,80,140,110,125,120,100,20,520,335,240,50,70,25,45,90,210,95,490,100,65,105,"1,110",140,30,25,170,325,40,45,55,465,255,220,30,20,80,585,200,735,120,130,120,780,220,275,460,"1,000",80,580,105,190,190,45,340,245,20,55,105,20,315,60,190,160,195,75,30,50,110,570,295,85,90,120,155,160,125,30,105,325,520,155,"3,635",155,330,135,215,70,155,"1,450",510,80,525,85,40,145,235,215,645,145 -1669,Housing,Household characteristics,Census Profile 98-316-X2016001, 25 to 34 years,"193,895",665,"1,095",430,"4,310","1,230",780,"4,825","2,145",280,660,345,"1,485",875,950,460,820,145,920,900,"1,140",535,915,230,"6,305","1,150","1,020",435,990,535,855,"1,210",985,"3,895","1,670","1,585","1,210",650,800,345,"1,010",445,670,"1,045",710,805,"1,045",965,230,"1,770","2,595","2,330",160,375,320,370,700,"1,510",705,"3,815","1,245",480,630,"2,250",850,230,360,"1,320","1,150",480,630,435,"2,790",750,"1,365",350,275,730,"4,090",645,"3,375",790,"1,190","1,130","4,985",860,880,990,"8,790",720,"2,465",690,"1,145",805,425,"2,070","1,590",395,670,420,130,"1,250",440,"1,145","1,505","1,390","1,085",470,385,580,"3,345","2,405",380,500,"1,085",875,"1,125","1,085",360,"1,210","1,995",930,815,"18,450",955,"1,305","1,030","1,240",630,"1,140","5,400","1,355",730,"2,500",860,435,"1,215","1,305","1,565","1,875",580 -1670,Housing,Household characteristics,Census Profile 98-316-X2016001, 35 to 44 years,"200,745","1,240","1,195",895,"2,385","1,855","1,025","2,010","1,785",555,"1,395",520,"1,625","1,505","1,360",660,"1,085",375,"1,165","1,255","1,060",625,735,685,"3,230","1,850","1,395",920,"1,160",760,"1,535","2,000","1,655","3,130","2,310","1,170","2,020",805,"1,525",555,"1,595",905,805,"1,615","1,025",690,"1,485","1,410",475,"1,350","2,240","2,210",345,755,600,625,955,"1,290",980,"3,715","1,405",685,"1,130","1,265","1,375",545,655,"2,040","1,370","1,160","1,040","1,110","1,600",810,"2,435",630,495,"1,050","3,330",970,"2,450",940,"2,125","1,460","3,670",965,840,"1,545","4,630","1,020","1,995","1,140","1,680","1,395",655,"1,070","2,455",620,725,800,545,970,620,"1,445","1,485","1,265","2,300",880,685,"1,160","2,400","3,015",970,930,"2,010","1,380","1,405","1,950",560,"1,665","1,275",485,"1,340","7,780","1,595","1,700","1,690","1,310",970,"1,690","4,425","1,120","1,280","3,330","1,265",730,960,"1,130","1,030","1,760",890 -1671,Housing,Household characteristics,Census Profile 98-316-X2016001, 45 to 54 years,"225,775","2,145","1,835",985,"2,295","2,570","1,335","1,595","1,665",930,"2,015",625,"2,300","2,340","1,680",735,"1,200",805,"1,135","1,645","1,315",885,855,"1,110","2,990","2,430","1,255","1,360","1,005",750,"1,535","2,145","2,110","2,620","3,000",790,"2,255","1,345","1,890",770,"1,665","1,595",995,"1,750","1,125",855,"2,310","1,310",810,990,"1,910","2,055",940,"1,305",815,855,"1,135","1,205","1,215","3,700","1,200",955,"1,540","1,190","1,760",820,775,"3,480","1,255","1,425","1,475","1,750",920,"1,025","3,410",805,850,"1,640","3,125","1,335","2,115","1,305","2,555","1,680","2,705","1,135","1,275","1,840","2,115","1,180","1,900","1,280","1,755","1,840",965,875,"3,005",960,715,"1,250",970,"1,095",875,"1,920","1,470","1,845","3,430",910,730,"1,470","1,845","2,595","1,660","1,770","2,380","2,025","1,340","2,285",700,"1,545","1,170",395,"1,520","4,495","2,375","2,470","2,085","1,715",905,"2,270","4,230","1,260","1,635","3,975","1,290",750,"1,155",970,"1,185","2,065","1,090" -1672,Housing,Household characteristics,Census Profile 98-316-X2016001, 55 to 64 years,"198,425","2,050","1,625","1,005","2,180","2,165","1,135","1,180","1,400","1,000","1,815",560,"2,000","2,140","1,435",580,"1,205",905,"1,020","1,205","1,100",780,965,"1,025","2,385","1,840","1,205","1,385",975,685,"1,265","1,740","1,970","2,365","2,455",830,"1,780","1,430","1,640",715,"1,505","1,575",955,"1,375","1,100",965,"1,985","1,145",845,850,"1,735","1,815",985,"1,225",885,670,980,"1,060","1,015","3,255","1,160",820,"1,630","1,130","1,425",760,635,"3,075","1,145","1,075","1,215","1,435",750,"1,025","2,995",615,"1,005","1,880","3,095","1,315","1,640","1,090","1,935","1,275","2,215","1,085","1,060","1,695","1,230",960,"1,400","1,055","1,485","1,655",720,730,"2,595",780,630,"1,095","1,015",815,855,"1,740","1,025","1,935","3,540",750,695,"1,330","1,645","1,880","1,460","1,640","2,110","2,040","1,180","2,015",630,"1,110",790,395,"1,485","3,200","2,285","1,980","2,020","1,525",810,"2,155","3,105","1,180","1,565","3,470","1,040",760,955,930,"1,050","1,660","1,000" -1673,Housing,Household characteristics,Census Profile 98-316-X2016001, 65 to 74 years,"134,375","1,535","1,200",590,"1,925","1,870",775,895,"1,090",885,"1,350",315,"1,295","1,285",905,370,685,555,745,695,940,395,935,840,"1,410","1,025",760,920,580,640,990,"1,320","1,150","1,385","1,525",490,"1,090",975,"1,010",455,"1,015","1,090",530,970,805,850,"1,395",595,630,505,"1,265","1,275",815,"1,275",635,525,550,745,610,"2,115",600,580,790,765,"1,010",630,370,"2,530",755,660,740,895,460,575,"2,015",425,685,"1,245","2,110",815,900,565,"1,205","1,020","1,795",625,900,"1,135",695,650,780,565,"1,140",865,510,580,"1,745",415,435,900,575,385,520,"1,335",735,"1,820","2,075",410,450,715,910,"1,080",975,"1,495","1,330","1,455",575,"1,310",460,760,615,355,"1,015","2,050","1,445","1,490","1,390",895,495,"1,240","2,080",985,"1,330","2,290",550,435,725,685,"1,060","1,090",685 -1674,Housing,Household characteristics,Census Profile 98-316-X2016001, 75 to 84 years,"84,315",995,695,460,"1,135","1,460",600,645,710,685,805,160,995,610,615,150,420,300,395,450,410,290,535,415,680,595,520,595,485,345,565,"1,010",535,955,"1,300",350,440,660,635,270,785,905,365,720,385,420,"1,080",360,620,295,590,585,350,"1,010",555,665,480,410,375,"1,535",240,420,535,705,830,370,190,"1,695",355,405,375,485,290,250,775,485,625,765,"1,025",480,295,265,565,555,965,370,565,825,260,295,310,265,950,490,310,485,"1,045",380,250,730,365,85,370,905,340,"1,075",685,225,450,400,535,600,585,985,910,"1,420",355,510,370,505,505,185,740,865,885,795,"1,105",475,275,915,"1,170",710,"1,195","1,715",245,210,535,305,620,785,630 -1675,Housing,Household characteristics,Census Profile 98-316-X2016001, 85 years and over,"36,845",380,240,220,390,850,380,220,350,295,480,60,385,325,205,90,205,140,160,185,135,90,325,65,180,245,260,235,180,155,220,345,255,365,645,75,200,345,235,85,565,345,185,230,180,240,470,165,355,75,320,365,60,370,300,155,175,130,180,705,95,170,215,330,400,210,100,740,225,155,225,280,140,120,205,225,360,285,410,125,65,100,170,205,365,125,305,465,70,100,130,165,315,240,165,185,605,145,110,225,235,50,105,375,160,520,170,145,210,155,135,215,310,430,460,725,145,170,155,220,240,110,335,275,295,220,735,235,85,545,450,435,695,630,120,90,210,120,290,290,325 -1676,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," Postsecondary certificate, diploma or degree",1356360,10985,10285,5300,20430,15950,8200,17505,13740,7470,12765,2135,12265,10170,5355,3760,6730,5635,5920,5925,7370,3320,7460,7075,22355,11360,8670,7160,5925,4840,8510,15035,10175,17325,12305,6150,11085,8175,8510,3155,10080,9240,5325,8880,7545,6990,7655,7255,5060,9230,14210,14845,6105,9545,4805,3770,5115,8720,5655,24535,7790,3115,6925,9095,8075,5735,4210,18765,9850,8660,9510,9880,8490,5060,16960,3590,5790,8940,19855,7480,11940,4665,10065,10475,20575,5565,9460,12865,23305,6845,10230,5470,9205,8250,4470,8280,17085,4130,4660,7910,6315,4835,4085,7580,8060,14090,19795,5665,2850,6325,11020,14280,10465,9920,13555,12325,7440,12750,3980,8035,8090,4460,7840,51740,10965,13425,14430,6800,3730,11710,32650,10315,9935,21370,6620,3920,7230,7990,8820,11420,5240 -1677,Housing,Household characteristics,Census Profile 98-316-X2016001,Total - Owner and tenant households with household total income greater than zero; in non-farm; non-reserve private dwellings by shelter-cost-to-income ratio - 25% sample data,"1,110,735","9,110","8,105","4,610","15,855","12,085","6,090","14,890","9,495","4,680","8,590","2,645","10,735","9,200","7,320","3,120","5,725","3,240","5,655","6,480","6,435","3,675","5,370","4,370","19,610","9,240","6,545","5,905","5,500","3,925","7,015","9,935","8,765","15,270","13,085","5,430","9,170","6,250","7,905","3,220","8,245","6,855","4,580","7,830","5,445","4,950","9,910","6,040","3,990","6,340","11,005","10,845","3,695","6,395","4,135","3,900","5,050","6,550","5,160","19,305","6,020","4,180","6,565","8,705","7,775","3,580","3,125","15,015","6,570","5,415","5,735","6,425","7,405","4,805","13,420","3,555","4,305","7,675","17,760","5,885","11,540","5,170","9,865","7,425","17,465","5,375","6,070","8,895","18,745","4,990","9,535","5,280","8,680","7,460","3,785","6,335","13,260","3,705","3,570","5,510","3,855","4,940","3,840","9,040","6,880","10,010","13,380","3,820","3,645","5,925","11,375","12,020","6,405","7,810","10,365","10,050","6,275","9,420","3,275","7,115","6,875","3,385","7,400","40,570","9,970","10,270","10,200","7,600","4,225","10,100","22,165","7,515","8,510","18,435","5,440","3,450","5,870","5,670","7,020","10,145","5,335" -1678,Housing,Household characteristics,Census Profile 98-316-X2016001, Spending less than 30% of income on shelter costs,"704,665","5,960","4,990","3,610","9,435","8,040","3,900","6,375","5,175","2,870","6,265","1,700","6,615","6,475","4,615","2,155","3,765","2,500","3,375","3,860","3,940","2,575","3,400","3,605","10,710","6,060","4,310","4,175","3,730","2,735","5,125","5,890","5,415","9,590","8,695","3,265","6,305","4,355","5,080","2,140","5,240","5,300","2,885","4,320","3,495","3,300","6,625","4,070","3,030","3,250","6,965","7,580","2,790","4,130","2,810","2,665","3,155","4,220","3,435","12,920","4,075","2,665","4,240","4,520","5,060","2,885","2,390","9,320","4,045","4,195","4,415","5,010","4,280","3,110","8,625","2,550","3,250","4,665","10,690","3,790","6,935","3,050","6,170","5,245","10,185","3,275","3,130","4,765","11,535","3,695","5,335","2,990","5,505","4,635","2,690","3,960","8,330","2,550","2,240","3,705","3,120","2,990","2,660","5,870","4,280","6,945","9,470","3,005","2,435","3,465","5,780","8,275","4,225","4,890","7,540","6,240","3,500","6,710","2,215","3,545","4,390","1,800","4,585","24,080","6,735","7,000","5,485","4,345","2,925","6,780","11,020","4,050","5,855","11,830","3,885","2,345","3,775","3,740","4,485","6,070","3,700" -1679,Housing,Household characteristics,Census Profile 98-316-X2016001, Spending 30% or more of income on shelter costs,"406,070","3,155","3,120","1,005","6,445","4,045","2,175","8,520","4,320","1,810","2,320",945,"4,115","2,720","2,695",970,"1,960",740,"2,275","2,615","2,500","1,100","1,980",765,"8,890","3,175","2,235","1,720","1,765","1,190","1,900","4,065","3,345","5,690","4,385","2,165","2,870","1,900","2,830","1,080","3,005","1,555","1,695","3,520","1,945","1,650","3,285","1,970",960,"3,085","4,045","3,260",900,"2,260","1,325","1,235","1,895","2,340","1,725","6,380","1,960","1,510","2,330","4,190","2,730",685,725,"5,700","2,535","1,215","1,315","1,415","3,130","1,700","4,790","1,005","1,060","3,010","7,080","2,090","4,615","2,125","3,715","2,185","7,290","2,105","2,945","4,135","7,210","1,305","4,195","2,290","3,190","2,830","1,100","2,380","4,925","1,165","1,335","1,805",750,"1,950","1,185","3,185","2,595","3,075","3,910",805,"1,205","2,460","5,600","3,745","2,170","2,915","2,830","3,820","2,770","2,710","1,065","3,570","2,485","1,580","2,820","16,500","3,230","3,270","4,710","3,250","1,300","3,325","11,140","3,475","2,645","6,605","1,560","1,100","2,095","1,925","2,535","4,080","1,645" -1680,Housing,Household characteristics,Census Profile 98-316-X2016001, 30% to less than 100%,"328,350","2,690","2,465",875,"4,615","3,340","1,820","4,330","3,025","1,410","1,890",820,"3,050","2,245","2,335",840,"1,660",480,"1,950","2,355","2,085",950,"1,585",695,"6,130","2,840","1,895","1,480","1,450","1,010","1,700","3,215","2,925","4,760","3,860","1,800","2,400","1,640","2,515",935,"2,610","1,365","1,430","3,050","1,625","1,345","3,000","1,640",875,"2,245","3,315","2,690",780,"1,835","1,185","1,100","1,655","1,940","1,455","5,390","1,610","1,280","2,030","3,170","2,320",550,635,"4,855","1,750",985,"1,005","1,195","2,525","1,395","4,280",880,920,"2,595","5,630","1,790","3,610","1,880","3,355","1,765","5,520","1,750","1,990","3,140","5,775","1,080","3,270","1,970","2,770","2,390",915,"1,855","4,105",990,"1,085","1,460",620,"1,520","1,045","2,835","2,155","2,285","3,520",660,"1,100","2,225","4,695","3,115","1,550","2,440","2,365","3,310","2,350","2,180",940,"2,970","2,080","1,125","2,400","12,290","2,885","2,825","3,955","2,795","1,140","2,915","6,760","2,335","2,345","5,605","1,335",945,"1,780","1,465","1,955","3,375","1,400" -1681,Housing,Core housing need,Catalogue no. 98-509-X2016001,Occupied private dwellings,"1,112,930","9,115","8,135","4,615","15,930","12,125","6,085","15,075","9,530","4,695","8,605","2,650","10,770","9,190","7,330","3,120","5,745","3,245","5,660","6,485","6,450","3,680","5,405","4,375","19,675","9,250","6,560","5,900","5,505","3,925","7,025","9,970","8,785","15,285","13,105","5,435","9,190","6,255","7,910","3,215","8,245","6,870","4,580","7,820","5,445","4,945","9,925","6,050","3,985","6,360","11,030","10,870","3,705","6,400","4,135","3,900","5,055","6,565","5,165","19,340","6,030","4,175","6,575","8,740","7,780","3,585","3,115","15,035","6,590","5,415","5,750","6,440","7,430","4,810","13,420","3,555","4,305","7,685","17,785","5,870","11,555","5,175","9,870","7,440","17,490","5,370","6,115","8,960","18,775","5,010","9,550","5,280","8,685","7,475","3,790","6,330","13,315","3,710","3,575","5,520","3,865","4,965","3,845","9,055","6,890","10,055","13,390","3,820","3,645","5,930","11,385","12,080","6,420","7,820","10,375","10,050","6,275","9,430","3,275","7,125","6,910","3,395","7,410","40,760","9,985","10,290","10,220","7,600","4,225","10,110","22,295","7,560","8,510","18,445","5,450","3,450","5,890","5,680","7,015","10,175","5,340" -1682,Housing,Core housing need,Catalogue no. 98-509-X2016001,Rate of core housing need,23.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1683,Housing,Core housing need,Catalogue no. 98-509-X2016001,Number of households in core housing need,"240,780","2,220","1,795",540,"2,420","2,115","1,375","1,760","1,690",860,"1,115",835,"2,240","1,655","2,690",735,"1,395",115,"1,760","2,325","1,415",710,715,320,"3,185","2,150","1,430","1,225",985,760,"1,275","2,490","2,505","3,195","3,650","1,215","1,970","1,165","2,570",915,"2,235",900,"1,120","3,085","1,235",755,"3,325","1,285",510,"1,590","2,210","1,560",365,"1,385",885,960,"1,465","1,435","1,525","3,470","1,035","1,065","1,840","2,200","2,175",175,630,"4,265",970,500,490,740,"1,280","1,085","3,485",820,660,"2,010","3,420","1,495","2,520","1,770","3,550","1,100","3,440","1,380","1,275","2,345","2,040",770,"3,190","2,230","2,430","2,035",680,"1,060","3,255",640,730,995,330,"1,340",935,"2,485","1,580","1,010","1,870",350,"1,285","2,275","4,085","2,000",870,"1,970","1,715","2,895","2,460","1,255",800,"3,090","1,200",580,"2,230","4,400","2,830","1,985","3,465","2,730","1,000","2,435","3,525","1,380","1,780","5,335",995,695,"1,280",825,"1,045","2,895","1,050" -1684,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Apprenticeship or trades certificate or diploma,94005,885,705,690,530,805,610,265,365,410,525,470,1015,885,1090,285,695,110,485,1055,335,580,215,450,765,1085,625,595,725,240,555,730,1030,1315,2020,380,655,620,1015,475,845,855,500,660,355,145,1395,415,530,430,595,580,570,370,515,640,810,375,580,1665,500,525,815,465,895,180,260,1400,290,265,215,205,440,450,1870,530,410,630,1405,785,545,685,1215,315,710,460,400,995,735,235,635,480,905,850,390,290,1315,690,180,590,275,265,580,1400,450,335,1650,220,585,625,1035,620,275,600,865,990,485,455,575,400,380,165,740,1080,1425,1430,920,1095,505,1450,815,405,1125,1840,405,320,420,230,275,1330,765 -1685,Housing,Core housing need,Catalogue no. 98-509-X2016001,"Core housing need, Unsuitable only","18,680",150,120,40,45,85,90,65,30,45,100,115,220,85,465,85,125,0,150,245,55,85,0,10,110,175,125,95,55,30,60,135,290,160,465,45,170,60,365,135,160,60,105,315,65,0,565,100,15,85,90,55,10,80,65,105,190,85,240,235,55,90,210,100,285,0,65,325,45,0,10,25,50,65,300,100,25,105,170,150,285,185,555,20,140,85,30,135,50,30,465,305,175,160,30,30,215,40,20,45,10,235,75,230,70,10,70,10,230,275,290,115,20,105,80,185,300,30,105,435,55,0,185,130,290,205,190,270,90,185,75,35,180,665,50,0,60,15,0,345,85 -1686,Housing,Core housing need,Catalogue no. 98-509-X2016001,"Core housing need, Inadequate only","8,275",30,55,10,135,10,45,30,30,35,15,10,25,125,140,70,70,10,35,80,65,30,0,0,140,40,30,50,30,40,65,20,75,100,140,35,105,10,140,45,125,25,0,115,10,0,220,70,0,10,70,70,10,30,35,35,20,45,65,120,35,30,145,150,65,10,60,180,0,0,25,10,25,25,105,25,10,60,60,55,185,50,145,0,45,45,0,30,60,20,165,160,85,60,20,40,40,20,0,0,0,150,25,130,80,15,10,20,70,145,95,105,10,10,60,55,110,35,20,10,60,45,100,85,315,45,45,65,80,55,55,30,80,275,85,35,35,15,10,85,35 -1687,Housing,Core housing need,Catalogue no. 98-509-X2016001,"Core housing need, Unaffordable only","160,795","1,650","1,350",405,"1,855","1,730",975,"1,250","1,200",655,830,520,"1,435","1,070","1,315",470,890,105,"1,100","1,270",985,435,600,255,"2,495","1,355","1,010",810,720,610,900,"1,690","1,555","2,355","2,050",910,"1,360",875,"1,340",505,"1,465",655,760,"1,545",795,635,"1,715",825,430,"1,005","1,630","1,215",285,"1,085",645,560,810,995,850,"2,370",805,780,"1,140","1,575","1,110",140,370,"2,930",715,420,390,585,"1,020",760,"2,260",490,550,"1,525","2,570",875,"1,640","1,040","1,650",915,"2,655","1,025",990,"1,625","1,700",595,"1,735","1,115","1,610","1,195",485,840,"2,155",460,610,750,270,650,605,"1,595","1,000",810,"1,505",285,640,"1,160","2,730","1,520",675,"1,525","1,265","2,075","1,160","1,005",490,"1,165",965,455,"1,465","3,630","1,660","1,330","2,310","1,685",640,"1,645","2,505","1,085","1,170","3,060",715,520,980,665,820,"1,705",705 -1688,Housing,Core housing need,Catalogue no. 98-509-X2016001,"Core housing need, two or more dimensions","53,030",390,260,75,375,290,255,425,425,140,160,185,565,370,780,110,310,10,480,730,320,160,110,55,470,555,265,260,195,90,245,630,585,595,995,225,345,230,730,225,490,170,255,"1,110",355,105,825,280,70,485,450,235,60,170,120,255,460,310,375,745,150,180,355,375,725,0,125,800,200,70,85,120,170,230,805,205,75,350,625,415,405,495,"1,180",165,590,240,235,560,235,110,825,645,565,625,140,145,825,125,105,195,50,315,245,520,435,180,275,45,345,710,975,255,150,320,310,565,880,185,180,"1,465",120,80,485,565,570,395,900,710,180,550,890,235,345,"1,310",155,145,210,135,215,765,220 -1689,Housing,Core housing need,Catalogue no. 98-509-X2016001,Rate of unaffordable housing,36.6,34.7,38.2,21.7,40.4,33.4,35.8,56.5,45.5,38.6,27,35.8,38.3,29.5,36.7,31.1,34,22.7,40.2,40.3,38.5,30,36.6,17.5,45.1,34.2,34.1,29.2,32,30.3,27.1,40.8,38,37.1,33.6,39.9,31.2,30.3,35.7,33.4,36.4,22.8,37.2,44.8,35.8,33.3,33,32.5,23.8,48.5,36.6,30.1,24.4,35.5,32.2,31.8,37.4,35.7,33.5,33,32.6,36,35.5,47.9,35.1,19.8,23.9,37.9,38.5,22.4,22.8,22,42.1,35.4,35.7,28.3,24.5,38.8,39.8,35.7,39.9,41.2,37.4,29.4,41.7,39.4,48,46.3,38.3,26.1,44,43.4,36.7,38,28.9,37.8,37.1,31.4,37.2,32.7,19.3,39.4,30.7,35.2,37.8,30.4,29.3,21.1,33.3,41.4,49.1,31,33.9,37.4,27.4,38,44.2,28.5,32.4,50,36,46.5,38.1,40.5,32.4,31.7,46,42.6,30.8,32.7,49.9,45.8,31.2,35.9,28.7,32,35.4,34.1,36.1,40.1,30.9 -1690,Housing,Core housing need,Catalogue no. 98-509-X2016001,Unaffordable housing not in core need,"117,710",655,845,395,"2,375","1,335",590,"2,655","1,410",635,900,135,"1,085",835,335,270,490,365,400,435,800,365,875,390,"3,170",955,620,430,550,320,565,920,815,"1,825",920,675,725,535,525,225,700,550,440,465,495,610,525,560,375,775,"1,255","1,255",440,580,430,310,405,645,280,"2,320",660,330,570,"1,245",545,410,165,"1,200",840,505,540,500,"1,340",420,"1,255",225,290,700,"2,460",535,"1,590",375,610,705,"2,285",495,765,965,"3,845",365,790,305,655,610,300,870,"1,165",415,365,525,295,615,225,780,745,"1,305","1,760",335,165,420,"1,055","1,355",725,605,800,685,360,"1,000",295,390,995,595,475,"8,130",725,"1,105",750,460,325,745,"3,375","1,020",855,"1,410",480,295,600,665,920,910,490 -1691,Housing,Core housing need,Catalogue no. 98-509-X2016001,Unaffordable housing in core need,"210,645","2,040","1,610",475,"2,235","2,010","1,225","1,665","1,615",775,995,690,"1,970","1,400","2,005",570,"1,170",115,"1,560","1,920","1,285",590,715,305,"2,950","1,870","1,275","1,060",895,685,"1,145","2,305","2,110","2,920","2,950","1,130","1,665","1,105","1,995",710,"1,910",820,995,"2,575","1,140",735,"2,465","1,075",495,"1,470","2,060","1,435",340,"1,260",760,795,"1,250","1,305","1,180","3,065",955,945,"1,460","1,925","1,780",155,480,"3,650",915,480,460,690,"1,190",980,"3,030",655,625,"1,870","3,175","1,255","2,025","1,510","2,740","1,060","3,245","1,260","1,215","2,190","1,930",715,"2,490","1,675","2,125","1,785",615,990,"2,940",575,710,940,325,915,825,"2,065","1,410",980,"1,780",330,935,"1,795","3,640","1,770",820,"1,840","1,570","2,620","1,995","1,170",645,"2,570","1,090",535,"1,935","4,170","2,170","1,710","3,195","2,325",815,"2,155","3,370","1,310","1,500","4,230",855,655,"1,175",805,"1,025","2,465",915 -1692,Housing,Core housing need,Catalogue no. 98-509-X2016001,Unaffordable housing not applicable for core need,"77,720",470,655,130,"1,825",705,365,"4,190","1,310",400,430,125,"1,070",475,350,130,295,255,315,260,400,150,390,70,"2,750",340,340,235,315,185,195,845,415,925,530,365,475,255,300,140,395,195,270,460,315,300,285,330,80,840,725,580,125,430,140,135,235,395,270,995,350,230,305,"1,015",405,145,100,845,785,230,310,225,595,305,505,125,140,415,"1,440",305,995,245,345,420,"1,755",360,955,990,"1,425",230,925,310,410,445,180,530,835,175,255,340,125,425,130,345,450,775,385,140,115,240,895,625,630,480,470,510,420,520,120,605,400,450,415,"4,195",340,445,760,455,160,410,"4,380","1,130",300,985,230,155,310,465,590,710,245 -1693,Housing,Core housing need,Catalogue no. 98-509-X2016001,"Rate of unaffordable housing, owner-households",27.4,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1694,Housing,Core housing need,Catalogue no. 98-509-X2016001,"Rate of unaffordable housing, renter-households",46.8,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1695,Housing,Core housing need,Catalogue no. 98-509-X2016001,Rate of inadequate housing,7.1,3.9,5.8,6.2,7.6,4.1,6.8,2.7,3.7,6.3,5.3,8.9,5.2,8.9,13.6,9.6,7.5,3.2,11,9.9,10.5,7.9,6.9,4.3,5.3,6.6,5,7.7,7.1,8.7,9,6.9,6.8,8,9.6,9.2,7.5,6.2,10.8,10.9,8.4,6.3,6.9,10.7,6.8,6.4,10.6,10.7,3.8,6.1,7.1,6.7,4,5.9,5.8,6.4,8,9.7,9.3,7.2,5.3,6.6,9.6,9.7,8.4,4.6,9.8,7.9,5.5,5.2,6.4,5.4,6.5,9.5,6.9,7,4.9,2.9,5.7,9.6,7.8,11,10,5.6,4.8,8.6,3.8,5.1,2,7,9.7,12.5,10.3,11,7.5,10.7,8.6,4.9,7.4,4.7,5.7,9.6,6.9,10,12,5.4,3.3,6.3,8.9,12.8,11,7.6,5.1,4.4,6.5,5.4,12.1,8.1,6.3,12.2,7.5,8.4,6.3,2.2,11.6,4.7,8.9,9.6,9.3,7.5,2.9,5.1,6.6,7.8,9.4,11.6,8.1,5.6,8,8,6.9 -1696,Housing,Core housing need,Catalogue no. 98-509-X2016001,Inadequate housing not in core need,"42,490",215,290,195,675,335,205,210,215,165,340,115,310,375,405,135,210,75,345,270,355,175,280,135,595,310,195,230,255,225,405,400,305,740,625,305,415,275,370,155,335,305,195,255,205,235,440,370,115,190,475,485,110,205,145,130,220,375,205,850,195,150,285,405,335,125,145,575,235,205,300,245,310,280,455,115,155,110,595,285,345,275,370,300,465,280,160,260,230,225,330,210,445,405,175,450,655,110,190,185,180,135,115,430,430,420,330,175,80,245,550,530,225,205,430,285,345,575,110,350,345,145,205,535,435,320,405,325,210,420,380,240,295,565,300,230,275,220,390,435,210 -1697,Housing,Core housing need,Catalogue no. 98-509-X2016001,Inadequate housing in core need,"31,000",125,150,70,375,105,175,110,115,110,85,100,215,390,515,135,195,20,270,370,300,105,50,35,350,275,105,195,95,105,195,260,265,410,580,135,215,105,460,160,305,110,110,515,135,65,590,265,35,160,255,210,30,150,95,110,165,215,245,435,90,105,325,360,295,20,150,565,85,55,60,70,140,150,445,125,40,100,365,250,480,260,590,85,285,165,25,165,95,105,515,400,400,385,85,170,430,70,60,75,25,310,130,430,345,90,100,40,235,470,595,315,90,95,205,220,385,135,85,445,145,90,265,260,675,160,435,360,175,315,170,115,215,820,195,140,150,80,105,345,145 -1698,Housing,Core housing need,Catalogue no. 98-509-X2016001,Inadequate housing not applicable for core need,"5,105",20,30,20,155,55,35,90,20,20,30,20,30,55,75,30,25,10,10,0,25,10,45,20,105,25,30,30,40,10,35,30,30,70,55,60,55,10,25,35,50,20,10,65,30,15,25,10,0,35,50,35,10,20,0,10,20,45,30,105,35,20,20,85,20,20,10,55,40,20,10,30,35,25,20,10,15,10,60,30,80,35,30,35,90,15,45,35,45,20,85,50,50,35,25,60,55,0,15,0,15,30,20,45,55,35,10,25,10,45,105,70,10,45,35,35,30,50,10,75,30,50,0,90,45,0,65,45,10,20,90,30,50,55,20,30,50,20,65,30,15 -1699,Housing,Core housing need,Catalogue no. 98-509-X2016001,Rate of unsuitable housing,12.1,14.5,12,7.5,5,7.2,11.7,12.6,11.5,7.1,7.2,19.2,14.3,6.2,26.6,7.4,17.1,1.5,15.2,22,5.6,13.5,4.3,3.3,8.7,13.8,14.5,8.5,8.9,5.7,6.9,15.8,19.7,8.5,18.8,9.7,8.5,7.9,22.9,18,16.8,6.6,14.5,28.3,14.2,3.4,23.2,8,3.9,23,9.1,4.6,7.3,6.3,8.8,17.1,22.7,9.7,22.6,10.7,6.7,13.1,14.5,9.3,20.7,1.4,7.1,13.7,11.2,2.9,3.6,3.8,6.3,9.6,17.3,19.3,5.5,14.8,8,16.7,8,20,30.8,5.2,9.8,9.4,11,16.6,5.9,4.1,22.8,24.8,12.6,15.2,9.4,5.4,14.6,9.8,4.9,8.7,3.1,16,13.9,14.4,9.4,4.7,10.9,2.6,20.7,22.1,16,5.8,7,12.3,7.4,15.1,28.9,3.7,15.7,42.2,5.8,7.4,15.1,7.2,12.1,17.4,17.7,19.5,12.3,12.6,14.1,9.9,11.1,19.2,5.6,6.5,6.9,6.1,5.3,21.2,12.2 -1700,Housing,Core housing need,Catalogue no. 98-509-X2016001,Unsuitable housing not in core need,"70,415",795,615,245,460,540,410,790,485,175,360,245,820,305,865,70,620,50,375,580,155,300,155,110,"1,065",640,595,220,285,135,290,810,930,790,"1,255",315,320,285,855,290,815,305,335,890,415,105,"1,075",240,100,780,560,360,220,235,210,330,565,360,590,"1,220",255,325,500,420,710,50,80,"1,045",440,100,135,160,335,240,"1,365",405,160,715,800,465,410,470,"1,545",245,990,265,315,780,780,105,985,420,520,435,220,285,975,240,95,275,65,315,275,675,270,290,"1,140",85,250,440,845,490,280,505,450,835,660,215,265,"1,020",290,155,500,"2,015",570,"1,150","1,010",590,305,625,"1,380",395,480,"1,660",185,155,230,195,200,"1,110",400 -1701,Housing,Core housing need,Catalogue no. 98-509-X2016001,Unsuitable housing in core need,"55,785",480,315,80,210,300,265,415,395,120,225,255,640,245,"1,010",150,345,0,440,825,175,185,65,35,355,590,330,260,195,60,195,625,750,500,"1,170",195,430,210,895,280,535,145,285,"1,195",330,65,"1,175",225,55,485,360,145,50,160,155,315,560,265,510,735,150,200,430,315,840,0,140,885,200,35,45,85,130,200,885,270,65,400,560,460,450,535,"1,470",115,540,220,235,565,245,80,"1,060",825,535,605,135,55,805,125,65,180,45,445,245,595,325,110,305,15,505,825,885,195,120,375,300,630,"1,010",120,250,"1,765",100,40,520,565,610,515,780,800,195,590,890,190,425,"1,695",110,70,165,100,130,910,230 -1702,Housing,Core housing need,Catalogue no. 98-509-X2016001,Unsuitable housing not applicable for core need,"8,625",45,45,20,120,35,35,690,215,40,35,10,85,20,75,10,20,0,45,20,30,10,10,0,300,45,25,20,10,30,0,140,50,15,45,15,30,0,60,10,35,0,45,125,30,0,55,20,0,195,85,0,0,10,0,20,25,15,65,120,0,20,25,75,60,0,0,135,100,20,25,0,0,20,70,10,10,20,65,55,70,30,25,30,180,20,120,140,85,20,135,65,35,95,0,0,165,0,15,25,10,35,15,35,55,70,20,0,0,45,95,10,50,80,20,50,145,10,0,225,10,55,100,355,30,125,20,90,20,55,880,160,40,180,10,0,10,50,40,135,20 -1703,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001,"Total - Highest certificate, diploma or degree for the population aged 15 years and over in private households - 25% sample data",2294785,25000,20400,10265,26290,23390,13265,23940,18725,11155,18560,5255,24620,18355,16965,6275,12355,7745,9875,14340,10185,8420,9645,11190,29095,21745,13655,13250,12200,7950,14055,22770,20130,31760,29270,10430,17295,13075,18085,7640,17080,15890,9770,17535,10610,9290,24425,11925,8365,13210,18970,19815,10930,14805,8660,10255,12585,12070,11300,37405,12000,9425,14325,16155,17735,7580,6285,37390,13650,11275,12270,13365,13655,8730,35885,8370,9110,22385,29840,14275,17030,10865,25730,13780,26555,9680,13950,20830,28390,9735,16075,10755,17835,15395,7735,12490,28890,8975,6490,13760,9270,9045,8725,18735,12565,18000,38125,8020,7820,13075,18585,23150,15040,21125,20840,23155,12530,17625,8395,15245,14485,6170,14550,61990,22395,27845,22720,14605,9420,23335,44330,14860,18585,43410,10110,6690,11385,10000,11100,23520,12065 -1704,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," No certificate, diploma or degree",377340,6550,4035,2005,1585,2295,1665,700,1310,1295,1985,1605,4750,2930,6420,1175,2545,615,1665,4270,770,2925,490,1295,1220,4215,1735,2165,3390,1440,2500,2505,3975,7105,8590,2150,2290,1725,3925,1870,2675,2435,1730,3825,880,690,9560,1960,1080,1210,1535,1575,1625,1865,1555,3495,3635,1125,2385,4440,1695,3640,2990,2850,4170,545,855,8055,1050,870,945,1125,2385,1320,7345,2395,1070,6320,3570,2465,1680,2810,7895,1015,1500,1610,1485,2450,1280,1040,2040,2270,4450,2905,1340,1795,4140,2210,635,2355,955,1870,1960,5695,1800,1045,6580,960,2550,2955,3050,4050,1440,4975,2720,4460,2030,1455,2075,3195,3115,520,2930,1900,4990,5905,2745,3630,3095,4395,3110,1405,3440,8850,1430,1015,1860,575,460,5125,3445 -1705,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Secondary (high) school diploma or equivalency certificate,561090,7460,6090,2960,4270,5150,3390,5740,3680,2385,3815,1515,7605,5245,5195,1345,3080,1500,2295,4150,2065,2175,1690,2820,5510,6165,3245,3925,2875,1670,3045,5220,5985,7335,8365,2125,3915,3175,5645,2620,4340,4225,2715,4850,2190,1605,7190,2710,2225,2765,3250,3385,3200,3400,2305,2990,3825,2225,3260,8415,2510,2675,4410,4205,5505,1290,1215,10555,2740,1745,1815,2350,2775,2340,11575,2380,2255,7115,6410,4345,3415,3385,7785,2280,4475,2505,3005,5515,3805,1850,3805,3020,4175,4240,1930,2410,7660,2635,1190,3495,2005,2335,2675,5470,2725,2870,11740,1385,2420,3785,4520,4820,3135,6235,4565,6350,3065,3420,2340,4015,3275,1190,3780,8340,6425,8510,5540,4180,2590,7240,8580,3140,5205,13170,2065,1760,2285,1430,1820,6980,3385 -1706,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Trades certificate or diploma other than Certificate of Apprenticeship or Certificate of Qualification,53060,505,375,345,265,450,345,155,215,255,310,195,590,435,535,150,415,80,310,640,200,265,130,235,480,570,425,280,385,140,350,500,545,755,1065,195,365,335,605,255,505,470,290,390,215,90,790,235,200,260,375,315,345,210,305,300,500,225,315,880,300,280,480,295,465,100,160,765,145,135,120,125,230,225,1155,330,205,340,760,450,290,375,680,185,380,255,215,605,360,155,335,265,570,510,265,190,700,320,125,345,155,170,330,735,265,210,1020,110,315,355,535,360,145,395,505,555,305,255,265,265,190,105,475,625,765,835,585,540,285,800,535,205,615,1025,225,190,220,140,165,830,425 -1707,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Certificate of Apprenticeship or Certificate of Qualification,40945,375,325,345,265,345,255,100,145,155,215,280,425,470,545,135,270,30,175,410,130,320,90,210,285,510,210,315,340,105,205,240,480,555,965,185,285,280,430,220,330,380,210,260,135,55,600,175,325,170,220,260,230,165,210,335,305,150,265,790,195,250,330,175,435,65,100,625,150,115,100,80,200,215,710,200,200,280,650,340,255,305,545,135,320,215,180,390,380,75,300,210,340,350,135,105,605,370,60,250,125,95,255,670,170,125,635,105,275,265,495,250,135,210,360,420,175,200,310,135,190,55,260,445,665,590,340,545,220,645,280,210,510,830,185,125,205,85,100,505,340 -1708,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," College, CEGEP or other non-university certificate or diploma",362080,3540,3150,2095,2700,3490,2125,1595,2905,1595,2135,890,4255,3610,2360,920,2170,510,1705,2555,1600,1385,1165,2235,3800,3930,2310,2645,1675,1145,2370,3635,3570,4590,5015,1590,3155,2055,3305,1380,2635,3035,1765,2740,1440,980,3650,2005,1590,1920,2980,3100,2085,2155,1645,1505,2110,1885,2100,6590,1935,1270,2575,1855,2940,975,880,6475,1780,1135,1115,1680,1990,1800,6915,1200,1655,3070,6080,3065,2510,1980,3845,1865,4165,2015,1815,3040,4895,1260,2650,1715,2705,2985,1380,1545,5295,1595,960,2205,1285,1220,1625,3015,1815,1795,7740,1140,1285,2305,3630,3700,1815,2865,3630,3690,2050,2680,1440,2070,1740,600,2930,7470,4625,5025,4015,2970,1420,4165,5225,1935,3075,7535,1760,1235,1710,1275,1410,3765,1755 -1709,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, University certificate or diploma below bachelor level,65015,775,655,230,615,795,485,545,700,355,465,160,695,485,340,125,455,220,225,410,325,190,170,350,850,570,445,275,240,160,345,970,635,655,810,210,425,325,530,170,725,425,365,550,435,290,500,245,235,510,510,515,400,575,300,195,250,395,370,1125,260,205,525,380,515,155,125,1120,430,265,285,325,235,230,935,275,195,625,835,405,425,350,555,325,775,295,505,915,655,155,635,330,510,455,250,235,1055,255,135,495,275,265,260,455,315,520,1210,130,180,460,445,535,595,660,565,755,375,375,280,505,225,175,425,1450,600,800,1005,340,195,785,1495,455,465,1120,225,125,330,235,360,765,320 -1710,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," University certificate, diploma or degree at bachelor level or above",835260,5805,5765,2290,16590,10850,4980,15090,9790,5120,9625,610,6295,5170,1565,2435,3405,4795,3510,1920,5105,1160,5920,4055,16930,5755,5290,3640,3285,3295,5255,9675,4945,10775,4485,3965,6860,5190,3650,1130,5880,4915,2705,4910,5320,5575,2110,4590,2715,6370,10125,10665,3055,6445,2340,1450,1955,6060,2600,15135,5110,1105,3025,6395,3720,4440,2950,9780,7355,7000,7880,7665,5840,2585,7230,1580,3525,4635,11520,3220,8465,1650,4450,7970,14915,2790,6745,7920,17025,5185,6305,2950,5080,3970,2435,6210,9410,1595,3380,4625,4480,3085,1620,2700,5490,11425,9195,4165,800,2935,5900,9420,7770,5810,8490,6895,4535,9235,1690,5075,5745,3515,3760,41735,4330,6170,8485,2395,1610,5305,25095,7515,5265,10860,4220,2245,4775,6255,6775,5555,2405 -1711,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Bachelor's degree,534610,4380,4210,1660,9135,6500,3075,8370,6055,3060,5655,445,4550,3470,1235,1550,2360,2585,2215,1435,2925,850,3315,2925,10405,3825,3495,2455,2135,2090,3350,5995,3485,7085,3350,2590,4430,3155,2575,820,3730,3360,1810,3265,3015,2900,1610,3045,1785,3985,5975,6390,2150,3980,1515,1005,1370,3505,1670,9970,3250,835,2035,4070,2540,2605,1660,6920,4400,4140,4315,4665,4010,1735,5465,1310,2390,3700,7560,2255,5480,1045,3015,4720,9275,1990,4290,5030,11835,3030,4010,1660,3270,2735,1685,3805,6105,1220,1980,3090,2755,2060,1185,1930,3435,6010,6765,2455,585,1810,4210,6305,4200,4320,5335,4830,2435,5705,1175,3125,3515,1965,2630,27280,3015,4245,5195,1705,1130,3770,15435,4700,3655,7575,2795,1435,2770,3625,3720,3910,1595 -1712,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, University certificate or diploma above bachelor level,54570,295,280,125,960,800,475,680,515,410,725,75,425,365,90,160,300,405,240,195,380,95,365,200,1030,305,390,235,165,240,315,560,290,580,360,235,440,415,260,80,525,315,220,280,455,415,160,290,245,350,610,690,205,455,205,85,135,500,205,1135,320,110,210,285,280,280,220,685,540,415,465,465,220,160,385,95,290,255,890,275,495,205,270,505,965,220,440,730,890,325,465,180,315,285,185,285,730,135,195,275,360,180,130,195,270,900,640,195,100,190,320,420,555,300,725,375,260,590,95,265,365,195,255,2360,315,410,1125,210,90,335,1390,410,385,705,240,135,315,370,445,340,220 -1713,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," Degree in medicine, dentistry, veterinary medicine or optometry",23540,125,150,35,460,625,180,1235,475,255,640,15,155,80,55,20,55,385,55,40,100,20,305,60,560,140,195,70,20,20,70,365,70,110,110,60,80,210,75,25,255,90,30,150,380,415,15,40,20,165,180,265,70,200,45,20,55,190,60,275,55,20,65,205,135,110,75,195,300,215,370,200,65,50,160,10,55,65,240,110,160,20,110,220,330,35,315,255,260,120,125,60,80,55,40,80,295,15,50,145,220,45,20,50,70,440,160,70,20,100,85,115,735,130,175,145,75,240,15,215,125,40,80,890,100,180,315,40,10,95,1145,260,85,270,70,25,80,155,225,105,60 -1714,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Earned doctorate,30415,115,110,35,1210,375,215,985,365,250,335,0,75,135,55,100,70,165,115,15,320,30,330,90,765,130,195,95,185,125,230,425,115,420,90,145,235,180,55,25,185,150,75,160,275,280,10,145,105,140,585,525,60,280,80,30,35,300,45,420,185,25,70,385,95,210,170,235,285,365,380,390,180,85,110,10,105,60,330,60,320,20,60,375,505,65,305,400,355,285,195,90,225,70,55,420,285,20,185,180,170,90,30,80,265,640,105,260,20,115,115,330,345,135,290,165,140,405,30,95,300,395,80,1100,80,95,245,65,20,110,975,360,130,195,160,100,295,330,290,185,95 -1715,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001,"Total - Highest certificate, diploma or degree for the population aged 25 to 64 years in private households - 25% sample data",1554815,15455,13160,6970,17915,14325,8710,14755,12830,6290,11360,3565,15455,12535,11025,4515,8605,4540,7070,9715,7190,5925,5925,6965,21525,15055,9360,8470,8635,5535,9985,15005,13825,23465,19335,7860,12625,8285,11910,4925,10750,9755,6620,11540,7105,5810,15075,9005,4890,9425,14160,14395,6610,8335,5280,6200,8140,8645,7660,26055,9070,6235,9570,10335,11120,4615,4355,23190,9475,7680,8050,8775,10595,6205,23445,5380,5335,14540,21870,9140,13425,7595,17025,9645,20135,6760,8940,13475,24630,6985,12230,7620,12050,10420,5370,9070,19010,6015,4645,8460,5645,6555,5755,12340,9620,10895,25105,5820,4715,8660,14260,17850,9330,12960,14260,14180,9320,12610,5365,10645,10645,3960,9440,49595,14575,17695,14340,10185,6655,15400,31270,9500,11105,28075,7705,4935,7915,7180,7400,15190,7555 -1716,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," No certificate, diploma or degree",159795,3335,1860,795,450,610,480,285,385,310,415,790,2075,1210,3590,485,1095,55,725,2200,255,1640,115,330,710,1720,385,715,1680,475,815,825,1940,3395,3965,1025,995,445,1825,775,765,685,780,1710,250,110,4655,950,305,460,505,440,640,385,445,1395,1700,395,1045,1565,685,2085,1370,1330,1720,50,260,3760,255,120,130,205,1145,620,3490,880,235,3675,1600,1160,1025,1610,4205,170,580,710,380,700,665,315,1060,1105,1735,1200,525,475,1420,1005,150,630,240,1080,850,2925,860,200,3010,155,955,1380,1895,2135,310,2595,855,1635,930,420,930,1575,1280,155,1105,815,2195,2550,890,1905,1765,1820,745,290,1080,4060,625,425,645,135,140,2270,1250 -1717,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Secondary (high) school diploma or equivalency certificate,317080,4240,3410,1825,2060,2265,1830,1265,1700,910,1545,1015,4010,3195,3155,780,1970,485,1410,2755,1195,1475,715,1385,2785,3750,1835,2285,1870,970,1855,2490,3565,5015,5390,1405,2265,1730,3260,1670,2225,2210,1520,2810,1115,755,4485,1705,1090,1390,1830,1865,1605,1265,1280,1870,2390,1235,2020,4835,1650,1685,2680,2030,3175,455,640,5655,1255,665,685,990,1950,1445,6825,1515,1005,4475,4065,2380,2225,2160,4875,1100,2545,1475,1270,2920,2650,1025,2385,1980,2635,2525,1105,1555,4200,1610,655,1670,855,1405,1680,3410,1765,1160,6770,795,1520,2330,3040,3170,1420,3285,2490,3410,1955,1895,1380,2405,2130,485,2240,4920,3930,4805,2845,2775,1765,4200,3780,1395,2825,7485,1255,1125,1370,680,900,3875,2115 -1718,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," Postsecondary certificate, diploma or degree",1077935,7870,7895,4350,15395,11455,6390,13220,10750,5075,9405,1760,9365,8135,4270,3255,5540,3995,4940,4765,5755,2820,5105,5250,18045,9565,7145,5475,5085,4090,7315,11690,8330,15060,9965,5425,9375,6115,6815,2480,7760,6870,4315,7010,5740,4935,5955,6355,3510,7575,11830,12090,4365,6680,3545,2935,4055,7025,4595,19650,6740,2465,5510,6965,6230,4100,3455,13790,7960,6895,7250,7575,7505,4150,13115,2980,4085,6385,16195,5600,10180,3820,7945,8375,17015,4580,7295,9880,21305,5645,8790,4540,7680,6690,3740,7020,13390,3400,3845,6150,4545,4070,3235,6020,7000,9530,15330,4865,2250,4950,9330,12550,7600,7080,10925,9135,6425,10300,3050,6670,7240,3330,6105,43855,8450,10335,10610,5515,3120,9385,26730,7820,7205,16525,5820,3390,5900,6360,6360,9050,4185 -1719,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Apprenticeship or trades certificate or diploma,63315,520,460,445,365,400,385,170,240,200,320,375,620,640,785,220,485,55,320,795,250,455,120,275,595,710,420,365,550,150,380,540,725,975,1365,290,480,380,755,345,555,475,390,465,280,75,1010,310,235,325,400,400,325,175,345,410,545,260,400,1145,355,330,585,320,635,75,180,805,190,130,120,155,325,325,1310,340,215,395,1030,475,405,505,895,195,475,340,265,615,615,130,490,350,565,580,250,205,875,460,95,330,145,180,405,1020,300,180,1040,140,385,460,800,455,175,335,560,550,385,345,345,275,315,100,435,850,910,985,610,850,365,975,475,190,615,1150,280,250,285,165,210,920,480 -1720,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Trades certificate or diploma other than Certificate of Apprenticeship or Certificate of Qualification,36000,295,285,220,175,245,210,125,135,135,205,150,400,300,405,120,265,50,215,475,180,195,80,175,370,375,290,155,300,80,240,340,385,540,670,145,260,210,450,175,340,265,230,265,170,40,610,190,120,175,255,220,205,115,190,200,330,155,245,610,210,165,345,200,330,35,105,445,95,70,70,95,175,165,885,185,105,210,575,270,215,285,475,100,260,175,155,395,275,95,270,205,335,345,180,120,485,215,65,200,70,105,215,510,180,120,660,70,180,260,440,275,115,225,330,315,240,180,130,160,150,70,295,485,515,605,410,405,210,550,315,95,360,660,155,150,145,95,130,585,285 -1721,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Master's degree,166405,735,920,390,3930,1970,880,3275,1985,915,1845,60,990,985,120,550,525,990,790,210,1110,160,1205,650,3595,1315,885,655,715,790,1195,1990,905,2410,520,875,1485,990,625,160,955,845,505,950,990,1175,300,1025,415,1585,2425,2325,430,1240,375,310,325,1355,560,2820,1155,115,600,1250,590,915,715,1445,1655,1585,1870,1610,1275,490,1005,145,460,430,2185,425,1870,295,900,1870,3440,425,1185,1255,3565,1180,1425,920,1085,755,440,1455,1710,190,855,815,800,665,205,360,1345,2445,1285,1065,75,615,1040,2070,1550,785,1640,1195,1550,1930,280,1255,1370,785,620,9335,700,1135,1170,350,325,895,5535,1520,835,1955,910,485,1135,1505,1600,935,385 -1722,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Certificate of Apprenticeship or Certificate of Qualification,27315,215,175,230,185,170,180,55,100,60,120,225,230,330,375,95,220,0,110,315,80,255,45,105,220,350,130,220,265,75,135,190,345,445,700,140,225,180,315,165,220,215,155,185,110,40,395,125,115,140,150,170,115,65,155,225,220,105,150,550,150,175,240,120,305,25,75,325,105,55,75,50,150,165,445,150,110,195,445,195,185,220,410,100,220,160,100,215,345,35,215,145,235,230,80,70,385,245,25,120,70,70,190,510,120,45,385,70,200,190,365,190,65,115,230,230,140,155,215,105,165,25,135,375,420,385,205,445,160,430,155,110,265,485,120,95,140,70,80,345,195 -1723,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," College, CEGEP or other non-university certificate or diploma",279675,2550,2340,1735,2005,2420,1625,1085,2120,995,1425,735,3230,2805,1920,740,1690,310,1395,2030,1240,1155,750,1610,3050,3305,1860,1945,1415,880,1915,2645,2830,3880,4090,1350,2565,1495,2600,1075,1890,2165,1375,2130,1000,660,2845,1690,1095,1465,2270,2375,1520,1345,1250,1175,1660,1410,1660,5110,1655,1005,2060,1395,2270,635,695,4715,1335,820,785,1180,1685,1450,5260,1030,1220,2160,4830,2330,2085,1630,2905,1340,3215,1620,1275,2255,4380,1015,2150,1325,2200,2305,1155,1295,3940,1340,765,1575,875,1000,1325,2405,1540,1125,6010,945,1090,1760,3085,3100,1320,1965,2915,2590,1635,2125,1135,1625,1525,435,2295,6135,3560,3720,2935,2375,1205,3335,3910,1305,2265,5775,1495,1020,1345,935,975,2915,1525 -1724,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, University certificate or diploma below bachelor level,48700,570,485,195,385,560,355,300,490,230,295,140,460,390,270,100,370,120,195,300,250,180,85,240,625,465,370,240,200,125,290,750,535,520,695,190,330,235,415,135,585,320,270,410,340,180,405,175,130,400,350,360,300,385,220,140,200,330,290,865,225,150,395,235,370,65,90,780,310,195,220,200,220,170,695,250,130,410,650,300,335,295,395,210,625,215,355,650,555,145,540,220,440,340,220,190,840,220,95,390,195,170,195,345,260,335,885,100,130,355,340,395,375,445,435,530,275,240,235,390,195,95,290,1200,435,620,710,265,140,645,1140,290,300,860,165,105,270,195,195,610,260 -1725,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," University certificate, diploma or degree at bachelor level or above",686245,4240,4615,1980,12640,8060,4030,11660,7910,3640,7350,505,5065,4295,1300,2190,2990,3500,3025,1630,4020,1030,4140,3120,13765,5105,4495,2925,2905,2935,4735,7765,4240,9680,3835,3605,5980,4020,3040,930,4715,3910,2280,4025,4120,4015,1710,4180,2055,5385,8805,8965,2225,4765,1745,1200,1650,5020,2240,12520,4505,975,2480,5025,2950,3330,2490,7510,6100,5760,6130,6060,5260,2205,5835,1365,2525,3420,9690,2490,7375,1390,3745,6630,12715,2405,5390,6360,15755,4365,5610,2640,4470,3460,2115,5340,7750,1375,2890,3870,3330,2730,1305,2245,4895,7890,7395,3685,635,2375,5110,8610,5730,4315,7010,5495,4125,7595,1335,4380,5210,2705,3085,35675,3530,5005,6350,1995,1415,4430,21195,6030,4030,8740,3880,2025,4000,5070,4980,4625,1930 -1726,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Bachelor's degree,433620,3090,3270,1415,6855,4895,2485,5810,4895,2105,4285,355,3540,2865,1015,1380,2095,1810,1900,1215,2285,765,2355,2230,8180,3285,3020,1955,1875,1825,2985,4720,2985,6275,2805,2320,3825,2435,2075,665,3090,2635,1485,2610,2295,2170,1270,2740,1330,3295,5225,5465,1535,2945,1075,780,1135,2885,1415,8270,2870,725,1630,2995,1990,1980,1375,5240,3555,3390,3345,3600,3575,1445,4310,1130,1720,2715,6365,1705,4650,870,2500,3895,7840,1705,3400,4020,10800,2560,3510,1425,2870,2365,1445,3220,5060,1025,1650,2535,2005,1765,960,1610,3040,4240,5395,2170,460,1435,3615,5715,3010,3165,4390,3810,2160,4680,940,2640,3110,1420,2105,22565,2435,3300,4040,1390,995,3065,12725,3745,2725,5880,2535,1310,2285,2875,2785,3135,1240 -1727,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, University certificate or diploma above bachelor level,43840,215,215,105,670,530,375,570,400,280,515,70,345,285,65,140,260,275,210,165,315,65,225,145,845,245,305,175,145,200,280,430,200,540,335,205,395,335,220,70,355,255,190,215,355,250,130,265,235,285,520,580,145,280,170,75,120,405,175,915,305,100,150,235,220,220,195,510,450,325,340,370,200,145,300,70,235,175,735,205,450,185,185,425,755,200,310,570,820,300,390,175,265,245,165,260,590,125,170,220,275,170,100,160,230,620,490,175,75,155,275,415,405,220,595,260,210,525,80,205,335,145,225,2065,250,325,795,180,75,285,1145,285,305,550,235,115,290,290,290,305,180 -1728,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001," Degree in medicine, dentistry, veterinary medicine or optometry",18815,105,120,45,330,430,135,1130,365,155,495,10,105,40,45,20,55,310,45,20,70,20,165,40,500,130,155,50,10,20,55,285,60,95,100,55,75,140,65,15,190,70,30,130,275,270,10,35,10,115,150,220,60,110,45,20,60,160,50,255,20,20,45,190,95,70,55,140,240,195,310,190,65,45,145,10,20,80,180,105,145,0,105,170,265,20,250,215,255,100,110,60,80,45,10,65,210,10,45,130,145,50,20,40,50,265,150,50,20,85,80,105,520,75,130,110,80,180,10,205,125,45,65,760,90,160,210,30,0,90,975,195,55,210,60,25,55,140,130,95,55 -1729,Education,"Highest certificate, diploma or degree",Census Profile 98-316-X2016001, Earned doctorate,23560,85,85,25,870,245,155,870,260,180,220,10,55,105,40,90,60,120,80,25,230,20,190,50,665,110,135,80,155,105,220,355,95,380,50,140,195,115,40,15,140,100,70,110,210,160,10,105,75,110,475,390,40,190,65,35,35,220,40,300,150,15,55,355,50,140,135,185,205,265,260,305,160,70,80,0,75,50,235,40,265,20,50,260,425,55,240,295,330,225,180,70,195,50,45,335,180,20,160,150,100,85,25,50,230,320,75,220,0,90,105,305,260,90,240,115,135,280,25,70,275,320,65,950,45,60,155,50,20,85,800,260,105,155,145,90,230,250,180,155,80 -1730,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001,Total - Major field of study - Classification of Instructional Programs (CIP) 2016 for the population aged 15 years and over in private households - 25% sample data,2294785,25000,20395,10270,26290,23380,13265,23940,18725,11155,18555,5250,24615,18350,16955,6285,12360,7750,9875,14350,10195,8420,9635,11195,29090,21735,13660,13250,12195,7950,14055,22755,20135,31750,29270,10425,17290,13075,18080,7640,17080,15900,9770,17530,10615,9290,24425,11920,8360,13200,18980,19815,10930,14800,8665,10260,12585,12065,11295,37395,11995,9435,14320,16150,17740,7585,6280,37390,13650,11280,12270,13360,13655,8725,35875,8370,9110,22370,29830,14280,17030,10870,25740,13785,26545,9675,13950,20825,28395,9740,16075,10755,17835,15395,7735,12490,28890,8970,6490,13755,9275,9045,8725,18735,12570,18005,38125,8025,7825,13080,18590,23135,15035,21120,20840,23150,12530,17620,8395,15245,14490,6170,14555,62005,22390,27845,22725,14610,9420,23335,44340,14850,18580,43390,10105,6690,11380,10000,11095,23530,12060 -1731,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," No postsecondary certificate, diploma or degree",938430,13995,10120,4965,5870,7450,5065,6445,4985,3685,5795,3120,12360,8170,11610,2520,5630,2120,3960,8420,2825,5100,2175,4115,6730,10390,4980,6095,6275,3110,5550,7725,9960,14420,16950,4280,6200,4900,9570,4485,7005,6655,4445,8670,3070,2295,16765,4670,3300,3975,4760,4960,4820,5260,3860,6490,7460,3345,5640,12865,4210,6315,7400,7055,9665,1850,2070,18630,3800,2625,2765,3480,5160,3660,18930,4780,3325,13445,9985,6800,5090,6205,15660,3310,5985,4110,4485,7960,5085,2890,5840,5280,8635,7140,3275,4210,11805,4840,1835,5845,2960,4205,4635,11170,4525,3915,18330,2350,4970,6755,7575,8855,4580,11205,7300,10825,5090,4870,4415,7195,6395,1710,6715,10255,11425,14405,8295,7815,5695,11630,11690,4540,8650,22025,3485,2770,4150,2005,2270,12095,6830 -1732,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Education,67335,510,390,255,940,980,625,415,635,460,950,80,545,725,200,235,415,310,285,280,390,155,395,555,690,500,665,395,325,325,645,805,470,790,685,215,680,540,340,165,930,690,265,390,460,385,360,405,430,350,855,930,410,535,375,165,235,565,250,1360,430,170,385,300,455,360,285,805,620,465,620,595,295,260,560,195,475,430,870,340,385,185,405,635,975,280,390,800,555,405,440,195,550,460,250,355,825,175,245,440,540,190,215,355,455,565,975,325,200,285,435,590,535,460,835,635,275,835,220,345,265,215,350,1255,390,510,920,280,155,575,1245,515,705,865,405,200,415,375,445,520,285 -1733,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 13. Education,67335,490,395,255,940,980,635,415,635,460,945,75,550,725,200,235,410,310,285,275,390,160,390,545,705,505,665,400,315,320,645,810,475,795,685,215,680,545,335,165,930,675,260,395,465,385,375,395,430,355,855,930,410,540,375,170,230,565,245,1355,425,170,395,300,465,360,285,805,625,465,620,590,290,265,560,200,475,430,870,335,385,190,425,625,990,280,390,795,555,405,445,190,560,470,250,355,825,180,240,440,545,190,215,355,450,555,975,325,200,275,440,595,525,465,840,645,280,840,215,335,260,210,335,1260,390,505,920,290,155,575,1250,520,705,875,400,205,425,380,445,520,280 -1734,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Visual and performing arts, and communications technologies",86360,350,365,325,1965,725,340,790,645,325,435,105,370,780,185,425,385,235,545,265,890,220,715,310,2000,415,290,365,700,550,770,540,310,2585,405,1050,1045,380,275,115,295,365,255,280,395,545,220,855,285,325,1495,1515,130,330,280,160,130,915,175,1290,1030,165,200,1195,285,280,260,755,435,445,425,580,1485,375,510,175,265,315,1360,250,1260,150,220,610,1325,530,405,500,2485,795,835,170,805,415,305,1360,785,215,540,250,240,370,165,375,1380,1030,615,590,100,205,1660,1870,435,275,720,475,335,1225,180,255,1415,475,310,3335,445,390,580,335,475,460,1470,500,350,680,765,440,775,645,780,515,230 -1735,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 10. Communications technologies/technicians and support services,10295,35,45,65,95,85,40,60,65,35,50,20,85,130,30,20,75,0,70,55,50,25,35,40,220,100,40,50,90,35,80,45,50,205,75,105,160,30,10,20,55,45,30,45,45,40,20,105,25,30,135,110,25,10,30,40,10,90,50,215,70,10,55,110,85,30,20,105,55,20,30,60,140,35,115,20,20,30,190,40,120,40,20,55,185,75,25,40,355,85,130,45,55,65,45,145,140,45,35,40,20,45,30,35,85,65,110,70,35,25,200,215,30,45,65,95,50,125,25,45,140,45,65,485,110,80,65,55,80,90,145,25,75,160,125,75,60,55,80,80,45 -1736,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 50. Visual and performing arts,76060,305,325,255,1860,625,300,720,575,295,390,85,285,650,155,410,315,235,475,195,845,200,685,265,1775,335,250,305,610,520,680,495,250,2380,340,950,880,350,250,90,250,315,235,235,345,495,175,750,255,300,1355,1395,110,315,260,120,115,825,140,1090,965,150,165,1090,205,250,250,650,380,425,405,520,1350,345,395,150,245,310,1180,200,1130,115,185,560,1145,455,370,455,2135,715,695,125,740,350,265,1220,660,160,505,225,220,330,130,330,1290,975,500,510,65,175,1455,1655,410,250,655,385,285,1095,150,215,1280,430,240,2840,335,330,515,280,395,390,1335,470,290,495,645,375,705,590,705,440,180 -1737,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Humanities,101435,505,505,350,2595,1075,500,1215,875,485,1135,70,685,840,170,400,450,475,585,285,800,190,1060,435,1815,665,495,510,560,510,780,940,545,1905,535,660,1140,565,385,140,890,665,355,625,590,785,245,780,430,425,1405,1640,315,695,330,285,325,870,255,1620,720,145,365,730,535,515,350,1105,710,725,950,870,865,300,840,205,440,390,1250,305,915,255,705,960,1820,370,630,780,1655,785,660,425,745,685,385,1105,1165,205,605,500,485,435,295,405,900,1800,1140,560,120,390,915,1310,665,495,1015,840,650,1320,330,790,835,585,400,2960,640,890,740,395,235,665,2190,540,795,1220,665,365,885,740,995,570,275 -1738,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 16. Aboriginal and foreign languages, literatures and linguistics",12405,90,75,50,285,195,105,150,195,75,90,20,80,70,20,55,30,35,70,55,60,50,45,55,230,80,80,50,90,30,65,195,90,170,65,80,140,45,70,20,115,90,60,75,70,70,30,55,35,55,140,180,20,140,40,35,10,100,45,250,80,20,40,65,65,55,25,150,135,50,75,55,60,55,75,60,50,70,130,35,90,40,105,115,215,30,190,165,150,60,80,50,115,45,20,105,180,20,40,90,75,50,40,70,85,140,130,85,0,30,60,160,165,75,125,160,95,100,35,85,70,50,55,300,55,120,155,110,20,70,520,125,80,95,60,35,130,50,85,90,70 -1739,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 23. English language and literature/letters,31945,120,150,115,980,310,125,365,260,120,295,15,170,310,35,145,145,150,210,80,305,40,455,130,615,230,85,145,215,195,345,265,110,680,120,265,450,145,105,30,155,185,95,120,180,235,65,330,140,155,520,595,110,205,80,55,75,300,80,485,295,20,105,275,160,175,135,330,170,240,310,285,365,65,190,35,145,95,345,85,285,70,125,305,695,140,125,200,545,320,230,115,270,225,110,445,270,55,255,160,120,130,60,135,365,605,270,175,15,130,340,485,145,120,345,225,200,570,60,180,335,275,105,1015,150,115,200,90,80,175,605,135,205,295,260,130,310,260,335,185,40 -1740,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 24. Liberal arts and sciences, general studies and humanities",23775,155,175,65,365,260,120,240,190,120,310,10,210,190,65,80,125,135,85,85,130,35,200,120,305,230,125,170,100,75,145,185,220,430,195,110,215,170,140,40,185,160,90,255,120,245,70,145,115,90,210,250,95,140,75,105,130,160,85,355,95,55,120,125,125,125,60,250,170,175,200,230,145,65,410,50,125,145,365,95,180,55,375,140,260,95,90,170,350,105,140,125,120,175,110,145,290,60,75,115,110,120,125,125,140,365,410,105,45,110,220,185,135,145,240,235,190,235,145,375,150,60,150,715,245,475,125,80,45,230,415,100,210,510,125,45,130,155,160,185,40 -1741,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 52. Business, management, marketing and related support services",293390,3060,2790,1055,3775,3760,1630,3835,3320,1610,3135,360,3010,1910,880,665,1270,1545,1070,1100,1280,760,1305,1610,5130,2730,1970,1560,895,855,1375,3250,2345,2400,2535,820,2030,1935,1820,570,1820,1830,1180,2175,1510,1460,1550,1170,965,2420,2425,2635,1425,2210,965,735,970,1395,1200,5910,1215,615,1540,1490,1540,1645,815,4530,2300,2080,2325,2465,1380,1010,4230,755,1185,2505,4620,1515,2665,970,1915,2410,4760,1185,2305,2560,6135,1025,2190,1220,1580,1600,885,1085,3595,930,725,1850,1515,930,755,1555,980,3365,4945,910,510,1355,1800,2615,2435,2495,2930,2830,1675,2465,755,1780,1295,580,1690,16905,2125,2860,2550,1285,650,2485,8470,2360,2100,5135,1170,670,1005,1915,1980,2185,1210 -1742,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30A Interdisciplinary humanities,670,0,10,0,20,0,0,20,0,0,0,0,0,0,0,0,0,10,10,0,15,0,20,0,25,0,0,10,0,0,0,0,0,20,0,10,10,0,0,0,20,0,0,10,0,10,0,0,0,0,20,10,0,10,0,0,0,10,0,20,0,0,0,15,0,10,0,10,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,10,20,0,10,0,20,10,10,0,30,0,0,0,0,0,20,0,10,10,0,0,10,15,0,0,0,0,0,10,0,0,0,20,0,10,0,10,10,10,0,45,0,0,0,10,0,10,0,0,10,0,20,0,10,0,10,10,10 -1743,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 38. Philosophy and religious studies,8015,20,20,40,325,55,40,125,65,20,100,10,90,80,0,40,10,20,50,20,70,20,90,30,160,30,70,35,60,50,45,45,55,195,20,55,95,50,10,10,120,45,40,60,55,65,10,50,25,20,95,170,25,40,10,20,35,95,0,125,85,10,40,75,10,30,0,80,45,45,60,55,105,35,70,10,25,25,95,30,110,20,45,100,100,20,20,50,180,70,50,45,90,65,40,130,60,20,60,35,20,45,30,25,125,100,75,40,10,30,105,105,35,30,60,40,55,115,25,40,85,50,0,275,40,30,55,20,30,30,135,20,35,70,60,55,120,100,80,10,45 -1744,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 39. Theology and religious vocations,5470,50,30,10,55,70,0,65,50,90,70,10,50,10,20,20,40,20,30,15,40,10,15,20,75,20,50,10,10,35,35,70,40,65,45,20,60,25,30,20,145,65,20,65,30,25,30,40,40,35,75,90,25,50,30,0,35,40,10,60,35,0,40,35,60,10,20,145,45,20,35,35,10,25,70,0,15,0,85,25,45,30,10,10,35,30,80,105,45,35,65,25,15,50,30,10,155,0,10,50,10,25,10,40,20,65,100,25,10,25,30,65,20,65,35,90,10,10,0,70,10,20,15,40,75,30,70,50,0,60,145,45,90,90,20,20,20,15,45,30,30 -1745,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 54. History,15360,70,40,50,490,120,95,175,75,55,205,0,70,145,25,60,65,75,115,30,145,20,195,75,290,65,70,80,65,125,125,120,30,280,45,115,135,105,20,25,140,95,40,35,105,130,40,130,75,75,265,310,30,100,70,70,40,140,25,260,125,10,30,110,45,95,75,115,125,170,205,170,140,45,25,20,65,50,190,45,165,30,45,225,380,60,85,75,310,130,75,60,100,85,55,270,130,15,110,45,105,45,35,30,170,390,120,110,25,30,140,245,110,45,170,70,85,230,50,35,160,95,65,505,50,85,80,45,45,95,225,95,150,90,125,75,125,120,220,50,45 -1746,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 55. French language and literature/letters,3800,20,0,20,90,55,10,80,40,20,55,0,20,35,0,10,10,35,25,10,40,25,45,10,95,25,20,10,15,20,45,55,10,60,20,15,50,25,10,0,30,45,0,0,30,25,0,15,10,20,40,50,20,15,10,0,10,35,15,40,10,0,10,0,25,25,30,10,25,35,35,60,30,10,10,10,10,10,35,0,35,15,10,50,120,20,30,45,50,55,10,0,25,20,30,20,55,20,40,20,25,35,0,15,0,95,10,20,0,20,10,35,45,20,55,25,10,45,10,25,15,20,25,70,30,25,55,10,0,30,140,35,20,55,30,20,30,20,40,20,10 -1747,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Social and behavioural sciences and law,215995,1205,1120,745,4835,2400,1100,3045,2130,930,2445,285,1335,1675,715,680,950,1085,1035,735,1365,460,1705,1055,4235,1420,1250,1085,1100,930,1555,1755,985,3470,1390,1290,1910,1395,915,380,1405,1120,705,1255,1555,1630,860,1425,765,1125,2475,2900,705,1030,680,370,595,1820,540,3575,1435,405,775,1620,1070,1065,965,2000,1620,2010,2260,2205,1860,860,1840,350,830,835,3295,800,2600,630,1075,2110,4075,845,1100,1535,4980,1635,1480,790,1565,1280,740,1835,2365,470,1110,750,980,900,475,945,1650,3545,2375,1240,380,865,1755,3035,1565,920,2265,1235,1015,2810,505,1070,1730,1000,1265,9875,1430,1615,1565,970,620,1340,4695,1430,1485,2255,1295,725,1495,1825,1935,1510,745 -1748,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 05. Area, ethnic, cultural, gender, and group studies",3805,0,0,0,105,20,10,70,60,20,20,10,15,40,10,40,20,0,20,15,20,20,20,20,110,10,10,0,10,20,10,30,10,120,50,50,10,20,10,10,20,10,0,20,20,30,10,60,10,20,55,45,10,10,30,0,15,50,0,55,35,10,10,55,10,35,35,40,35,20,35,25,40,10,10,0,15,10,50,10,55,10,0,25,75,20,10,40,60,45,60,20,75,10,10,65,40,10,35,10,10,20,10,20,40,35,45,20,10,10,45,135,25,30,35,30,10,60,0,10,45,25,0,115,25,35,20,10,10,30,80,20,0,40,20,20,65,30,40,10,10 -1749,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 09. Communication, journalism and related programs",27660,100,145,110,635,230,80,300,220,85,225,30,125,220,60,110,100,65,190,75,270,55,175,100,710,130,100,135,185,140,270,145,90,710,105,310,330,85,55,10,105,85,100,105,145,130,50,340,90,85,430,435,55,65,75,35,45,215,50,435,310,45,50,335,105,80,130,160,155,180,180,195,535,145,145,20,85,65,615,75,440,70,30,205,595,175,95,125,1200,325,255,85,205,180,80,365,255,45,150,60,55,130,35,80,375,355,210,180,20,75,425,625,115,95,215,100,110,435,25,130,415,100,110,1855,75,135,140,100,90,75,375,120,125,160,220,130,205,205,210,125,70 -1750,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 19. Family and consumer sciences/human sciences,26595,220,205,165,130,255,130,175,235,170,165,75,280,220,280,30,170,20,105,220,110,125,70,125,270,350,150,180,145,75,200,255,245,365,410,100,200,160,250,130,190,180,115,255,115,65,375,185,60,150,190,195,140,160,105,105,175,180,165,375,155,105,150,140,225,45,70,440,125,100,100,120,135,125,595,90,95,200,300,185,155,235,340,130,295,125,145,245,345,95,190,175,255,200,75,120,405,105,55,105,70,140,140,315,120,110,510,110,140,170,225,245,140,180,230,200,200,190,100,205,95,50,175,415,465,375,205,230,170,325,425,135,230,545,140,145,125,115,85,310,170 -1751,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 22. Legal professions and studies,38050,220,120,105,1055,445,230,530,390,135,690,30,205,280,85,75,180,330,190,115,245,85,485,160,755,145,265,140,155,135,240,285,115,420,205,160,265,350,135,90,380,155,110,190,455,580,180,170,135,150,400,525,110,125,85,70,125,510,90,575,165,65,195,205,135,260,210,295,320,455,635,480,245,120,205,70,100,100,505,150,405,125,180,470,705,120,130,265,605,300,220,75,235,190,115,225,350,75,225,130,210,155,85,100,225,1065,380,185,55,190,210,460,370,110,470,225,130,545,100,130,290,135,175,1985,225,300,350,190,50,235,705,235,250,365,140,95,340,410,435,230,105 -1752,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Woods Cree,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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1753,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Cree, n.o.s.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1754,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30B Interdisciplinary social and behavioural sciences,3800,20,10,20,95,10,20,65,10,10,0,10,40,50,10,35,20,0,15,10,30,15,45,0,80,30,0,25,45,25,20,20,10,130,20,55,40,20,10,0,10,10,20,10,30,25,0,20,10,10,60,80,10,10,0,0,10,30,0,50,15,10,10,25,20,20,0,20,20,35,20,20,70,10,10,0,25,20,50,20,40,10,45,30,95,15,0,25,85,45,30,10,45,40,20,65,40,20,10,30,10,15,15,20,45,20,40,45,20,20,50,65,20,0,50,20,20,65,10,10,20,40,10,135,15,40,35,10,10,20,50,25,30,25,50,15,40,30,30,20,25 -1755,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 42. Psychology,29555,160,190,95,595,355,200,525,245,165,430,30,225,230,70,105,80,140,170,75,200,60,245,230,535,135,270,150,140,155,215,170,125,445,125,185,305,185,135,25,240,155,85,105,325,230,20,180,140,170,345,460,105,165,70,35,35,275,45,540,150,70,80,190,170,140,125,230,320,320,325,290,195,135,230,55,125,105,455,90,385,55,110,355,605,130,180,260,680,190,190,50,190,160,130,250,335,75,190,90,190,80,55,120,170,400,320,170,25,90,215,395,250,75,325,140,140,470,90,155,235,160,220,1255,165,170,145,135,70,175,675,215,250,275,145,90,195,305,245,200,115 -1756,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 45. Social sciences,86530,475,450,245,2190,1080,455,1390,950,370,925,105,435,625,210,290,360,535,360,235,500,90,675,415,1780,610,460,440,420,365,625,850,375,1245,460,435,770,580,290,125,460,515,285,575,470,580,215,465,310,550,975,1150,275,490,300,110,190,570,160,1555,575,120,285,690,405,470,385,840,625,900,965,1090,640,310,610,105,390,355,1320,270,1120,150,365,895,1720,275,530,575,2020,655,545,385,570,505,315,745,955,150,430,340,435,355,140,280,705,1560,885,535,130,290,595,1115,640,430,945,535,390,1065,185,420,630,485,570,4135,455,600,685,300,220,490,2425,695,590,850,570,225,535,735,870,610,255 -1757,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Business, management and public administration",316575,3210,2900,1115,4190,3970,1740,4035,3450,1685,3325,405,3260,2135,1015,765,1360,1610,1200,1250,1460,820,1460,1685,5585,2925,2080,1685,1035,980,1555,3465,2525,2815,2760,1030,2365,2030,2000,645,2000,2005,1285,2335,1655,1650,1750,1375,1045,2530,2670,2940,1520,2270,1055,795,1110,1610,1320,6245,1345,685,1640,1645,1655,1720,865,4770,2420,2230,2480,2600,1535,1100,4555,805,1245,2590,4925,1665,2895,1085,2125,2605,5090,1335,2400,2685,6375,1205,2380,1370,1715,1740,995,1265,3835,1025,830,1945,1585,1090,840,1730,1125,3615,5320,1025,575,1495,1970,2850,2555,2585,3105,3045,1810,2690,830,1895,1440,650,1840,17500,2440,3075,2695,1480,765,2655,8760,2480,2275,5520,1320,735,1195,2085,2095,2460,1285 -1758,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30.16 Accounting and computer science,605,0,0,10,0,20,0,0,10,0,0,0,0,20,0,0,0,0,10,10,0,0,0,0,0,0,0,10,10,20,0,20,30,20,20,0,0,0,10,0,0,10,0,10,0,0,10,0,0,0,20,10,15,0,0,0,10,0,0,10,10,0,0,0,0,0,10,10,0,0,0,0,0,10,30,0,10,0,10,10,0,0,0,0,0,10,0,10,0,0,0,0,0,10,0,0,10,0,0,10,0,0,0,0,10,10,25,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,30,0,10,10,10,0,0,0,0,10,10,0,10,0,0,0,20,10 -1759,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 44. Public administration and social service professions,22580,160,115,55,410,200,120,200,125,85,190,45,240,215,115,100,85,65,130,135,170,60,155,70,465,200,105,125,135,120,185,195,170,405,205,205,335,90,160,85,190,165,110,140,145,190,190,205,85,110,230,285,75,70,100,65,130,220,125,350,130,70,85,160,125,70,50,230,115,150,150,145,155,90,300,45,55,90,305,140,225,105,200,195,320,145,90,110,250,175,180,145,125,140,110,170,235,85,110,85,65,155,90,180,145,245,350,120,60,135,170,240,115,90,175,205,135,225,70,115,155,80,135,570,310,215,140,195,110,165,295,125,170,360,145,60,185,175,105,265,75 -1760,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Physical and life sciences and technologies,63185,685,595,195,1005,775,430,1600,730,460,555,55,630,395,190,140,235,255,180,160,340,105,305,390,1270,455,400,335,190,220,385,940,475,550,340,220,485,360,365,145,420,405,165,395,295,255,200,315,175,470,730,705,390,585,175,155,195,380,245,1070,315,80,320,695,425,320,230,1020,500,385,445,450,285,185,780,145,285,530,785,440,470,155,655,510,870,175,530,650,770,285,490,315,305,345,170,420,890,140,165,440,325,185,170,290,385,455,935,280,65,275,335,540,610,670,640,615,445,545,185,425,335,300,320,2315,430,620,645,195,105,510,1785,685,480,1325,320,130,315,335,335,485,200 -1761,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 26. Biological and biomedical sciences,29170,285,260,75,545,400,180,1065,345,195,255,25,260,195,55,70,95,130,80,95,170,40,150,120,700,195,185,170,110,120,195,425,210,275,155,115,260,160,160,65,215,145,45,150,155,110,95,145,75,255,345,400,135,260,75,55,70,210,125,490,130,30,150,370,200,125,125,415,245,185,195,235,145,75,340,30,135,140,350,215,230,85,200,255,495,65,200,225,440,160,260,165,140,155,85,235,370,55,110,170,135,90,55,130,215,200,375,140,35,150,175,315,220,220,260,245,260,245,70,175,180,180,125,1250,200,240,225,90,55,190,790,290,180,515,140,65,160,165,185,245,65 -1762,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30.01 Biological and physical sciences,13410,165,145,25,165,130,75,225,135,75,155,10,165,85,40,35,35,55,35,35,60,35,75,120,230,95,85,85,20,35,85,195,105,90,75,40,65,100,105,35,105,105,25,100,55,65,40,75,55,30,95,105,130,95,30,50,70,70,60,200,70,35,100,140,60,70,45,220,105,115,130,115,55,50,225,55,60,205,155,95,90,10,195,110,150,40,115,165,160,30,65,40,55,90,35,80,165,35,10,80,70,50,45,65,60,105,340,40,15,85,70,115,210,195,155,130,60,125,55,100,70,30,70,425,95,185,110,35,15,125,355,105,125,405,65,10,60,70,60,90,45 -1763,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30C Other interdisciplinary physical and life sciences,1375,15,10,10,30,10,10,85,15,10,20,0,0,10,0,0,25,10,10,0,0,0,0,10,55,20,10,10,10,10,10,0,20,20,10,0,0,0,0,10,10,0,0,10,10,20,0,0,10,10,10,10,0,20,0,0,0,0,0,30,0,10,0,10,10,0,0,10,10,10,20,10,0,10,20,10,0,0,25,10,10,0,10,20,30,0,20,10,10,10,10,0,0,0,10,10,35,0,10,10,0,0,10,0,10,0,10,0,0,0,0,20,0,10,15,0,15,20,0,0,10,10,10,90,0,0,0,10,0,0,45,20,0,20,0,0,0,0,10,0,20 -1764,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 40. Physical sciences,17275,200,155,80,265,190,150,260,195,145,125,10,170,105,45,35,70,55,55,25,85,15,80,135,280,135,105,75,45,60,95,280,130,155,90,50,145,80,70,25,85,140,85,125,75,60,50,85,45,145,275,190,95,215,60,40,35,85,40,295,100,15,65,155,100,110,60,360,145,75,115,95,80,40,145,60,90,155,230,115,135,35,220,125,195,75,205,235,165,90,130,100,95,60,45,100,295,35,35,160,115,50,60,85,100,125,185,110,25,55,85,95,160,230,185,220,100,155,45,140,75,65,95,520,85,150,270,50,15,155,570,255,130,370,110,45,80,90,100,135,85 -1765,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 41. Science technologies/technicians,1955,30,45,20,0,30,10,10,25,20,20,0,30,20,35,0,10,0,0,10,10,10,10,10,0,10,10,10,0,10,10,40,20,10,10,0,10,10,35,20,0,10,20,10,10,20,0,10,0,20,10,10,20,10,0,10,20,20,10,40,20,0,10,20,50,10,0,20,10,10,0,20,10,0,45,10,0,20,25,25,20,20,50,10,0,10,10,25,10,10,20,20,0,20,0,0,35,10,0,25,0,0,15,20,0,10,30,0,0,10,0,10,20,10,30,20,10,10,10,0,0,0,10,30,60,30,55,0,10,35,10,15,35,10,10,0,20,0,0,10,20 -1766,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Mathematics, computer and information sciences",76435,805,840,205,870,965,465,1130,970,535,465,105,870,455,295,140,380,205,330,285,355,85,240,435,1365,735,460,300,230,150,455,1140,745,665,550,225,660,315,540,150,500,490,365,535,310,225,345,340,235,900,850,615,420,870,175,185,315,455,480,1490,340,145,335,450,385,235,185,1345,695,425,320,320,290,190,990,175,210,765,775,420,590,175,570,505,1345,200,815,840,1225,250,700,305,390,490,240,355,1145,175,205,690,270,285,235,350,280,415,1365,300,130,395,415,715,565,940,640,1080,605,505,130,715,250,295,510,3615,510,720,935,270,150,770,2640,840,325,1300,235,195,290,395,370,845,225 -1767,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 11. Computer and information sciences and support services,57245,585,730,155,470,675,345,670,670,360,250,105,715,330,255,100,265,120,265,265,240,75,145,300,980,585,365,220,170,100,310,865,660,480,470,180,490,200,485,145,335,350,290,455,245,130,290,255,175,780,580,385,325,645,120,125,250,305,440,1100,245,125,305,330,325,125,120,1110,545,225,170,175,225,155,860,140,135,605,610,370,425,165,445,330,1010,170,575,600,1000,150,570,225,305,365,180,225,875,145,155,545,145,195,220,315,210,225,1105,210,125,285,335,570,375,710,425,845,505,310,105,620,205,165,430,2470,415,620,680,260,125,655,1865,565,255,1055,185,135,195,275,200,720,190 -1768,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 25. Library science,3700,20,10,10,140,60,0,40,20,0,35,0,10,40,30,0,30,20,15,0,40,10,40,35,55,40,10,20,25,0,65,30,20,40,0,10,55,25,0,0,35,30,15,0,0,40,10,35,25,30,70,30,10,25,25,0,0,50,10,45,45,0,10,10,20,45,25,30,40,30,45,60,10,0,10,0,15,30,50,0,30,0,10,45,50,0,30,30,25,20,40,20,0,45,25,40,40,10,30,10,0,20,10,10,25,65,50,35,0,10,15,35,15,10,40,35,25,70,0,35,15,35,10,120,10,10,45,0,0,35,90,40,10,10,0,10,35,30,50,10,10 -1769,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 27. Mathematics and statistics,14345,165,90,35,250,200,110,410,245,145,160,0,150,80,30,30,60,50,40,30,65,0,50,90,300,100,85,55,20,30,85,220,65,85,70,25,95,75,65,10,95,95,55,55,45,55,30,45,40,70,175,180,90,195,40,50,65,80,30,320,60,20,30,90,50,70,35,190,100,150,80,85,35,30,100,25,55,135,105,40,125,15,100,110,275,25,205,205,195,80,80,70,55,75,45,80,205,25,20,115,100,60,10,35,45,115,180,55,15,100,65,80,165,205,145,200,75,105,15,55,25,95,65,965,85,95,205,10,25,65,660,215,60,185,40,50,60,100,90,110,30 -1770,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 30D Interdisciplinary mathematics, computer and information sciences",1145,0,10,0,10,30,10,10,20,0,20,0,0,0,0,0,10,10,0,0,10,0,0,10,30,0,0,10,0,10,10,10,0,0,0,10,10,10,0,0,20,25,0,0,0,0,0,10,0,0,20,25,0,0,0,0,0,10,0,40,0,10,0,0,0,0,0,40,0,25,20,10,0,0,0,10,10,0,10,0,10,0,0,10,20,10,0,10,0,10,15,0,10,10,0,0,0,0,0,0,10,0,0,0,0,0,20,10,0,0,0,10,10,15,10,20,0,30,0,20,0,10,0,40,0,0,0,0,0,20,65,20,0,10,15,10,10,10,10,10,0 -1771,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Architecture, engineering, and related technologies",203235,1955,1870,1100,1730,2360,1470,2240,2200,1270,1170,405,2255,1420,1095,445,1200,575,685,1220,770,615,570,1145,2400,2035,1260,1315,940,505,1150,2870,1925,2240,2640,660,1220,1280,1655,620,1410,1940,1110,1370,770,440,1490,740,880,1790,1850,1720,1160,1785,890,845,1045,780,1130,4120,975,540,1315,1145,1555,540,500,3560,1390,860,760,865,920,955,3185,675,1140,1600,3230,1425,1225,825,1835,1150,2395,855,1705,2460,2285,610,1475,910,1340,1320,650,785,2920,900,375,1545,905,620,865,1550,885,1070,3400,665,505,1015,1410,1500,1475,1975,2275,2275,1160,1090,875,1195,945,535,1280,5400,2140,2745,3175,1270,630,2455,5415,1755,1875,4070,675,505,760,715,745,2090,885 -1772,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 04. Architecture and related services,18005,75,65,40,420,265,100,310,225,95,145,25,125,105,35,70,70,75,70,50,165,30,165,90,355,95,100,90,110,75,115,230,70,415,80,95,175,75,90,0,100,135,75,75,90,80,55,95,40,165,205,250,45,120,85,15,30,130,25,290,115,10,35,125,70,85,45,140,170,115,105,175,275,45,85,40,70,95,270,45,255,35,55,185,255,75,125,140,390,115,180,50,185,100,75,215,120,35,85,85,100,55,60,35,235,285,120,120,10,25,165,295,135,90,190,85,70,220,40,60,275,100,90,805,70,70,90,80,45,125,555,190,90,165,105,80,200,125,195,110,75 -1773,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 14. Engineering,93100,1010,1005,250,910,1380,700,1740,1570,830,585,85,920,350,240,160,515,420,265,290,405,85,270,455,1585,765,530,435,235,195,380,1825,860,640,685,190,435,660,615,160,625,825,465,700,430,260,315,245,225,1180,1020,850,460,1215,305,185,280,315,480,1870,375,125,385,680,505,320,250,1695,885,520,490,435,295,315,1170,220,510,845,1360,445,570,215,660,640,1540,290,1220,1360,1230,265,865,365,420,390,190,295,1575,195,145,840,480,335,210,275,325,600,1200,295,70,370,440,570,980,1210,920,1265,630,355,245,650,315,335,455,3630,640,970,1965,265,155,955,3975,1200,730,1770,210,145,225,420,340,795,265 -1774,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 15. Engineering technologies and engineering-related fields,31630,350,335,190,150,330,200,100,200,150,170,55,510,320,235,75,225,45,115,240,75,80,55,220,250,405,230,255,150,95,200,345,320,345,470,105,190,155,285,80,225,300,195,255,90,45,275,135,215,195,240,185,225,230,150,160,200,105,205,690,140,95,275,125,320,50,55,680,150,95,55,100,125,180,745,110,215,275,565,320,200,150,420,135,270,125,130,380,330,80,180,170,260,245,140,90,415,120,45,185,110,80,185,315,110,100,830,90,125,220,265,260,150,370,410,335,170,190,135,195,90,35,255,440,395,535,465,275,140,380,470,115,290,775,105,65,105,70,80,370,140 -1775,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30.12 Historic preservation and conservation,90,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,20,10,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 -1776,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 46. Construction trades,25275,180,155,260,145,160,235,20,55,70,125,135,255,305,230,55,170,30,110,280,55,220,30,155,110,335,195,225,225,65,185,160,240,460,640,105,155,170,225,135,215,235,150,120,55,20,370,120,145,95,195,205,135,60,150,175,225,120,160,520,125,160,245,100,270,25,50,385,85,50,70,75,125,175,405,155,135,90,470,215,80,190,245,85,185,135,100,230,160,75,90,155,235,275,130,90,415,250,50,170,100,65,195,415,110,30,415,75,120,140,255,155,90,80,335,170,135,185,235,100,130,35,185,280,360,345,210,340,150,485,150,85,325,475,120,110,135,45,75,310,180 -1777,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 03. Natural resources and conservation,6620,45,45,25,100,65,30,60,55,50,45,0,40,80,10,55,25,20,70,40,60,0,70,35,70,45,30,60,35,25,65,55,20,130,55,70,35,30,40,10,30,20,45,20,35,20,20,90,35,50,90,85,25,25,20,10,10,55,10,105,115,0,25,50,20,20,30,70,30,50,65,40,75,20,40,15,15,35,90,10,65,30,20,65,120,20,25,45,140,90,35,40,50,55,25,60,60,0,70,25,20,20,0,45,70,60,90,60,20,35,75,145,40,35,75,45,30,105,0,30,75,25,30,250,45,50,60,30,30,50,105,55,35,70,40,25,70,25,40,80,10 -1778,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 47. Mechanic and repair technologies/technicians,23105,235,185,245,50,140,185,25,110,95,75,70,330,190,225,75,150,10,95,195,40,130,30,145,40,320,120,195,130,15,210,210,285,245,470,85,195,130,285,165,175,295,145,180,90,10,330,85,155,120,110,95,230,80,135,190,185,65,175,480,95,95,255,75,270,25,65,510,75,30,10,50,70,140,545,100,135,190,385,295,70,155,270,80,85,185,95,280,110,45,100,115,150,220,80,55,240,185,10,195,80,65,150,355,55,35,575,65,110,185,145,165,80,150,310,270,125,55,135,135,85,20,200,180,405,535,295,185,95,345,210,125,295,595,90,55,80,30,35,300,155 -1779,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 48. Precision production,12020,130,125,120,40,80,50,40,20,45,60,45,120,155,150,25,70,10,50,160,25,60,30,90,40,120,100,115,100,45,65,85,145,115,290,80,80,85,175,55,80,150,70,45,25,10,170,55,90,30,80,105,65,70,80,110,135,40,70,255,110,50,130,50,105,15,30,155,30,35,0,40,40,95,280,55,80,85,190,100,50,85,185,35,70,40,45,55,65,20,65,65,100,80,40,45,135,110,35,70,25,10,70,155,70,0,265,35,60,80,135,70,35,85,115,130,35,80,80,40,40,20,95,70,250,285,135,145,40,170,60,50,130,305,50,50,30,10,10,205,85 -1780,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Agriculture, natural resources and conservation",14385,125,90,75,125,135,75,90,105,95,110,10,140,140,70,65,95,35,140,65,65,15,95,65,140,145,105,120,65,35,110,200,100,205,130,95,125,75,90,30,80,115,80,85,70,30,75,155,55,75,165,145,40,65,60,40,55,85,85,275,165,25,80,75,100,50,40,210,110,100,95,80,85,50,125,30,80,115,240,65,115,75,125,105,170,80,95,160,200,115,75,90,120,110,50,105,215,45,95,90,45,55,65,90,100,100,180,100,15,70,130,180,70,190,145,135,100,155,40,80,75,60,65,350,145,190,175,95,50,165,265,125,115,220,50,55,75,20,65,165,75 -1781,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 01. Agriculture, agriculture operations and related sciences",7765,75,30,40,45,65,50,45,60,40,60,0,105,65,45,10,75,10,55,20,20,15,35,30,75,115,80,65,30,10,45,130,80,75,80,30,65,50,70,15,40,85,40,75,35,20,55,65,20,20,65,50,25,40,40,45,40,20,80,175,55,20,60,40,65,40,10,145,70,45,30,40,15,30,105,25,65,70,160,55,50,45,110,45,45,65,65,115,60,20,50,50,80,65,25,30,170,30,30,65,25,40,60,35,45,40,70,30,10,35,50,15,45,160,55,95,70,65,30,65,20,25,40,120,100,130,145,55,10,115,165,60,70,145,0,25,10,10,20,95,50 -1782,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Health and related fields,161620,1270,1240,640,1755,2210,1130,2690,1715,1020,1940,405,1695,1190,1020,330,960,815,610,920,705,455,790,800,2200,1530,1380,765,475,450,805,1875,1575,1385,1950,495,1120,930,1485,525,1740,1000,540,1215,1270,930,1485,615,600,980,1295,1385,790,1110,545,490,795,1020,870,2510,755,510,1110,945,1160,585,430,2440,1195,900,1080,1135,550,550,2735,600,595,1005,2100,1435,1020,785,1810,1065,1965,585,1110,1990,2020,650,1195,705,1195,935,520,490,2275,510,380,990,785,515,505,970,590,1305,2690,485,480,1040,1390,1185,1775,1070,1480,1555,775,1215,485,1025,555,265,1130,4155,1790,2060,2435,995,360,1535,3540,1245,1040,3065,665,370,720,715,855,1695,630 -1783,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 31. Parks, recreation, leisure and fitness studies",12375,55,65,65,200,140,80,120,90,95,100,10,65,120,35,20,75,75,75,55,50,15,35,85,135,70,100,85,60,65,95,110,65,230,30,55,150,60,40,15,85,110,60,50,80,35,60,90,95,70,105,150,95,60,35,20,10,95,20,245,100,50,30,90,70,75,30,140,105,95,100,175,85,65,145,25,75,75,225,80,75,35,90,120,165,80,95,95,325,60,70,20,80,105,90,85,175,60,55,85,60,55,35,60,85,85,125,75,10,50,120,160,65,75,140,75,20,215,15,70,75,35,60,530,50,150,115,75,15,80,200,85,125,155,130,35,85,75,85,125,30 -1784,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 51. Health professions and related programs,142000,1185,1130,560,1360,1905,1010,2155,1490,875,1610,390,1590,1025,970,295,885,590,540,870,590,430,685,695,1875,1445,1210,660,390,385,670,1690,1500,1110,1880,430,930,810,1440,495,1555,875,485,1150,1070,720,1415,515,500,845,1150,1145,670,1010,495,455,760,865,845,2160,645,445,1065,815,1045,480,385,2270,1000,735,840,865,420,460,2575,570,510,935,1815,1350,890,755,1695,845,1680,500,930,1800,1600,555,1100,660,1085,825,440,380,2010,455,320,895,670,440,455,900,475,1010,2560,380,470,995,1240,1010,1440,995,1255,1450,740,910,460,930,435,200,1065,3330,1720,1875,2230,910,335,1425,2990,1120,900,2845,525,320,590,575,685,1535,595 -1785,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 60. Dental, medical and veterinary residency programs",7235,25,45,15,220,180,50,420,130,35,230,0,35,40,10,0,0,155,0,10,65,10,85,20,195,20,65,15,10,10,40,85,10,35,35,20,35,70,20,0,110,20,0,30,125,165,0,10,0,65,35,75,20,40,0,0,20,55,10,95,10,10,20,55,50,25,20,40,95,65,145,90,35,25,30,0,10,10,65,30,45,0,45,100,140,20,90,95,95,50,15,10,25,0,0,25,80,0,0,10,50,25,0,10,25,215,20,35,0,20,30,20,245,20,55,15,20,110,0,40,55,20,20,270,20,40,100,10,0,20,375,50,0,75,25,15,30,70,90,25,20 -1786,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Personal, protective and transportation services",49580,415,360,295,400,370,320,215,305,220,245,210,465,415,410,135,315,40,305,480,230,200,105,205,650,545,275,295,315,190,295,510,515,705,940,210,355,300,480,250,405,430,205,375,165,110,635,265,175,260,450,360,235,250,235,260,335,210,310,975,305,260,370,280,430,85,100,750,165,110,90,155,320,240,820,230,230,355,1005,330,485,350,530,205,525,295,280,465,745,90,485,200,475,460,165,200,660,285,105,270,155,185,255,500,285,195,810,95,275,290,605,480,200,320,430,450,275,345,210,255,260,90,375,980,600,620,590,505,185,550,620,205,495,850,210,195,320,135,190,580,375 -1787,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 12. Personal and culinary services,33390,290,250,135,335,275,225,180,205,160,175,140,300,260,305,95,205,35,220,370,170,165,75,100,545,350,165,165,235,150,210,310,285,515,650,140,255,215,280,175,265,235,105,195,110,85,400,205,95,165,250,235,120,165,135,190,215,150,185,625,225,185,245,210,230,65,55,515,110,75,75,100,230,110,530,120,110,265,550,170,360,240,355,145,415,185,195,295,490,75,375,130,360,330,100,165,455,170,75,195,95,125,150,345,215,175,495,65,195,175,475,350,130,235,270,315,210,250,130,155,200,85,260,655,380,360,300,345,135,355,460,150,360,535,145,135,255,95,170,440,290 -1788,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 28. Military science, leadership and operational art",210,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,10,0,10,0,0,0,0,10,20,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,10,10,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1789,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 29. Military technologies and applied sciences,215,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,20,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,10,0,10,10,30,0,0,0,10,0,0,0,0,10,0,0,0,0,0 -1790,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 43. Security and protective services,9480,45,45,125,30,40,55,35,45,30,10,35,100,105,60,20,55,0,65,50,45,30,20,80,60,125,60,80,55,40,80,100,115,85,160,40,70,70,105,45,55,110,50,65,25,0,135,35,55,60,80,85,90,25,55,30,30,30,80,230,55,65,75,40,125,20,35,135,20,20,20,45,55,85,175,60,70,35,250,140,60,55,100,35,75,80,35,80,175,25,70,25,75,90,35,20,120,70,25,45,45,35,50,90,45,10,210,10,35,65,90,95,40,40,115,90,15,60,55,75,40,0,75,220,150,150,90,90,35,105,95,25,80,240,45,40,45,30,35,60,50 -1791,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 49. Transportation and materials moving,6290,55,60,40,45,30,35,0,30,10,45,35,70,50,45,15,45,0,10,50,10,10,10,25,20,60,55,50,25,0,50,70,100,90,140,25,25,10,100,30,80,75,50,110,30,10,105,30,25,40,120,30,15,35,40,35,75,25,40,140,30,20,55,20,75,10,10,115,20,10,0,0,30,35,105,50,50,35,200,35,60,55,80,20,40,35,25,85,70,10,60,45,20,50,20,10,75,40,0,20,25,25,60,85,30,10,105,20,45,35,55,45,25,50,45,45,40,30,25,40,20,0,35,80,65,85,175,60,25,90,55,15,60,85,15,10,10,10,10,75,35 -1792,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Other,210,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,10,10,0,0,10,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,10,0,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,10 -1793,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 30.99 Multidisciplinary/interdisciplinary studies, other",210,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,10,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,10,0,10,0,0,0,0,0,0,10,0,10,0,0,0,0,0,10,0,0,0,10,0,10,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,10,0,0,0,20,0,0,0,0,0,0 -1794,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001,Total - Major field of study - Classification of Instructional Programs (CIP) 2016 for the population aged 25 to 64 years in private households - 25% sample data,1554815,15460,13155,6965,17920,14330,8705,14765,12835,6290,11360,3565,15455,12530,11015,4505,8605,4540,7070,9720,7190,5930,5930,6960,21520,15050,9365,8470,8630,5535,9990,15005,13825,23470,19340,7855,12625,8290,11900,4930,10750,9760,6610,11545,7105,5805,15075,9000,4895,9425,14155,14395,6610,8330,5280,6195,8145,8655,7655,26060,9070,6235,9575,10335,11120,4615,4350,23195,9475,7680,8060,8780,10595,6205,23445,5380,5330,14540,21880,9140,13425,7595,17015,9645,20140,6760,8940,13475,24630,6980,12235,7625,12050,10405,5375,9070,19005,6015,4650,8465,5645,6555,5755,12350,9620,10895,25115,5825,4715,8665,14260,17850,9330,12965,14260,14195,9320,12620,5365,10645,10645,3960,9440,49590,14585,17695,14345,10190,6655,15400,31275,9500,11105,28065,7705,4940,7915,7180,7395,15180,7560 -1795,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," No postsecondary certificate, diploma or degree",476875,7585,5275,2620,2515,2885,2320,1535,2095,1220,1955,1800,6090,4405,6760,1265,3065,545,2140,4955,1445,3105,830,1720,3490,5480,2215,2995,3545,1450,2670,3310,5490,8405,9360,2435,3250,2165,5080,2445,2990,2885,2290,4530,1365,870,9130,2655,1385,1850,2325,2305,2240,1655,1725,3265,4085,1630,3060,6390,2335,3770,4060,3370,4900,510,900,9395,1505,785,810,1200,3090,2060,10330,2400,1240,8160,5660,3540,3245,3770,9080,1270,3115,2185,1655,3610,3320,1345,3440,3080,4375,3725,1635,2040,5615,2610,795,2310,1095,2485,2520,6335,2610,1365,9780,955,2470,3705,4925,5315,1735,5900,3340,5050,2890,2315,2310,3985,3410,640,3340,5725,6125,7355,3735,4685,3530,6025,4525,1685,3905,11540,1880,1550,2020,815,1040,6130,3365 -1796,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Personal, protective and transportation services",37550,300,265,235,300,210,220,130,240,165,180,165,345,320,325,95,240,30,240,375,185,165,80,145,550,385,215,200,265,135,225,370,400,570,680,175,260,220,360,180,295,350,170,295,145,85,495,230,110,185,380,285,145,185,160,175,240,155,225,755,230,195,275,200,335,55,70,500,120,60,60,120,255,190,600,190,155,250,870,195,380,280,380,150,410,225,210,340,670,70,405,165,365,355,125,175,500,205,75,140,95,155,195,395,240,110,590,60,200,250,530,360,150,205,365,325,220,300,150,200,200,60,255,810,400,420,430,435,155,420,415,115,325,655,185,165,235,105,185,395,275 -1797,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Education,48015,310,230,210,605,520,420,265,395,255,645,60,365,490,165,205,335,175,220,235,265,115,205,395,490,370,510,265,275,265,535,495,355,670,585,190,530,395,245,120,695,495,190,260,315,210,310,355,285,300,660,725,265,235,275,120,190,450,165,930,360,140,240,170,320,230,220,475,425,365,380,405,275,215,380,170,270,285,655,225,310,140,315,475,720,225,255,605,465,305,365,160,475,335,195,275,575,155,190,315,360,160,165,270,390,265,665,265,165,180,300,515,290,205,615,410,235,635,165,225,220,160,235,900,270,385,635,215,125,375,900,310,455,575,345,180,300,230,250,430,235 -1798,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 13. Education,48015,305,240,205,610,520,415,260,385,255,640,65,370,490,170,200,335,170,225,230,265,115,200,385,505,380,510,270,270,255,530,500,355,665,595,195,535,395,245,120,695,495,195,260,315,200,300,355,285,300,665,725,265,240,280,115,190,450,165,930,360,140,235,170,315,230,220,475,415,365,380,405,275,215,390,170,270,285,660,230,310,145,315,475,730,225,260,600,475,305,370,155,475,335,190,275,565,160,185,310,355,160,165,265,400,255,665,265,165,180,305,510,280,205,615,415,235,630,165,220,225,175,245,915,270,375,635,215,130,375,890,315,460,580,340,180,305,230,240,430,235 -1799,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Visual and performing arts, and communications technologies",70625,280,260,270,1555,540,280,645,545,240,320,80,285,635,140,350,280,195,445,190,700,180,550,200,1575,350,230,280,640,480,720,420,245,2320,310,970,910,310,190,95,235,250,205,200,305,405,145,790,215,280,1260,1300,95,240,210,150,110,765,140,995,930,125,150,885,225,225,200,550,355,390,355,475,1295,285,330,165,215,220,1085,175,1040,105,185,460,1085,425,335,360,2285,660,665,115,720,340,260,1195,650,180,460,210,175,315,120,320,1290,735,455,510,80,160,1415,1640,315,220,585,305,265,1010,130,200,1275,320,225,2795,345,275,410,275,425,350,1180,380,280,550,700,365,640,545,620,395,175 -1800,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 10. Communications technologies/technicians and support services,8240,30,20,50,80,60,10,45,45,25,40,20,70,130,10,15,65,0,70,35,45,25,35,20,155,60,30,40,85,35,85,25,25,195,70,90,125,35,10,25,30,20,10,20,40,40,0,110,10,35,105,100,15,20,20,25,10,75,20,150,80,10,20,90,60,25,10,55,40,10,20,45,125,20,65,25,10,0,160,35,110,20,35,45,170,60,35,35,335,75,90,25,70,55,40,120,125,40,30,20,20,35,25,20,90,35,75,55,25,15,160,195,30,20,45,65,40,105,25,20,125,40,45,405,75,50,55,45,70,40,135,30,50,120,120,70,50,40,70,55,20 -1801,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 50. Visual and performing arts,62385,255,235,220,1450,485,255,590,495,210,280,70,225,515,135,330,230,190,390,150,650,165,520,180,1405,285,195,240,555,450,630,390,200,2135,240,885,775,285,185,70,185,235,195,160,265,370,150,700,200,255,1150,1190,70,220,185,110,105,685,120,860,870,115,120,790,160,190,195,490,305,375,335,430,1180,255,265,150,210,215,915,130,925,75,165,415,915,360,310,325,1945,580,575,85,665,280,230,1065,520,140,430,185,165,280,95,290,1195,700,375,445,55,150,1255,1435,305,205,535,255,220,895,110,175,1150,290,185,2385,270,230,345,235,360,300,1050,345,230,440,585,295,590,500,555,335,145 -1802,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Humanities,77355,300,370,285,1900,685,365,835,615,290,770,55,530,670,125,340,350,285,460,220,600,165,720,315,1355,555,420,400,515,395,640,700,435,1690,465,590,950,365,300,105,630,475,250,500,405,475,195,670,290,310,1070,1250,240,455,215,240,265,660,200,1200,630,95,320,560,395,325,280,720,550,505,630,575,765,250,625,170,285,270,990,220,745,155,595,685,1365,320,450,595,1490,620,535,345,585,590,315,910,870,155,455,390,340,375,240,350,795,980,825,445,70,320,805,1145,415,350,805,600,575,995,250,615,745,430,340,2375,525,660,510,310,200,480,1715,380,550,935,585,300,700,545,655,455,200 -1803,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 39. Theology and religious vocations,3875,50,30,0,30,55,0,45,35,70,35,0,45,20,10,0,25,15,20,0,20,0,25,10,50,10,45,20,0,15,30,45,20,55,45,10,40,15,10,0,100,45,20,60,30,10,0,40,30,30,45,55,25,50,30,10,10,20,20,65,40,10,25,25,50,0,20,95,15,10,10,15,10,10,35,0,0,20,50,10,20,15,10,20,20,20,75,85,20,30,50,0,20,45,25,0,120,0,0,40,0,20,0,20,20,20,85,25,0,20,10,55,10,20,20,70,0,10,10,35,10,10,10,40,50,15,40,40,10,35,130,10,50,40,10,10,10,20,50,35,25 -1804,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 16. Aboriginal and foreign languages, literatures and linguistics",9450,30,45,35,195,145,65,115,145,60,45,10,75,70,10,40,35,25,50,50,45,40,35,40,165,65,75,35,70,10,25,170,80,170,75,70,115,30,60,10,75,60,40,55,60,45,30,55,25,25,105,105,20,75,35,35,10,80,15,175,70,10,45,25,65,20,15,125,100,30,50,30,60,55,50,45,30,35,100,20,75,40,75,75,180,30,155,130,150,55,70,45,70,60,25,75,135,10,35,65,70,35,40,65,85,100,95,80,0,30,75,140,125,60,115,90,75,90,20,30,65,25,40,235,50,95,110,85,20,45,435,95,30,85,35,30,110,40,70,75,40 -1805,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 23. English language and literature/letters,24570,80,125,85,750,180,90,240,165,65,210,15,135,255,40,125,110,95,165,45,220,35,315,95,485,210,70,100,210,155,295,195,85,620,120,240,395,105,65,30,100,125,55,80,115,155,75,285,75,105,425,495,80,175,40,45,70,230,60,355,265,25,90,225,105,115,100,210,120,145,225,185,320,65,155,25,95,45,270,60,230,50,110,210,510,130,100,160,475,240,195,105,215,195,75,380,215,35,175,130,75,125,60,120,295,330,175,145,15,110,290,430,75,70,245,165,180,415,35,140,305,220,90,800,120,90,140,60,75,125,475,80,135,215,235,110,235,200,220,155,45 -1806,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 24. Liberal arts and sciences, general studies and humanities",18345,105,135,50,260,150,100,165,135,60,250,20,155,160,20,65,105,70,65,75,105,30,130,100,250,170,115,140,95,60,105,145,190,370,155,85,175,100,105,30,105,110,80,225,75,140,65,105,85,60,160,205,85,85,65,95,110,105,70,280,85,45,125,90,90,75,50,160,145,120,135,170,120,35,295,45,80,105,265,60,135,25,330,105,200,85,55,130,310,85,115,115,85,135,90,125,220,55,60,90,80,105,105,110,120,220,310,80,15,85,195,165,105,125,210,185,170,175,115,320,130,55,140,580,205,360,85,65,40,170,285,70,160,410,115,40,95,105,110,155,15 -1807,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30A Interdisciplinary humanities,545,10,0,10,35,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,10,0,10,0,25,0,0,0,0,10,0,0,0,10,0,20,10,0,0,0,10,0,0,0,0,10,0,10,0,0,10,0,0,0,0,0,0,20,0,20,0,10,0,15,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,20,0,10,0,10,10,10,0,10,0,0,0,0,0,20,0,10,10,0,0,10,15,0,0,0,0,10,0,0,0,0,0,0,10,0,10,10,0,10,20,0,0,0,0,0,0,10,0,0,10,20,0,0,10,15,0,0 -1808,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 38. Philosophy and religious studies,6215,10,20,35,250,35,35,80,55,10,80,10,65,45,10,25,10,0,45,10,60,15,65,20,105,45,70,35,50,30,40,50,30,165,0,45,75,45,10,0,100,25,20,55,45,25,0,30,10,20,100,115,15,25,10,20,20,75,0,85,75,0,25,65,10,25,20,45,45,35,60,10,90,25,45,0,10,15,90,10,100,10,30,65,75,10,20,35,145,50,50,35,75,50,20,100,50,20,50,15,10,40,15,10,110,60,60,35,0,20,95,75,10,0,35,35,55,85,20,40,65,10,0,245,20,20,35,20,20,25,130,0,35,65,45,35,100,65,40,10,40 -1809,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 54. History,11710,20,35,55,335,90,80,105,35,15,130,0,45,105,35,55,65,45,95,20,125,10,115,50,200,55,50,60,65,95,110,75,45,245,30,115,115,60,20,15,125,55,40,25,75,90,35,125,60,50,190,235,10,50,55,55,40,100,20,195,110,10,0,85,45,65,60,55,110,145,130,110,125,40,30,15,45,10,160,60,145,10,40,180,295,55,55,25,310,120,55,45,100,65,55,225,95,20,80,35,70,30,25,35,150,220,105,75,15,15,125,210,60,10,120,40,85,160,50,30,145,70,50,415,70,70,65,35,30,60,185,70,95,55,110,70,105,95,155,20,35 -1810,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 55. French language and literature/letters,2645,10,0,20,60,10,10,50,20,10,20,0,20,20,10,0,0,25,10,10,35,30,25,10,50,10,10,10,10,20,30,30,0,50,20,10,45,10,20,0,10,15,10,0,20,0,10,15,0,10,35,30,0,10,0,0,10,30,10,70,10,0,0,10,25,0,10,0,20,30,20,45,25,10,0,20,10,0,25,20,35,0,10,45,65,10,15,40,45,45,0,0,10,20,20,10,30,10,30,25,20,20,0,15,20,30,10,20,0,10,30,25,20,10,50,20,10,20,10,30,10,10,30,55,20,25,50,20,0,25,100,25,20,50,10,15,20,10,20,10,0 -1811,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Social and behavioural sciences and law,176260,885,920,645,3650,1825,895,2230,1715,645,1820,235,1020,1425,550,600,820,765,920,590,1125,420,1170,820,3350,1240,1050,855,965,850,1360,1330,840,3050,1135,1170,1710,1145,740,325,1115,905,565,915,1170,1215,655,1265,585,885,2170,2415,500,655,510,275,475,1505,450,2900,1235,320,640,1305,850,810,825,1475,1280,1670,1760,1700,1655,715,1470,295,640,585,2840,645,2215,535,850,1840,3475,690,880,1115,4575,1380,1280,670,1315,1065,645,1560,1880,385,960,585,705,805,375,745,1495,2560,1870,1125,295,705,1520,2795,1165,680,1885,990,885,2230,405,880,1580,780,985,8520,1155,1235,1185,765,515,1110,3880,1130,1125,1855,1180,670,1265,1430,1425,1195,595 -1812,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 05. Area, ethnic, cultural, gender, and group studies",3110,0,0,10,95,10,0,45,65,10,20,0,20,30,0,30,10,10,20,20,35,15,20,10,60,10,10,10,20,20,0,30,0,120,30,50,20,15,20,0,0,20,0,0,20,25,10,45,0,0,65,40,10,10,15,10,15,50,0,50,40,10,0,45,0,10,25,10,25,20,30,30,45,20,0,0,10,0,40,0,45,10,0,35,60,10,10,25,55,35,40,10,70,20,10,60,20,0,35,0,0,10,10,20,20,20,20,20,0,10,45,110,20,20,35,20,10,20,0,0,35,25,0,85,15,25,30,20,10,10,45,20,0,20,30,15,45,20,45,20,10 -1813,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 09. Communication, journalism and related programs",23490,90,110,95,540,200,70,240,200,50,145,15,110,210,55,100,85,35,155,60,235,50,130,80,545,115,60,95,180,130,235,110,70,645,100,290,310,75,45,20,85,80,70,80,120,105,50,305,75,75,380,395,40,45,55,20,25,200,40,370,260,40,50,280,85,65,115,110,120,170,155,135,465,120,120,20,55,25,550,65,365,45,20,155,495,115,85,110,1125,290,220,70,185,175,65,315,230,40,155,40,30,115,20,70,345,275,165,165,10,60,360,590,75,65,190,70,85,380,10,120,390,70,90,1595,70,100,115,70,70,55,335,85,70,130,205,105,180,180,180,100,40 -1814,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Business, management and public administration",259240,2400,2260,965,3220,2970,1485,3105,2740,1120,2595,320,2505,1775,900,690,1115,1235,1025,1055,1170,725,1065,1305,4665,2515,1790,1365,900,875,1385,2810,2160,2495,2300,895,2020,1545,1715,540,1650,1490,1050,1915,1330,1245,1350,1170,755,2055,2280,2440,1195,1660,815,665,930,1305,1110,5325,1210,570,1350,1365,1240,1345,760,3645,2040,1850,2035,2125,1365,920,3605,685,920,1920,4080,1305,2570,940,1725,2155,4340,1095,1860,2100,5840,1050,2085,1165,1500,1460,860,1095,3060,855,725,1545,1225,905,720,1400,1020,2645,4310,925,500,1180,1695,2600,2005,1935,2560,2305,1600,2305,680,1605,1335,495,1460,14915,1890,2440,2005,1210,655,2250,7320,1940,1760,4385,1165,655,1055,1725,1585,2045,1050 -1815,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 19. Family and consumer sciences/human sciences,20460,150,160,125,95,175,90,125,175,125,115,55,220,180,210,25,130,10,75,195,80,100,50,80,215,280,115,145,120,70,145,180,195,305,330,75,180,125,210,100,135,150,80,175,75,55,290,160,35,110,145,170,95,105,80,70,135,140,155,280,135,60,120,100,160,30,55,355,105,40,70,70,105,95,465,65,75,155,245,150,135,190,270,80,250,115,130,180,280,70,155,125,180,130,65,90,300,85,55,60,60,125,120,205,85,65,385,85,105,135,185,210,100,120,165,150,175,140,60,145,85,30,120,350,350,310,170,180,120,250,325,100,150,435,95,130,105,80,70,250,115 -1816,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 22. Legal professions and studies,32410,165,120,105,815,335,205,460,305,70,550,30,170,245,75,70,180,255,180,100,215,85,305,130,655,135,230,125,140,120,220,255,100,430,180,155,245,295,120,85,315,120,95,120,370,445,135,145,110,135,370,455,70,75,65,45,100,445,80,480,150,60,165,195,120,225,185,210,270,425,520,415,225,110,195,65,90,90,440,130,355,110,140,450,595,90,105,200,565,265,195,55,220,165,95,205,295,65,200,120,170,135,55,100,190,765,315,180,45,170,185,430,295,80,390,195,125,500,85,120,280,110,135,1815,200,225,275,150,50,200,595,175,230,325,135,90,295,360,325,200,95 -1817,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30B Interdisciplinary social and behavioural sciences,3140,0,10,10,65,20,0,50,30,0,0,10,20,50,10,25,15,0,10,10,25,20,25,10,75,40,10,25,45,20,20,10,30,95,30,35,30,20,10,0,0,20,20,10,30,20,0,30,20,20,45,75,10,10,20,0,10,15,0,35,35,10,20,25,30,20,0,10,20,30,20,0,75,10,10,10,10,0,55,10,45,10,15,25,80,10,10,20,65,25,30,10,25,0,10,70,50,20,10,20,10,25,10,20,35,15,30,35,10,15,50,55,10,0,55,10,10,30,0,10,10,45,10,120,15,30,25,0,10,0,20,25,20,20,40,25,40,15,35,20,25 -1818,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 42. Psychology,23050,115,135,90,375,235,170,345,190,80,295,30,160,200,40,95,65,90,160,55,150,65,130,180,400,130,210,120,120,135,180,125,125,380,105,165,230,120,100,25,170,120,65,80,205,160,10,155,100,110,300,340,80,105,50,25,30,215,40,435,140,60,50,140,130,95,115,150,225,240,220,190,190,115,185,35,85,70,405,75,320,40,90,275,515,110,130,170,630,145,165,60,145,140,115,215,235,65,155,65,100,65,30,110,150,270,255,145,20,70,180,365,185,85,295,120,125,375,70,115,215,125,155,1050,150,125,120,120,55,150,510,190,160,245,135,90,160,220,165,165,95 -1819,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 45. Social sciences,70600,360,385,225,1655,850,350,965,775,295,695,85,320,520,165,265,325,380,310,160,390,85,505,335,1385,525,390,345,360,345,560,635,320,1100,380,405,705,500,225,115,380,390,250,455,355,425,180,405,250,440,855,940,190,315,245,90,160,445,140,1230,485,95,245,510,315,375,335,620,510,770,750,845,570,255,465,105,300,230,1140,225,960,125,310,805,1505,235,395,405,1860,555,475,350,495,425,280,620,765,115,360,290,340,325,120,240,640,1145,700,480,95,240,530,1045,480,315,795,420,365,770,165,360,555,390,465,3520,365,440,475,225,195,420,2025,520,475,670,540,215,435,555,635,460,220 -1820,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30.16 Accounting and computer science,525,0,0,0,0,10,0,0,0,0,0,0,10,10,0,0,10,0,10,10,0,0,0,0,0,0,0,10,10,10,0,10,10,0,10,0,10,0,20,0,0,10,0,0,0,10,0,0,0,0,0,10,20,0,0,0,0,0,10,10,0,0,10,0,0,0,0,10,0,0,0,0,0,0,20,0,10,10,0,10,0,0,0,0,10,10,0,10,0,0,0,0,10,0,0,0,0,10,0,10,0,0,0,10,10,10,20,0,0,0,0,0,0,0,0,10,10,10,0,0,0,0,0,30,10,0,0,10,0,10,0,10,0,20,10,0,0,0,0,20,10 -1821,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 44. Public administration and social service professions,18355,110,105,50,330,145,90,160,90,55,130,40,180,190,95,90,80,30,115,90,130,45,95,60,385,185,80,95,110,100,160,160,150,390,175,195,290,85,145,65,160,140,100,120,90,140,120,175,65,85,210,220,65,50,70,40,110,180,110,290,120,50,70,120,80,35,45,180,80,105,120,125,120,80,235,30,50,60,270,105,180,105,150,145,270,125,85,110,220,150,160,140,115,100,90,135,190,60,100,80,60,135,85,140,135,150,280,85,50,110,155,210,80,60,155,155,105,160,70,95,150,50,120,475,195,180,105,160,85,145,220,110,130,290,130,50,175,145,70,225,65 -1822,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 52. Business, management, marketing and related support services",240360,2290,2155,910,2895,2835,1385,2955,2630,1065,2465,290,2315,1570,805,595,1045,1195,900,955,1025,680,965,1240,4270,2320,1710,1265,780,755,1225,2630,2005,2105,2110,710,1730,1450,1550,485,1490,1350,950,1780,1235,1105,1225,1000,685,1965,2050,2230,1115,1605,735,615,815,1120,1000,5005,1090,515,1265,1240,1160,1300,715,3460,1965,1745,1920,2005,1250,835,3340,660,865,1870,3795,1180,2400,840,1570,2005,4065,965,1790,1995,5625,900,1930,1030,1390,1360,765,950,2880,790,630,1460,1170,765,635,1265,885,2485,4015,840,440,1075,1530,2380,1925,1875,2410,2165,1485,2145,620,1510,1180,445,1325,14405,1685,2250,1880,1045,570,2100,7095,1835,1605,4090,1025,600,890,1580,1500,1825,990 -1823,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Physical and life sciences and technologies,48020,450,425,170,740,525,335,1115,500,320,410,30,440,300,120,135,180,165,160,130,240,100,195,270,975,380,275,235,155,190,340,705,365,450,225,185,395,280,270,110,275,290,130,305,195,185,125,255,90,365,560,585,260,415,120,100,140,295,210,805,270,70,240,495,320,230,160,675,370,285,325,360,235,130,600,120,180,365,595,265,395,120,535,410,725,160,380,480,695,230,420,265,250,255,150,365,745,125,135,345,210,145,130,215,305,285,700,235,45,205,290,465,390,415,480,450,405,480,145,370,280,210,245,1915,315,450,380,160,85,375,1435,555,315,985,295,130,240,255,235,355,165 -1824,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 26. Biological and biomedical sciences,22460,175,180,75,410,270,155,745,285,145,190,10,180,160,45,65,70,90,80,75,135,35,90,80,535,170,135,105,105,95,180,310,135,220,75,105,225,145,105,45,130,125,25,90,100,75,45,120,40,195,280,335,85,195,60,45,55,170,90,390,115,20,100,270,145,90,100,285,180,130,160,190,125,65,215,35,95,110,290,130,195,65,155,210,405,55,125,160,395,125,230,130,120,110,75,200,285,40,95,135,85,80,40,95,180,150,265,115,10,115,160,260,160,115,205,170,230,225,50,160,150,125,110,1045,140,185,145,70,40,115,620,245,130,345,135,60,120,140,130,175,50 -1825,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30.01 Biological and physical sciences,10350,95,95,30,115,105,60,125,105,65,120,0,135,55,20,35,30,35,35,30,40,30,50,100,175,80,70,65,0,25,70,175,95,65,40,35,55,70,95,25,80,65,20,85,35,35,20,40,30,35,75,90,95,65,35,25,55,50,65,175,60,25,80,100,55,65,35,150,80,95,90,90,50,35,185,40,40,155,100,65,75,0,150,105,120,35,85,125,145,35,45,45,45,65,30,75,155,35,0,60,40,30,40,45,50,70,255,35,10,60,55,110,115,120,110,90,50,100,45,95,50,15,60,380,70,130,80,25,10,85,295,85,65,315,50,20,40,50,40,75,40 -1826,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30C Other interdisciplinary physical and life sciences,1105,0,0,0,10,10,10,60,10,10,20,0,0,10,0,0,15,10,10,0,10,0,0,0,70,10,10,0,0,0,0,10,10,20,20,0,10,10,0,10,10,0,0,0,0,30,0,0,0,10,10,0,0,10,0,0,0,0,0,25,0,10,0,10,0,0,0,0,10,0,30,10,0,10,0,10,0,0,20,0,0,0,10,20,25,0,25,0,30,10,10,0,0,10,10,0,15,0,10,0,0,0,10,10,20,0,10,0,0,0,0,20,0,0,10,10,15,10,10,0,20,10,25,70,20,0,0,0,0,0,35,30,10,10,20,0,0,0,10,0,10 -1827,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 40. Physical sciences,12635,155,115,55,195,145,100,180,95,80,75,20,115,60,45,35,50,45,45,20,60,15,45,80,215,115,55,40,40,50,75,195,110,150,75,45,90,40,55,20,45,85,60,105,60,35,40,75,20,110,180,140,65,140,30,40,20,55,40,185,90,10,40,105,75,85,35,260,100,55,70,60,60,25,130,40,45,85,155,60,110,30,195,85,160,60,140,155,140,55,120,85,80,50,35,95,245,40,30,125,70,35,40,65,65,65,150,75,10,30,80,55,105,140,135,170,100,140,40,120,70,60,55,420,75,120,160,50,20,150,460,180,95,295,90,50,65,55,70,115,55 -1828,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 41. Science technologies/technicians,1470,10,20,20,10,20,0,0,0,10,0,0,20,20,25,10,10,0,10,10,10,20,20,10,0,20,0,0,0,0,0,20,25,20,10,0,10,10,25,0,0,10,20,20,10,20,30,10,0,0,0,0,10,0,0,0,20,20,0,20,10,0,20,20,40,0,0,30,0,0,0,10,10,0,35,10,10,30,20,10,10,0,20,10,20,10,10,15,0,10,15,10,10,15,0,0,25,20,0,25,10,0,15,10,0,0,30,10,10,0,20,0,20,40,20,0,0,10,20,0,10,0,0,10,25,30,20,0,0,15,20,15,15,30,0,0,10,10,0,0,10 -1829,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Mathematics, computer and information sciences",66520,665,700,185,700,830,380,910,850,430,345,110,740,390,260,130,330,155,280,245,300,70,175,395,1170,670,400,240,215,130,425,965,660,610,505,200,570,265,465,120,425,410,340,480,260,165,300,315,200,805,755,565,350,755,160,150,270,390,425,1315,320,130,300,375,350,175,145,1135,635,350,230,265,270,175,855,165,170,605,700,370,565,155,465,410,1190,190,705,735,1200,220,635,285,320,460,200,330,1030,155,180,615,210,240,210,320,225,325,1190,255,125,320,390,650,490,810,560,870,550,430,115,650,215,200,460,3275,460,625,770,260,130,695,2370,725,295,1085,215,180,235,340,300,710,195 -1830,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 11. Computer and information sciences and support services,51575,530,615,140,425,635,305,575,615,325,200,100,635,320,225,90,255,85,245,235,215,65,135,285,870,555,320,190,160,100,285,790,595,470,440,155,430,195,425,125,285,300,270,410,205,115,265,245,155,705,530,360,290,560,105,105,195,270,390,1005,230,115,290,285,295,110,105,980,520,195,160,165,220,145,765,140,120,500,570,325,410,140,385,285,920,160,510,540,975,140,505,220,265,330,155,215,815,130,140,500,120,175,205,285,165,190,990,180,105,250,315,515,345,625,380,735,475,285,95,575,180,120,390,2305,370,535,575,245,105,605,1735,510,235,895,170,120,165,250,180,590,160 -1831,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 25. Library science,2500,25,20,10,80,30,0,30,30,20,10,0,10,20,20,0,20,10,10,0,25,0,25,25,40,25,0,10,25,0,50,30,20,65,0,0,50,20,0,0,30,25,10,0,10,30,10,30,10,30,70,20,0,20,20,0,10,30,0,35,20,0,10,10,10,25,25,0,20,20,20,20,15,10,0,0,0,40,45,10,20,0,30,20,45,0,10,30,10,15,30,10,20,55,10,45,25,10,15,0,0,20,0,10,30,20,50,35,0,0,10,35,0,0,25,30,25,45,0,30,15,30,0,95,0,10,20,0,0,45,70,20,0,50,0,10,25,15,35,20,20 -1832,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 30.99 Multidisciplinary/interdisciplinary studies, other",180,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,10 -1833,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 27. Mathematics and statistics,11420,115,75,30,170,155,80,295,180,95,120,0,100,55,20,15,60,40,25,10,55,0,20,75,225,80,70,45,20,20,70,140,60,70,65,25,80,45,55,10,80,75,55,60,40,20,20,45,35,50,160,155,50,165,30,45,65,75,10,245,50,10,30,45,30,45,20,140,70,125,45,75,45,30,105,25,40,85,100,40,135,15,65,85,235,25,180,175,190,65,80,50,35,70,35,70,170,25,20,110,80,45,0,35,40,95,125,35,15,75,55,70,135,160,120,105,50,85,10,60,20,50,65,850,75,75,175,15,25,40,530,175,45,165,35,40,35,80,75,95,20 -1834,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 30D Interdisciplinary mathematics, computer and information sciences",1020,0,0,10,10,25,10,10,20,10,10,0,10,0,0,10,10,10,10,0,0,10,0,10,10,0,0,10,0,10,10,20,0,0,0,10,20,10,0,0,30,20,0,10,10,0,0,10,0,0,40,15,0,0,0,0,0,25,0,20,10,0,0,10,0,0,10,10,10,10,0,10,0,0,0,0,10,0,10,0,10,0,0,25,10,0,20,10,0,0,10,0,10,0,0,0,0,0,0,0,10,0,0,0,0,10,20,0,0,0,0,10,10,10,20,20,0,30,0,10,0,0,0,60,10,0,0,0,0,0,35,15,10,0,15,20,0,10,20,20,0 -1835,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Architecture, engineering, and related technologies",154975,1280,1405,835,1315,1680,1065,1670,1775,880,785,315,1635,1055,795,370,970,365,540,905,590,460,380,765,1930,1645,995,980,755,355,915,2260,1495,1845,1975,550,995,905,1310,450,995,1390,865,1045,570,340,1150,610,540,1485,1485,1370,735,1315,635,625,700,610,860,3190,795,390,1040,810,1215,330,385,2580,1170,660,545,615,795,750,2375,490,790,1135,2535,1005,1005,660,1310,890,1975,685,1290,1790,2060,490,1330,720,995,1015,545,625,2240,690,275,1180,670,495,620,1235,695,705,2475,570,350,745,1150,1240,1115,1410,1805,1640,985,820,600,970,805,395,965,4500,1595,2040,2275,1015,505,1950,4410,1310,1295,2920,520,410,625,560,535,1615,655 -1836,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 04. Architecture and related services,14855,55,50,30,325,170,85,260,190,60,110,20,80,90,35,65,60,50,50,40,130,10,120,70,270,80,80,75,75,65,90,150,55,375,65,90,160,50,70,0,85,105,50,60,65,70,25,80,40,130,170,230,35,105,80,15,10,115,25,225,105,10,40,105,60,60,45,100,140,105,60,145,260,35,50,15,60,65,210,30,215,25,20,140,205,55,95,115,365,115,170,55,165,90,60,195,100,35,80,50,90,60,45,45,230,185,75,115,20,25,120,285,100,65,180,70,65,170,35,50,255,90,80,680,70,45,65,70,40,100,445,160,90,110,95,70,185,120,155,80,45 -1837,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 14. Engineering,75175,735,850,205,710,1060,525,1270,1295,610,400,65,780,280,195,130,450,290,220,250,315,70,175,270,1300,675,420,375,200,170,335,1515,730,560,600,175,380,495,515,110,480,660,385,550,340,210,270,215,160,1025,875,705,295,935,200,170,200,260,420,1515,320,110,320,455,430,210,195,1340,760,410,355,320,250,280,945,175,370,610,1135,350,480,190,515,520,1345,240,950,1065,1125,230,820,315,365,350,175,240,1295,160,110,730,370,280,145,225,235,420,935,275,50,305,395,450,725,925,740,1010,550,285,190,565,275,245,345,3045,505,800,1430,210,130,850,3370,940,580,1370,160,115,185,320,230,650,220 -1838,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," Agriculture, natural resources and conservation",11710,80,65,50,110,95,40,80,80,80,75,0,105,120,40,50,80,20,125,55,50,15,85,45,110,135,90,90,45,45,105,160,70,185,145,85,110,55,65,10,70,80,80,75,65,30,60,135,45,60,140,115,30,60,55,35,60,75,80,215,135,30,55,75,85,45,40,165,100,70,70,65,75,50,105,25,60,50,190,40,90,65,105,90,135,65,65,135,170,105,75,95,105,95,30,75,145,30,80,75,30,55,55,55,90,90,120,85,20,60,105,145,65,145,120,80,95,140,35,75,65,40,45,275,105,150,140,70,30,130,240,85,95,180,50,45,65,30,45,135,50 -1839,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 15. Engineering technologies and engineering-related fields,23075,240,200,165,115,215,130,65,155,85,110,45,315,220,175,60,175,20,80,160,55,70,35,150,180,295,195,165,130,45,145,220,260,275,360,95,130,85,235,70,155,200,140,195,55,15,240,115,140,130,190,125,155,145,110,125,115,70,140,555,120,70,205,105,240,15,35,470,110,65,55,55,110,140,520,75,155,170,445,225,175,110,310,85,200,100,75,270,290,55,145,125,205,175,120,65,285,110,25,115,80,60,145,250,85,70,620,60,115,155,215,195,120,240,320,235,140,135,105,150,80,20,200,355,280,375,340,230,100,305,330,55,200,505,105,60,75,40,55,300,130 -1840,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 30.12 Historic preservation and conservation,80,0,0,0,0,0,0,10,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,10,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,10,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,10,10,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0 -1841,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 46. Construction trades,17955,75,105,195,105,100,175,20,55,35,85,100,160,215,150,45,135,0,90,200,35,170,15,110,115,260,150,170,165,40,155,150,160,380,425,75,130,115,140,95,140,170,115,100,60,30,255,100,90,80,125,165,90,45,110,110,165,95,105,380,105,115,170,70,195,10,55,255,70,30,65,45,100,115,260,115,105,80,330,120,70,135,145,70,125,120,65,120,145,45,70,105,140,170,95,65,295,160,45,120,65,50,135,345,65,10,300,35,75,95,185,135,70,50,250,105,125,125,135,70,100,35,125,250,265,245,145,250,125,325,85,60,190,330,75,75,105,45,75,200,115 -1842,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 47. Mechanic and repair technologies/technicians,16100,140,110,160,30,90,120,35,85,55,55,55,225,135,155,55,130,10,65,150,25,90,10,100,20,235,85,105,100,10,150,155,160,155,345,70,155,100,205,130,95,190,115,125,40,20,235,65,75,105,65,75,145,45,85,155,115,40,125,320,80,65,195,40,210,20,30,280,70,25,20,45,50,100,365,75,85,155,265,200,50,130,175,70,65,135,70,180,95,35,65,85,90,180,55,35,150,145,10,135,60,40,105,250,30,20,390,60,60,130,125,145,45,100,225,150,100,50,105,110,50,10,165,120,315,365,205,150,70,255,140,85,190,385,45,45,55,25,20,220,105 -1843,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 48. Precision production,7735,40,85,80,10,50,35,0,20,30,40,30,65,105,95,10,35,0,30,100,25,35,25,60,40,80,70,85,80,20,45,85,115,80,210,50,40,35,140,35,55,40,60,10,20,10,105,40,35,35,45,75,30,20,55,80,75,40,55,150,60,25,110,25,85,0,10,115,20,20,0,30,15,80,240,30,40,50,135,70,20,60,115,10,50,25,30,40,55,0,55,45,45,50,35,25,90,65,10,30,20,10,50,130,40,10,145,20,45,45,110,45,25,45,85,60,25,55,50,40,25,20,50,45,150,185,105,100,25,115,25,20,65,175,35,45,30,10,0,155,55 -1844,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 01. Agriculture, agriculture operations and related sciences",6175,60,30,25,35,50,25,40,45,45,50,10,85,45,35,0,55,0,50,30,10,15,15,15,55,100,65,50,40,10,30,105,55,75,80,10,50,30,55,10,35,65,40,55,30,10,60,60,15,15,50,35,0,30,40,40,40,20,75,140,50,10,40,30,45,35,15,105,60,40,20,20,15,30,70,25,45,20,125,55,40,35,90,30,20,45,40,105,45,20,50,45,55,50,25,35,115,20,25,45,20,35,55,35,45,20,60,35,10,30,50,30,30,120,50,60,70,40,25,40,20,10,30,60,65,110,110,55,20,85,145,40,60,125,0,25,10,0,0,75,50 -1845,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 03. Natural resources and conservation,5545,20,30,30,95,40,15,25,25,40,20,0,15,70,10,50,15,20,70,30,40,0,60,30,55,40,20,35,10,25,65,40,20,125,45,70,55,30,10,0,40,20,40,10,35,10,0,75,25,45,90,80,10,25,10,10,20,55,10,75,95,10,20,35,40,20,15,60,40,35,30,35,45,20,30,10,25,20,75,10,65,35,20,70,125,20,35,30,120,90,15,45,55,40,10,40,20,0,60,25,10,20,0,25,70,60,75,60,0,20,70,115,35,30,70,35,30,85,0,20,50,20,30,195,30,55,20,20,20,20,100,45,45,45,45,20,55,25,50,60,10 -1846,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Health and related fields,127480,900,980,505,1295,1560,930,2260,1310,670,1440,370,1385,940,850,280,840,605,510,765,545,400,480,590,1855,1345,1170,570,365,395,685,1460,1290,1170,1680,410,920,640,1150,415,1370,745,455,1010,985,605,1185,555,400,840,1060,1055,570,715,395,385,685,830,745,2015,630,400,910,740,920,350,355,1825,940,675,860,850,510,470,2155,490,395,685,1675,1125,860,635,1455,805,1555,490,860,1610,1860,515,1005,555,1035,710,420,430,1710,475,315,760,540,430,400,695,485,830,2090,400,405,840,1125,1000,1210,710,1145,1155,615,990,370,860,515,205,875,3565,1370,1640,1860,775,300,1255,2850,900,725,2400,580,285,540,590,540,1300,575 -1847,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 31. Parks, recreation, leisure and fitness studies",9420,40,50,55,150,110,55,75,70,55,90,10,45,105,30,20,60,45,60,30,55,20,20,65,100,50,90,65,50,45,85,85,40,170,25,45,135,40,20,20,60,80,50,30,65,40,70,80,75,50,115,115,70,40,25,20,15,90,10,165,75,25,45,65,50,45,30,70,70,65,70,135,80,60,105,0,50,55,205,30,50,20,30,85,155,60,65,55,300,45,50,25,75,75,75,85,125,45,40,55,50,40,25,55,65,70,75,75,10,30,105,100,40,45,135,55,30,185,0,30,50,25,25,465,30,80,80,65,25,80,180,65,80,95,120,30,60,60,80,70,10 -1848,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 51. Health professions and related programs,112435,835,900,440,1005,1340,850,1825,1150,600,1205,345,1315,825,805,260,775,420,455,730,440,380,425,515,1570,1280,1030,485,300,345,580,1340,1225,955,1620,350,750,570,1130,395,1235,630,410,960,845,435,1130,465,320,725,930,870,470,630,365,360,650,695,725,1770,540,370,875,640,835,285,315,1725,785,535,660,635,400,375,2055,480,345,640,1445,1065,755,635,1390,640,1300,415,735,1470,1465,430,930,530,935,640,340,325,1515,425,265,695,445,370,370,635,400,655,1990,300,405,805,1005,855,975,665,965,1095,580,735,360,795,400,160,825,2835,1325,1510,1715,695,280,1160,2385,790,630,2255,445,250,445,465,430,1220,545 -1849,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 60. Dental, medical and veterinary residency programs",5620,35,30,15,140,115,15,370,95,15,155,20,20,20,0,10,10,135,0,10,45,10,30,0,170,20,55,15,10,0,25,50,10,50,20,0,30,45,10,10,75,15,10,20,85,130,0,0,0,50,25,55,20,35,0,10,20,40,0,80,10,10,0,50,20,20,10,20,80,60,125,80,35,25,10,0,10,0,45,10,45,0,35,80,105,20,70,75,90,30,10,15,40,10,0,25,65,0,10,10,40,25,0,0,10,100,20,35,0,0,20,20,190,10,30,10,0,75,10,30,60,25,10,240,20,50,60,20,0,20,290,40,0,65,20,10,30,60,50,20,0 -1850,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 12. Personal and culinary services,24945,230,180,80,250,160,150,105,165,115,135,100,205,190,230,75,155,40,170,280,140,135,50,85,455,240,110,120,195,105,135,225,240,415,435,120,190,150,215,120,185,180,85,150,95,55,315,175,55,115,210,175,75,120,95,145,145,90,140,445,165,125,200,160,175,40,50,350,70,40,45,75,190,80,385,90,80,195,450,110,290,195,260,100,325,135,145,205,430,50,290,100,265,240,75,145,340,115,55,100,70,100,110,285,160,90,385,40,140,145,425,255,100,145,215,240,160,220,100,120,175,50,170,525,255,245,210,290,115,275,310,70,215,405,130,115,175,70,150,285,200 -1851,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001," 28. Military science, leadership and operational art",155,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,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,10,0,0,0,0,10,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,20,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1852,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 29. Military technologies and applied sciences,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,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,10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0 -1853,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 43. Security and protective services,7280,30,35,115,35,30,50,15,40,35,10,40,70,80,35,20,45,0,55,40,35,25,20,40,50,90,45,50,40,25,65,50,70,65,125,25,60,50,75,40,45,95,35,40,15,10,105,35,35,25,55,50,60,20,35,20,40,35,45,205,30,45,50,35,105,20,20,85,30,20,10,20,35,75,140,45,45,30,210,80,35,50,55,25,80,55,30,80,165,10,60,10,70,60,35,25,115,55,10,25,20,25,40,65,45,10,150,0,20,60,75,70,20,45,95,80,10,55,35,50,25,0,65,205,85,95,80,75,25,70,60,30,60,180,50,35,40,25,15,55,45 -1854,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, 49. Transportation and materials moving,5055,45,50,30,35,20,20,0,40,20,40,25,65,35,60,0,25,0,20,35,20,20,10,20,10,50,45,15,25,0,20,60,100,85,105,25,30,15,75,25,55,65,50,95,25,10,85,30,10,25,100,30,30,20,20,0,55,25,40,100,10,20,35,10,55,10,0,65,20,0,0,10,30,30,100,45,30,30,170,20,40,50,55,30,30,30,45,65,65,0,60,40,30,65,20,10,45,40,0,20,10,20,50,60,30,10,80,25,30,40,55,35,10,15,35,30,45,25,20,35,10,0,25,55,55,85,140,60,10,70,35,10,45,70,10,10,10,0,0,50,35 -1855,Education,Major field of study - Classification of Instructional Programs (CIP) 2016,Census Profile 98-316-X2016001, Other,175,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,10,10,0,0,0,0,0,0,0,10,0,0,0,0,0,10,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,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0 -1856,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001,Total - Location of study compared with province or territory of residence with countries outside Canada for the population aged 15 years and over in private households - 25% sample data,2294790,24995,20400,10270,26300,23390,13265,23940,18725,11155,18560,5260,24615,18345,16965,6280,12355,7750,9880,14345,10195,8420,9640,11195,29100,21740,13660,13255,12200,7945,14060,22760,20130,31755,29270,10430,17295,13075,18080,7645,17085,15890,9770,17545,10610,9285,24435,11925,8365,13205,18970,19810,10925,14805,8665,10255,12585,12070,11295,37415,12000,9430,14330,16150,17745,7595,6280,37390,13650,11285,12260,13360,13655,8725,35875,8365,9110,22370,29835,14275,17025,10865,25735,13785,26550,9675,13950,20830,28395,9740,16075,10755,17835,15395,7745,12490,28890,8970,6490,13750,9270,9045,8720,18735,12565,18005,38105,8020,7825,13075,18595,23140,15045,21120,20840,23145,12530,17615,8400,15245,14485,6175,14555,61995,22400,27835,22720,14610,9425,23335,44325,14860,18585,43395,10105,6685,11380,9995,11105,23530,12060 -1857,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001," No postsecondary certificate, diploma or degree",938430,13995,10125,4960,5875,7455,5060,6445,4985,3685,5800,3125,12360,8185,11615,2525,5630,2115,3955,8415,2835,5095,2180,4115,6735,10395,4985,6095,6270,3115,5540,7725,9970,14430,16955,4280,6200,4905,9555,4490,7010,6655,4445,8670,3070,2290,16765,4665,3300,3975,4760,4960,4810,5260,3860,6485,7460,3350,5640,12875,4210,6310,7400,7050,9665,1845,2070,18620,3795,2625,2760,3480,5165,3660,18920,4780,3320,13440,9980,6805,5090,6205,15670,3310,5975,4115,4490,7965,5090,2890,5850,5280,8635,7135,3270,4220,11815,4845,1835,5845,2960,4200,4640,11160,4525,3915,18335,2350,4970,6745,7580,8860,4575,11210,7300,10820,5095,4880,4415,7195,6390,1710,6710,10260,11415,14410,8290,7815,5690,11625,11690,4545,8650,22035,3485,2770,4150,2010,2275,12100,6820 -1858,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001," Postsecondary certificate, diploma or degree",1356360,10995,10280,5305,20430,15940,8210,17490,13745,7465,12765,2130,12265,10170,5350,3760,6725,5630,5920,5925,7365,3320,7465,7080,22370,11360,8675,7165,5920,4835,8510,15030,10160,17330,12310,6145,11095,8175,8500,3155,10075,9245,5325,8870,7540,6995,7660,7255,5065,9235,14210,14845,6105,9540,4800,3780,5120,8720,5655,24545,7790,3120,6930,9100,8080,5735,4215,18765,9860,8655,9505,9885,8490,5060,16950,3590,5790,8935,19850,7480,11935,4665,10070,10475,20580,5570,9460,12865,23310,6845,10220,5465,9215,8260,4475,8285,17090,4130,4660,7910,6315,4840,4090,7575,8055,14085,19790,5670,2855,6330,11015,14265,10460,9920,13550,12330,7440,12750,3985,8045,8095,4460,7845,51735,10980,13435,14445,6795,3730,11705,32650,10315,9935,21380,6610,3915,7225,7995,8825,11430,5240 -1859,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Location of study inside Canada,929295,6305,5930,4230,15545,10240,4940,12200,8195,4230,9555,1450,7575,8125,3670,3140,3850,3970,4205,4120,5625,2295,5790,5315,16605,6820,5425,5240,4715,3965,6995,7415,5610,14260,8240,4920,8850,6010,4765,2320,5830,6275,3415,4470,4985,5305,5470,5960,3990,4675,10160,11790,4125,4785,3465,2495,3185,6495,3015,16805,6295,2165,4090,7035,5465,4820,3155,10670,6495,7035,7640,8240,7260,3715,10250,2440,4200,5175,14460,4895,9405,3140,5440,8015,14295,4025,5265,6050,19125,5695,5645,2840,6590,6100,3550,6905,10560,3255,3880,4425,5040,3550,2780,5680,6450,10450,13545,4725,2255,3830,8285,11905,6620,5410,10240,6720,3560,10455,2520,3460,6810,3445,4865,39970,7340,8105,5440,4950,2875,7395,18275,5990,6985,11825,5585,3260,5900,6085,6720,7125,3765 -1860,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Same as province or territory of residence,844385,5945,5690,3960,13000,9215,4585,10530,7375,3915,8400,1425,7255,7590,3585,2695,3635,3380,3775,3960,4845,2200,4815,5050,14390,6460,5040,5005,4250,3550,6330,6830,5415,12610,7990,4295,7905,5590,4580,2205,5370,5990,3255,4170,4470,4595,5335,5295,3680,4240,8940,10280,3955,4430,3285,2435,3125,5775,2890,15690,5570,2130,3920,6270,5265,4165,2840,10165,5930,6245,6660,7215,6060,3485,9960,2385,3860,4975,13095,4715,8040,3040,5325,6985,12415,3750,4860,5725,16335,4915,5055,2675,6000,5705,3280,5885,9755,3170,3335,4170,4760,3210,2710,5300,5400,8760,13045,4215,2220,3645,7280,10370,5960,5025,9385,6390,3260,9025,2430,3165,5925,2965,4645,34590,7050,7810,5000,4710,2615,7115,16530,5450,6625,11325,4790,2985,5305,5340,5810,6865,3570 -1861,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Different than province or territory of residence,84910,360,250,280,2545,1030,355,1670,835,320,1150,30,320,525,85,440,215,590,435,155,775,100,980,265,2215,355,385,230,460,415,675,590,200,1665,255,615,940,420,205,115,460,285,160,290,515,710,135,660,315,440,1220,1510,170,360,185,55,55,720,120,1110,725,30,170,770,205,655,310,510,565,780,980,1035,1200,240,295,55,340,190,1370,175,1370,100,120,1025,1875,265,405,335,2790,770,585,170,590,400,265,1020,805,85,540,260,275,345,70,385,1050,1665,495,515,45,190,1005,1535,660,385,840,345,300,1440,95,310,900,485,230,5390,290,290,435,230,265,280,1740,540,370,500,805,280,595,745,905,260,185 -1862,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Location of study outside Canada,427060,4690,4345,1070,4875,5700,3260,5300,5545,3240,3205,685,4675,2050,1685,625,2875,1665,1715,1810,1740,1020,1670,1765,5755,4545,3250,1925,1210,875,1515,7615,4550,3055,4060,1225,2240,2160,3735,830,4255,2960,1910,4415,2555,1690,2180,1300,1070,4555,4050,3055,1990,4745,1325,1285,1940,2225,2645,7740,1500,960,2835,2060,2605,915,1055,8090,3370,1625,1875,1645,1230,1340,6695,1145,1590,3775,5395,2580,2530,1525,4635,2455,6285,1545,4195,6815,4185,1150,4575,2620,2610,2155,920,1375,6520,875,780,3480,1280,1290,1310,1895,1595,3645,6240,950,595,2490,2720,2365,3840,4525,3315,5595,3880,2285,1460,4585,1270,1015,2975,11770,3630,5325,9000,1840,855,4310,14365,4330,2950,9555,1030,655,1330,1915,2100,4300,1470 -1863,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, United States,45385,235,205,100,1675,650,170,955,485,310,770,35,245,345,75,110,95,440,150,50,370,70,595,130,1065,210,335,165,185,210,240,395,190,505,160,165,320,295,110,55,670,160,105,200,390,550,125,250,145,220,625,660,170,360,135,25,40,375,90,670,275,50,80,260,140,275,195,305,405,455,645,485,290,165,315,25,165,195,685,155,485,95,130,525,780,170,305,245,1020,410,205,135,290,200,120,395,460,60,205,215,215,85,60,105,400,1135,375,250,20,105,230,600,535,280,420,255,170,670,60,245,360,300,155,2455,175,105,270,115,65,200,1265,350,200,280,285,70,320,465,570,130,135 -1864,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Philippines,58780,600,485,180,65,460,900,175,275,70,785,180,985,270,390,20,1215,50,230,520,170,350,25,285,270,1105,1470,265,90,0,145,880,1370,135,1785,60,300,100,1105,135,1805,165,220,850,705,150,560,80,185,500,140,80,285,110,50,130,355,735,830,775,205,330,1025,165,205,25,70,1085,425,105,105,100,10,110,1620,510,40,465,340,645,120,345,265,150,405,175,240,1830,170,40,1215,250,820,395,185,30,755,170,20,205,40,75,250,265,100,95,1455,70,125,405,530,150,170,300,140,870,190,70,115,635,20,25,495,390,940,540,2535,245,115,1210,410,130,225,1450,65,90,140,110,65,1040,415 -1865,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, India,42320,485,705,60,110,315,90,300,260,125,40,20,690,90,75,20,60,20,85,100,65,25,35,225,650,395,85,145,25,60,40,645,705,140,245,50,105,65,740,50,65,245,190,725,15,20,190,125,55,1190,210,95,440,310,35,400,330,0,650,805,45,25,245,50,340,25,0,835,230,15,40,45,40,55,1460,260,35,335,400,495,175,30,2305,70,570,140,175,195,240,35,800,270,75,125,25,0,345,90,25,195,90,65,190,100,110,55,1380,15,40,395,380,100,140,265,160,795,615,45,520,495,10,75,330,1110,450,2675,115,45,25,350,930,195,360,3645,10,15,35,100,95,575,80 -1866,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, United Kingdom,28745,260,195,50,680,525,80,490,300,235,340,20,195,295,45,110,25,245,145,35,330,35,240,230,590,170,75,155,90,150,155,390,120,305,70,185,270,185,80,40,165,170,45,160,100,230,30,145,170,140,370,390,145,170,60,25,55,200,55,335,195,25,115,215,140,155,180,355,165,280,310,295,175,95,250,10,125,155,390,125,315,65,115,395,655,100,195,175,610,240,130,75,140,100,90,230,385,30,180,150,120,50,45,90,240,730,435,150,20,95,175,370,255,140,285,210,135,605,35,130,210,150,145,1445,165,185,115,85,50,125,550,200,170,305,195,75,125,215,335,100,35 -1867,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, China,35470,1405,1375,25,190,715,145,600,755,835,90,0,565,70,30,70,30,200,55,45,65,30,65,50,215,330,80,130,40,30,115,1545,460,200,60,80,115,40,120,10,65,150,60,225,70,60,20,115,25,460,100,55,75,1870,0,10,10,25,70,315,110,0,115,420,80,10,20,2530,150,35,75,70,95,15,325,0,25,1275,235,90,80,15,15,45,190,75,610,280,180,50,135,35,90,85,60,60,535,10,10,1335,125,210,10,30,45,125,110,30,0,70,45,290,645,2105,35,1400,115,0,0,50,115,70,105,630,70,70,120,55,25,510,2260,445,70,500,20,45,60,75,65,240,135 -1868,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, France,4875,10,10,0,205,75,30,65,65,30,50,0,10,30,0,40,30,40,35,30,55,15,30,0,190,15,50,10,25,20,30,45,10,100,40,55,20,0,0,0,25,10,20,0,50,30,0,30,10,20,95,75,0,10,0,0,0,45,30,75,25,20,10,60,10,10,15,0,25,15,55,30,45,10,0,0,10,10,75,10,85,0,0,35,100,0,40,0,125,25,65,10,50,10,10,45,60,0,45,20,20,30,10,0,45,125,10,15,0,30,65,50,65,0,40,20,10,85,0,10,65,25,55,400,10,10,35,30,10,30,145,80,0,10,20,20,25,70,50,15,20 -1869,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Other,211490,1695,1385,650,1960,2960,1860,2710,3420,1635,1115,435,1980,965,1070,245,1415,670,1010,1055,675,505,690,850,2770,2325,1160,1040,740,395,775,3710,1725,1665,1705,635,1115,1470,1580,545,1470,2065,1265,2240,1235,645,1260,565,480,2035,2520,1715,880,1905,1035,685,1155,855,930,4775,640,495,1250,905,1695,410,570,2975,1960,705,625,630,590,895,2715,340,1190,1335,3305,1060,1280,960,1805,1220,3560,905,2640,4075,1860,355,2010,1835,1140,1255,450,590,3965,525,305,1375,675,775,755,1295,665,1385,2485,415,380,1380,1290,800,2030,1435,2255,2060,2640,810,720,3030,475,360,1665,5345,1795,1715,5800,1275,535,1905,8800,2940,1905,3315,415,355,645,865,900,2180,655 -1870,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001,Total - Location of study compared with province or territory of residence with countries outside Canada for the population aged 25 to 64 years in private households - 25% sample data,1554815,15455,13160,6970,17915,14330,8710,14760,12835,6290,11360,3560,15445,12535,11025,4510,8605,4545,7070,9720,7200,5925,5925,6960,21530,15045,9365,8470,8635,5540,9990,15000,13830,23465,19335,7860,12630,8290,11900,4925,10745,9760,6610,11540,7100,5800,15085,9005,4885,9425,14155,14395,6610,8330,5280,6200,8150,8645,7655,26050,9075,6235,9570,10340,11130,4620,4350,23190,9470,7685,8060,8780,10585,6210,23440,5380,5325,14540,21875,9145,13430,7590,17015,9645,20130,6760,8940,13480,24620,6985,12230,7615,12065,10410,5375,9070,19030,6015,4640,8460,5640,6555,5760,12350,9620,10895,25105,5820,4720,8675,14265,17850,9330,12965,14260,14180,9315,12625,5360,10650,10650,3965,9445,49585,14570,17695,14345,10185,6655,15395,31260,9505,11105,28060,7705,4940,7910,7180,7395,15190,7560 -1871,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001," No postsecondary certificate, diploma or degree",476875,7575,5275,2615,2515,2875,2315,1535,2085,1215,1955,1800,6080,4395,6745,1265,3065,545,2135,4955,1445,3110,825,1715,3500,5475,2215,2995,3550,1445,2665,3315,5495,8400,9365,2430,3255,2165,5080,2440,2990,2885,2290,4525,1370,870,9120,2660,1390,1850,2325,2305,2240,1650,1730,3265,4085,1630,3065,6400,2335,3770,4045,3355,4900,510,905,9405,1510,785,815,1200,3090,2060,10330,2405,1240,8160,5665,3540,3245,3775,9075,1265,3110,2175,1660,3615,3325,1345,3450,3075,4380,3720,1635,2040,5615,2615,800,2315,1090,2480,2520,6330,2620,1365,9770,955,2470,3710,4930,5295,1730,5900,3340,5040,2895,2315,2310,3985,3405,640,3345,5725,6120,7355,3735,4685,3535,6020,4545,1690,3900,11525,1885,1545,2015,820,1040,6125,3375 -1872,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001," Postsecondary certificate, diploma or degree",1077935,7870,7890,4350,15390,11455,6390,13230,10745,5075,9405,1760,9370,8135,4265,3250,5540,4005,4935,4770,5755,2820,5095,5245,18030,9570,7145,5485,5085,4085,7315,11680,8335,15060,9975,5420,9375,6125,6815,2480,7745,6870,4320,7020,5740,4935,5955,6350,3505,7575,11835,12090,4370,6685,3550,2925,4060,7015,4600,19670,6745,2465,5515,6975,6220,4100,3450,13785,7960,6895,7255,7590,7505,4150,13105,2975,4090,6380,16205,5600,10185,3825,7940,8370,17035,4575,7290,9865,21305,5645,8790,4540,7680,6690,3740,7035,13385,3405,3845,6150,4550,4075,3240,6015,6990,9535,15330,4870,2250,4950,9325,12555,7600,7070,10935,9150,6430,10310,3055,6665,7240,3325,6105,43870,8445,10330,10610,5510,3115,9380,26730,7815,7205,16525,5825,3390,5900,6360,6355,9055,4185 -1873,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Location of study inside Canada,739730,4585,4520,3595,11795,7460,3890,8890,6335,2735,6995,1205,5710,6585,2945,2770,3150,2840,3595,3255,4515,1925,4000,3985,13225,5560,4455,4005,4080,3440,6205,5580,4485,12475,6585,4400,7500,4600,3720,1845,4405,4665,2760,3410,3640,3720,4230,5345,2815,3705,8520,9825,3090,3225,2525,1855,2430,5185,2375,13530,5485,1705,3210,5465,4170,3465,2635,7695,5210,5645,5795,6305,6395,3075,7755,2000,2995,3800,12030,3555,8105,2530,4000,6580,11855,3385,4010,4550,17535,4765,4725,2225,5570,4880,3035,5890,8135,2675,3310,3320,3615,2945,2205,4530,5710,7165,10490,4100,1770,2885,7150,10630,4635,4050,8300,4870,2910,8495,1875,2645,6105,2580,3775,33855,5600,6060,4005,3970,2425,5815,14965,4675,5045,8700,4960,2865,4900,4840,4815,5585,3005 -1874,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Same as province or territory of residence,671335,4315,4355,3360,9875,6780,3620,7575,5770,2580,6100,1180,5455,6135,2900,2390,2990,2380,3235,3125,3860,1850,3320,3810,11430,5265,4145,3795,3650,3065,5585,5160,4315,10965,6400,3835,6705,4335,3570,1745,4095,4475,2610,3180,3280,3195,4130,4740,2640,3300,7505,8555,2970,3060,2405,1805,2370,4680,2275,12640,4840,1685,3080,4865,4035,3030,2365,7365,4795,4995,5075,5480,5300,2885,7530,1955,2785,3650,10910,3435,6910,2450,3920,5740,10360,3165,3700,4330,14975,4100,4225,2100,5045,4575,2850,4980,7570,2605,2835,3115,3435,2645,2140,4225,4755,6020,10150,3645,1740,2750,6290,9215,4135,3750,7595,4640,2645,7280,1805,2405,5275,2230,3605,29240,5405,5855,3680,3785,2190,5610,13530,4250,4825,8335,4250,2605,4385,4255,4175,5355,2860 -1875,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Different than province or territory of residence,68395,270,170,235,1925,690,265,1330,565,155,895,30,260,445,35,380,165,450,355,140,650,80,670,175,1795,300,310,195,430,375,615,410,170,1505,200,565,795,265,150,95,310,185,150,220,365,515,100,610,180,410,1015,1265,125,165,130,40,55,510,105,900,640,30,120,595,140,430,275,330,420,635,715,825,1095,190,230,45,210,145,1115,125,1195,90,75,840,1495,225,320,220,2545,665,495,130,525,295,200,905,560,75,480,205,185,305,65,305,970,1150,340,450,35,125,855,1430,495,305,705,240,265,1210,65,250,825,350,170,4615,200,195,325,180,240,215,1435,420,240,375,700,250,515,585,640,230,145 -1876,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Location of study outside Canada,338205,3290,3370,755,3590,3985,2505,4330,4410,2345,2400,550,3655,1550,1330,480,2385,1155,1345,1505,1235,890,1100,1260,4810,4010,2685,1490,1000,650,1115,6110,3845,2585,3385,1030,1875,1515,3100,635,3350,2200,1555,3605,2100,1220,1725,1000,690,3870,3300,2275,1275,3445,1020,1080,1640,1840,2215,6125,1245,760,2310,1510,2050,640,820,6095,2745,1260,1450,1270,1105,1070,5345,975,1100,2575,4185,2035,2085,1290,3945,1790,5160,1200,3280,5325,3765,880,4065,2300,2120,1820,695,1140,5265,725,545,2825,920,1130,1030,1490,1290,2365,4825,775,475,2070,2190,1910,2960,3020,2625,4265,3520,1815,1180,4025,1130,740,2320,10000,2850,4280,6605,1540,695,3555,11760,3145,2150,7820,865,525,1000,1525,1540,3460,1190 -1877,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, United States,35025,180,155,90,1155,440,160,790,320,185,590,25,220,285,70,85,75,275,105,35,255,60,390,115,825,200,265,105,165,160,200,300,150,450,125,145,275,220,100,45,500,125,90,130,280,365,80,195,80,170,535,495,115,215,100,25,35,300,65,500,215,35,55,195,100,180,160,200,315,365,500,400,275,130,275,20,60,130,525,100,390,90,100,390,590,150,230,190,955,285,185,105,240,155,105,345,300,50,150,165,170,85,45,60,350,630,285,235,20,85,195,530,390,190,360,190,160,510,40,180,335,240,125,2130,135,90,180,100,50,155,1015,255,150,250,275,65,255,320,385,120,90 -1878,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Philippines,50685,375,355,140,55,370,805,145,250,60,780,160,820,215,370,20,1090,35,195,470,120,335,15,245,220,1010,1380,210,85,10,95,790,1165,105,1640,50,260,90,920,140,1700,145,195,755,640,150,510,55,170,420,135,55,165,95,45,115,325,645,725,705,170,285,830,120,190,45,60,920,390,105,100,85,0,85,1330,480,30,295,245,555,75,330,195,110,325,150,240,1645,130,35,1085,195,735,375,145,10,685,155,10,185,20,70,205,255,65,90,1175,50,110,320,390,95,155,225,120,755,170,70,105,540,20,40,425,280,800,450,2310,205,110,1020,330,95,185,1240,60,75,135,100,65,935,400 -1879,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, India,36085,400,530,50,85,205,80,265,205,95,20,15,605,65,65,15,45,15,80,85,40,20,20,185,610,360,60,125,25,30,30,475,650,100,195,25,95,30,685,40,45,200,160,635,10,15,145,105,40,1050,175,70,280,245,30,360,280,10,605,725,65,30,220,25,235,25,10,655,205,10,40,30,30,45,1230,220,20,245,370,460,135,25,2090,55,540,100,125,165,215,25,750,215,60,70,15,10,330,90,20,135,55,55,160,90,75,65,1180,10,15,360,350,65,115,160,145,670,550,20,475,435,10,35,245,1000,380,2275,95,55,20,310,875,170,305,3185,30,10,20,105,80,390,60 -1880,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, United Kingdom,18570,105,130,35,485,250,40,335,200,130,170,10,95,165,30,75,10,130,105,20,195,20,145,125,440,90,55,85,75,120,120,235,85,255,45,150,215,55,40,25,95,55,30,95,45,135,30,115,60,105,270,255,85,110,35,20,40,140,20,190,165,15,80,185,80,90,135,195,85,205,230,155,160,50,125,15,40,105,210,60,245,40,70,215,460,70,130,110,555,175,95,55,125,65,30,190,200,20,125,105,70,50,10,40,205,400,225,125,25,50,140,295,150,75,175,95,110,475,10,80,175,100,60,1140,60,105,60,50,45,50,405,90,75,190,140,65,120,155,195,65,20 -1881,Labour,Labour force status,Census Profile 98-316-X2016001, Not in the labour force,"811,110","11,130","8,345","3,440","7,740","9,370","4,640","8,950","6,845","4,940","6,715","2,135","10,335","6,355","7,655","2,200","4,005","3,230","3,300","5,240","2,925","2,875","3,160","4,010","7,240","7,545","4,380","5,045","3,890","2,510","4,640","8,885","7,415","9,420","11,210","2,870","5,170","4,650","7,385","3,005","6,330","5,795","3,355","7,625","3,085","3,175","10,985","3,670","3,390","4,600","5,265","5,290","4,270","6,870","3,540","4,505","4,950","3,175","4,380","11,725","3,110","3,780","5,810","6,045","7,475","2,805","2,080","16,235","4,450","3,335","3,895","4,215","3,005","2,565","13,610","3,220","3,665","10,185","8,685","5,510","4,700","3,970","10,975","4,055","6,765","3,220","5,875","8,390","3,795","2,575","5,225","4,605","6,120","5,820","2,625","3,220","10,645","3,100","1,815","5,640","3,395","3,375","3,240","7,525","3,550","6,490","13,485","2,200","3,720","5,535","5,455","6,600","5,795","10,085","6,790","10,225","4,595","4,920","3,335","6,760","4,440","1,760","5,940","10,885","9,300","9,995","8,660","5,530","3,455","8,995","17,275","6,250","7,715","18,215","2,835","2,000","3,510","2,680","3,395","8,705","4,825" -1882,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, China,29545,1120,1230,10,140,615,135,470,665,715,80,0,425,40,20,45,30,185,40,45,60,30,45,45,165,290,75,115,35,15,75,1345,415,175,55,75,65,30,110,10,55,140,65,160,60,70,10,85,25,375,105,60,70,1550,0,10,15,20,65,255,95,0,60,260,70,15,0,2160,120,40,60,80,80,10,280,0,30,1030,195,90,60,15,10,30,185,60,505,245,160,45,125,40,70,60,45,25,465,0,0,1175,95,150,10,30,25,110,105,20,0,65,45,205,585,1605,25,1135,100,0,0,45,115,45,85,490,70,70,105,40,30,435,1915,370,70,410,20,20,45,55,65,200,115 -1883,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, France,4050,0,0,0,170,40,20,65,30,10,30,0,0,25,0,30,20,50,35,20,50,10,10,10,190,10,35,20,45,10,25,45,0,80,0,50,20,0,20,0,10,0,10,10,40,30,0,20,10,0,90,60,0,20,10,0,0,50,30,65,10,20,10,60,10,10,30,10,35,25,50,30,45,0,0,0,20,0,55,0,70,0,0,35,60,0,30,10,115,15,50,10,45,20,10,55,40,0,30,10,10,20,0,10,30,100,10,10,0,30,70,45,40,0,30,10,10,70,10,0,60,25,45,335,10,10,10,10,25,30,145,50,0,10,30,10,10,70,45,10,10 -1884,Education,Location of study compared with province or territory of residence with countries outside Canada,Census Profile 98-316-X2016001, Other,164240,1090,975,435,1490,2080,1280,2280,2725,1155,720,345,1475,745,805,205,1120,470,785,855,505,420,450,545,2385,2025,810,825,590,295,585,2920,1390,1395,1315,540,940,1085,1255,385,945,1535,1000,1825,1025,475,940,420,320,1740,2000,1295,575,1215,825,545,950,680,725,3700,510,355,1035,675,1370,295,435,1950,1595,510,505,525,510,730,2120,250,905,790,2585,795,1115,780,1470,935,2965,685,2020,2960,1625,300,1785,1695,845,1065,340,500,3250,405,175,1055,480,700,600,1000,530,975,1850,325,300,1165,1020,660,1530,770,1760,1415,2410,655,535,2730,415,260,1340,4615,1390,1280,3865,1070,435,1540,7115,2110,1375,2525,345,275,415,720,690,1740,505 -1885,Labour,Labour force status,Census Profile 98-316-X2016001,Total - Population aged 15 years and over by Labour force status - 25% sample data,"2,294,790","25,005","20,400","10,265","26,295","23,395","13,265","23,940","18,735","11,150","18,560","5,250","24,620","18,350","16,965","6,280","12,360","7,750","9,885","14,345","10,200","8,420","9,640","11,190","29,095","21,740","13,660","13,255","12,200","7,945","14,055","22,750","20,125","31,755","29,265","10,430","17,290","13,075","18,065","7,640","17,080","15,895","9,770","17,530","10,610","9,280","24,425","11,925","8,360","13,205","18,985","19,815","10,925","14,800","8,655","10,250","12,580","12,065","11,295","37,415","12,000","9,425","14,320","16,145","17,745","7,580","6,290","37,385","13,650","11,280","12,270","13,360","13,650","8,725","35,880","8,375","9,110","22,375","29,835","14,280","17,025","10,865","25,735","13,780","26,560","9,680","13,955","20,835","28,390","9,740","16,075","10,750","17,845","15,395","7,745","12,500","28,895","8,975","6,490","13,765","9,280","9,045","8,725","18,740","12,575","18,005","38,110","8,020","7,820","13,075","18,590","23,155","15,045","21,125","20,845","23,150","12,535","17,615","8,395","15,250","14,490","6,165","14,550","61,995","22,395","27,850","22,725","14,605","9,420","23,335","44,325","14,860","18,580","43,400","10,110","6,685","11,385","9,995","11,105","23,520","12,060" -1886,Labour,Labour force status,Census Profile 98-316-X2016001, In the labour force,"1,483,675","13,865","12,045","6,825","18,560","14,015","8,620","15,000","11,885","6,205","11,835","3,125","14,270","12,000","9,300","4,080","8,350","4,515","6,575","9,105","7,275","5,550","6,475","7,185","21,855","14,195","9,275","8,200","8,310","5,445","9,420","13,880","12,735","22,330","18,045","7,555","12,120","8,420","10,690","4,635","10,760","10,105","6,420","9,910","7,520","6,105","13,440","8,245","4,975","8,605","13,715","14,525","6,655","7,930","5,115","5,755","7,640","8,890","6,905","25,665","8,890","5,645","8,510","10,105","10,265","4,790","4,200","21,145","9,195","7,945","8,365","9,145","10,650","6,160","22,260","5,145","5,445","12,195","21,160","8,760","12,325","6,905","14,765","9,720","19,780","6,460","8,085","12,435","24,595","7,160","10,845","6,150","11,725","9,580","5,115","9,275","18,240","5,870","4,680","8,125","5,875","5,660","5,480","11,215","9,020","11,510","24,645","5,825","4,100","7,540","13,135","16,535","9,255","11,035","14,060","12,910","7,935","12,710","5,060","8,490","10,055","4,405","8,620","51,100","13,100","17,845","14,055","9,075","5,965","14,340","27,075","8,610","10,870","25,180","7,270","4,695","7,875","7,320","7,710","14,815","7,245" -1887,Labour,Labour force status,Census Profile 98-316-X2016001, Employed,"1,361,375","12,510","10,855","6,405","17,305","13,010","8,000","13,455","10,965","5,720","11,185","2,765","13,020","10,945","8,115","3,740","7,635","4,155","6,035","8,195","6,695","5,145","6,055","6,635","19,990","12,960","8,710","7,410","7,710","5,105","8,770","12,540","11,495","20,710","16,630","6,995","11,125","7,915","9,540","4,175","9,805","9,355","5,915","8,865","6,960","5,765","11,895","7,660","4,575","7,720","12,740","13,650","6,095","7,270","4,745","5,200","6,865","8,265","6,295","23,805","8,390","5,155","7,730","9,290","9,245","4,440","3,885","18,855","8,530","7,435","7,740","8,510","9,965","5,725","19,925","4,735","5,115","11,035","19,865","7,770","11,485","6,150","12,975","9,050","18,450","5,895","7,375","11,390","23,490","6,780","9,715","5,250","10,920","8,620","4,870","8,640","16,565","5,520","4,385","7,315","5,520","5,120","4,880","10,180","8,415","10,815","22,625","5,535","3,735","6,560","12,020","15,470","8,475","9,990","13,125","11,730","7,030","11,985","4,540","7,415","9,440","4,035","7,745","48,470","11,585","16,140","12,780","8,105","5,460","13,055","24,770","7,760","9,940","22,505","6,715","4,380","7,470","6,815","7,245","13,235","6,670" -1888,Labour,Labour force status,Census Profile 98-316-X2016001, Unemployed,"122,305","1,360","1,185",415,"1,250","1,010",620,"1,535",910,495,650,355,"1,255","1,055","1,180",345,725,360,540,915,585,400,425,545,"1,865","1,240",565,795,600,340,650,"1,330","1,230","1,610","1,420",565,990,510,"1,155",465,955,750,505,"1,050",560,340,"1,550",595,395,890,970,865,565,660,380,555,780,630,610,"1,870",500,485,775,825,"1,020",360,320,"2,300",665,505,625,635,685,440,"2,335",415,335,"1,160","1,305",995,845,745,"1,785",670,"1,330",565,710,"1,050","1,110",380,"1,125",900,800,970,255,630,"1,685",355,300,810,355,545,600,"1,030",600,695,"2,010",295,375,980,"1,125","1,070",770,"1,045",935,"1,175",910,725,525,"1,070",610,365,870,"2,640","1,515","1,705","1,290",965,505,"1,285","2,300",845,920,"2,665",560,310,410,505,455,"1,585",580 -1889,Labour,Labour force status,Census Profile 98-316-X2016001,Participation rate,64.7,55.4,59,66.5,70.6,59.9,65,62.7,63.4,55.7,63.8,59.5,58,65.4,54.8,65,67.6,58.3,66.5,63.5,71.3,65.9,67.2,64.2,75.1,65.3,67.9,61.9,68.1,68.5,67,61,63.3,70.3,61.7,72.4,70.1,64.4,59.2,60.7,63,63.6,65.7,56.5,70.9,65.8,55,69.1,59.5,65.2,72.2,73.3,60.9,53.6,59.1,56.1,60.7,73.7,61.1,68.6,74.1,59.9,59.4,62.6,57.8,63.2,66.8,56.6,67.4,70.4,68.2,68.5,78,70.6,62,61.4,59.8,54.5,70.9,61.3,72.4,63.6,57.4,70.5,74.5,66.7,57.9,59.7,86.6,73.5,67.5,57.2,65.7,62.2,66,74.2,63.1,65.4,72.1,59,63.3,62.6,62.8,59.8,71.7,63.9,64.7,72.6,52.4,57.7,70.7,71.4,61.5,52.2,67.5,55.8,63.3,72.2,60.3,55.7,69.4,71.5,59.2,82.4,58.5,64.1,61.8,62.1,63.3,61.5,61.1,57.9,58.5,58,71.9,70.2,69.2,73.2,69.4,63,60.1 -1890,Labour,Labour force status,Census Profile 98-316-X2016001,Employment rate,59.3,50,53.2,62.4,65.8,55.6,60.3,56.2,58.5,51.3,60.3,52.7,52.9,59.6,47.8,59.6,61.8,53.6,61.1,57.1,65.6,61.1,62.8,59.3,68.7,59.6,63.8,55.9,63.2,64.3,62.4,55.1,57.1,65.2,56.8,67.1,64.3,60.5,52.8,54.6,57.4,58.9,60.5,50.6,65.6,62.1,48.7,64.2,54.7,58.5,67.1,68.9,55.8,49.1,54.8,50.7,54.6,68.5,55.7,63.6,69.9,54.7,54,57.5,52.1,58.6,61.8,50.4,62.5,65.9,63.1,63.7,73,65.6,55.5,56.5,56.1,49.3,66.6,54.4,67.5,56.6,50.4,65.7,69.5,60.9,52.8,54.7,82.7,69.6,60.4,48.8,61.2,56,62.9,69.1,57.3,61.5,67.6,53.1,59.5,56.6,55.9,54.3,66.9,60.1,59.4,69,47.8,50.2,64.7,66.8,56.3,47.3,63,50.7,56.1,68,54.1,48.6,65.1,65.5,53.2,78.2,51.7,58,56.2,55.5,58,55.9,55.9,52.2,53.5,51.9,66.4,65.5,65.6,68.2,65.2,56.3,55.3 -1891,Labour,Labour force status,Census Profile 98-316-X2016001,Unemployment rate,8.2,9.8,9.8,6.1,6.7,7.2,7.2,10.2,7.7,8,5.5,11.4,8.8,8.8,12.7,8.5,8.7,8,8.2,10,8,7.2,6.6,7.6,8.5,8.7,6.1,9.7,7.2,6.2,6.9,9.6,9.7,7.2,7.9,7.5,8.2,6.1,10.8,10,8.9,7.4,7.9,10.6,7.4,5.6,11.5,7.2,7.9,10.3,7.1,6,8.5,8.3,7.4,9.6,10.2,7.1,8.8,7.3,5.6,8.6,9.1,8.2,9.9,7.5,7.6,10.9,7.2,6.4,7.5,6.9,6.4,7.1,10.5,8.1,6.2,9.5,6.2,11.4,6.9,10.8,12.1,6.9,6.7,8.7,8.8,8.4,4.5,5.3,10.4,14.6,6.8,10.1,5,6.8,9.2,6,6.4,10,6,9.6,10.9,9.2,6.7,6,8.2,5.1,9.1,13,8.6,6.5,8.3,9.5,6.7,9.1,11.5,5.7,10.4,12.6,6.1,8.3,10.1,5.2,11.6,9.6,9.2,10.6,8.5,9,8.5,9.8,8.5,10.6,7.7,6.6,5.2,6.9,5.9,10.7,8 -1892,Labour,Labour force status,Census Profile 98-316-X2016001,Total - Population aged 15 years and over by Labour force status (Males) - 25% sample data,"1,092,655","11,850","9,935","5,035","12,425","10,705","6,195","11,250","8,700","5,100","8,460","2,395","11,765","8,805","7,755","2,985","5,645","3,670","4,650","6,495","5,720","4,115","4,415","5,350","15,955","10,440","6,310","6,420","5,990","3,900","6,670","10,690","9,360","15,545","13,860","5,115","8,255","6,140","8,290","3,620","7,370","7,560","4,625","8,295","4,670","4,210","11,155","5,725","3,855","6,405","8,855","9,170","5,435","6,745","3,945","4,955","5,970","5,460","5,350","17,755","5,795","4,520","6,860","7,835","8,400","3,520","2,890","17,330","6,425","5,305","5,735","6,275","6,670","4,285","16,965","3,975","4,195","10,655","14,240","6,875","9,225","5,085","12,360","6,280","11,955","4,690","6,620","9,660","13,865","4,665","8,550","5,285","8,355","7,365","3,760","6,000","13,375","4,325","3,180","6,565","4,490","4,605","4,225","9,010","6,120","8,235","18,310","3,780","3,410","6,155","9,220","11,515","7,110","9,990","10,060","10,725","6,095","8,245","4,080","7,350","7,135","3,055","6,650","31,300","10,545","13,815","10,270","6,865","4,685","11,280","20,505","6,915","8,760","20,880","4,790","3,230","5,245","4,635","4,860","11,545","5,585" -1893,Labour,Labour force status,Census Profile 98-316-X2016001, In the labour force (Males),"758,150","7,085","6,340","3,580","9,190","7,085","4,295","7,610","5,950","3,080","5,820","1,495","7,460","6,065","4,730","2,045","4,035","2,505","3,330","4,475","4,255","2,835","3,220","3,545","12,250","7,210","4,405","4,330","4,315","2,735","4,715","7,115","6,535","11,550","9,145","3,955","6,010","4,355","5,370","2,340","4,940","5,015","3,290","5,295","3,585","3,080","6,830","4,125","2,515","4,555","6,840","7,105","3,540","3,935","2,550","3,100","3,925","4,170","3,505","13,080","4,355","2,975","4,340","5,075","5,420","2,470","2,090","10,775","4,625","3,995","4,220","4,695","5,305","3,145","11,545","2,555","2,800","6,455","10,580","4,570","6,780","3,405","7,815","4,730","9,525","3,275","4,150","6,200","12,290","3,605","6,195","3,295","5,870","4,935","2,620","4,560","9,180","2,985","2,385","4,295","3,080","3,115","2,800","5,750","4,530","5,875","12,680","2,830","1,940","3,775","6,655","8,495","4,740","5,720","7,225","6,745","4,320","6,190","2,660","5,130","5,120","2,240","4,315","26,935","6,475","9,475","7,000","4,605","3,110","7,510","13,645","4,470","5,660","13,420","3,540","2,380","3,845","3,560","3,735","7,800","3,600" -1894,Labour,Labour force status,Census Profile 98-316-X2016001, Employed (Males),"697,370","6,460","5,780","3,380","8,560","6,640","4,005","6,880","5,545","2,885","5,495","1,360","6,795","5,530","4,195","1,845","3,695","2,305","3,070","4,025","3,885","2,660","3,020","3,330","11,295","6,625","4,075","3,915","4,005","2,560","4,350","6,440","5,870","10,660","8,400","3,630","5,485","4,110","4,835","2,095","4,475","4,635","3,020","4,735","3,325","2,900","6,105","3,855","2,325","4,130","6,265","6,715","3,225","3,615","2,345","2,800","3,560","3,865","3,225","12,200","4,060","2,715","3,995","4,675","4,945","2,295","1,965","9,700","4,280","3,750","3,855","4,345","4,980","2,915","10,320","2,325","2,630","5,835","9,990","4,070","6,350","3,070","6,920","4,385","8,875","3,025","3,820","5,680","11,775","3,400","5,670","2,820","5,480","4,445","2,490","4,215","8,340","2,795","2,250","3,840","2,875","2,805","2,515","5,250","4,220","5,550","11,645","2,675","1,750","3,290","6,060","7,930","4,375","5,250","6,780","6,105","3,920","5,860","2,400","4,480","4,770","2,040","3,875","25,770","5,735","8,605","6,335","4,135","2,825","6,880","12,625","4,040","5,220","12,120","3,220","2,215","3,615","3,365","3,525","7,025","3,295" -1895,Labour,Labour force status,Census Profile 98-316-X2016001, Unemployed (Males),"60,780",635,555,195,630,450,280,725,405,195,310,135,670,540,535,195,345,200,260,435,370,170,200,220,970,595,330,410,300,175,360,675,660,875,730,310,520,250,525,245,450,370,275,550,260,175,700,275,185,420,565,395,315,320,215,315,370,300,275,885,305,260,350,400,475,180,130,"1,085",350,245,360,360,335,225,"1,225",220,165,620,585,490,430,330,890,345,650,260,330,525,510,205,535,465,405,480,125,345,845,190,145,455,205,305,290,495,320,315,"1,025",155,195,485,600,565,380,480,440,635,400,335,260,655,350,200,430,"1,170",745,870,665,475,285,630,"1,035",430,440,"1,320",315,160,220,195,210,775,300 -1896,Labour,Labour force status,Census Profile 98-316-X2016001, Not in the labour force (Males),"334,505","4,755","3,605","1,460","3,245","3,610","1,905","3,635","2,750","2,015","2,640",900,"4,305","2,745","3,030",945,"1,605","1,170","1,315","2,025","1,465","1,280","1,185","1,800","3,680","3,220","1,910","2,090","1,670","1,160","1,970","3,580","2,820","4,000","4,745","1,165","2,250","1,790","2,935","1,280","2,430","2,555","1,340","3,000","1,075","1,140","4,355","1,600","1,340","1,850","2,015","2,060","1,895","2,820","1,385","1,850","2,045","1,300","1,845","4,660","1,435","1,545","2,510","2,760","2,975","1,040",805,"6,535","1,790","1,315","1,510","1,560","1,365","1,135","5,410","1,435","1,395","4,205","3,655","2,305","2,450","1,675","4,535","1,550","2,410","1,410","2,460","3,450","1,570","1,055","2,345","2,000","2,470","2,440","1,145","1,445","4,195","1,335",795,"2,265","1,405","1,490","1,425","3,250","1,580","2,360","5,635",945,"1,465","2,395","2,565","3,015","2,360","4,280","2,820","3,985","1,770","2,045","1,415","2,225","2,015",820,"2,335","4,370","4,055","4,345","3,270","2,250","1,580","3,775","6,855","2,460","3,105","7,445","1,250",855,"1,405","1,070","1,120","3,740","1,985" -1897,Labour,Labour force status,Census Profile 98-316-X2016001,Participation rate (Males),69.4,59.8,63.8,71.1,74,66.2,69.3,67.6,68.4,60.4,68.8,62.4,63.4,68.9,61,68.5,71.5,68.3,71.6,68.9,74.4,68.9,72.9,66.3,76.8,69.1,69.8,67.4,72,70.1,70.7,66.6,69.8,74.3,66,77.3,72.8,70.9,64.8,64.6,67,66.3,71.1,63.8,76.8,73.2,61.2,72.1,65.2,71.1,77.2,77.5,65.1,58.3,64.6,62.6,65.7,76.4,65.5,73.7,75.2,65.8,63.3,64.8,64.5,70.2,72.3,62.2,72,75.3,73.6,74.8,79.5,73.4,68.1,64.3,66.7,60.6,74.3,66.5,73.5,67,63.2,75.3,79.7,69.8,62.7,64.2,88.6,77.3,72.5,62.3,70.3,67,69.7,76,68.6,69,75,65.4,68.6,67.6,66.3,63.8,74,71.3,69.3,74.9,56.9,61.3,72.2,73.8,66.7,57.3,71.8,62.9,70.9,75.1,65.2,69.8,71.8,73.3,64.9,86.1,61.4,68.6,68.2,67.1,66.4,66.6,66.5,64.6,64.6,64.3,73.9,73.7,73.3,76.8,76.9,67.6,64.5 -1898,Labour,Labour force status,Census Profile 98-316-X2016001,Employment rate (Males),63.8,54.5,58.2,67.1,68.9,62,64.6,61.2,63.7,56.6,65,56.8,57.8,62.8,54.1,61.8,65.5,62.8,66,62,67.9,64.6,68.4,62.2,70.8,63.5,64.6,61,66.9,65.6,65.2,60.2,62.7,68.6,60.6,71,66.4,66.9,58.3,57.9,60.7,61.3,65.3,57.1,71.2,68.9,54.7,67.3,60.3,64.5,70.8,73.2,59.3,53.6,59.4,56.5,59.6,70.8,60.3,68.7,70.1,60.1,58.2,59.7,58.9,65.2,68,56,66.6,70.7,67.2,69.2,74.7,68,60.8,58.5,62.7,54.8,70.2,59.2,68.8,60.4,56,69.8,74.2,64.5,57.7,58.8,84.9,72.9,66.3,53.4,65.6,60.4,66.2,70.3,62.4,64.6,70.8,58.5,64,60.9,59.5,58.3,69,67.4,63.6,70.8,51.3,53.5,65.7,68.9,61.5,52.6,67.4,56.9,64.3,71.1,58.8,61,66.9,66.8,58.3,82.3,54.4,62.3,61.7,60.2,60.3,61,61.6,58.4,59.6,58,67.2,68.6,68.9,72.6,72.5,60.8,59 -1899,Labour,Labour force status,Census Profile 98-316-X2016001,Unemployment rate (Males),8,9,8.8,5.4,6.9,6.4,6.5,9.5,6.8,6.3,5.3,9,9,8.9,11.3,9.5,8.6,8,7.8,9.7,8.7,6,6.2,6.2,7.9,8.3,7.5,9.5,7,6.4,7.6,9.5,10.1,7.6,8,7.8,8.7,5.7,9.8,10.5,9.1,7.4,8.4,10.4,7.3,5.7,10.2,6.7,7.4,9.2,8.3,5.6,8.9,8.1,8.4,10.2,9.4,7.2,7.8,6.8,7,8.7,8.1,7.9,8.8,7.3,6.2,10.1,7.6,6.1,8.5,7.7,6.3,7.2,10.6,8.6,5.9,9.6,5.5,10.7,6.3,9.7,11.4,7.3,6.8,7.9,8,8.5,4.1,5.7,8.6,14.1,6.9,9.7,4.8,7.6,9.2,6.4,6.1,10.6,6.7,9.8,10.4,8.6,7.1,5.4,8.1,5.5,10.1,12.8,9,6.7,8,8.4,6.1,9.4,9.3,5.4,9.8,12.8,6.8,8.9,10,4.3,11.5,9.2,9.5,10.3,9.2,8.4,7.6,9.6,7.8,9.8,8.9,6.7,5.7,5.5,5.6,9.9,8.3 -1900,Labour,Labour force status,Census Profile 98-316-X2016001,Total - Population aged 15 years and over by Labour force status (Females) - 25% sample data,"1,202,135","13,150","10,460","5,230","13,865","12,685","7,070","12,695","10,035","6,050","10,100","2,860","12,855","9,545","9,200","3,295","6,715","4,080","5,230","7,850","4,480","4,310","5,220","5,845","13,140","11,305","7,350","6,840","6,210","4,050","7,385","12,055","10,770","16,220","15,380","5,315","9,035","6,935","9,780","4,020","9,725","8,335","5,150","9,240","5,950","5,070","13,265","6,195","4,505","6,805","10,115","10,640","5,490","8,060","4,720","5,305","6,610","6,610","5,940","19,670","6,215","4,915","7,470","8,305","9,350","4,065","3,390","20,045","7,235","5,965","6,545","7,090","6,990","4,435","18,920","4,390","4,920","11,720","15,595","7,405","7,805","5,785","13,385","7,495","14,605","4,990","7,340","11,170","14,535","5,070","7,525","5,460","9,495","8,030","3,990","6,495","15,515","4,650","3,305","7,195","4,785","4,435","4,495","9,725","6,455","9,765","19,795","4,245","4,410","6,915","9,365","11,635","7,925","11,130","10,785","12,415","6,440","9,375","4,315","7,900","7,350","3,110","7,905","30,685","11,855","14,020","12,450","7,745","4,730","12,055","23,830","7,935","9,830","22,530","5,320","3,455","6,135","5,365","6,240","11,980","6,480" -1901,Labour,Labour force status,Census Profile 98-316-X2016001, In the labour force (Females),"725,530","6,770","5,715","3,250","9,375","6,935","4,335","7,375","5,925","3,130","6,035","1,620","6,820","5,930","4,575","2,045","4,315","2,015","3,245","4,640","3,020","2,715","3,250","3,635","9,585","6,985","4,865","3,875","3,995","2,705","4,710","6,750","6,190","10,785","8,895","3,610","6,115","4,075","5,325","2,305","5,815","5,095","3,125","4,610","3,930","3,030","6,620","4,130","2,455","4,055","6,875","7,425","3,120","4,000","2,560","2,645","3,715","4,725","3,405","12,585","4,530","2,665","4,175","5,030","4,845","2,315","2,115","10,355","4,570","3,950","4,155","4,445","5,340","3,020","10,725","2,600","2,655","5,740","10,575","4,190","5,550","3,490","6,940","4,990","10,250","3,180","3,930","6,235","12,305","3,555","4,645","2,860","5,845","4,645","2,505","4,720","9,060","2,880","2,290","3,835","2,805","2,550","2,675","5,460","4,480","5,635","11,960","3,000","2,155","3,775","6,475","8,030","4,495","5,315","6,835","6,180","3,615","6,510","2,400","3,360","4,930","2,175","4,305","24,165","6,620","8,375","7,045","4,470","2,850","6,835","13,420","4,145","5,200","11,750","3,740","2,310","4,025","3,755","3,970","7,015","3,650" -1902,Labour,Labour force status,Census Profile 98-316-X2016001, Employed (Females),"664,005","6,055","5,095","3,030","8,755","6,370","3,990","6,565","5,420","2,830","5,690","1,405","6,235","5,415","3,920","1,895","3,935","1,850","2,965","4,160","2,805","2,485","3,030","3,310","8,690","6,330","4,635","3,495","3,695","2,535","4,415","6,105","5,630","10,055","8,215","3,355","5,625","3,805","4,705","2,080","5,330","4,720","2,900","4,120","3,630","2,860","5,775","3,810","2,250","3,585","6,455","6,945","2,870","3,655","2,395","2,410","3,305","4,400","3,070","11,595","4,325","2,440","3,740","4,620","4,300","2,140","1,915","9,145","4,255","3,685","3,885","4,155","4,995","2,800","9,610","2,395","2,480","5,210","9,850","3,700","5,140","3,080","6,055","4,665","9,570","2,875","3,555","5,700","11,705","3,385","4,060","2,430","5,445","4,155","2,375","4,425","8,225","2,725","2,140","3,470","2,650","2,315","2,375","4,920","4,200","5,265","10,985","2,855","1,990","3,270","5,960","7,530","4,105","4,750","6,335","5,615","3,110","6,115","2,135","2,930","4,675","1,995","3,870","22,695","5,850","7,540","6,430","3,975","2,635","6,185","12,140","3,730","4,740","10,400","3,485","2,160","3,850","3,450","3,720","6,200","3,365" -1903,Labour,Labour force status,Census Profile 98-316-X2016001, Unemployed (Females),"61,525",720,620,220,625,570,335,815,510,305,335,220,580,495,645,150,380,160,280,470,220,225,225,330,895,660,240,380,295,160,295,645,565,740,675,260,480,265,625,215,495,370,225,490,310,165,845,320,205,470,415,475,250,350,165,235,410,330,340,"1,000",200,225,435,420,530,175,195,"1,195",310,255,265,275,345,220,"1,130",200,170,540,725,500,425,415,895,325,680,300,375,530,595,170,590,435,400,485,125,285,845,155,155,360,155,240,310,535,290,375,980,145,170,500,520,515,395,575,485,555,505,390,260,425,260,175,430,"1,470",770,830,625,490,220,645,"1,265",415,475,"1,350",240,155,175,310,245,810,280 -1904,Labour,Labour force status,Census Profile 98-316-X2016001, Not in the labour force (Females),"476,605","6,375","4,750","1,985","4,500","5,750","2,745","5,305","4,100","2,920","4,080","1,235","6,030","3,615","4,630","1,255","2,405","2,065","1,985","3,220","1,465","1,595","1,970","2,215","3,555","4,315","2,475","2,970","2,220","1,345","2,675","5,320","4,580","5,425","6,485","1,700","2,920","2,865","4,455","1,730","3,895","3,250","2,015","4,620","2,020","2,035","6,650","2,065","2,050","2,755","3,235","3,230","2,370","4,055","2,160","2,660","2,895","1,885","2,540","7,070","1,680","2,245","3,310","3,275","4,510","1,750","1,280","9,685","2,670","2,015","2,385","2,650","1,650","1,425","8,185","1,795","2,265","5,975","5,000","3,215","2,245","2,285","6,435","2,500","4,350","1,815","3,410","4,935","2,220","1,505","2,875","2,605","3,645","3,385","1,485","1,775","6,455","1,765","1,015","3,360","1,980","1,890","1,820","4,275","1,970","4,120","7,850","1,250","2,255","3,145","2,885","3,600","3,435","5,805","3,965","6,250","2,825","2,870","1,920","4,535","2,415",945,"3,600","6,525","5,245","5,655","5,395","3,280","1,880","5,215","10,410","3,785","4,615","10,790","1,580","1,145","2,110","1,605","2,265","4,970","2,825" -1905,Labour,Labour force status,Census Profile 98-316-X2016001,Participation rate (Females),60.4,51.5,54.6,62.1,67.6,54.7,61.3,58.1,59,51.7,59.8,56.6,53.1,62.1,49.7,62.1,64.3,49.4,62,59.1,67.4,63,62.3,62.2,72.9,61.8,66.2,56.7,64.3,66.8,63.8,56,57.5,66.5,57.8,67.9,67.7,58.8,54.4,57.3,59.8,61.1,60.7,49.9,66.1,59.8,49.9,66.7,54.5,59.6,68,69.8,56.8,49.6,54.2,49.9,56.2,71.5,57.3,64,72.9,54.2,55.9,60.6,51.8,56.9,62.4,51.7,63.2,66.2,63.5,62.7,76.4,68.1,56.7,59.2,54,49,67.8,56.6,71.1,60.3,51.8,66.6,70.2,63.7,53.5,55.8,84.7,70.1,61.7,52.4,61.6,57.8,62.8,72.7,58.4,61.9,69.3,53.3,58.6,57.5,59.5,56.1,69.4,57.7,60.4,70.7,48.9,54.6,69.1,69,56.7,47.8,63.4,49.8,56.1,69.4,55.6,42.5,67.1,69.9,54.5,78.8,55.8,59.7,56.6,57.7,60.3,56.7,56.3,52.2,52.9,52.2,70.3,66.9,65.6,70,63.6,58.6,56.3 -1906,Labour,Labour force status,Census Profile 98-316-X2016001,Employment rate (Females),55.2,46,48.7,57.9,63.1,50.2,56.4,51.7,54,46.8,56.3,49.1,48.5,56.7,42.6,57.5,58.6,45.3,56.7,53,62.6,57.7,58,56.6,66.1,56,63.1,51.1,59.5,62.6,59.8,50.6,52.3,62,53.4,63.1,62.3,54.9,48.1,51.7,54.8,56.6,56.3,44.6,61,56.4,43.5,61.5,49.9,52.7,63.8,65.3,52.3,45.3,50.7,45.4,50,66.6,51.7,58.9,69.6,49.6,50.1,55.6,46,52.6,56.5,45.6,58.8,61.8,59.4,58.6,71.5,63.1,50.8,54.6,50.4,44.5,63.2,50,65.9,53.2,45.2,62.2,65.5,57.6,48.4,51,80.5,66.8,54,44.5,57.3,51.7,59.5,68.1,53,58.6,64.8,48.2,55.4,52.2,52.8,50.6,65.1,53.9,55.5,67.3,45.1,47.3,63.6,64.7,51.8,42.7,58.7,45.2,48.3,65.2,49.5,37.1,63.6,64.1,49,74,49.3,53.8,51.6,51.3,55.7,51.3,50.9,47,48.2,46.2,65.5,62.5,62.8,64.3,59.6,51.8,51.9 -1907,Labour,Labour force status,Census Profile 98-316-X2016001,Unemployment rate (Females),8.5,10.6,10.8,6.8,6.7,8.2,7.7,11.1,8.6,9.7,5.6,13.6,8.5,8.3,14.1,7.3,8.8,7.9,8.6,10.1,7.3,8.3,6.9,9.1,9.3,9.4,4.9,9.8,7.4,5.9,6.3,9.6,9.1,6.9,7.6,7.2,7.8,6.5,11.7,9.3,8.5,7.3,7.2,10.6,7.9,5.4,12.8,7.7,8.4,11.6,6,6.4,8,8.8,6.4,8.9,11,7,10,7.9,4.4,8.4,10.4,8.3,10.9,7.6,9.2,11.5,6.8,6.5,6.4,6.2,6.5,7.3,10.5,7.7,6.4,9.4,6.9,11.9,7.7,11.9,12.9,6.5,6.6,9.4,9.5,8.5,4.8,4.8,12.7,15.2,6.8,10.4,5,6,9.3,5.4,6.8,9.4,5.5,9.4,11.6,9.8,6.5,6.7,8.2,4.8,7.9,13.2,8,6.4,8.8,10.8,7.1,9,14,6,10.8,12.6,5.3,8,10,6.1,11.6,9.9,8.9,11,7.7,9.4,9.4,10,9.1,11.5,6.4,6.7,4.3,8.3,6.2,11.5,7.7 -1908,Labour,Work activity during the reference year,Census Profile 98-316-X2016001,Total population aged 15 years and over by work activity during the reference year - 25% sample data,"2,294,790","25,000","20,400","10,265","26,305","23,385","13,270","23,940","18,730","11,155","18,565","5,255","24,610","18,350","16,960","6,285","12,360","7,750","9,875","14,350","10,185","8,420","9,635","11,190","29,100","21,735","13,650","13,250","12,200","7,955","14,055","22,760","20,125","31,765","29,275","10,435","17,290","13,070","18,085","7,640","17,085","15,900","9,775","17,535","10,615","9,285","24,415","11,920","8,355","13,210","18,985","19,810","10,925","14,805","8,660","10,260","12,580","12,070","11,300","37,410","12,005","9,425","14,335","16,145","17,750","7,585","6,285","37,380","13,650","11,275","12,270","13,365","13,655","8,725","35,875","8,365","9,110","22,385","29,835","14,280","17,025","10,860","25,735","13,780","26,550","9,675","13,950","20,825","28,395","9,730","16,070","10,750","17,840","15,390","7,740","12,490","28,900","8,975","6,485","13,760","9,270","9,045","8,720","18,730","12,570","18,005","38,125","8,020","7,825","13,080","18,590","23,145","15,050","21,120","20,835","23,155","12,530","17,620","8,395","15,250","14,480","6,170","14,550","61,985","22,395","27,850","22,720","14,605","9,420","23,335","44,330","14,860","18,580","43,390","10,110","6,685","11,385","10,000","11,090","23,525","12,065" -1909,Labour,Work activity during the reference year,Census Profile 98-316-X2016001, Did not work,"791,795","11,060","8,270","3,245","6,925","8,965","4,430","8,590","6,655","4,740","5,905","2,135","10,285","6,115","7,790","2,085","3,950","2,815","3,240","5,300","2,760","2,815","2,785","3,775","6,970","7,580","4,085","4,930","3,770","2,345","4,330","8,920","7,550","9,145","10,945","2,790","5,060","4,245","7,570","3,080","6,215","5,570","3,295","7,835","2,925","2,670","11,370","3,615","3,275","4,590","4,840","4,860","4,095","6,580","3,365","4,510","4,935","2,870","4,320","11,355","2,940","3,745","5,900","5,945","7,425","2,450","1,965","16,560","4,105","2,915","3,360","3,750","2,940","2,475","13,850","3,125","3,395","9,980","8,300","5,765","4,605","3,980","11,185","3,595","6,805","3,050","5,715","8,265","3,490","2,355","5,485","4,820","6,005","5,720","2,500","3,180","10,515","3,055","1,595","5,685","2,905","3,465","3,235","7,435","3,355","5,925","13,090","2,000","3,595","5,680","5,430","6,500","5,355","9,740","6,280","10,145","4,615","4,195","3,300","7,105","4,275","1,700","5,975","10,485","9,405","10,015","8,590","5,565","3,515","8,845","17,005","6,100","7,450","18,610","2,795","1,925","3,345","2,510","3,130","8,915","4,710" -1910,Labour,Work activity during the reference year,Census Profile 98-316-X2016001, Worked,"1,502,995","13,940","12,140","7,015","19,365","14,440","8,840","15,335","12,070","6,415","12,650","3,120","14,335","12,235","9,170","4,200","8,395","4,935","6,640","9,045","7,435","5,600","6,840","7,430","22,115","14,165","9,570","8,325","8,430","5,600","9,725","13,840","12,575","22,600","18,320","7,630","12,235","8,825","10,505","4,565","10,865","10,325","6,480","9,705","7,685","6,615","13,035","8,315","5,085","8,620","14,120","14,945","6,840","8,225","5,295","5,745","7,650","9,190","6,975","26,055","9,060","5,675","8,430","10,205","10,315","5,150","4,310","20,820","9,550","8,370","8,905","9,605","10,715","6,240","22,030","5,240","5,710","12,405","21,535","8,515","12,425","6,890","14,560","10,180","19,750","6,630","8,235","12,570","24,905","7,380","10,590","5,935","11,825","9,675","5,245","9,325","18,390","5,915","4,895","8,075","6,365","5,580","5,490","11,315","9,210","12,080","25,025","6,020","4,230","7,385","13,165","16,640","9,690","11,375","14,565","13,015","7,915","13,435","5,100","8,145","10,205","4,465","8,575","51,500","12,990","17,815","14,125","9,035","5,900","14,500","27,350","8,760","11,135","24,800","7,315","4,770","8,040","7,485","7,965","14,620","7,355" -1911,Labour,Work activity during the reference year,Census Profile 98-316-X2016001," Worked full year, full time","750,555","6,410","5,710","3,870","9,335","7,860","4,410","7,265","5,995","2,995","5,955","1,470","6,900","6,400","3,675","2,190","3,970","2,120","3,475","4,160","3,975","2,655","3,515","3,990","11,775","6,945","4,985","4,175","4,285","3,085","5,320","6,505","5,805","11,325","8,650","3,900","6,235","4,490","4,685","2,145","4,680","5,405","3,275","4,110","3,665","3,070","6,150","4,580","2,720","3,930","7,660","8,050","3,540","3,955","2,735","2,575","3,555","4,390","3,200","14,355","4,770","2,645","3,950","4,520","4,695","2,605","2,130","9,730","4,875","4,565","4,330","5,000","5,910","3,365","10,110","2,565","3,140","5,600","12,190","3,740","6,660","3,135","5,850","5,510","11,375","3,180","3,850","5,780","15,695","3,630","4,835","2,315","5,855","4,865","2,795","4,660","8,955","3,155","2,595","3,895","3,245","2,535","2,720","5,505","4,600","5,960","12,710","3,340","1,870","3,280","6,095","9,320","4,350","5,210","7,555","6,025","3,520","6,905","2,405","3,395","5,330","1,950","4,315","31,670","5,990","8,200","6,190","4,305","2,890","7,000","13,970","4,695","5,705","11,140","3,975","2,720","4,000","4,020","4,370","6,645","3,785" -1912,Labour,Work activity during the reference year,Census Profile 98-316-X2016001, Worked part year and/or part time,"752,440","7,530","6,430","3,140","10,025","6,570","4,425","8,085","6,080","3,415","6,700","1,645","7,440","5,840","5,495","2,015","4,435","2,805","3,170","4,890","3,460","2,945","3,330","3,430","10,350","7,225","4,590","4,145","4,145","2,510","4,405","7,335","6,775","11,280","9,680","3,735","5,995","4,335","5,830","2,420","6,180","4,920","3,200","5,590","4,025","3,550","6,915","3,740","2,370","4,685","6,480","6,895","3,290","4,270","2,560","3,170","4,095","4,810","3,775","11,695","4,305","3,040","4,475","5,695","5,620","2,530","2,180","11,080","4,680","3,790","4,560","4,605","4,805","2,885","11,905","2,685","2,575","6,775","9,350","4,770","5,770","3,750","8,705","4,680","8,370","3,440","4,385","6,775","9,220","3,750","5,765","3,615","5,980","4,810","2,440","4,670","9,440","2,760","2,295","4,170","3,125","3,050","2,770","5,810","4,620","6,120","12,310","2,685","2,355","4,105","7,065","7,320","5,350","6,170","7,015","6,975","4,400","6,525","2,700","4,745","4,875","2,520","4,270","19,830","6,995","9,605","7,930","4,740","3,005","7,490","13,375","4,070","5,440","13,655","3,335","2,050","4,045","3,465","3,600","7,980","3,580" -1913,Labour,Work activity during the reference year,Census Profile 98-316-X2016001,Average weeks worked in reference year,42.3,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1914,Labour,Class of worker,Census Profile 98-316-X2016001,Total labour force aged 15 years and over by class of worker - 25% sample data,"1,483,675","13,870","12,050","6,820","18,555","14,010","8,625","14,985","11,885","6,220","11,840","3,120","14,280","11,995","9,300","4,080","8,350","4,515","6,580","9,100","7,270","5,545","6,470","7,185","21,845","14,200","9,270","8,205","8,315","5,440","9,420","13,870","12,720","22,320","18,040","7,555","12,120","8,425","10,695","4,640","10,760","10,105","6,415","9,915","7,520","6,110","13,435","8,250","4,975","8,610","13,710","14,525","6,660","7,930","5,110","5,755","7,635","8,890","6,915","25,670","8,885","5,645","8,515","10,110","10,260","4,790","4,200","21,145","9,195","7,945","8,365","9,140","10,650","6,165","22,260","5,150","5,455","12,185","21,155","8,770","12,325","6,900","14,760","9,715","19,785","6,460","8,080","12,440","24,595","7,165","10,845","6,155","11,715","9,575","5,115","9,270","18,245","5,870","4,680","8,130","5,880","5,660","5,480","11,215","9,025","11,515","24,635","5,825","4,100","7,540","13,135","16,535","9,245","11,035","14,065","12,920","7,945","12,710","5,065","8,490","10,050","4,405","8,620","51,120","13,095","17,840","14,055","9,070","5,965","14,350","27,060","8,615","10,865","25,170","7,280","4,690","7,875","7,320","7,705","14,815","7,240" -1915,Labour,Class of worker,Census Profile 98-316-X2016001, Class of worker - not applicable,"46,135",540,470,130,365,410,240,645,410,230,150,125,580,385,555,125,260,100,195,350,150,145,105,225,625,505,200,315,205,100,165,575,520,475,485,120,380,145,570,205,365,255,200,505,165,80,700,215,135,320,270,220,200,310,150,240,310,170,235,680,180,185,370,295,430,100,120,"1,070",180,115,205,150,130,175,"1,015",145,105,530,430,475,315,305,820,175,475,180,285,410,260,125,475,430,215,360,100,175,735,130,70,350,80,210,210,415,185,210,875,105,140,460,405,355,300,490,295,520,395,175,205,530,135,150,385,745,695,560,525,350,175,435,"1,080",360,320,"1,190",190,85,125,140,115,685,205 -1916,Labour,Class of worker,Census Profile 98-316-X2016001, All classes of workers,"1,437,540","13,330","11,585","6,700","18,195","13,625","8,385","14,350","11,475","5,970","11,690","3,005","13,695","11,610","8,740","3,955","8,095","4,415","6,380","8,755","7,120","5,405","6,365","6,960","21,230","13,695","9,070","7,880","8,105","5,340","9,255","13,305","12,210","21,845","17,565","7,440","11,745","8,285","10,115","4,435","10,390","9,850","6,225","9,405","7,360","6,030","12,745","8,030","4,840","8,300","13,445","14,295","6,450","7,605","4,960","5,515","7,335","8,725","6,675","25,000","8,700","5,465","8,145","9,815","9,830","4,685","4,085","20,065","9,005","7,830","8,160","8,985","10,515","5,980","21,260","5,005","5,350","11,675","20,735","8,285","12,010","6,595","13,955","9,550","19,320","6,275","7,805","12,035","24,340","7,035","10,375","5,725","11,505","9,215","5,005","9,095","17,505","5,740","4,600","7,775","5,795","5,450","5,265","10,795","8,835","11,305","23,775","5,725","3,965","7,080","12,730","16,190","8,940","10,550","13,765","12,410","7,540","12,530","4,855","7,960","9,915","4,265","8,235","50,370","12,400","17,290","13,530","8,725","5,795","13,905","25,990","8,250","10,535","23,965","7,085","4,605","7,750","7,180","7,590","14,145","7,035" -1917,Labour,Class of worker,Census Profile 98-316-X2016001, Employee,"1,254,610","12,010","10,200","5,910","14,825","11,055","7,140","12,525","9,695","4,830","9,005","2,730","12,485","10,145","8,065","3,360","7,265","3,010","5,560","8,025","6,070","4,880","4,980","6,215","18,905","12,495","7,685","6,885","7,190","4,650","7,995","11,555","11,190","19,065","16,100","6,380","10,045","6,785","9,430","4,095","8,875","8,650","5,575","8,390","5,900","4,500","11,825","6,970","4,235","7,540","11,590","11,925","5,740","6,390","4,275","4,990","6,760","7,315","6,225","22,050","7,510","4,925","7,460","8,565","8,715","3,800","3,425","17,910","7,365","6,375","6,375","7,210","9,105","5,225","19,735","4,530","4,645","10,510","17,990","7,670","10,400","5,990","12,900","7,850","17,095","5,555","6,350","10,250","21,550","5,675","9,410","5,125","9,965","8,160","4,270","7,680","15,490","5,230","3,780","6,900","4,715","4,805","4,815","9,710","7,300","8,595","21,910","4,860","3,610","6,370","11,495","13,640","6,775","9,285","11,570","11,110","6,935","10,015","4,355","6,980","8,320","3,560","7,435","44,835","11,200","15,895","11,700","7,895","5,185","12,515","21,825","6,980","9,365","21,910","6,105","4,130","6,480","6,025","6,235","13,060","6,315" -1918,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, Non-Aboriginal,"77,740","1,315","1,145",310,660,880,510,825,"1,105",595,505,235,895,235,650,80,635,320,350,690,210,555,200,155,805,555,570,200,715,150,275,"1,110",660,"1,355","1,525",460,315,595,415,245,640,535,330,630,275,135,970,270,150,595,460,515,345,825,310,410,560,325,340,"1,235",370,700,385,505,500,160,170,"1,620",560,145,215,185,455,205,"1,115",475,225,"1,345","1,010",355,365,560,950,215,675,215,820,"1,115",625,180,475,225,870,285,155,255,855,325,130,640,270,235,240,955,280,350,970,100,280,290,390,505,690,"1,360",615,985,350,145,305,500,380,165,335,"1,555",470,"1,140","1,325",550,435,630,"2,740",705,450,"1,165",100,185,315,200,180,860,495 -1919,Labour,Class of worker,Census Profile 98-316-X2016001, Self-employed,"182,935","1,320","1,385",790,"3,365","2,560","1,240","1,825","1,780","1,145","2,680",270,"1,215","1,470",675,600,830,"1,405",825,725,"1,050",525,"1,385",735,"2,335","1,205","1,380","1,005",910,700,"1,250","1,745","1,015","2,785","1,455","1,060","1,695","1,500",690,340,"1,515","1,195",650,"1,030","1,465","1,540",930,"1,060",615,755,"1,855","2,385",720,"1,220",700,530,570,"1,415",450,"2,945","1,195",530,680,"1,255","1,115",885,660,"2,160","1,650","1,455","1,775","1,775","1,415",760,"1,520",475,705,"1,145","2,745",600,"1,610",615,"1,050","1,690","2,215",715,"1,450","1,785","2,795","1,360",955,605,"1,535","1,055",735,"1,420","2,030",520,830,870,"1,085",650,460,"1,090","1,535","2,720","1,850",855,345,710,"1,235","2,550","2,170","1,275","2,180","1,290",615,"2,520",505,975,"1,595",700,790,"5,520","1,205","1,390","1,820",825,610,"1,390","4,155","1,270","1,180","2,070",975,475,"1,260","1,150","1,345","1,080",715 -1920,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001,Total labour force population aged 15 years and over by occupation - National Occupational Classification (NOC) 2016 - 25% sample data,"1,483,675","13,875","12,050","6,825","18,555","14,015","8,625","14,990","11,890","6,210","11,840","3,120","14,275","11,985","9,295","4,085","8,355","4,515","6,580","9,100","7,270","5,545","6,475","7,180","21,850","14,210","9,280","8,200","8,315","5,450","9,420","13,870","12,725","22,315","18,050","7,560","12,120","8,425","10,685","4,640","10,765","10,105","6,415","9,905","7,520","6,110","13,440","8,250","4,970","8,605","13,710","14,520","6,660","7,930","5,110","5,745","7,635","8,890","6,910","25,660","8,880","5,655","8,520","10,110","10,260","4,795","4,200","21,150","9,190","7,945","8,365","9,145","10,650","6,165","22,265","5,150","5,445","12,175","21,155","8,765","12,330","6,900","14,770","9,725","19,790","6,455","8,080","12,440","24,590","7,165","10,850","6,150","11,715","9,580","5,115","9,270","18,240","5,870","4,680","8,120","5,890","5,665","5,475","11,210","9,015","11,510","24,630","5,830","4,095","7,540","13,140","16,535","9,250","11,030","14,055","12,915","7,940","12,705","5,060","8,480","10,050","4,410","8,620","51,110","13,085","17,845","14,055","9,075","5,965","14,345","27,075","8,610","10,870","25,180","7,270","4,690","7,865","7,320","7,705","14,815","7,245" -1921,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001, Occupation - not applicable,"46,135",540,475,130,360,400,235,645,405,235,150,120,580,385,555,130,260,100,200,350,150,145,105,220,620,515,200,320,205,100,165,575,510,485,485,125,380,145,570,205,365,260,200,495,170,85,695,220,135,300,260,225,200,315,150,240,305,165,230,690,180,185,365,295,435,100,115,"1,065",195,110,210,160,130,175,"1,005",140,105,530,450,480,315,305,815,170,475,185,285,405,255,130,480,420,220,360,105,175,730,125,75,350,80,210,215,415,175,200,875,105,140,460,395,345,305,485,295,505,390,160,210,535,130,150,390,730,690,565,525,350,170,435,"1,085",360,325,"1,200",185,80,135,145,120,670,205 -1922,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001, All occupations,"1,437,545","13,330","11,585","6,700","18,195","13,625","8,385","14,335","11,480","5,985","11,680","3,000","13,700","11,610","8,745","3,960","8,095","4,410","6,375","8,750","7,120","5,400","6,365","6,960","21,225","13,695","9,070","7,885","8,105","5,350","9,255","13,310","12,210","21,835","17,560","7,440","11,735","8,280","10,120","4,435","10,400","9,845","6,215","9,420","7,355","6,030","12,740","8,035","4,840","8,295","13,450","14,300","6,450","7,605","4,965","5,515","7,325","8,725","6,675","24,980","8,700","5,465","8,150","9,815","9,830","4,690","4,085","20,065","9,010","7,835","8,160","8,975","10,515","5,985","21,250","5,005","5,345","11,665","20,725","8,290","12,015","6,590","13,950","9,540","19,320","6,270","7,800","12,035","24,340","7,040","10,365","5,725","11,500","9,205","5,005","9,100","17,510","5,740","4,600","7,770","5,800","5,450","5,260","10,800","8,845","11,300","23,770","5,725","3,955","7,080","12,740","16,180","8,950","10,550","13,750","12,405","7,545","12,530","4,860","7,960","9,925","4,260","8,230","50,360","12,395","17,285","13,530","8,725","5,795","13,905","25,995","8,250","10,540","23,980","7,085","4,605","7,745","7,180","7,580","14,140","7,040" -1923,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001, 0 Management occupations,"163,965",960,960,840,"2,645","2,120",845,"1,785","1,500",655,"2,005",225,"1,035","1,535",335,455,640,"1,095",800,470,"1,015",385,"1,125",895,"2,820","1,065",855,930,880,895,"1,465","1,185",785,"2,295","1,020",790,"1,740","1,225",560,285,845,"1,165",525,720,765,"1,090",555,"1,105",600,745,"1,860","2,180",660,785,505,335,330,995,370,"3,295","1,130",420,570,920,825,"1,170",615,"1,425","1,205","1,680","1,475","1,720","1,410",715,"1,020",410,730,890,"3,465",560,"1,895",405,590,"1,720","2,650",760,"1,095","1,180","4,820","1,045",970,350,"1,220","1,090",645,"1,160","1,725",565,710,635,"1,020",605,370,745,"1,315","2,285","1,970",985,200,475,"1,345","2,555","1,615",850,"2,090","1,030",590,"2,300",350,590,"1,265",535,780,"9,180",895,915,875,530,490,"1,235","3,615","1,210","1,200","1,455","1,025",570,"1,020","1,105","1,300",795,550 -1924,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001," 1 Business, finance and administration occupations","258,870","2,425","2,170","1,150","3,410","2,870","1,420","2,955","2,550","1,310","2,475",405,"2,635","2,105","1,010",555,"1,230","1,010","1,050","1,230","1,300",750,"1,330","1,490","4,665","2,490","1,575","1,490","1,120",900,"1,615","2,520","2,125","3,115","2,685","1,090","1,995","1,485","1,555",700,"1,750","1,825","1,065","1,440","1,375","1,200","1,410","1,380",920,"1,655","2,290","2,425","1,325","1,635",785,785,"1,030","1,405","1,060","5,000","1,295",740,"1,420","1,625","1,660",965,680,"3,320","1,830","1,460","1,850","1,925","1,650","1,035","3,555",715,965,"2,020","3,780","1,440","2,375",950,"1,800","1,885","4,225","1,035","1,490","1,830","5,170","1,180","1,525",805,"1,600","1,685",895,"1,360","3,525","1,120",830,"1,325","1,145",775,930,"1,555","1,220","2,465","4,625","1,015",615,"1,180","1,940","2,630","1,855","1,885","2,475","2,225","1,180","2,145",725,"1,220","1,555",650,"1,545","13,540","2,160","2,710","2,090","1,415",830,"2,515","6,025","1,730","1,980","4,120","1,170",890,"1,215","1,605","1,630","2,210","1,175" -1925,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001, 2 Natural and applied sciences and related occupations,"117,635","1,045","1,070",405,"1,365","1,570",785,"1,900","1,520",755,565,115,"1,155",700,275,345,495,335,425,345,555,145,365,620,"2,345",955,635,605,400,385,750,"1,810",870,"1,345",775,450,910,630,655,225,560,835,595,730,465,345,400,610,360,"1,400","1,435","1,400",630,"1,215",355,230,305,520,515,"2,460",650,170,445,800,600,345,275,"1,690","1,140",640,440,690,780,505,"1,350",250,570,825,"1,660",540,"1,050",215,670,835,"2,200",480,"1,055","1,190","2,595",445,950,395,570,645,375,630,"1,675",295,295,"1,000",550,380,280,455,580,840,"1,965",550,160,355,780,"1,150",785,"1,120","1,075","1,325",765,920,210,865,745,400,525,"6,220",795,"1,165","1,150",350,225,"1,020","4,095","1,340",750,"1,875",535,305,525,665,665,905,360 -1926,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001, 3 Health occupations,"84,360",740,655,295,"1,020","1,145",530,"1,795",940,480,"1,080",160,880,645,430,200,545,480,280,405,370,235,415,445,"1,305",920,745,340,260,255,500,970,775,825,920,310,565,550,685,290,840,580,305,485,725,595,695,350,240,425,760,825,410,565,255,230,400,535,500,"1,400",410,230,565,600,580,290,275,"1,225",650,505,655,630,335,325,"1,335",300,235,575,"1,115",745,565,410,840,630,"1,035",200,495,915,"1,240",450,535,280,510,470,295,405,995,305,230,465,390,255,230,415,335,600,"1,600",270,220,515,760,620,"1,070",605,855,645,380,640,265,405,370,115,425,"2,345",800,"1,055","1,135",525,210,760,"1,800",530,500,"1,495",340,195,415,430,450,695,315 -1927,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001," 4 Occupations in education, law and social, community and government services","186,800",950,865,735,"3,955","1,875","1,325","2,690","1,440",800,"2,250",325,"1,385","1,660",620,765,"1,090",610,995,820,"1,180",580,"1,255",985,"3,290","1,440","1,810",950,"1,050",955,"1,525","1,545","1,145","3,080","1,685","1,015","1,850","1,090",920,360,"2,145","1,190",595,"1,200","1,445","1,180","1,090","1,225",825,845,"2,190","2,440",680,825,690,395,545,"1,940",615,"2,930","1,365",525,755,"1,245",950,680,815,"1,930","1,460","1,555","1,685","1,535","1,230",635,"1,855",435,705,720,"2,420",745,"1,630",595,"1,035","1,855","3,240",780,960,"1,590","2,850","1,400","1,390",685,"1,870","1,185",830,"1,655","2,020",555,880,925,890,790,555,"1,130","1,365","2,250","2,370","1,100",455,750,"1,115","2,290","1,260",785,"1,815","1,315",835,"2,280",395,790,"1,375",995,"1,050","6,305","1,410","1,295","1,700",915,690,"1,385","3,090","1,060","1,300","2,150","1,310",745,"1,430","1,350","1,305","1,430",900 -1928,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001," 5 Occupations in art, culture, recreation and sport","80,195",350,275,280,"2,005",605,345,805,455,285,595,70,265,740,150,420,330,290,490,165,735,120,600,305,"1,795",405,310,405,705,420,800,415,275,"2,220",305,"1,010","1,115",340,205,85,350,415,225,200,515,450,200,860,255,230,"1,385","1,540",145,285,210,85,140,810,120,"1,005",955,135,200,"1,075",245,245,270,455,495,505,575,695,"1,630",355,345,170,260,250,"1,100",175,"1,220",130,185,690,"1,245",425,315,420,"2,525",885,545,155,780,420,270,"1,380",705,155,640,220,235,410,125,320,"1,435","1,035",580,575,60,195,"1,385","2,010",350,275,780,320,265,"1,440",110,215,"1,435",550,290,"3,585",240,290,555,240,310,345,"1,105",365,255,515,825,350,735,565,690,330,180 -1929,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001, 6 Sales and service occupations,"345,145","4,055","3,225","1,535","3,200","2,425","1,950","2,180","2,365","1,220","2,125",850,"3,735","2,635","2,580",885,"2,195",510,"1,625","2,815","1,600","1,625","1,100","1,445","4,340","4,115","1,960","1,805","2,065","1,170","1,715","3,115","3,670","5,820","4,935","1,870","2,540","1,840","3,495","1,330","2,650","2,235","1,735","3,085","1,495",985,"3,765","1,820","1,010","2,185","2,605","2,575","1,565","1,580","1,290","1,615","1,980","1,875","2,160","5,760","1,885","1,570","2,565","2,935","2,775",810,760,"5,925","1,620","1,165","1,210","1,390","2,610","1,395","6,660","1,500","1,115","3,905","4,520","2,300","2,635","2,130","4,000","1,440","3,745","1,605","1,710","3,060","4,270","1,265","3,645","2,020","2,995","2,340","1,120","1,915","4,480","1,340",800,"1,955",985,"1,670","1,465","3,110","1,825","1,545","6,070",785,"1,190","2,180","4,115","3,650","1,465","3,175","2,935","3,340","2,500","2,210","1,335","2,275","2,395",815,"2,440","8,030","3,625","4,740","3,460","2,450","1,710","3,905","4,985","1,575","2,455","7,355","1,300","1,000","1,690","1,220","1,290","4,140","2,025" -1930,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001," 7 Trades, transport and equipment operators and related occupations","131,115","1,390","1,270","1,045",415,755,830,150,485,310,375,585,"1,590","1,195","1,780",235,"1,130",55,585,"1,645",250,"1,175",130,575,510,"1,605",795,965,"1,280",270,675,"1,205","1,450","2,410","3,305",665,800,900,"1,275",755,785,"1,205",910,"1,040",375,130,"2,445",445,480,495,720,685,675,435,670,"1,140","1,495",440,845,"2,325",670,"1,265","1,060",390,"1,595",135,245,"2,210",435,205,200,280,610,770,"2,780",735,640,"1,085","2,030","1,105",495,"1,185","2,605",355,725,730,480,"1,105",700,215,555,715,"1,300","1,040",455,420,"1,650",945,140,820,440,395,835,"2,255",490,190,"2,555",330,745,890,925,800,410,"1,040","1,370","1,270",725,395,965,"1,215",495,180,915,920,"1,615","2,940","1,545","1,600",995,"1,890",870,320,"1,475","2,830",400,455,480,185,205,"1,940","1,015" -1931,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001," 8 Natural resources, agriculture and related production occupations","7,555",50,35,60,60,60,60,15,30,10,30,20,85,110,100,35,20,10,10,95,35,90,0,45,25,85,30,70,85,0,50,50,50,120,85,50,50,65,35,30,45,90,45,45,25,10,95,65,15,30,45,50,25,20,45,20,50,30,25,180,55,60,35,55,40,20,60,70,25,55,45,55,25,85,95,50,25,45,95,50,40,50,85,40,70,50,45,85,35,30,20,15,135,65,30,50,100,80,40,25,65,45,80,110,75,65,100,25,35,55,50,100,40,35,90,35,35,90,35,35,50,0,20,35,95,90,35,65,35,110,75,30,70,110,50,20,75,30,30,75,45 -1932,Labour,Occupation - National Occupational Classification (NOC) 2016,Census Profile 98-316-X2016001, 9 Occupations in manufacturing and utilities,"61,900","1,350","1,015",350,120,165,310,75,180,150,185,250,930,275,"1,470",50,430,15,95,750,75,300,25,145,125,605,350,325,250,75,150,515,"1,090",630,"1,865",195,155,155,720,375,450,310,220,470,160,35,"2,100",175,115,270,150,190,350,260,155,690,"1,070",185,450,635,290,345,520,190,565,35,70,"1,805",150,50,25,65,220,190,"2,275",440,105,"1,330",520,630,115,550,"2,120",90,185,210,160,675,140,110,245,300,505,290,110,135,650,380,35,390,95,115,390,675,220,35,"1,955",80,275,480,320,400,95,765,270,900,285,95,475,345,235,25,265,200,780,"2,065",950,640,300,735,330,75,540,"2,085",120,75,160,30,20,"1,595",465 -1933,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001,Total Labour Force population aged 15 years and over by Industry - North American Industry Classification System (NAICS) 2012 - 25% sample data,"1,483,680","13,855","12,045","6,825","18,555","14,030","8,620","14,995","11,885","6,215","11,845","3,125","14,280","11,995","9,300","4,085","8,355","4,515","6,580","9,110","7,270","5,545","6,475","7,185","21,850","14,200","9,275","8,205","8,310","5,440","9,415","13,865","12,720","22,325","18,045","7,560","12,110","8,430","10,690","4,635","10,760","10,100","6,415","9,905","7,525","6,105","13,445","8,250","4,970","8,605","13,705","14,525","6,655","7,930","5,120","5,755","7,640","8,890","6,905","25,670","8,885","5,645","8,510","10,110","10,260","4,785","4,200","21,140","9,195","7,945","8,360","9,140","10,650","6,160","22,265","5,150","5,455","12,185","21,160","8,770","12,330","6,895","14,755","9,720","19,785","6,460","8,080","12,440","24,600","7,160","10,840","6,150","11,720","9,575","5,120","9,275","18,250","5,875","4,680","8,125","5,890","5,660","5,480","11,215","9,020","11,510","24,635","5,830","4,100","7,540","13,135","16,530","9,250","11,030","14,065","12,920","7,945","12,705","5,060","8,490","10,045","4,410","8,610","51,110","13,100","17,840","14,050","9,075","5,960","14,335","27,075","8,615","10,870","25,175","7,270","4,690","7,870","7,325","7,705","14,820","7,245" -1934,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, Industry - NAICS2012 - not applicable,"46,135",540,470,125,365,410,230,645,410,235,155,120,580,385,555,125,255,105,200,360,155,145,115,220,630,510,205,315,200,100,165,565,520,500,485,115,375,140,580,200,370,260,195,500,165,75,700,220,130,310,265,220,200,315,145,240,305,165,235,680,185,180,370,290,430,95,120,"1,070",180,115,205,155,135,175,"1,005",145,105,530,420,465,310,310,810,175,470,185,275,405,260,135,475,425,215,365,110,170,735,125,75,355,80,215,215,425,180,200,870,105,140,470,400,340,300,495,305,515,395,180,205,525,130,145,385,735,695,565,530,350,170,445,"1,085",365,335,"1,185",190,85,125,140,125,680,215 -1935,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, All industry categories,"1,437,545","13,335","11,580","6,695","18,200","13,625","8,385","14,345","11,475","5,980","11,685","3,000","13,705","11,615","8,750","3,955","8,100","4,415","6,375","8,755","7,120","5,400","6,365","6,955","21,220","13,700","9,070","7,880","8,105","5,345","9,255","13,305","12,210","21,830","17,570","7,445","11,735","8,285","10,115","4,435","10,390","9,850","6,220","9,410","7,355","6,035","12,750","8,035","4,840","8,295","13,450","14,305","6,450","7,615","4,965","5,515","7,330","8,730","6,675","24,985","8,710","5,460","8,150","9,820","9,830","4,690","4,085","20,080","9,015","7,835","8,160","8,980","10,515","5,980","21,265","5,005","5,345","11,665","20,725","8,285","12,015","6,595","13,955","9,555","19,315","6,270","7,805","12,030","24,340","7,040","10,365","5,725","11,510","9,210","5,005","9,095","17,505","5,745","4,605","7,775","5,800","5,455","5,265","10,795","8,840","11,300","23,770","5,720","3,960","7,075","12,725","16,185","8,950","10,550","13,760","12,405","7,545","12,535","4,860","7,960","9,925","4,265","8,230","50,365","12,400","17,295","13,525","8,725","5,795","13,910","25,985","8,250","10,535","23,970","7,080","4,605","7,745","7,175","7,585","14,145","7,030" -1936,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001," 11 Agriculture, forestry, fishing and hunting","2,095",40,40,10,10,10,35,0,10,0,10,10,0,25,40,0,10,25,10,10,0,0,15,10,10,0,0,10,20,10,0,0,0,35,10,10,25,20,20,0,0,10,10,0,20,0,40,10,0,10,30,10,20,0,0,10,10,10,0,30,20,10,0,25,10,0,10,20,20,20,40,25,25,20,25,20,10,60,45,20,20,10,40,30,20,15,20,25,10,0,0,0,20,40,0,30,30,10,10,20,20,0,25,10,20,35,30,10,10,0,10,35,10,40,35,10,10,20,0,0,35,20,10,20,10,20,10,15,15,15,20,0,10,10,10,0,10,15,20,10,10 -1937,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001," 21 Mining, quarrying, and oil and gas extraction","2,040",10,25,15,35,20,10,40,20,0,15,0,10,0,0,10,10,50,10,20,0,10,10,0,20,10,20,0,0,0,10,20,0,20,20,0,30,15,10,0,10,0,0,0,0,0,0,10,20,20,25,20,0,20,0,20,0,10,10,45,10,0,10,10,15,10,10,20,0,50,10,30,0,0,35,10,0,0,35,0,35,10,10,35,15,0,20,30,70,0,0,0,10,30,0,0,25,0,0,10,10,20,0,10,10,20,40,10,0,0,10,20,20,10,25,10,0,70,10,0,35,10,10,185,10,20,30,0,0,10,50,10,10,20,10,10,20,10,15,30,10 -1938,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 22 Utilities,"5,915",80,50,40,35,40,30,105,75,20,55,10,60,55,10,35,10,45,20,45,20,0,0,85,110,35,30,55,35,25,50,45,30,95,55,20,60,55,55,0,20,90,20,30,15,20,20,35,70,50,70,80,75,35,10,40,10,0,25,95,0,10,20,35,35,20,20,70,30,40,25,40,20,25,15,10,50,10,55,45,70,10,15,70,85,25,45,50,115,45,30,30,35,45,20,25,60,25,10,45,20,10,20,20,30,20,135,35,10,45,50,70,40,45,95,80,35,40,20,30,20,10,10,250,55,45,45,10,10,80,170,40,50,110,10,20,30,25,30,45,20 -1939,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 23 Construction,"76,475",675,545,615,395,540,530,210,385,230,370,345,600,665,750,180,730,185,340,925,160,930,150,325,350,745,470,580,985,205,505,695,570,"1,775","2,085",495,495,615,510,300,420,735,430,395,300,165,"1,130",315,310,330,540,515,300,275,490,455,650,325,320,"1,690",540,895,450,240,790,175,170,935,350,180,250,295,530,385,970,540,350,585,"1,240",425,315,815,940,350,635,420,450,685,635,190,255,270,945,620,325,305,990,670,180,415,405,130,430,"1,460",410,245,855,230,390,260,580,560,430,475,"1,015",575,335,425,455,425,415,180,515,"1,000",835,"1,025",810,855,755,980,780,295,880,"1,025",310,265,350,215,205,"1,075",625 -1940,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 31-33 Manufacturing,"105,285","1,990","1,345",695,490,640,640,365,560,335,510,325,"1,355",615,"1,845",180,690,175,225,"1,130",205,440,170,380,540,"1,045",610,495,415,200,380,"1,145","1,495","1,120","2,515",375,460,560,940,510,600,785,570,700,295,150,"2,480",330,220,545,630,655,610,630,345,885,"1,360",370,635,"1,510",535,545,785,340,960,260,185,"2,415",450,270,230,310,570,520,"2,825",590,365,"1,570","1,455",895,345,700,"2,700",265,685,455,505,"1,005","1,000",250,470,350,780,545,200,260,"1,200",605,125,675,350,200,610,"1,140",395,275,"2,750",235,350,620,610,830,490,"1,150",875,"1,220",415,295,690,525,425,105,555,"1,340","1,025","2,835","1,535",900,480,"1,155","1,305",410,990,"2,800",285,180,325,225,175,"1,965",605 -1941,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 41 Wholesale trade,"50,115",550,555,300,400,615,305,330,530,255,505,135,570,430,320,120,220,235,140,385,160,150,150,210,445,395,380,225,230,125,245,485,500,555,585,175,250,345,300,205,370,450,300,285,245,175,530,180,220,290,400,505,220,300,190,210,320,185,235,"1,055",285,170,165,170,375,245,155,935,320,265,275,275,195,350,830,140,255,595,"1,095",290,215,205,610,340,585,320,245,450,"1,035",170,270,125,250,325,115,195,670,240,95,315,275,155,230,405,225,320,"1,020",205,170,255,340,570,390,565,580,560,145,330,215,285,200,115,220,"1,390",450,675,455,310,135,485,"1,070",315,490,980,155,85,230,215,190,625,270 -1942,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 44-45 Retail trade,"141,540","1,540","1,335",800,"1,215","1,200",995,945,"1,270",605,930,415,"1,540","1,045","1,120",305,815,230,620,"1,050",540,625,430,625,"1,670","1,595",855,785,815,475,835,"1,300","1,510","2,320","1,840",570,"1,100",800,"1,290",540,"1,085","1,035",645,"1,230",615,455,"1,450",760,460,935,955,"1,105",670,730,505,725,735,820,865,"2,335",840,605,980,"1,060","1,050",375,405,"2,640",735,575,490,665,945,635,"2,605",565,570,"1,525","1,985","1,010",930,695,"1,580",700,"1,520",645,935,"1,320","1,675",565,"1,205",715,"1,190",985,515,670,"1,850",645,310,810,500,535,655,"1,275",620,720,"2,500",360,515,835,"1,400","1,290",660,"1,215","1,265","1,470",865,855,640,950,785,305,"1,125","2,970","1,580","2,020","1,480","1,015",655,"1,680","2,300",810,"1,150","2,940",580,495,640,500,595,"1,690",755 -1943,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 48-49 Transportation and warehousing,"57,910",585,435,420,235,415,340,210,320,135,120,140,725,500,625,90,385,55,235,495,215,180,85,255,570,745,300,345,285,105,245,525,555,590,950,205,385,400,510,420,375,625,475,555,160,90,815,230,220,270,440,450,330,305,270,535,595,160,295,"1,365",260,250,465,190,880,95,130,725,285,95,115,145,240,330,"1,290",215,315,370,"1,045",455,385,370,"1,240",160,320,345,220,400,600,120,345,410,410,435,205,190,670,370,85,360,170,240,450,645,225,185,"1,265",200,345,480,405,440,190,405,620,565,355,265,465,745,215,100,350,860,690,"1,695",625,600,250,840,585,180,700,"1,225",155,255,215,105,110,755,315 -1944,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 51 Information and cultural industries,"61,350",340,415,240,"1,260",580,215,675,335,145,270,70,400,565,100,230,265,160,435,200,580,90,425,320,"1,480",425,220,360,435,270,660,435,265,"1,415",315,765,895,185,285,110,240,310,130,310,220,265,170,670,230,340,830,995,175,270,125,85,105,490,205,"1,025",505,130,255,650,235,170,220,475,295,420,330,400,"1,005",190,575,100,190,240,950,205,800,105,310,530,"1,085",280,225,305,"2,075",600,390,175,430,415,225,845,635,75,330,245,130,270,95,195,860,515,865,375,60,185,910,"1,265",230,265,490,450,310,930,120,225,725,300,265,"3,195",295,400,275,250,195,415,800,335,170,705,565,250,480,380,425,315,135 -1945,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 52 Finance and insurance,"120,005","1,015",885,380,"1,820","1,395",510,"1,850","1,295",615,"1,220",145,"1,210",945,215,270,495,730,510,415,570,275,590,825,"2,535","1,140",565,700,460,460,715,"1,205",810,"1,185",860,375,915,795,675,200,635,645,375,560,515,675,375,540,370,870,"1,160","1,190",665,780,370,190,260,530,500,"2,115",500,210,590,705,475,680,385,"1,515",960,"1,145","1,210","1,175",555,290,"1,470",225,430,865,"1,605",565,"1,335",330,505,"1,090","2,470",375,725,925,"2,845",610,735,390,585,760,430,490,"1,390",315,385,630,540,390,220,475,360,"1,700","2,325",445,170,475,600,"1,280",765,885,"1,190","1,020",500,"1,225",200,525,520,260,790,"9,675",845,755,630,385,255,995,"3,865","1,020",835,"1,655",575,425,415,765,955,670,525 -1946,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 53 Real estate and rental and leasing,"39,935",260,255,145,675,630,235,400,420,250,720,50,270,445,130,85,170,270,170,200,165,170,325,210,515,375,330,275,165,125,175,420,345,500,365,185,275,320,255,90,380,205,135,245,315,365,185,175,115,285,265,430,155,275,140,95,110,250,140,775,195,155,210,175,185,195,95,500,295,295,395,270,205,145,375,145,140,315,730,195,325,105,185,285,605,170,255,310,730,155,215,115,260,255,120,215,595,140,85,255,280,105,105,245,175,545,610,130,80,200,355,380,525,265,445,270,190,425,75,240,225,80,200,"1,625",290,295,295,230,125,370,"1,075",285,255,445,180,65,190,225,315,330,235 -1947,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001," 54 Professional, scientific and technical services","175,685","1,015","1,120",530,"3,475","2,205",955,"2,800","1,950",880,"2,060",95,"1,100","1,120",320,540,630,765,645,415,"1,000",295,"1,445",725,"3,995","1,025",970,805,695,755,"1,090","1,785",785,"2,300",840,840,"1,475","1,055",650,240,"1,030",905,580,750,"1,185","1,145",410,"1,105",540,"1,430","2,260","2,285",490,"1,170",415,215,350,"1,360",465,"3,265","1,010",295,510,"1,455",670,840,580,"1,665","1,610","1,480","1,595","1,725","1,750",680,"1,500",240,650,870,"2,825",515,"2,430",260,560,"1,770","3,255",495,"1,145","1,310","5,315","1,040","1,200",380,"1,070",800,605,"1,500","1,940",380,825,920,950,610,300,560,"1,255","2,610","1,830","1,005",180,440,"1,305","2,625","1,425","1,100","1,880","1,215",795,"2,230",275,820,"1,680",660,680,"12,260",755,965,"1,170",480,435,940,"4,640","1,430",900,"1,810",980,515,"1,060","1,550","1,515",940,520 -1948,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 55 Management of companies and enterprises,"4,080",0,0,20,55,55,35,60,45,0,65,0,30,30,20,25,0,10,20,10,25,10,25,30,85,30,20,20,10,0,30,20,30,65,40,20,40,15,0,20,30,15,10,30,25,30,10,25,10,20,50,70,35,10,0,10,20,0,20,55,50,0,10,30,30,30,25,40,20,45,45,55,45,25,35,0,10,10,50,25,35,10,30,40,85,10,20,20,140,60,25,0,20,20,10,40,75,20,0,20,20,10,0,30,35,55,65,50,10,20,25,60,60,10,60,20,25,45,0,10,15,0,0,250,10,35,25,20,0,50,95,45,35,50,10,10,30,45,70,20,0 -1949,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001," 56 Administrative and support, waste management and remediation services","78,890",730,720,360,495,565,410,300,470,205,390,265,980,580,745,140,665,110,355,740,285,440,200,260,815,835,440,485,525,170,375,750,920,"1,100","1,405",425,530,345,865,340,585,520,410,810,325,140,"1,145",345,185,475,505,490,390,310,280,405,670,365,495,"1,305",415,505,650,370,790,175,200,"1,325",330,225,255,275,470,340,"1,805",400,210,500,"1,060",645,580,710,"1,105",335,895,360,365,630,705,200,675,530,770,510,265,295,"1,190",375,190,365,180,325,470,860,280,405,"1,405",190,315,675,755,565,350,480,560,780,795,410,300,695,430,135,535,"1,640","1,070","1,285",875,695,485,990,935,315,650,"2,240",305,215,380,280,240,"1,010",520 -1950,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 61 Educational services,"110,280",620,590,495,"2,425","1,120",730,"1,945",910,625,"1,055",130,840,"1,040",345,505,530,320,590,400,765,305,695,765,"1,970",895,800,680,700,590,"1,060",925,655,"2,020",925,665,"1,205",635,475,260,"1,055",935,405,535,650,415,540,780,555,500,"1,480","1,540",535,545,495,260,310,965,305,"1,840",975,260,360,925,590,385,475,"1,180",820,800,830,870,840,465,"1,040",330,530,525,"1,395",500,720,305,545,"1,110","1,790",525,570,740,"1,355",785,745,385,"1,090",725,455,"1,115","1,205",425,510,645,585,380,335,635,960,905,"1,690",775,235,470,605,"1,205",645,570,"1,220",825,485,"1,385",245,405,805,780,545,"2,690",875,875,750,470,390,890,"1,905",760,895,"1,240",865,435,915,745,710,935,520 -1951,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 62 Health care and social assistance,"143,250","1,230","1,140",515,"1,525","1,660",915,"1,975","1,285",795,"1,590",330,"1,560","1,245",730,355,955,595,635,915,725,520,650,785,"1,920","1,640","1,175",685,610,510,"1,125","1,475","1,440","1,720","1,690",635,"1,220",800,"1,310",500,"1,420",940,525,"1,005","1,135",845,"1,290",685,505,700,"1,265","1,335",700,935,485,435,675,990,880,"2,330",735,495,"1,050",845,"1,015",405,385,"2,045","1,045",715,950,885,730,500,"2,315",560,435,920,"1,825","1,140",945,780,"1,360",945,"1,820",535,735,"1,425","1,770",765,"1,025",625,"1,150",915,560,750,"1,940",555,395,755,535,540,535,980,690,975,"2,610",495,440,875,"1,280","1,235","1,495",855,"1,255","1,235",770,"1,085",410,730,800,290,990,"3,385","1,515","1,665","1,840",980,540,"1,480","2,570",730,895,"2,570",625,470,730,730,670,"1,235",650 -1952,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001," 71 Arts, entertainment and recreation","34,995",165,140,155,785,165,155,345,175,75,270,45,165,320,110,155,135,115,155,160,225,80,150,170,725,190,170,165,325,220,285,160,190,865,225,355,465,160,115,50,190,220,135,155,205,175,165,285,105,85,455,585,80,75,95,100,115,260,75,510,390,75,120,430,220,110,125,240,205,240,225,295,570,190,210,45,155,150,480,135,515,95,215,290,450,185,125,240,930,285,240,75,345,180,95,495,405,95,245,120,120,235,90,195,480,370,360,195,50,115,600,800,195,125,280,145,140,505,70,115,590,225,150,"1,470",130,335,305,150,125,275,345,140,250,245,290,180,335,285,250,245,115 -1953,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 72 Accommodation and food services,"106,905","1,590","1,135",335,"1,285",540,495,800,510,335,505,160,"1,095",850,635,340,605,105,660,580,660,405,300,305,"1,645","1,345",570,500,600,470,605,930,"1,210","2,225","1,220",770,755,385,"1,125",280,700,505,530,960,495,315,995,695,235,685,970,790,420,465,260,465,575,675,670,"1,550",535,390,825,"1,410",800,165,135,"1,830",460,345,370,440,"1,125",375,"1,860",410,245,"1,730","1,180",585,"1,095",525,"1,155",390,"1,145",475,520,975,"1,700",440,"1,450",740,940,780,305,960,"1,105",260,325,515,220,780,290,750,940,430,"1,620",210,235,550,"1,935","1,555",380,"1,315",695,985,835,820,325,650,"1,145",380,545,"3,090",955,"1,195",975,590,485,"1,085","1,340",420,470,"2,100",440,225,645,320,425,"1,170",465 -1954,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 81 Other services (except public administration),"67,390",535,530,295,780,710,530,415,535,235,775,230,630,510,530,215,580,145,315,475,415,350,305,225,760,655,810,345,410,295,415,580,535,"1,140","1,035",295,555,395,530,190,975,445,275,545,440,350,700,395,205,275,520,570,330,240,275,335,350,715,335,905,465,305,405,430,430,170,215,"1,010",430,315,240,405,400,275,850,340,175,500,830,375,485,420,585,405,950,270,395,855,760,320,710,250,740,425,260,350,905,330,195,335,220,245,210,615,445,510,870,250,265,340,610,690,375,520,600,645,340,480,180,360,455,190,400,"1,270",570,710,995,485,285,700,"1,015",315,510,"1,020",315,225,390,260,380,675,505 -1955,Labour,Industry - North American Industry Classification System (NAICS) 2012,Census Profile 98-316-X2016001, 91 Public administration,"53,390",350,315,325,770,520,315,560,380,220,230,90,570,615,145,185,215,85,295,210,400,115,250,460,"1,080",560,340,390,375,335,465,430,370,810,575,255,615,365,210,145,280,475,265,280,205,220,250,465,270,180,615,670,270,240,200,80,125,260,200,"1,110",420,155,255,355,285,190,165,485,350,355,240,410,290,245,615,125,265,300,870,265,425,120,295,415,930,340,280,365,860,400,380,135,455,415,280,385,625,220,290,320,300,270,210,285,390,500,940,310,140,255,340,745,280,245,610,355,210,690,145,260,385,145,330,"1,850",430,460,340,290,195,485,"1,105",380,365,800,425,295,365,265,255,425,220 -1956,Labour,Place of work status,Census Profile 98-316-X2016001,Total - Place of work status for the employed labour force aged 15 years and over in private households - 25% sample data,"1,361,375","12,515","10,870","6,410","17,305","13,005","8,000","13,450","10,970","5,715","11,185","2,765","13,030","10,935","8,115","3,740","7,625","4,160","6,035","8,190","6,685","5,150","6,050","6,640","19,985","12,960","8,710","7,415","7,715","5,105","8,765","12,545","11,500","20,720","16,630","7,000","11,130","7,905","9,535","4,175","9,795","9,365","5,915","8,860","6,960","5,765","11,890","7,655","4,575","7,715","12,740","13,660","6,090","7,270","4,740","5,205","6,860","8,265","6,295","23,805","8,385","5,165","7,735","9,285","9,245","4,430","3,885","18,850","8,530","7,445","7,750","8,495","9,960","5,725","19,925","4,725","5,115","11,035","19,840","7,765","11,480","6,155","12,970","9,050","18,450","5,900","7,370","11,390","23,485","6,785","9,720","5,250","10,920","8,615","4,865","8,645","16,570","5,515","4,380","7,305","5,525","5,120","4,880","10,180","8,420","10,815","22,640","5,535","3,730","6,560","12,020","15,470","8,480","9,995","13,115","11,740","7,030","11,975","4,535","7,410","9,440","4,040","7,745","48,465","11,580","16,140","12,770","8,105","5,460","13,055","24,755","7,765","9,935","22,510","6,720","4,385","7,470","6,815","7,255","13,235","6,670" -1957,Labour,Place of work status,Census Profile 98-316-X2016001, Worked at home,"101,275",585,630,355,"2,230","1,480",615,"1,375","1,040",660,"1,565",105,530,805,200,355,400,850,425,255,600,170,905,450,"1,705",505,590,570,425,475,685,900,415,"1,530",425,670,"1,030",775,255,110,850,645,325,435,620,910,310,750,380,365,"1,305","1,660",300,705,380,150,130,785,190,"1,625",765,170,270,835,385,660,390,"1,010",855,910,"1,040","1,040",955,425,565,140,415,455,"1,750",310,995,205,325,"1,205","1,555",370,640,700,"2,220",880,465,240,750,495,325,885,"1,180",210,520,450,690,365,135,420,"1,040","1,665","1,060",720,125,280,800,"1,655","1,170",535,"1,290",680,305,"1,690",190,340,"1,095",500,385,"4,210",495,465,750,290,265,625,"2,475",765,510,820,725,265,850,850,840,380,230 -1958,Labour,Place of work status,Census Profile 98-316-X2016001, Worked outside Canada,"9,045",110,75,0,180,130,25,265,115,85,100,0,75,40,0,10,15,90,25,10,40,15,65,20,150,70,45,55,30,10,30,170,90,100,30,20,45,35,20,20,25,50,35,45,50,55,50,35,35,95,80,55,65,140,15,15,20,30,20,130,35,0,20,50,40,40,25,115,90,50,80,55,45,10,130,0,50,110,125,20,75,35,50,85,150,15,120,130,160,20,30,25,65,30,20,65,120,10,10,65,35,25,10,50,75,130,50,25,20,35,30,70,145,80,65,140,50,70,0,55,90,45,35,480,55,105,110,15,0,70,495,110,75,105,20,10,20,25,50,60,20 -1959,Labour,Place of work status,Census Profile 98-316-X2016001, No fixed workplace address,"156,250","1,490","1,365",890,"1,365","1,195","1,105",850,915,535,780,490,"1,740","1,255","1,305",460,"1,075",275,740,"1,395",465,"1,200",370,725,"1,310","1,545",920,885,"1,445",470,945,"1,420","1,520","3,060","2,935",985,"1,155",950,"1,195",665,"1,085","1,045",760,"1,240",565,395,"1,860",780,495,770,"1,315","1,195",630,750,690,950,965,750,790,"2,665","1,020","1,220",965,865,"1,420",305,345,"2,260",825,430,580,560,"1,100",680,"2,460",755,575,"1,355","2,435","1,125","1,070","1,180","1,930",655,"1,345",740,855,"1,650","1,905",430,955,880,"1,725","1,115",610,930,"1,965",945,410,"1,005",500,630,695,"1,965",830,665,"2,315",480,625,850,"1,475","1,545",675,"1,360","1,640","1,325",865,"1,005",775,"1,340","1,105",365,905,"3,035","1,570","2,330","1,840","1,295","1,075","1,980","2,240",635,"1,190","2,760",620,520,770,410,550,"1,890","1,025" -1960,Labour,Place of work status,Census Profile 98-316-X2016001, Worked at usual place,"1,094,805","10,330","8,800","5,155","13,540","10,205","6,255","10,965","8,910","4,430","8,740","2,175","10,685","8,850","6,600","2,920","6,155","2,950","4,855","6,535","5,590","3,755","4,715","5,430","16,820","10,840","7,155","5,915","5,815","4,150","7,090","10,045","9,490","16,045","13,245","5,315","8,890","6,150","8,070","3,375","7,845","7,610","4,795","7,140","5,715","4,410","9,705","6,090","3,665","6,490","10,045","10,750","5,100","5,690","3,660","4,095","5,730","6,705","5,290","19,395","6,560","3,770","6,480","7,545","7,420","3,420","3,125","15,465","6,760","6,045","6,030","6,850","7,870","4,610","16,765","3,835","4,085","9,095","15,550","6,325","9,360","4,735","10,690","7,105","15,400","4,765","5,745","8,915","19,220","5,445","8,260","4,110","8,370","6,960","3,915","6,780","13,305","4,355","3,450","5,795","4,300","4,100","4,045","7,745","6,490","8,340","19,180","4,310","2,965","5,400","9,720","12,230","6,480","8,015","10,115","9,600","5,805","9,220","3,570","5,685","7,145","3,135","6,425","40,755","9,485","13,245","10,070","6,510","4,105","10,385","19,535","6,255","8,170","18,825","5,350","3,585","5,815","5,525","5,800","10,890","5,390" -1961,Journey to work,Commuting destination,Census Profile 98-316-X2016001,Total - Commuting destination for the employed labour force aged 15 years and over in private households with a usual place of work - 25% sample data,,"10,330","8,800","5,155","13,540","10,200","6,250","10,970","8,910","4,435","8,735","2,170","10,690","8,840","6,610","2,920","6,155","2,950","4,850","6,530","5,590","3,755","4,720","5,435","16,820","10,845","7,160","5,915","5,810","4,145","7,090","10,055","9,500","16,040","13,245","5,315","8,895","6,150","8,070","3,375","7,840","7,615","4,795","7,150","5,720","4,410","9,700","6,095","3,665","6,485","10,040","10,750","5,100","5,690","3,660","4,095","5,735","6,695","5,290","19,390","6,550","3,770","6,475","7,540","7,415","3,415","3,120","15,465","6,760","6,040","6,035","6,835","7,865","4,615","16,770","3,830","4,085","9,110","15,550","6,320","9,355","4,740","10,670","7,110","15,400","4,765","5,745","8,915","19,205","5,445","8,265","4,105","8,375","6,965","3,910","6,785","13,315","4,355","3,450","5,790","4,305","4,105","4,045","7,740","6,485","8,335","19,180","4,305","2,970","5,400","9,720","12,210","6,475","8,010","10,120","9,605","5,805","9,220","3,570","5,685","7,155","3,135","6,435","40,755","9,475","13,245","10,065","6,505","4,110","10,375","19,530","6,250","8,160","18,845","5,350","3,580","5,820","5,525","5,810","10,885","5,400" -1962,Journey to work,Commuting destination,Census Profile 98-316-X2016001, Commute within census subdivision (CSD) of residence,,"7,210","6,530","3,535","12,470","8,615","4,810","10,035","6,735","3,215","7,320","1,705","8,730","7,895","3,690","2,685","5,215","2,440","4,380","4,975","5,140","3,280","4,340","4,430","15,360","9,590","5,845","5,215","4,945","3,770","6,455","7,525","7,610","14,285","9,595","4,770","7,970","4,375","6,945","2,315","6,710","4,930","3,215","6,035","4,920","4,000","6,375","5,500","3,030","4,935","8,370","8,730","4,040","3,965","2,680","2,295","3,715","5,975","4,600","13,680","5,545","3,055","5,675","6,960","5,035","2,675","2,545","11,050","5,485","5,275","5,280","6,060","6,950","3,175","12,835","2,910","2,690","5,785","10,960","5,045","8,575","3,675","6,245","6,240","13,680","3,570","4,105","5,960","16,400","4,900","7,460","3,690","7,305","6,185","3,380","6,080","10,765","3,090","3,080","4,245","2,895","3,735","2,825","6,050","5,735","7,655","14,560","3,445","2,240","4,420","8,650","10,820","5,080","4,870","7,685","7,290","5,145","8,305","2,285","4,870","6,490","2,850","5,545","36,345","7,835","8,170","6,720","4,780","3,615","8,490","15,020","4,765","5,620","14,935","4,880","3,285","5,200","4,960","5,325","7,620","4,340" -1963,Journey to work,Commuting destination,Census Profile 98-316-X2016001, Commute to a different census subdivision (CSD) within census division (CD) of residence,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1964,Journey to work,Commuting destination,Census Profile 98-316-X2016001, Commute to a different census subdivision (CSD) and census division (CD) within province or territory of residence,,"3,095","2,240","1,605","1,025","1,560","1,430",850,"2,130","1,185","1,375",460,"1,930",915,"2,880",235,910,495,450,"1,540",430,465,350,990,"1,375","1,250","1,295",665,855,365,630,"2,485","1,845","1,705","3,580",530,895,"1,760","1,105","1,055","1,100","2,665","1,575","1,080",780,400,"3,285",580,615,"1,495","1,625","1,970","1,040","1,695",965,"1,780","2,010",715,670,"5,670",995,725,790,530,"2,355",720,565,"4,380","1,250",745,730,760,890,"1,400","3,855",915,"1,385","3,300","4,520","1,260",740,"1,055","4,380",840,"1,660","1,190","1,620","2,905","2,770",505,765,400,"1,060",770,515,655,"2,495","1,245",355,"1,510","1,390",355,"1,220","1,675",740,650,"4,580",850,720,965,"1,035","1,360","1,350","3,085","2,415","2,280",650,870,"1,285",790,620,270,870,"4,280","1,620","5,005","3,295","1,710",480,"1,850","4,445","1,450","2,535","3,840",460,290,570,545,470,"3,220","1,050" -1965,Journey to work,Commuting destination,Census Profile 98-316-X2016001, Commute to a different province or territory,,10,35,10,30,40,15,75,40,35,40,15,40,35,10,0,25,25,10,20,10,10,25,20,80,10,10,15,20,15,15,20,50,55,60,25,25,20,20,0,30,10,10,15,25,10,15,20,10,70,40,55,10,15,0,10,20,0,20,40,10,10,20,55,20,10,0,40,20,30,10,15,15,25,65,0,10,10,75,0,35,10,55,25,55,10,15,35,35,40,35,10,30,20,10,50,45,25,10,40,20,0,0,15,30,35,30,20,10,10,45,25,50,50,20,40,10,50,0,30,40,10,10,130,20,75,55,25,10,20,55,40,10,70,0,0,45,15,10,40,0 -1966,Journey to work,Main mode of commuting,Census Profile 98-316-X2016001,Total - Main mode of commuting for the employed labour force aged 15 years and over in private households with a usual place of work or no fixed workplace address - 25% sample data,"1,251,055","11,820","10,160","6,045","14,910","11,395","7,360","11,815","9,825","4,965","9,520","2,655","12,430","10,100","7,910","3,380","7,220","3,220","5,585","7,925","6,055","4,950","5,090","6,170","18,135","12,390","8,075","6,795","7,255","4,615","8,035","11,480","11,015","19,090","16,165","6,295","10,050","7,095","9,265","4,045","8,920","8,665","5,550","8,380","6,290","4,805","11,555","6,875","4,165","7,260","11,350","11,935","5,725","6,430","4,345","5,050","6,705","7,450","6,085","22,055","7,580","4,980","7,435","8,405","8,835","3,735","3,465","17,715","7,585","6,465","6,615","7,410","8,965","5,290","19,225","4,580","4,665","10,480","17,975","7,450","10,420","5,925","12,600","7,765","16,745","5,520","6,600","10,565","21,125","5,875","9,220","4,980","10,110","8,075","4,525","7,710","15,270","5,300","3,860","6,790","4,800","4,730","4,730","9,705","7,310","9,010","21,500","4,790","3,590","6,250","11,180","13,765","7,155","9,370","11,750","10,920","6,665","10,220","4,345","7,025","8,255","3,505","7,330","43,785","11,050","15,575","11,905","7,805","5,185","12,360","21,785","6,900","9,360","21,595","5,965","4,100","6,595","5,935","6,345","12,790","6,420" -1967,Journey to work,Main mode of commuting,Census Profile 98-316-X2016001," Car, truck, van - as a driver","575,255","7,155","6,135","4,090","3,290","7,150","3,910","1,780","5,270","2,920","5,940","1,235","6,465","5,695","4,040","1,075","2,870","2,240","2,010","3,825","1,295","2,070","2,040","3,955","2,705","5,860","4,195","3,970","2,980","1,545","3,380","5,845","5,580","5,825","8,405","1,655","4,145","4,490","3,940","2,350","3,890","5,980","3,185","3,705","2,910","2,355","6,205","2,395","2,490","3,105","3,665","5,310","3,805","3,695","2,800","3,225","3,925","2,585","2,440","11,775","2,860","2,410","3,335","1,100","5,335","2,210","1,610","10,005","3,705","3,065","3,480","4,475","2,555","3,145","10,785","2,495","3,025","6,540","11,095","4,240","2,195","2,725","6,965","3,590","4,745","2,995","3,245","4,760","6,820","1,940","1,290","1,795","3,825","4,040","2,370","1,755","8,580","3,460","1,110","3,980","3,515","1,130","2,930","4,860","2,340","3,430","13,665","2,195","1,905","3,065","2,610","5,000","4,555","5,860","7,090","5,950","1,940","5,165","2,860","2,835","2,075",585,"3,650","9,100","5,980","9,445","5,585","4,015","2,070","7,025","9,890","3,260","6,220","11,505","2,480","1,685","2,190","1,970","2,050","5,945","3,205" -1968,Journey to work,Main mode of commuting,Census Profile 98-316-X2016001," Car, truck, van - as a passenger","57,170",930,665,355,290,500,265,165,385,240,355,175,620,480,735,115,305,140,165,395,120,470,130,350,245,560,280,260,500,155,355,510,600,820,"1,060",185,365,345,445,250,265,465,315,260,185,100,975,275,175,325,235,345,325,320,205,365,505,275,255,975,285,465,325,165,450,120,135,"1,220",195,195,305,350,275,230,"1,400",225,275,"1,145",760,505,165,330,930,310,370,240,295,625,640,175,140,130,410,375,235,175,820,330,105,420,230,115,235,690,195,300,"1,510",95,200,350,225,655,245,975,440,705,135,590,320,290,315,90,320,760,640,"1,140",550,430,415,595,695,275,515,"1,405",165,120,195,155,155,665,355 -1969,Journey to work,Main mode of commuting,Census Profile 98-316-X2016001, Public transit,"463,000","3,350","2,985","1,285","6,200","2,945","2,870","3,540","3,695","1,610","2,415","1,105","4,680","3,210","2,720","1,605","3,595",580,"2,710","3,380","2,010","2,130","1,970","1,675","7,000","5,435","3,230","2,320","3,020","2,290","3,370","4,605","4,255","8,950","6,085","3,010","4,410","2,010","4,595","1,330","3,945","1,945","1,750","3,860","2,720","1,830","3,965","3,050","1,320","3,425","6,260","4,725","1,480","2,170","1,200","1,305","2,070","3,725","3,025","8,205","3,335","1,835","3,505","2,245","2,665","1,185","1,400","5,895","3,015","2,695","2,160","1,795","3,450","1,585","6,425","1,620","1,085","2,510","5,040","2,485","3,295","2,665","4,110","2,890","9,435","1,815","2,705","4,535","6,965","2,335","5,230","2,725","4,930","3,240","1,560","2,775","5,275","1,375","1,980","2,155",950,"2,245","1,345","3,630","2,845","3,530","5,935","1,960","1,370","2,570","5,785","5,315","1,975","2,195","3,505","3,820","4,245","2,995","1,030","3,190","2,605","1,260","3,025","10,915","3,990","4,380","5,275","2,975","2,200","4,170","9,390","2,845","2,380","7,635","2,540","1,940","3,005","2,935","3,170","5,405","2,400" -1970,Journey to work,Main mode of commuting,Census Profile 98-316-X2016001, Walked,"107,665",265,280,195,"3,200",615,215,"5,840",345,110,550,100,520,415,245,225,305,165,345,255,"1,805",160,630,110,"7,275",340,200,170,330,295,425,375,440,"1,215",460,600,610,175,195,70,590,180,200,405,280,285,280,485,130,340,520,620,75,180,65,95,115,450,235,795,535,185,125,"3,840",270,115,140,370,530,340,420,505,"1,335",175,425,180,180,180,505,130,"3,915",125,385,675,"1,840",265,270,470,"5,070",695,"1,945",245,390,245,170,"1,390",420,85,355,135,75,880,150,360,715,"1,200",220,255,90,210,"1,305","1,425",270,245,380,300,260,750,110,565,"1,760",950,260,"20,855",290,425,345,285,225,380,"1,550",405,140,780,340,145,525,635,715,585,360 -1971,Journey to work,Main mode of commuting,Census Profile 98-316-X2016001, Bicycle,"34,355",70,35,65,"1,675",65,15,325,30,10,90,20,45,140,85,305,60,35,295,25,710,70,215,0,690,90,80,35,355,295,400,20,55,"1,980",10,775,365,40,10,20,85,35,65,50,95,150,55,580,10,20,565,810,25,10,10,10,20,280,30,90,525,50,45,940,45,30,125,85,30,85,135,235,"1,260",110,60,10,40,40,310,10,690,25,35,215,250,155,35,55,"1,330",615,475,35,430,95,145,"1,470",45,10,255,35,0,300,25,85,"1,075",325,20,265,0,0,"1,145","1,145",20,20,235,35,55,570,15,55,"1,380",555,20,"1,570",30,60,60,30,205,80,50,55,20,45,380,175,610,145,155,115,30 -1972,Journey to work,Main mode of commuting,Census Profile 98-316-X2016001, Other method,"13,610",45,65,65,225,140,90,175,100,65,180,20,100,140,85,40,85,75,55,55,105,55,100,70,190,80,85,40,70,40,120,140,95,310,145,80,160,45,65,30,150,75,45,90,90,85,90,85,50,65,90,130,15,40,55,35,55,140,95,195,45,35,80,120,65,50,40,120,115,85,110,65,90,45,115,60,55,50,265,75,155,40,170,85,100,60,55,130,285,115,135,50,140,85,30,135,115,40,50,70,30,60,55,95,140,210,160,30,25,50,120,200,80,60,115,110,35,135,20,90,125,65,55,610,95,95,110,90,70,105,215,55,65,210,70,30,55,90,95,75,85 -1973,Journey to work,Commuting duration,Census Profile 98-316-X2016001,Total - Commuting duration for the employed labour force aged 15 years and over in private households with a usual place of work or no fixed workplace address - 25% sample data,"1,251,055","11,820","10,155","6,045","14,905","11,395","7,355","11,815","9,820","4,965","9,515","2,655","12,425","10,100","7,905","3,375","7,220","3,225","5,590","7,925","6,055","4,960","5,090","6,170","18,130","12,380","8,075","6,795","7,260","4,610","8,035","11,475","11,015","19,090","16,160","6,300","10,040","7,095","9,275","4,040","8,930","8,665","5,555","8,385","6,290","4,805","11,555","6,870","4,165","7,260","11,355","11,940","5,720","6,430","4,350","5,045","6,705","7,445","6,080","22,060","7,580","4,985","7,430","8,405","8,825","3,730","3,465","17,720","7,580","6,470","6,615","7,410","8,970","5,295","19,225","4,585","4,665","10,455","17,990","7,450","10,420","5,915","12,595","7,765","16,735","5,520","6,610","10,565","21,115","5,875","9,220","4,980","10,120","8,075","4,525","7,700","15,270","5,300","3,855","6,795","4,805","4,740","4,735","9,710","7,325","9,015","21,500","4,785","3,595","6,245","11,180","13,750","7,160","9,365","11,760","10,915","6,670","10,225","4,345","7,025","8,250","3,500","7,335","43,785","11,050","15,570","11,900","7,800","5,185","12,360","21,795","6,890","9,365","21,595","5,965","4,095","6,590","5,935","6,350","12,790","6,420" -1974,Journey to work,Commuting duration,Census Profile 98-316-X2016001, Less than 15 minutes,"152,750","1,610","1,455","1,210","2,330","1,695",850,"3,175",860,480,"1,560",255,"1,570","1,270",955,345,605,415,590,760,900,345,650,670,"3,740","1,355","1,095",760,530,435,845,"1,045","1,405","1,550","1,605",630,"1,070",810,940,365,"1,465","1,405",930,"1,070",740,655,"1,250",700,415,730,770,"1,065",625,555,360,675,710,665,800,"2,695",765,395,780,"2,075","1,225",415,285,"1,850","1,000",695,755,"1,210","1,060",770,"2,520",570,865,"1,210","1,780",765,"1,945",420,"1,425",895,"1,725",665,655,"1,120","2,470",770,"1,005",530,755,830,530,"1,060","1,755",610,385,730,585,550,680,900,840,"1,550","2,355",405,340,610,"1,130","1,685",735,"1,305","1,475","1,210",420,"1,300",655,"1,010","1,170",670,890,"9,230","1,015","2,325",915,715,435,"1,590","2,050",680,"1,155","2,740",530,370,585,695,780,"1,365",850 -1975,Journey to work,Commuting duration,Census Profile 98-316-X2016001, 15 to 29 minutes,"354,565","3,175","2,735","1,815","6,260","3,475","1,750","4,900","2,560","1,385","3,060",545,"2,845","2,420","2,295",965,"1,530","1,075","1,520","1,830","2,470","1,030","1,975","1,465","7,310","2,580","2,255","1,800","1,545","1,285","2,340","2,935","2,670","5,335","4,135","1,835","2,340","2,000","1,840","1,325","2,065","2,825","1,560","1,880","1,755","1,960","3,285","1,855",865,"1,795","2,510","3,025","1,460","1,780","1,405","1,520","1,985","2,010","1,235","5,935","1,510","1,075","1,365","3,165","2,815",860,770,"4,815","1,835","1,950","1,930","2,675","2,975","1,420","4,485","1,340","1,350","3,100","4,330","1,750","4,430","1,195","3,825","2,355","4,655","1,270","1,500","2,445","7,395","2,140","2,990",950,"2,315","2,020","1,350","2,810","4,135","1,655","1,320","1,930","1,560","1,655","1,500","2,265","2,130","3,915","5,120",920,"1,010","1,415","3,115","4,415","2,205","2,850","3,040","3,300","1,045","3,060","1,315","1,565","3,045","1,290","1,825","18,250","2,455","4,650","2,725","2,015","1,025","3,275","5,430","1,680","3,165","5,360","1,450",900,"2,020","1,765","2,265","3,280","1,770" -1976,Journey to work,Commuting duration,Census Profile 98-316-X2016001, 30 to 44 minutes,"359,230","2,940","2,515","1,495","4,000","3,110","2,120","2,200","3,065","1,320","2,995",785,"3,110","2,770","2,045","1,205","2,590","1,205","1,995","2,210","1,700","1,515","1,670","1,410","4,060","3,510","2,410","1,725","2,610","1,865","2,795","3,000","2,755","6,665","4,365","2,140","3,325","2,070","2,300",965,"2,710","1,865","1,170","2,000","2,255","1,395","3,040","2,330","1,095","1,915","4,560","4,445","1,450","1,615","1,260","1,260","1,840","2,905","1,540","5,795","2,600","1,590","2,010","1,810","2,155","1,390","1,215","4,660","2,410","2,600","2,610","2,025","2,810","1,450","4,555","1,185","1,000","2,685","5,620","1,840","2,440","1,635","3,265","2,770","6,380","1,505","2,020","3,000","7,030","1,920","2,820","1,515","3,730","2,195","1,425","2,255","4,105","1,415","1,400","1,800","1,215","1,415","1,115","2,745","2,380","2,215","5,145","1,805","1,075","1,430","3,655","4,400","2,350","2,400","3,595","2,865","2,305","3,000","1,215","1,935","2,420",955,"1,650","9,955","2,575","3,955","3,515","2,225","1,760","3,150","7,290","2,200","2,320","5,280","2,145","1,420","2,355","2,215","2,195","3,430","2,170" -1977,Journey to work,Commuting duration,Census Profile 98-316-X2016001, 45 to 59 minutes,"181,675","1,410","1,230",630,"1,410","1,540","1,465",690,"1,865",770,"1,200",460,"1,900","1,750",875,515,"1,235",340,910,"1,305",510,"1,045",580,925,"1,445","2,655","1,220","1,120","1,340",655,"1,265","1,745","1,765","3,055","2,560",915,"2,025","1,195","1,760",540,"1,550","1,010",725,"1,615",910,440,"1,505","1,100",675,"1,240","2,315","2,275",675,915,595,495,785,"1,060","1,170","4,265","1,700",815,"1,595",610,970,730,745,"2,325","1,410",935,900,960,"1,170",670,"2,360",600,665,"1,110","3,185","1,100",775,"1,000","1,345","1,100","2,295",885,"1,240","1,855","2,530",630,"1,115",980,"1,890","1,490",705,785,"2,135",660,435,825,875,500,560,"1,865","1,095",700,"3,335","1,145",485,"1,025","1,595","1,775","1,000","1,000","2,245","1,240","1,615","1,805",485,"1,245",855,320,"1,405","3,320","1,740","1,615","2,030","1,105",950,"2,015","4,175","1,290","1,170","2,895","1,095",915,915,795,630,"1,605",845 -1978,Journey to work,Commuting duration,Census Profile 98-316-X2016001, 60 minutes and over,"202,830","2,670","2,230",895,905,"1,565","1,180",855,"1,480","1,000",725,615,"3,000","1,890","1,745",335,"1,260",190,590,"1,820",475,"1,030",220,"1,705","1,540","2,305","1,090","1,395","1,215",380,785,"2,755","2,410","2,475","3,500",775,"1,290","1,030","2,435",845,"1,140","1,540","1,170","1,825",625,370,"2,475",900,"1,115","1,580","1,185","1,145","1,510","1,565",740,"1,085","1,380",800,"1,345","3,360","1,010","1,100","1,675",740,"1,675",320,455,"4,055",930,295,430,550,960,970,"5,300",895,795,"2,345","3,050","2,010",835,"1,680","2,730",640,"1,680","1,215","1,195","2,135","1,695",430,"1,300","1,005","1,435","1,550",505,775,"3,130",955,310,"1,510",565,615,875,"1,925",865,610,"5,530",505,680,"1,775","1,690","1,495",855,"1,815","1,410","2,310","1,285","1,045",685,"1,290",765,260,"1,570","3,040","3,275","3,010","2,725","1,745","1,010","2,320","2,830","1,050","1,545","5,320",735,495,720,470,460,"3,095",805 -1979,Journey to work,Time leaving for work,Census Profile 98-316-X2016001,Total - Time leaving for work for the employed labour force aged 15 years and over in private households with a usual place of work or no fixed workplace address - 25% sample data,"1,251,055","11,825","10,160","6,045","14,895","11,400","7,350","11,815","9,820","4,965","9,530","2,655","12,430","10,090","7,900","3,380","7,225","3,215","5,590","7,925","6,060","4,955","5,085","6,170","18,130","12,385","8,070","6,800","7,260","4,605","8,035","11,480","11,005","19,090","16,170","6,300","10,045","7,105","9,275","4,045","8,925","8,670","5,555","8,380","6,290","4,805","11,550","6,875","4,165","7,260","11,355","11,945","5,720","6,435","4,345","5,045","6,700","7,445","6,085","22,075","7,580","4,990","7,430","8,405","8,840","3,735","3,465","17,730","7,580","6,470","6,615","7,410","8,965","5,295","19,230","4,585","4,665","10,460","17,980","7,445","10,415","5,920","12,605","7,760","16,740","5,520","6,610","10,565","21,110","5,875","9,220","4,985","10,115","8,080","4,525","7,710","15,265","5,300","3,850","6,795","4,800","4,735","4,740","9,715","7,325","9,000","21,490","4,790","3,595","6,240","11,185","13,765","7,160","9,365","11,760","10,915","6,670","10,220","4,345","7,020","8,245","3,490","7,330","43,800","11,045","15,575","11,895","7,800","5,180","12,360","21,785","6,890","9,355","21,600","5,975","4,105","6,585","5,935","6,345","12,775","6,415" -1980,Journey to work,Time leaving for work,Census Profile 98-316-X2016001, Between 5 a.m. and 5:59 a.m.,"56,235",530,300,485,235,290,305,175,175,155,215,225,725,515,705,85,470,35,260,645,120,450,60,335,365,715,285,385,510,105,200,445,670,915,"1,405",260,365,345,670,225,365,420,385,480,165,70,"1,050",180,255,195,335,300,395,210,230,480,525,225,375,980,315,495,415,240,680,95,110,795,140,65,105,135,255,450,"1,220",320,225,305,845,530,255,555,"1,055",170,375,350,150,470,450,120,350,220,540,480,160,195,690,345,80,260,130,180,340,820,250,115,"1,455",105,290,390,525,375,225,340,425,465,365,290,350,360,250,50,405,710,815,"1,330",665,655,445,730,405,135,575,"1,330",165,165,245,115,160,780,355 -1981,Journey to work,Time leaving for work,Census Profile 98-316-X2016001, Between 6 a.m. and 6:59 a.m.,"162,440","1,565","1,315","1,080",930,"1,215",900,840,910,545,725,595,"1,840","1,345","1,735",295,"1,180",260,640,"1,735",560,"1,005",285,"1,045","1,235","1,750",885,"1,070","1,050",425,835,"1,380","1,925","2,430","3,340",800,"1,115","1,075","1,565",840,965,"1,320",825,"1,155",585,385,"2,475",790,670,750,"1,150","1,135","1,035",660,630,970,"1,570",650,"1,045","3,040",810,"1,135","1,250",625,"1,440",365,440,"2,485",615,425,465,590,880,825,"3,580",875,695,"1,275","2,505","1,335",735,"1,225","2,695",640,"1,390",805,660,"1,385","1,690",445,970,765,"1,410","1,160",655,570,"2,100","1,060",350,890,635,415,855,"1,865",750,675,"4,055",445,780,"1,095","1,410","1,290",605,"1,090","1,530","1,510",995,935,825,885,595,205,"1,130","2,845","1,935","2,780","2,060","1,465",855,"2,070","1,630",555,"1,535","3,695",660,595,745,465,425,"2,260",990 -1982,Journey to work,Time leaving for work,Census Profile 98-316-X2016001, Between 7 a.m. and 7:59 a.m.,"305,355","2,650","2,305","1,640","2,770","3,130","2,020","2,375","2,625","1,135","2,740",595,"3,020","2,815","1,550",795,"1,800",925,"1,465","1,815","1,125","1,235","1,220","1,950","3,340","3,100","2,035","1,825","1,755","1,140","2,420","3,115","2,665","3,965","4,110","1,330","2,665","1,975","2,010",890,"2,055","2,610","1,515","1,835","1,570","1,050","2,520","1,785","1,265","1,930","3,080","3,185","1,475","1,730","1,195","1,120","1,405","1,860","1,405","6,410","2,070","1,160","1,670","1,270","2,070","1,215","1,070","4,230","2,035","2,070","1,895","2,335","1,720","1,405","4,540","1,120","1,285","2,255","5,340","1,525","2,205","1,420","2,510","2,360","4,355","1,545","1,695","2,535","4,845","1,250","1,645","1,165","2,330","2,090","1,185","1,410","4,135","1,350",845,"1,915","1,630",990,"1,185","2,345","1,525","2,335","5,520","1,430",795,"1,375","2,105","3,195","1,765","2,115","3,620","2,690","1,530","2,990",965,"1,620","1,540",665,"2,045","9,265","2,720","3,270","2,690","1,860","1,170","3,130","5,360","1,925","2,630","5,060","1,645","1,165","1,450","1,525","1,685","3,060","1,695" -1983,Journey to work,Time leaving for work,Census Profile 98-316-X2016001, Between 8 a.m. and 8:59 a.m.,"335,840","2,680","2,385","1,280","5,805","3,605","1,985","5,015","3,325","1,385","3,045",430,"2,805","2,550","1,035","1,150","1,635","1,115","1,445","1,365","2,060",940,"1,860","1,350","7,035","2,735","2,290","1,580","1,830","1,490","2,520","3,045","2,165","5,280","2,670","1,790","3,020","1,965","1,560",735,"2,285","2,045","1,265","1,825","2,090","1,735","1,580","2,000",850,"2,080","3,525","3,950","1,040","1,820","1,005",845,945,"2,290","1,155","5,835","2,190",865,"1,430","2,470","1,720","1,250","1,005","3,905","2,580","2,420","2,650","2,685","2,680","1,200","2,995",870,"1,290","2,520","4,400","1,355","3,980",905,"1,625","2,905","6,050","1,240","1,940","2,565","8,000","2,240","2,450",925,"2,615","1,880","1,195","2,640","3,635",990,"1,320","1,600","1,335","1,250",945,"1,820","2,250","3,530","3,800","1,765",625,"1,110","2,690","4,790","2,300","2,125","3,195","2,580","1,525","3,235",780,"1,550","2,880","1,145","1,670","19,395","1,925","2,740","2,600","1,335","1,170","2,390","8,015","2,345","2,025","3,885","1,945","1,140","2,050","2,260","2,350","2,440","1,510" -1984,Journey to work,Time leaving for work,Census Profile 98-316-X2016001, Between 9 a.m. and 11:59 a.m.,"200,780","2,625","2,205",640,"3,420","2,000","1,075","2,395","1,825","1,075","1,885",275,"1,785","1,350",870,610,885,680,960,845,"1,315",500,"1,160",705,"3,925","1,660","1,275",845,"1,075",850,"1,180","1,980","1,410","3,525","1,805","1,165","1,455",875,"1,245",490,"1,605","1,160",695,"1,270","1,170","1,110","1,260","1,170",530,"1,310","1,830","2,000",810,"1,325",640,580,715,"1,385",815,"2,940","1,285",540,"1,020","2,435","1,165",540,405,"3,410","1,355",995,"1,070",995,"2,035",565,"2,515",515,610,"2,735","2,520",940,"1,935",550,"1,400","1,070","2,825",575,"1,430","1,875","3,780","1,030","1,830",805,"1,575","1,135",620,"1,795","2,110",610,740,"1,125",585,"1,030",455,"1,055","1,390","1,650","2,720",615,365,830,"2,125","2,535","1,605","2,495","1,390","1,875",845,"1,680",605,"1,105","1,855",920,960,"8,010","1,250","1,850","1,605",835,590,"1,765","4,615","1,300","1,145","3,090",875,545,"1,235","1,015","1,145","1,585",965 -1985,Journey to work,Time leaving for work,Census Profile 98-316-X2016001, Between 12 p.m. and 4:59 a.m.,"190,410","1,775","1,650",915,"1,745","1,160","1,070","1,000",960,675,910,530,"2,235","1,515","2,005",460,"1,250",205,825,"1,530",865,815,505,785,"2,240","2,430","1,300","1,095","1,035",610,880,"1,500","2,175","2,975","2,870",945,"1,440",855,"2,200",860,"1,640","1,115",865,"1,820",700,445,"2,695",950,590,985,"1,425","1,360",955,670,645,"1,050","1,545","1,040","1,285","2,850",915,805,"1,645","1,355","1,750",260,430,"2,905",850,505,440,660,"1,390",840,"4,390",890,565,"1,370","2,380","1,765","1,320","1,265","3,325",625,"1,720",990,740,"1,740","2,345",775,"1,970","1,105","1,640","1,330",700,"1,100","2,585",935,515,"1,010",485,885,955,"1,795","1,165",705,"3,980",435,735,"1,435","2,340","1,590",665,"1,205","1,580","1,795","1,430","1,070",825,"1,510","1,125",520,"1,120","3,565","2,400","3,605","2,295","1,650",950,"2,270","1,745",620,"1,455","4,545",680,490,850,560,565,"2,655",890 -1986,Language of work,Language used most often at work,Census Profile 98-316-X2016001,"Total - Language used most often at work for the population in private households aged 15 years and over who worked since January 1, 2015 - 25% sample data","1,559,535","14,555","12,705","7,190","19,945","14,870","9,105","16,110","12,535","6,670","13,020","3,285","14,970","12,635","9,740","4,300","8,680","5,100","6,890","9,500","7,645","5,820","7,065","7,655","22,785","14,780","9,870","8,645","8,635","5,715","9,995","14,565","13,105","23,225","19,070","7,885","12,610","9,100","11,055","4,830","11,340","10,685","6,740","10,295","7,935","6,770","13,865","8,515","5,255","9,050","14,520","15,325","7,185","8,545","5,470","6,005","7,995","9,435","7,265","26,910","9,315","5,860","8,790","10,670","10,830","5,260","4,450","21,985","9,910","8,510","9,130","9,905","10,920","6,430","22,985","5,465","5,880","13,075","22,030","8,930","12,795","7,170","15,425","10,475","20,330","6,815","8,620","13,160","25,300","7,585","11,165","6,300","12,280","10,025","5,450","9,585","19,125","6,180","4,995","8,480","6,515","5,855","5,690","11,840","9,485","12,450","25,855","6,160","4,405","7,830","13,645","17,145","9,990","11,785","14,940","13,620","8,345","13,720","5,380","8,625","10,515","4,625","8,930","52,915","13,545","18,715","14,765","9,485","6,170","15,085","28,625","9,075","11,510","26,220","7,550","4,870","8,285","7,725","8,170","15,400","7,590" -1987,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Single responses,"1,522,985","13,855","12,210","7,110","19,640","14,535","8,930","15,720","12,055","6,280","12,875","3,165","14,665","12,495","9,460","4,225","8,400","4,980","6,770","9,205","7,555","5,620","6,985","7,555","22,410","14,505","9,680","8,520","8,365","5,595","9,855","13,985","12,845","22,715","18,500","7,650","12,470","8,935","10,785","4,720","11,085","10,520","6,570","10,030","7,770","6,700","13,480","8,405","5,190","8,715","14,195","15,115","7,025","8,070","5,345","5,870","7,770","9,300","7,105","26,335","9,125","5,675","8,650","10,410","10,490","5,230","4,415","21,180","9,630","8,475","8,975","9,855","10,755","6,290","22,405","5,360","5,785","12,280","21,565","8,785","12,515","6,935","15,030","10,380","19,855","6,675","8,260","12,650","24,930","7,510","10,815","6,080","12,035","9,830","5,385","9,485","18,600","6,050","4,895","8,165","6,430","5,705","5,575","11,505","9,380","12,255","25,345","6,090","4,285","7,695","13,405","16,845","9,735","11,035","14,675","13,045","8,115","13,590","5,255","8,300","10,305","4,545","8,645","52,105","13,310","18,245","14,260","9,270","5,955","14,755","27,390","8,695","11,335","25,585","7,460","4,790","8,130","7,615","8,045","14,990","7,405" -1988,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Official languages,"1,476,170","10,855","10,395","7,045","19,460","14,235","8,790","15,280","11,470","5,870","12,740","3,070","14,290","12,415","9,185","4,150","8,210","4,860","6,685","8,925","7,490","5,130","6,920","7,510","22,140","14,240","9,600","8,435","7,975","5,525","9,735","13,175","12,505","21,850","18,070","7,375","12,350","8,755","10,595","4,645","10,970","10,395","6,425","9,870","7,635","6,645","13,075","8,165","5,165","8,375","14,025","14,970","6,865","7,590","5,250","5,710","7,525","9,185","7,015","25,930","9,020","5,275","8,500","9,660","10,325","5,200","4,365","18,510","9,270","8,435","8,915","9,790","10,465","6,220","21,750","5,235","5,690","8,790","21,265","8,625","12,430","6,700","14,730","10,270","19,570","6,575","7,615","11,880","24,715","7,405","10,635","5,890","11,665","9,710","5,315","9,390","18,235","5,925","4,850","7,685","6,340","5,600","5,510","11,010","9,265","12,155","24,900","6,085","4,175","7,605","13,260","16,155","9,345","8,550","14,445","12,065","8,000","13,550","5,175","8,155","9,750","4,485","8,515","51,585","13,190","17,950","13,625","9,100","5,650","14,420","25,485","8,280","11,255","24,860","7,375","4,730","7,995","7,505","7,995","14,680","7,160" -1989,Language of work,Language used most often at work,Census Profile 98-316-X2016001, English,"1,469,915","10,835","10,370","7,030","19,320","14,180","8,770","15,210","11,420","5,850","12,705","3,055","14,265","12,360","9,155","4,085","8,185","4,840","6,665","8,905","7,450","5,120","6,900","7,485","21,985","14,140","9,580","8,425","7,935","5,485","9,660","13,115","12,430","21,710","18,055","7,340","12,280","8,735","10,550","4,630","10,950","10,365","6,415","9,835","7,595","6,625","13,060","8,120","5,155","8,350","13,945","14,880","6,835","7,570","5,230","5,700","7,510","9,145","6,995","25,810","8,950","5,260","8,480","9,570","10,295","5,180","4,335","18,425","9,225","8,390","8,860","9,750","10,430","6,200","21,690","5,215","5,670","8,790","21,150","8,590","12,320","6,665","14,705","10,190","19,435","6,550","7,615","11,850","24,605","7,385","10,575","5,880","11,620","9,675","5,300","9,335","18,115","5,910","4,810","7,665","6,300","5,565","5,490","10,980","9,210","12,130","24,825","6,035","4,160","7,575","13,200","16,105","9,300","8,535","14,395","11,995","7,975","13,440","5,155","8,125","9,715","4,480","8,460","51,360","13,135","17,855","13,600","9,075","5,625","14,350","25,365","8,255","11,185","24,825","7,275","4,680","7,955","7,455","7,950","14,640","7,135" -1990,Language of work,Language used most often at work,Census Profile 98-316-X2016001, French,"6,255",30,10,10,140,50,35,70,45,20,45,10,25,60,40,60,25,30,30,20,40,20,10,15,145,95,20,10,20,35,70,65,60,130,10,35,70,20,40,20,25,50,10,20,45,25,0,40,10,25,100,90,30,10,25,0,10,30,25,105,60,20,15,95,30,20,30,80,40,40,60,40,40,15,15,25,10,10,110,50,115,30,20,75,130,25,10,35,120,20,60,10,55,35,25,55,120,10,35,20,30,40,20,35,70,20,65,50,15,30,60,50,30,20,70,60,30,115,25,40,30,10,65,220,55,90,40,25,15,70,115,35,65,30,105,45,40,45,45,35,30 -1991,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Non-official languages,"46,810","3,010","1,815",60,190,310,135,450,585,410,125,90,375,70,280,80,190,115,70,270,65,485,65,45,265,275,80,80,390,75,130,820,335,870,410,270,120,185,175,75,110,120,135,165,135,55,410,225,20,340,175,150,170,490,100,170,245,120,95,390,110,405,135,750,170,35,50,"2,690",355,30,50,70,285,75,655,125,100,"3,490",310,155,80,245,310,120,280,105,635,775,190,110,175,185,370,115,70,90,375,130,50,480,85,110,65,490,100,100,450,0,115,95,145,680,400,"2,490",240,975,115,45,75,150,555,50,135,535,120,285,630,170,305,335,"1,910",425,80,735,80,60,140,110,45,315,240 -1992,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Aboriginal languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1993,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Algonquian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1994,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Blackfoot,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1995,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Cree-Montagnais languages,10,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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1996,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Atikamekw,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1997,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Montagnais (Innu),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1998,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Moose Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -1999,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Naskapi,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2000,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Northern East Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2001,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Plains Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2002,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Southern East Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2003,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Swampy Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2004,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Survivor benefits: Population with an amount,"75,450",645,565,655,780,"1,300",580,435,525,480,700,190,925,780,500,145,460,290,340,530,280,340,435,455,425,665,455,655,520,370,620,620,630,"1,015","1,230",290,495,715,655,290,705,950,425,425,325,330,"1,030",295,595,190,630,660,335,520,615,580,365,290,335,"1,435",295,455,550,435,795,375,195,"1,135",355,315,360,440,380,345,700,545,650,385,"1,030",445,200,280,570,405,575,335,375,660,260,245,165,190,710,505,370,485,"1,065",405,190,545,445,115,415,840,305,765,985,255,405,385,270,490,490,540,995,930,310,520,340,260,590,150,670,770,835,855,785,515,365,"1,040",840,515,"1,240","1,370",275,260,445,325,510,700,680 -2005,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Eastern Algonquian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2006,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Malecite,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2007,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Mi'kmaq,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2008,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ojibway-Potawatomi languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2009,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Algonquin,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2010,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ojibway,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2011,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Oji-Cree,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2012,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ottawa (Odawa),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2013,Income,Income sources,Catalogue no. 98-400-X2016122, EI - Other benefits: Population with an amount,"51,225",590,410,290,325,365,345,205,290,135,330,145,575,400,480,165,285,65,240,380,155,245,165,250,345,640,350,295,390,165,455,380,675,800,795,240,575,225,505,185,415,340,275,500,225,85,680,405,190,280,495,450,200,230,195,195,400,235,245,925,330,300,315,160,465,140,180,890,250,210,185,220,215,235,960,200,120,545,645,355,270,370,810,355,460,265,140,440,445,245,400,325,485,415,230,150,580,205,110,240,115,225,250,530,295,185,990,275,205,345,410,650,150,455,560,475,335,435,240,335,300,85,380,905,545,720,560,450,250,560,665,230,470,"1,130",355,175,275,175,135,520,260 -2014,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Algonquian languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2015,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Athabaskan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2016,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Northern Athabaskan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2017,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Babine (Wetsuwet'en),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2018,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Beaver,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2019,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Carrier,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2020,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Chilcotin,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2021,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Dene,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2022,Income,Income sources,Catalogue no. 98-400-X2016122, National Child Benefit Supplement (NCBS): Population with an amount,"138,600","1,985","1,495",415,400,870,750,505,820,610,590,615,"1,865",840,"2,360",425,770,105,520,"1,640",205,520,195,445,400,"1,675",710,825,520,250,650,"1,690","1,755","1,500","2,565",325,910,535,"2,140",815,"1,420",695,710,"1,975",515,140,"2,995",690,295,945,530,610,520,755,495,960,"1,370",410,980,"1,605",415,725,"1,370",705,"1,730",75,425,"2,925",505,170,195,265,405,420,"3,670",590,250,"1,925","1,085","1,290",600,"1,225","3,395",315,700,635,610,"1,280",550,225,"1,155","1,545","1,040","1,125",325,210,"2,105",615,130,770,205,945,655,"1,365",510,210,"2,710",190,"1,000","1,685",975,"1,095",745,"1,585",765,"1,520","1,405",465,825,"2,160",460,70,"1,155","1,005","2,155","2,135","1,855","1,340",625,"1,750","2,165",490,"1,100","4,500",460,280,375,230,185,"1,920",800 -2023,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Dogrib (Tlicho),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2024,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Gwich'in,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2025,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Sarsi (Sarcee),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2026,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Sekani,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2027,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Slavey-Hare languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2028,Language of work,Language used most often at work,Census Profile 98-316-X2016001, North Slavey (Hare),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2029,Language of work,Language used most often at work,Census Profile 98-316-X2016001, South Slavey,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2030,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Slavey, n.o.s.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2031,Income,Income sources,Catalogue no. 98-400-X2016122, Workers' compensation benefits: Average amount ($),"8,777","1,733","2,294","8,613","4,617","2,039","7,125",0,0,0,0,"8,785","6,982","4,448","8,763",0,"10,761",0,"6,600","7,858",0,"8,693",0,"3,888",0,"5,137","5,933","3,966","9,921","7,061","7,272",0,"5,065","9,625","9,221","8,346",0,"4,881","2,335","9,108","6,131","11,383","9,280","2,587",0,0,"10,359","4,881",0,0,"3,673",0,"8,578",0,"10,480","8,711","7,621","3,278","2,353","6,056","8,641","11,304","4,070","6,947","7,604",0,0,"4,281",0,0,0,0,"4,555","6,784","2,594","10,196","5,800",0,"5,427","2,875",0,"8,612","5,414",0,0,"4,200",0,0,0,0,"2,200",0,"12,515","3,210","4,592","4,291","2,774","11,264",0,"8,332",0,0,"8,874","11,407",0,0,"5,693","8,208","10,978","7,886","2,235",0,0,0,"7,733",995,"2,946",0,"7,481",0,"7,362",0,"8,345",0,"8,957","7,630","2,367","7,718","14,243","7,952",0,"4,600","6,727","3,827",0,"7,813","7,269",0,0,"7,529","8,068" -2032,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tahltan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2033,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kaska (Nahani),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2034,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tahltan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2035,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tutchone languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2036,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Northern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2037,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Southern Tutchone,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2038,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Athabaskan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2039,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Haida,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2040,Income,Income sources,Catalogue no. 98-400-X2016122, Workers' compensation benefits: Aggregate amount ($'000),"220,605",234,367,"2,067",554,316,"1,817",0,0,0,0,"1,186","1,920","1,023","3,067",0,"2,475",0,858,"1,768",0,"1,956",0,486,0,"1,053",712,575,"4,266",812,"1,418",0,"1,317","5,294","7,192","1,711",0,781,467,"1,184","1,073","2,618",696,388,0,0,"7,510",659,0,0,606,0,"1,587",0,"1,572","3,049","1,829",295,353,"2,271","1,469","2,826",814,660,"2,129",0,0,"1,327",0,0,0,0,706,848,934,"2,600",435,0,"1,628",460,0,"1,464","2,328",0,0,735,0,0,0,0,198,0,"4,881",658,597,944,749,"2,478",0,"1,708",0,0,"1,686","4,677",0,0,"2,078",985,"2,470","1,459",257,0,0,0,"2,204",194,383,0,"1,197",0,"1,546",0,"1,377",0,"3,135","3,510",568,"2,161","3,988","2,624",0,368,"2,018","1,588",0,625,"1,163",0,0,"3,501","2,945" -2041,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Inuit languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2042,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Inuinnaqtun (Inuvialuktun),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2043,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Inuktitut,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2044,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Inuit languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2045,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Iroquoian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2046,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Cayuga,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2047,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Mohawk,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2048,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Oneida,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2049,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Squamish,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2050,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Iroquoian languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2051,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kutenai,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2052,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Michif,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2053,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Salish languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2054,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Comox,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2055,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Halkomelem,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2056,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Lillooet,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2057,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Okanagan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2058,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Shuswap (Secwepemctsin),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2059,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Straits,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2060,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Thompson (Ntlakapamux),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2061,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Salish languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2062,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Siouan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2063,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Dakota,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2064,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Stoney,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2065,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Siouan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2066,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tlingit,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2067,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tsimshian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2068,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Gitxsan (Gitksan),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2069,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Nisga'a,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2070,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tsimshian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2071,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Wakashan languages,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2072,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Haisla,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2073,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Heiltsuk,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2074,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kwakiutl (Kwak'wala),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2075,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Nuu-chah-nulth (Nootka),10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2076,Income,Income sources,Catalogue no. 98-400-X2016122, Working income tax benefit (WITB): Aggregate amount ($'000),"119,999","2,274","1,649",343,894,771,698,576,886,504,537,284,"1,627",671,"1,422",366,735,138,464,"1,017",352,381,232,261,"1,043","1,365",687,563,530,338,477,"1,234","1,381","1,718","1,801",576,739,429,"1,226",550,"1,077",611,568,"1,331",452,174,"1,982",536,234,810,656,578,508,633,412,851,942,515,695,"1,419",498,565,964,977,"1,255",60,238,"2,793",643,172,161,217,644,363,"2,685",514,304,"2,565","1,211",761,852,790,"2,150",344,869,514,834,"1,641",868,308,"1,150","1,026",900,693,372,446,"1,450",458,255,598,233,902,517,"1,149",507,368,"1,903",178,641,844,"1,011","1,088",613,"1,879",757,"1,312",883,490,544,"1,829",829,167,830,"1,690","1,288","1,551","1,740",902,568,"1,207","2,155",692,923,"3,004",358,212,430,317,306,"1,527",614 -2077,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Wakashan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2078,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Aboriginal languages, n.o.s.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2079,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Non-Aboriginal languages,"46,805","3,005","1,820",60,185,310,130,445,585,420,135,95,370,85,275,75,190,120,80,275,65,480,60,45,270,275,75,75,380,70,135,825,335,865,420,265,120,185,170,75,120,115,145,160,135,55,415,235,30,340,180,150,165,495,105,165,240,120,90,395,105,405,145,750,175,10,55,"2,680",360,40,65,55,285,75,660,125,100,"3,490",300,160,75,245,305,115,285,100,640,775,200,120,175,190,370,125,75,90,365,130,40,475,90,110,65,495,100,100,455,10,110,75,135,690,390,"2,480",230,985,120,45,75,150,560,50,135,525,120,290,635,170,305,340,"1,900",415,75,730,80,60,130,110,55,310,235 -2080,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Afro-Asiatic languages,"1,025",0,0,0,25,0,15,35,10,0,10,10,0,0,35,0,0,0,0,0,0,0,0,0,10,10,10,10,0,0,0,35,0,0,10,0,0,0,0,10,20,10,0,10,20,0,25,0,0,10,0,0,0,0,0,0,0,0,10,10,10,0,10,0,35,0,0,20,10,10,0,0,0,0,10,0,0,0,20,0,0,10,115,0,0,0,0,0,0,0,0,20,0,10,0,10,10,0,0,10,0,0,0,30,0,20,0,0,0,15,10,0,15,0,0,30,10,0,10,20,0,0,35,20,0,0,10,20,10,35,40,0,0,10,0,0,0,0,0,0,0 -2081,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Berber languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2082,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kabyle,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2083,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Berber languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2084,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Cushitic languages,90,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,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,35,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,0,0,0,0,0,10,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 -2085,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Bilen,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2086,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Oromo,15,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,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,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,10,0,10,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 -2087,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Somali,75,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,10,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,35,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 -2088,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Cushitic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2089,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Semitic languages,930,0,0,0,15,0,10,25,10,0,10,0,0,0,40,0,0,0,0,0,0,0,0,0,30,15,0,0,0,0,0,35,0,0,10,0,0,0,0,0,20,0,0,10,20,0,20,0,0,20,0,0,0,0,0,0,0,0,15,10,10,0,10,0,0,0,0,40,10,0,0,0,0,0,20,0,0,0,10,0,0,10,110,0,0,0,0,10,0,0,0,10,10,10,0,0,20,0,0,0,0,0,0,30,0,20,0,0,0,15,10,0,0,0,0,20,20,0,0,10,0,0,40,10,0,0,20,10,10,35,30,0,0,20,10,0,0,0,0,0,0 -2090,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Amharic,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,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,0,0,0,0,0,0 -2091,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Arabic,565,0,0,0,10,0,10,10,10,0,0,0,0,0,40,0,0,0,10,0,0,0,0,0,20,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,10,10,0,0,0,0,0,20,0,0,0,10,0,0,0,70,0,0,0,0,0,0,0,0,0,0,10,0,0,20,10,0,10,0,0,0,10,0,0,0,0,0,10,0,0,10,0,0,20,10,0,0,20,0,0,35,10,0,0,0,10,10,45,15,0,0,0,10,0,0,0,0,0,0 -2092,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Assyrian Neo-Aramaic,85,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,20,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,50,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2093,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Chaldean Neo-Aramaic,10,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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2094,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Harari,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2095,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Hebrew,160,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0 -2096,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Maltese,20,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,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 -2097,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tigrigna,45,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0 -2098,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Semitic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2099,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Afro-Asiatic languages, n.i.e.",10,0,0,0,0,0,0,10,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,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,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,0,0,0,0,0,0,0 -2100,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Austro-Asiatic languages,"1,055",0,10,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,50,0,15,0,0,0,0,0,15,0,0,0,0,0,20,65,0,0,10,0,0,10,0,0,0,0,0,155,0,0,0,0,15,0,0,10,20,70,0,0,0,10,10,0,15,10,0,0,10,0,0,10,0,0,0,0,10,0,0,20,0,0,30,0,0,0,0,0,10,0,10,0,0,15,10,0,0,0,10,0,0,0,0,10,70,10,0,0,0,0,0,30,0,0,0,20,10,0,0,20,0,15,0,0,0,0,20,0,20,35,10,10,0,0,10,0,0,0,0,0,20,0 -2101,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Khmer (Cambodian),40,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,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,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 -2102,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Vietnamese,"1,020",0,10,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,60,0,15,0,0,0,0,10,10,0,0,0,0,0,20,45,0,0,0,0,0,10,0,10,0,0,0,155,0,0,0,0,10,0,0,0,20,75,0,0,10,0,20,0,10,10,0,0,20,0,0,0,0,0,0,0,10,0,0,10,0,0,35,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,20,0,0,0,0,10,65,10,0,0,0,10,0,20,0,0,0,0,0,0,0,10,0,10,0,0,10,0,10,0,20,30,10,10,0,0,10,0,0,0,0,0,30,10 -2103,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Austro-Asiatic languages, n.i.e",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2104,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Austronesian languages,635,0,0,0,0,0,10,10,0,0,0,0,20,0,0,0,15,0,0,0,0,10,0,0,10,10,10,0,0,0,0,25,10,0,10,0,0,0,0,0,15,0,0,0,0,0,10,0,10,0,0,10,10,0,10,0,20,10,10,0,0,0,10,0,0,0,0,25,10,0,0,0,0,0,10,0,0,10,0,0,0,10,0,0,0,10,0,20,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,35,0,0,20,10,0,0,0,0,0,0,10,0,0,0,0,15,0,0,10,75,10,0,25,0,0,0,30,0,0,0,0,0,25,25 -2105,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Bikol,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2106,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Cebuano,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,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 -2107,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Fijian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2108,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Hiligaynon,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2109,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ilocano,15,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,10,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,0,0,0,0,10,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,10,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 -2110,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Malagasy,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2111,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Malay,20,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,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,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2112,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Pampangan (Kapampangan, Pampango)",10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2113,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Pangasinan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2114,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Tagalog (Pilipino, Filipino)",580,10,0,0,0,10,10,0,0,0,0,0,30,0,0,0,15,0,0,0,0,0,0,0,10,20,15,0,0,0,0,15,10,0,0,0,0,0,0,0,10,0,0,10,10,0,10,0,10,0,0,0,0,0,10,0,10,10,10,0,0,10,0,0,0,0,0,15,10,0,0,0,0,0,10,0,0,10,0,0,0,20,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,10,10,0,0,0,0,0,10,10,0,0,0,0,10,0,0,10,70,0,0,25,0,0,0,40,0,0,10,0,0,25,15 -2115,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Waray-Waray,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2116,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Austronesian languages, n.i.e.",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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -2117,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Creole languages,10,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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2118,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Haitian Creole,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2119,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Creole, n.o.s.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2120,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Creole languages, n.i.e.",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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2121,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Dravidian languages,"1,090",65,40,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,45,0,0,0,0,0,30,0,0,0,0,10,0,0,10,0,0,0,0,0,35,0,0,0,0,0,30,0,0,0,15,0,0,0,0,50,0,0,0,0,0,0,150,0,0,40,0,40,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,10,10,15,0,0,0,160,0,0,10,0,0,0,0,0,20,0,0,10,0,0,0,10,0,10,10,0,10,0,20,0,0,0,160,0,0,0,0,0,40,0 -2122,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kannada,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2123,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Malayalam,25,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,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0 -2124,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tamil,"1,060",45,35,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,55,0,0,0,0,0,35,0,0,0,0,10,0,0,0,0,0,0,0,0,35,0,0,0,0,0,30,0,0,0,20,0,0,0,0,40,0,0,0,0,0,0,140,0,0,35,0,35,0,0,10,0,0,0,0,0,0,0,0,15,0,10,0,0,0,0,0,0,10,10,15,0,0,0,165,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,10,0,10,10,0,10,0,20,0,0,0,120,0,0,0,0,0,40,0 -2125,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Telugu,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,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,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2126,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Dravidian languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2127,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Hmong-Mien languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2128,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Indo-European languages,"13,005",10,10,60,85,55,75,90,120,35,40,75,35,25,80,0,165,0,55,195,45,430,20,30,105,35,25,30,345,0,50,150,35,545,265,180,40,140,55,30,30,95,75,75,65,15,145,40,10,55,130,90,60,10,80,140,130,65,10,285,75,365,30,25,65,20,40,45,145,25,20,40,140,60,75,95,90,10,180,0,40,155,150,40,155,70,160,320,85,0,75,60,255,50,35,55,160,100,20,30,55,0,35,385,65,55,70,0,90,25,80,0,40,0,205,50,75,30,45,125,85,0,65,235,35,210,355,110,255,65,390,80,60,190,0,10,80,30,10,120,185 -2129,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Albanian,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,10,0,0,10,0,10,0,10,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2130,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Armenian,115,0,0,0,0,10,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,10,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,10,0,0,0,0,40,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,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,0,0,0,0,0,0,0,0 -2131,Income,Income sources,Catalogue no. 98-400-X2016122, Working income tax benefit (WITB): Population with an amount,"143,345","2,440","1,805",460,"1,220",935,855,755,"1,005",600,700,450,"1,810",850,"1,730",430,910,190,600,"1,265",475,500,320,315,"1,425","1,560",815,670,710,410,580,"1,480","1,575","2,255","2,140",765,910,595,"1,380",620,"1,335",760,695,"1,510",605,245,"2,315",660,290,965,855,780,600,735,475,910,"1,065",695,845,"1,700",655,690,"1,150","1,290","1,330",110,310,"3,150",730,225,250,345,850,435,"2,945",580,350,"2,850","1,495",935,"1,075",965,"2,460",445,"1,125",630,940,"1,820","1,230",420,"1,415","1,125","1,150",845,420,665,"1,695",540,315,755,285,925,615,"1,420",680,475,"2,230",230,715,980,"1,430","1,355",690,"2,135",870,"1,490",980,590,670,"1,685","1,115",245,980,"2,230","1,520","1,880","1,950","1,110",695,"1,415","2,410",840,"1,075","3,360",415,300,585,430,420,"1,950",740 -2132,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Balto-Slavic languages,"2,385",0,0,35,0,0,50,10,0,0,10,0,10,0,10,0,15,10,0,10,15,0,0,0,40,0,20,0,0,0,0,20,20,20,10,10,10,90,10,10,10,60,45,10,25,0,10,0,0,10,55,55,0,0,50,10,0,0,0,145,10,0,0,10,0,0,10,0,40,20,10,10,10,45,0,0,75,0,100,10,0,15,30,0,20,30,10,180,10,0,0,0,0,10,20,10,20,0,10,10,15,0,20,25,35,0,0,0,0,0,30,0,10,0,145,20,10,10,0,20,10,0,0,10,20,20,295,0,10,0,10,20,10,0,0,0,0,0,0,25,0 -2133,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Baltic languages,25,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,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,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 -2134,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Latvian,10,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,10,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2135,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Lithuanian,20,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,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,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,0,10,0,0,0,0,0,0,0,0,0,0,0,0 -2136,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Slavic languages,"2,360",0,0,30,10,20,50,0,0,10,0,0,10,0,0,0,15,0,0,0,15,0,0,0,20,0,10,0,0,0,0,35,10,20,10,20,10,90,10,0,10,55,45,10,20,0,10,0,0,10,70,35,10,10,40,10,0,0,0,130,10,0,0,10,0,0,10,0,40,10,10,0,10,50,0,0,70,0,100,0,0,15,25,0,20,35,10,180,10,0,0,0,0,0,10,0,30,0,0,0,25,0,20,25,35,0,20,0,0,0,40,0,0,0,150,20,10,10,0,15,10,0,0,25,10,20,285,10,0,0,10,20,10,0,0,10,0,0,0,45,0 -2137,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Belarusan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2138,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Bosnian,10,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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2139,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Bulgarian,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2140,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Croatian,45,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,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,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2141,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Czech,10,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,10,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2142,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Macedonian,30,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,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,10,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,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 -2143,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Polish,500,0,0,30,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,20,0,0,0,30,10,0,0,0,0,0,0,0,20,15,0,0,10,10,0,0,0,45,0,0,0,0,0,0,0,0,0,10,0,0,0,30,0,0,35,0,35,0,0,0,25,0,0,30,0,0,10,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,30,0,0,0,0,0,20,0,0,0,30,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2144,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Russian,"1,110",0,0,0,0,0,35,0,0,0,10,0,10,0,0,0,10,0,0,0,15,0,0,0,10,0,10,0,0,0,0,30,10,0,0,10,0,25,0,0,0,10,0,0,15,0,0,0,0,10,20,10,0,10,10,10,0,10,0,30,0,0,0,10,0,0,10,0,25,0,10,0,0,0,0,0,10,0,20,0,0,10,0,0,20,10,10,175,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,15,0,0,0,0,0,0,0,0,10,0,35,0,0,0,0,0,0,0,0,10,0,10,270,0,10,0,0,20,0,0,0,0,0,0,0,35,0 -2145,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Serbian,100,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,10,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 -2146,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Serbo-Croatian,15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -2147,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Slovak,50,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,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2148,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Slovene (Slovenian),10,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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2149,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ukrainian,400,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,20,25,0,0,0,0,0,0,0,10,0,0,0,30,10,0,0,0,50,20,0,0,0,10,0,0,0,0,0,0,0,0,20,0,0,10,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,65,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2150,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Slavic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2151,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Celtic languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2152,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Scottish Gaelic,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2153,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Welsh,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2154,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Celtic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2155,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Germanic languages,245,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,15,0,10,0,0,20,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,10,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,10,10,0,0,0,0,20,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0 -2156,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Afrikaans,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2157,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Danish,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2158,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Dutch,35,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,10,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,10,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,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 -2159,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Frisian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2160,Language of work,Language used most often at work,Census Profile 98-316-X2016001, German,150,0,0,0,10,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,20,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2161,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Icelandic,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2162,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Norwegian,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2163,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Swedish,20,0,0,0,10,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,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,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,10,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 -2164,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Vlaams (Flemish),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,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 -2165,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Yiddish,15,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,10,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,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,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0 -2166,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Germanic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2167,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Greek,275,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,10,0,0,0,0,0,25,0,10,0,0,0,10,0,10,0,0,0,10,15,0,0,0,0,0,0,0,0,15,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,20,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,10,0,0,35,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0 -2168,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Indo-Iranian languages,"2,775",0,20,10,10,20,0,40,70,35,0,0,25,20,10,0,0,10,10,0,0,0,0,25,10,0,0,20,0,0,0,90,30,20,10,10,25,0,20,20,0,0,0,45,10,10,20,15,0,30,0,0,50,0,0,85,65,0,0,25,0,0,20,0,10,0,0,30,65,0,10,10,0,0,55,0,0,10,10,10,10,0,75,20,25,0,145,105,0,0,35,60,0,0,0,0,30,10,0,20,10,10,0,0,10,0,35,0,0,15,10,0,25,0,0,15,40,0,20,60,0,0,35,55,20,160,35,0,0,20,315,45,0,150,0,0,0,0,0,0,0 -2169,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Indo-Aryan languages,"1,375",0,0,15,0,0,0,30,0,0,0,0,10,20,10,0,0,0,10,0,0,0,0,25,10,10,0,15,0,0,0,20,20,30,0,0,10,0,0,10,0,20,0,25,0,0,0,20,0,10,10,0,20,0,0,85,65,0,0,10,0,0,20,0,10,0,0,10,25,0,0,0,0,0,45,0,0,10,10,0,10,0,85,0,0,0,0,0,0,0,10,50,0,0,0,0,0,0,0,10,0,10,0,0,10,0,35,0,0,10,15,0,10,0,10,10,25,0,20,40,0,0,0,20,0,150,20,0,0,10,25,0,0,125,0,0,0,0,0,0,0 -2170,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Bengali,255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,25,0,0,0,10,10,0,0,0,10,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,15,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,45,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,10,0,0,0,25,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0 -2171,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Gujarati,185,0,10,15,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,30,0,0,0,0,0,0,0,50,0,0,0,0,0,10,0 -2172,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Hindi,180,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,10,0,0,0,0,10,15,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,0,25,0,0,0,0,0,0,0 -2173,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kashmiri,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2174,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Konkani,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2175,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Marathi,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2176,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Nepali,30,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,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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 -2177,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Oriya (Odia),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2178,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Punjabi (Panjabi),410,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,15,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,10,0,0,10,0,0,0,0,60,35,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,65,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,30,10,0,0,10,0,0,135,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0 -2179,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Sindhi,10,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,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2180,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Sinhala (Sinhalese),15,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,10,0 -2181,Income,Income sources,Catalogue no. 98-400-X2016122, Working income tax benefit (WITB): Average amount ($),837,932,914,746,733,825,816,763,882,840,767,631,899,789,822,851,808,726,773,804,741,762,725,829,732,875,843,840,746,824,822,834,877,762,842,753,812,721,888,887,807,804,817,881,747,710,856,812,807,839,767,741,847,861,867,935,885,741,822,835,760,819,838,757,944,545,768,887,881,764,644,629,758,834,912,886,869,900,810,814,793,819,874,773,772,816,887,902,706,733,813,912,783,820,886,671,855,848,810,792,818,975,841,809,746,775,853,774,897,861,707,803,888,880,870,881,901,831,812,"1,085",743,682,847,758,847,825,892,813,817,853,894,824,859,894,863,707,735,737,729,783,830 -2182,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Urdu,305,0,0,0,10,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,20,30,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,10,0,0,0,40,0,0,0,0,0,0,0,0,0,0,10,0,0,20,0,0,0,0,0,0,0 -2183,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Iranian languages,"1,400",0,0,0,10,0,0,15,70,40,10,0,10,10,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,85,0,0,0,0,10,0,0,10,0,0,0,30,0,10,0,0,0,30,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,50,0,0,0,0,0,20,0,0,0,10,0,20,0,0,10,35,0,135,110,10,0,20,10,0,0,0,0,15,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,25,0,0,0,0,0,35,45,0,10,25,0,0,10,290,40,0,10,0,0,0,0,0,0,0 -2184,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kurdish,55,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,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,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,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 -2185,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Pashto,10,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,10,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,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,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0 -2186,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Persian (Farsi),"1,335",0,0,0,0,10,0,25,65,25,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,75,0,10,0,0,10,0,0,0,0,0,0,30,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,50,0,10,0,0,0,0,0,0,0,0,0,20,0,0,20,40,0,140,105,0,0,20,10,0,0,0,0,25,10,0,0,10,0,0,0,0,0,10,0,0,10,0,0,15,0,0,0,15,0,0,10,0,0,10,45,0,10,35,0,0,10,290,45,0,20,0,0,0,0,0,0,0 -2187,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Indo-Iranian languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2188,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Italic (Romance) languages,"7,065",20,0,10,35,0,30,30,45,0,10,80,10,10,55,0,130,0,10,190,25,425,20,0,45,0,0,0,320,0,10,35,0,505,220,165,30,40,0,20,30,35,10,0,30,0,120,10,0,15,55,40,0,10,20,45,75,60,0,95,45,370,0,25,55,10,25,0,45,20,20,35,130,10,15,85,10,10,70,0,10,140,45,25,80,40,0,40,80,0,30,0,245,0,0,45,70,95,10,0,20,0,30,345,20,35,20,0,90,0,30,10,10,0,40,10,20,15,20,0,65,0,20,145,10,50,25,110,245,20,55,20,30,25,0,0,80,25,0,70,185 -2189,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Catalan,10,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,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,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2190,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Italian,435,0,0,10,0,0,0,0,0,0,0,10,0,0,20,0,0,0,0,0,10,20,0,0,0,0,0,0,15,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,20,0,0,10,0,20,0,0,10,0,10,10,0,0,0,0,0,10,10,0,0,0,20,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,10,0,0,0,10,0,0,0,0,0,10,0,10,10,0,10,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,20,0,0,10,0,0,0,10,0,0,0,10,0,0,15,40 -2191,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Portuguese,"4,040",0,0,0,10,0,20,0,0,0,0,65,0,0,10,0,90,0,0,115,0,365,0,0,20,10,0,0,250,0,10,0,0,410,45,145,20,10,10,0,10,10,0,0,10,0,20,0,0,10,35,10,0,0,10,15,10,25,0,40,25,340,0,0,20,0,0,0,25,0,0,10,115,0,0,50,0,0,55,0,0,80,15,10,50,10,0,10,35,0,0,0,185,0,0,30,15,40,0,0,0,0,0,280,30,15,15,0,45,0,20,0,0,0,15,0,10,0,0,0,70,0,0,30,10,0,10,60,210,10,10,10,10,0,0,0,60,15,0,10,105 -2192,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Romanian,90,0,0,0,0,10,0,0,10,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,10,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2193,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Spanish,"2,490",0,0,10,30,10,20,30,25,0,0,0,10,0,45,0,35,0,0,75,25,50,20,0,20,0,0,0,55,0,0,20,0,105,130,20,10,25,10,20,0,0,0,10,10,0,95,0,10,0,10,15,0,0,10,40,65,35,0,55,0,15,0,10,30,10,20,0,10,0,10,10,0,10,25,30,10,0,20,0,10,55,30,10,30,35,0,20,40,0,35,0,50,0,0,0,40,35,0,0,10,10,20,60,0,30,10,0,35,0,25,0,20,0,0,20,0,15,20,0,0,0,30,95,0,20,15,50,25,20,35,15,0,30,10,0,20,0,10,20,55 -2194,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Italic (Romance) languages, n.i.e.",10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,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 -2195,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Japanese,600,0,0,0,10,30,0,35,10,10,10,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,20,10,0,20,10,0,0,0,10,0,10,0,0,0,0,0,0,20,0,10,20,0,0,0,0,0,0,15,10,10,10,10,0,25,0,0,0,20,10,0,0,0,0,0,0,0,0,0,10,0,10,10,0,10,35,0,10,0,10,0,0,0,0,20,0,0,0,0,10,20,10,0,0,10,0,10,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,10,0,30,10,0,20,0,0,0,0,10,0,0 -2196,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kartvelian languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2197,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Georgian,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2198,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Korean,"2,700",0,0,0,10,0,20,60,135,95,0,10,20,0,0,0,0,0,0,0,0,0,10,0,10,0,20,0,0,0,0,90,0,10,10,10,0,10,0,25,10,20,20,10,10,0,0,0,10,50,25,0,10,60,0,0,0,10,0,65,0,0,0,10,10,0,0,10,90,0,10,10,0,0,0,0,10,0,20,10,0,15,0,15,25,0,225,250,10,0,20,0,0,10,0,0,70,0,10,25,10,0,0,0,0,0,10,0,0,0,0,0,45,0,0,40,10,0,0,0,0,0,0,10,0,10,140,0,0,30,470,125,20,10,0,0,15,20,0,20,10 -2199,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Mongolic languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2200,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Mongolian,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2201,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Niger-Congo languages,60,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,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,25,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,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2202,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Akan (Twi),20,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,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,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,0,0,0,0,0,0,0,0,0,0 -2203,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Bamanankan,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2204,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Edo,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2205,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ewe,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2206,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Fulah (Pular, Pulaar, Fulfulde)",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2207,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ga,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2208,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Ganda,25,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,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,25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2209,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Igbo,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2210,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Lingala,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2211,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Rundi (Kirundi),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2212,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Kinyarwanda (Rwanda),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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2213,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Shona,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2214,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Swahili,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,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 -2215,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Wolof,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2216,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Yoruba,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2217,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Niger-Congo languages, n.i.e.",15,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,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,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,0,0,0,0,0,0,0,0,0,0,0,10,0,0 -2218,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Nilo-Saharan languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2219,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Dinka,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2220,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Nilo-Saharan languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2221,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Sign languages,170,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,15,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,20,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0 -2222,Language of work,Language used most often at work,Census Profile 98-316-X2016001, American Sign Language,110,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0 -2223,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Quebec Sign Language,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2224,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Sign languages, n.i.e",55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,10,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,0,0,0,0,0,0,10,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,10,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,10,0,0,0,0,0 -2225,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Sino-Tibetan languages,"25,775","2,915","1,760",10,55,240,10,230,300,275,60,0,260,25,45,75,0,100,10,10,10,10,35,10,90,185,10,30,40,40,50,530,225,255,45,70,50,10,95,0,20,10,0,35,10,25,65,180,10,205,20,20,45,415,0,0,20,0,25,55,30,10,70,635,15,0,0,"2,465",75,0,30,20,135,10,385,15,0,"3,425",55,95,45,20,0,35,65,30,255,170,85,70,45,80,85,20,20,50,130,0,10,400,10,80,10,20,25,55,160,0,0,15,0,675,285,"2,465",10,840,10,0,0,0,450,40,15,235,35,20,30,0,0,165,970,185,15,330,65,55,40,55,20,40,20 -2226,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Chinese languages,"25,730","2,920","1,755",0,60,235,10,230,295,270,50,0,250,25,40,75,0,100,10,10,20,10,25,20,75,185,10,25,30,50,50,520,225,255,30,70,60,20,95,10,20,20,0,55,0,30,65,170,0,205,10,15,50,415,0,10,20,10,20,40,35,10,70,630,15,10,0,"2,455",75,10,20,20,135,0,375,10,0,"3,435",30,95,30,10,0,30,55,10,260,165,80,80,35,80,65,10,20,45,115,10,10,395,15,80,0,10,30,45,155,0,0,15,10,670,285,"2,465",10,860,10,0,0,10,455,40,15,230,40,10,25,0,0,155,960,185,15,340,75,50,25,55,30,40,25 -2227,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Cantonese,"11,875","1,840",980,10,10,60,10,40,145,90,35,0,140,15,50,40,0,35,0,20,10,10,10,10,25,100,10,0,10,45,45,125,165,165,20,60,30,10,35,0,0,10,0,0,0,0,45,150,0,55,0,0,10,155,0,10,10,0,0,10,30,10,65,215,15,10,0,"1,115",20,0,10,0,120,0,220,10,0,"1,810",10,50,10,10,10,0,0,10,65,30,20,40,0,50,50,10,10,25,45,0,10,120,0,15,0,0,15,0,100,0,0,0,0,300,55,"1,065",10,325,10,0,0,0,155,0,10,75,20,25,10,0,0,40,185,45,15,155,65,40,25,15,0,10,15 -2228,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Hakka,10,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,0,0,0,0,10,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,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,0,0,0,0,0,0,0,0,0 -2229,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Mandarin,"13,215","1,040",770,0,45,175,0,160,150,180,35,0,120,0,0,35,0,70,10,0,0,0,0,10,45,80,0,25,30,0,20,395,60,80,0,20,25,0,40,0,10,0,0,25,10,25,10,10,0,145,10,10,30,235,0,0,10,0,10,35,0,0,0,375,0,10,0,"1,320",75,0,20,20,25,10,160,0,10,"1,530",15,40,20,0,0,35,45,0,165,115,65,35,25,35,30,0,10,15,75,0,0,245,15,60,0,0,0,55,50,0,0,15,0,335,225,"1,385",0,485,0,0,0,0,275,40,10,160,20,10,15,0,0,125,775,135,0,165,0,0,10,40,20,35,0 -2230,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Min Dong,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2231,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Min Nan (Chaochow, Teochow, Fukien, Taiwanese)",100,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,10,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,0,20,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,10,0,10,0,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2232,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Wu (Shanghainese),10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2233,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Chinese, n.o.s.",515,20,0,0,0,10,0,15,10,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,10,45,0,0,0,25,0,0,0,0,0,0,0,10,0,65,0,0,0,10,0,0,0,0,25,10,10,0,10,0,0,0,0,0,10,0,0,25,0,0,0,0,0,0,10,0,0,0,10,20,0,0,0,20,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,10 -2234,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Chinese languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2235,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tibeto-Burman languages,45,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,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,20,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2236,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Burmese,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -2237,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Karenic languages,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2238,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tibetan,40,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,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,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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 -2239,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Tibeto-Burman languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2240,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Tai-Kadai languages,65,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,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,10,0,0,0,0,0,0,10,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,0,0,0,0,15,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2241,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Lao,10,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2242,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Thai,55,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,10,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,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0 -2243,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Tai-Kadai languages, n.i.e",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2244,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Turkic languages,350,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,10,0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,10,0,20,10,0,10,0,0,0,0,20,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,10,0,0,0,0,10,10,15,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,10,0,0,0,0,0,0,0,0,0,20,10,0,0,0,0,0,0,10,0,40,0 -2245,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Azerbaijani,15,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,10,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,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,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2246,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Turkish,335,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,10,0,10,10,0,0,0,0,10,0,0,0,0,0,0,0,0,0,30,0,0,10,0,0,0,0,20,10,10,0,0,0,0,10,10,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10,0,0,0,0,20,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,20,0,0,0,0,10,0,0,0,0,10,0,0,0,0,0,0,0,10,0,35,0 -2247,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Uyghur,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2248,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Uzbek,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2249,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Turkic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2250,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Uralic languages,255,0,0,0,0,10,0,0,10,10,10,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,10,0,0,10,0,10,0,0,0,0,10,10,0,20,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,10,10,0,0,0,0,0,0,0,10,20,0,10,25,0,0,0,0,0,0,0,10,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,10,0,0,0,0,0,10,0,0,0,0 -2251,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Estonian,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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 -2252,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Finnish,30,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,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,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,0,0 -2253,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Hungarian,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,10,0,10,0,10,0,0,0,0,0,10,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,10,0,10,0,0,0,0,10,0,0,0,10,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,10,0,0,0,0,0,0,0,0,0,0 -2254,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Uralic languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2255,Language of work,Language used most often at work,Census Profile 98-316-X2016001," Other languages, n.i.e.",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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -2256,Language of work,Language used most often at work,Census Profile 98-316-X2016001, Multiple responses,"36,555",695,505,80,295,325,175,390,490,380,150,115,315,140,285,70,275,120,120,295,95,195,75,95,370,260,195,125,275,120,130,580,270,525,580,235,155,160,270,105,245,155,175,255,165,85,390,115,65,330,315,220,150,470,130,125,230,130,160,565,185,190,145,260,335,50,40,795,280,35,160,60,155,140,595,105,90,780,465,145,275,225,405,95,465,145,355,505,370,70,350,220,245,195,50,100,510,130,105,320,85,145,110,325,115,185,515,65,125,135,250,300,260,750,260,575,235,130,125,340,210,85,280,790,240,470,510,210,220,335,"1,225",355,180,635,95,85,160,115,125,425,180 -2257,Language of work,Language used most often at work,Census Profile 98-316-X2016001, English and French,"8,125",40,55,35,130,85,25,90,105,55,45,25,60,75,40,10,25,50,45,45,55,25,35,25,165,80,55,30,45,35,45,100,60,100,85,65,65,60,70,25,20,30,45,45,30,40,35,35,20,60,105,80,20,55,15,10,30,15,55,190,55,15,45,40,70,10,10,90,25,0,90,20,60,25,155,10,40,40,130,30,75,40,40,50,190,30,35,40,160,20,95,75,45,55,15,50,200,30,50,70,30,40,30,35,45,75,140,35,20,20,90,70,50,30,75,55,75,60,10,50,70,20,120,375,85,70,70,50,20,95,110,40,30,100,35,40,45,55,50,80,35 -2258,Language of work,Language used most often at work,Census Profile 98-316-X2016001," English, French and non-official language",585,10,0,0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,10,0,0,0,10,0,0,10,0,0,0,0,0,10,10,10,0,0,10,10,10,0,0,10,10,10,20,0,0,0,0,10,10,0,0,10,10,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,10,0,0,0,10,0,0,0,10,0,10,0,10,0,20,0,0,0,10,0,20,0,20,0,0,0,0,0,10,0,10,0,0,0,0,20,0,0,0,0,10,0,0,10,10,0,10,0,0,0,0,0,0,50,0,0,20,10,10,0,0,0,0,0,0,0,0,0,10,30,10 -2259,Language of work,Language used most often at work,Census Profile 98-316-X2016001, English and non-official language,"27,800",645,445,50,175,225,145,285,385,320,110,85,260,80,240,60,245,75,75,245,30,160,30,70,195,175,135,100,225,80,80,460,210,400,465,170,80,95,200,80,225,125,120,205,120,30,345,75,40,265,185,120,130,420,110,120,185,110,115,380,120,180,85,235,260,15,30,705,245,0,65,25,100,110,430,100,50,765,330,125,195,195,365,40,240,120,315,460,195,35,255,150,170,135,35,50,310,95,55,250,60,100,75,300,55,85,385,25,95,110,160,215,215,730,185,510,150,65,110,285,150,75,170,395,150,405,430,145,190,230,"1,110",325,135,535,45,45,115,60,55,325,155 -2260,Language of work,Language used most often at work,Census Profile 98-316-X2016001, French and non-official language,35,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,10,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,10,0 -2261,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001,"Total - Other language(s) used regularly at work for the population in private households aged 15 years and over who worked since January 1, 2015 - 25% Sample Data","1,559,535","14,550","12,705","7,190","19,950","14,870","9,110","16,105","12,545","6,660","13,020","3,280","14,970","12,630","9,740","4,295","8,680","5,100","6,895","9,490","7,645","5,815","7,075","7,655","22,780","14,760","9,875","8,650","8,640","5,710","9,985","14,560","13,110","23,225","19,065","7,885","12,615","9,095","11,045","4,825","11,350","10,690","6,735","10,290","7,940","6,775","13,875","8,515","5,250","9,045","14,510","15,325","7,175","8,555","5,470","6,005","7,995","9,435","7,270","26,900","9,310","5,870","8,790","10,675","10,825","5,275","4,455","21,980","9,910","8,505","9,125","9,895","10,915","6,425","22,990","5,465","5,880","13,075","22,040","8,925","12,795","7,170","15,420","10,470","20,315","6,820","8,610","13,155","25,300","7,585","11,170","6,300","12,285","10,015","5,455","9,580","19,120","6,175","5,000","8,480","6,515","5,855","5,685","11,835","9,495","12,440","25,865","6,160","4,405","7,830","13,655","17,145","9,990","11,780","14,935","13,620","8,350","13,725","5,380","8,630","10,515","4,640","8,930","52,910","13,545","18,710","14,765","9,490","6,170","15,090","28,615","9,065","11,515","26,215","7,550","4,875","8,280","7,725","8,165","15,405","7,590" -2262,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, None,"1,428,870","12,335","10,970","6,730","18,335","13,515","8,405","14,575","10,865","5,840","12,205","2,995","13,745","12,115","8,935","4,050","7,810","4,555","6,325","8,605","6,980","4,975","6,615","7,380","20,830","13,960","9,125","8,310","7,480","5,320","9,350","12,810","12,175","20,770","17,205","7,050","11,835","8,250","10,470","4,510","10,480","9,880","6,235","9,395","7,405","6,425","12,670","7,930","4,980","8,190","13,395","14,055","6,690","7,370","5,025","5,485","7,310","8,745","6,825","24,785","8,675","4,870","8,310","9,550","10,050","4,920","4,050","19,345","8,970","8,070","8,560","9,390","9,970","6,020","21,460","4,885","5,465","10,905","20,175","8,405","11,760","6,350","14,305","9,810","18,745","6,415","7,390","11,590","23,590","7,080","10,265","5,880","10,985","9,530","5,145","8,920","17,760","5,720","4,630","7,525","6,060","5,345","5,370","10,480","8,775","11,575","24,435","5,815","4,050","7,410","12,795","15,825","8,910","9,600","13,800","12,025","7,820","13,035","4,965","7,895","9,665","4,270","8,370","49,180","12,860","17,345","12,980","8,680","5,500","14,100","24,455","8,030","10,885","24,530","7,130","4,545","7,570","7,160","7,615","14,210","6,830" -2263,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, English,"22,480",785,495,50,210,220,110,280,325,185,80,35,185,80,105,70,125,75,45,120,85,225,60,25,250,165,55,50,225,50,120,440,150,460,185,115,105,115,60,45,90,80,70,100,80,40,160,85,30,125,155,145,95,220,55,65,100,95,75,320,65,230,35,290,115,45,55,810,200,65,80,50,155,60,280,55,70,735,205,85,140,160,90,120,250,75,320,335,185,60,130,90,155,60,60,90,250,70,70,200,65,80,50,290,85,55,250,45,60,45,105,245,220,690,135,405,70,110,55,115,165,40,70,415,65,115,295,115,140,195,975,230,65,360,80,50,105,100,35,190,155 -2264,Income,Income sources,Catalogue no. 98-400-X2016122,Income statistics: Total - Population aged 15 years and over,"2,294,790","24,985","20,400","10,265","26,300","23,395","13,260","23,945","18,735","11,155","18,560","5,255","24,630","18,350","16,960","6,280","12,355","7,750","9,880","14,345","10,195","8,415","9,640","11,195","29,105","21,745","13,660","13,255","12,200","7,950","14,060","22,755","20,125","31,745","29,200","10,425","17,290","13,075","18,070","7,640","17,085","15,905","9,780","17,535","10,615","9,285","24,430","11,925","8,360","13,205","18,975","19,810","10,925","14,800","8,670","10,260","12,580","12,070","11,300","37,405","12,010","9,425","14,330","16,150","17,745","7,590","6,280","37,390","13,650","11,275","12,265","13,360","13,655","8,725","35,870","8,375","9,110","22,380","29,845","14,270","17,030","10,860","25,745","13,775","26,555","9,675","13,950","20,830","28,395","9,735","16,080","10,755","17,835","15,395","7,745","12,500","28,880","8,970","6,490","13,755","9,280","9,035","8,720","18,740","12,580","18,000","38,125","8,020","7,825","13,080","18,585","23,145","15,040","21,125","20,840","23,150","12,535","17,620","8,390","15,250","14,480","6,175","14,550","61,995","22,390","27,840","22,715","14,610","9,415","23,330","44,335","14,850","18,585","43,395","10,105","6,690","11,380","10,000","11,095","23,530","12,060" -2265,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, French,"27,835",75,75,100,670,245,80,385,240,50,190,10,140,205,40,90,90,150,160,65,360,50,175,70,830,100,110,95,185,160,230,190,110,570,135,235,345,130,80,25,140,160,90,150,165,140,65,230,100,130,470,580,40,110,80,40,30,240,30,535,180,55,65,310,130,135,165,165,160,220,235,235,315,135,125,35,95,65,605,60,485,65,70,315,585,115,85,115,850,250,295,85,230,155,85,295,235,65,160,110,120,160,25,100,345,440,190,200,30,75,345,540,165,85,360,115,110,390,40,115,270,150,150,"1,655",130,95,135,115,80,155,400,95,105,155,220,80,265,255,280,125,95 -2266,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, Non-official language,"77,850","1,320","1,155",305,660,875,510,825,"1,100",590,505,235,895,240,665,90,640,315,350,690,210,555,205,165,810,550,565,200,720,155,270,"1,110",660,"1,360","1,520",470,330,600,420,245,645,535,335,635,270,135,970,265,150,590,465,510,345,825,315,410,565,320,340,"1,240",370,700,385,505,505,175,165,"1,625",560,140,210,180,455,205,"1,120",480,230,"1,350","1,005",360,375,570,955,215,665,215,820,"1,110",640,185,470,220,875,275,150,260,850,320,135,635,275,235,240,945,280,350,960,95,275,285,380,505,695,"1,365",605,980,350,150,310,495,380,165,340,"1,550",465,"1,140","1,310",555,440,640,"2,740",710,460,"1,150",100,180,315,195,200,875,495 -2267,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, Aboriginal,105,0,0,0,10,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,10,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,10,10,0,0,0,0,0,0,0,0,0,0,10,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,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,10 -2268,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, English and French,55,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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,10,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,0,0 -2269,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, English and non-official language,445,10,20,0,0,0,0,0,10,0,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,0,0,10,0,0,0,0,10,0,10,0,10,0,0,0,0,0,0,0,0,10,0,10,0,0,20,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,10,0,10,30,10,0,0,0,0,0,10,0,10,10,25,0,0,0,0,0,0,0,10,0,0,0,0,0,0,10,10,0,10,0,0,10,0,20,0,30,0,35,0,10,10,0,0,0,0,0,0,0,20,0,0,0,10,0,0,0,0,10,0,0,10,0,0 -2270,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001, French and non-official language,"1,975",20,0,0,60,10,10,40,10,0,25,0,15,0,0,0,0,0,10,20,15,10,10,0,30,10,10,0,20,25,0,20,15,75,10,10,10,0,0,0,0,0,10,10,10,15,0,0,0,10,20,15,0,15,0,10,10,10,0,45,20,10,0,10,20,0,20,25,10,0,25,10,20,0,0,0,10,0,45,10,40,30,0,15,60,0,0,20,15,20,10,10,45,10,0,10,40,10,20,20,0,10,0,0,10,20,0,10,0,10,15,15,0,10,20,20,10,40,10,0,25,0,0,125,10,10,10,25,15,20,35,0,20,10,10,15,35,0,30,10,10 -2271,Language of work,Other language used regularly at work,Census Profile 98-316-X2016001," English, French and non-official language",20,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,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,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 -2272,Income,Income sources,Catalogue no. 98-400-X2016122,Total income: Population with an amount,"2,187,220","23,505","19,370","9,915","25,615","22,335","12,715","22,835","17,695","10,555","17,645","4,915","23,175","17,555","15,770","5,965","11,805","7,355","9,500","13,510","9,960","8,035","9,365","10,695","28,370","20,495","13,045","12,495","11,745","7,650","13,550","21,540","19,005","30,700","27,705","10,165","16,580","12,510","16,995","7,170","16,015","15,180","9,270","16,180","10,225","9,055","22,935","11,505","8,010","12,315","18,250","19,200","10,395","14,085","8,315","9,665","11,780","11,670","10,510","36,115","11,575","8,900","13,510","15,740","16,765","7,295","5,930","35,395","12,995","10,805","11,705","12,760","13,375","8,465","33,535","7,970","8,785","21,155","29,010","13,490","16,615","10,275","23,845","13,180","25,590","9,240","13,230","19,580","27,940","9,475","15,305","10,060","17,125","14,495","7,410","12,250","27,010","8,490","6,300","13,060","8,865","8,505","8,245","17,780","12,165","17,285","35,855","7,720","7,380","12,170","17,960","22,440","14,230","20,140","20,060","21,940","11,780","16,950","7,970","13,945","14,180","5,985","13,780","60,620","21,050","26,275","21,540","13,875","8,960","22,135","41,570","14,220","17,785","40,665","9,770","6,480","11,030","9,555","10,805","22,230","11,490" -2273,Income,Income sources,Catalogue no. 98-400-X2016122,Total income: Average amount ($),"52,268","30,414","31,825","47,709","112,766","67,757","45,936","56,526","52,035","47,246","123,077","33,829","33,256","54,360","25,989","48,511","34,768","308,010","44,557","32,483","63,012","35,112","165,047","54,045","53,583","36,232","51,181","44,718","41,717","55,225","51,846","37,379","31,692","39,740","34,168","40,588","54,324","101,551","30,033","32,012","48,134","47,002","38,255","28,654","85,099","204,521","27,984","46,206","53,203","36,359","57,465","71,204","40,972","40,442","45,615","30,731","29,528","65,274","31,383","52,787","49,709","33,316","30,974","37,422","36,674","144,642","76,629","31,826","72,371","111,730","169,203","125,564","45,737","47,384","29,573","37,108","62,378","28,085","54,438","32,291","58,915","30,827","26,548","85,340","57,039","44,101","45,212","34,904","70,623","73,253","32,648","26,793","39,803","43,907","53,315","58,071","42,516","39,003","70,831","36,346","99,055","34,597","34,418","34,059","50,580","207,903","39,556","71,888","31,800","32,913","35,207","53,803","100,516","31,786","64,140","34,200","30,430","92,580","32,815","28,875","50,694","50,757","35,786","70,600","33,323","31,771","32,724","32,997","33,528","35,047","45,326","44,576","44,177","30,878","55,199","47,710","54,460","89,330","114,174","29,958","38,527" -2274,Income,Income sources,Catalogue no. 98-400-X2016122,Total income: Aggregate amount ($'000),"114,320,799","714,879","616,446","473,038","2,888,507","1,513,345","584,074","1,290,768","920,752","498,679","2,171,701","166,271","770,702","954,282","409,848","289,367","410,440","2,265,414","423,290","438,851","627,597","282,127","1,545,669","578,006","1,520,160","742,581","667,658","558,748","489,970","422,470","702,511","805,147","602,309","1,220,018","946,612","412,577","900,694","1,270,406","510,413","229,523","770,865","713,483","354,624","463,616","870,138","1,851,935","641,821","531,601","426,158","447,765","1,048,742","1,367,119","425,900","569,631","379,285","297,018","347,837","761,742","329,836","1,906,406","575,380","296,511","418,459","589,027","614,839","1,055,164","454,411","1,126,498","940,466","1,207,245","1,980,519","1,602,195","611,736","401,109","991,747","295,754","547,995","594,135","1,579,240","435,600","978,866","316,750","633,044","1,124,775","1,459,630","407,490","598,156","683,413","1,973,216","694,075","499,679","269,535","681,631","636,435","395,063","711,374","1,148,364","331,139","446,233","474,684","878,125","294,250","283,778","605,565","615,308","3,593,610","1,418,269","554,976","234,685","400,556","632,311","1,207,336","1,430,343","640,180","1,286,643","750,354","358,471","1,569,229","261,534","402,660","718,840","303,779","493,131","4,279,772","701,440","834,780","704,874","457,834","300,408","775,762","1,884,199","633,872","785,693","1,255,652","539,290","309,159","600,690","853,551","1,233,648","665,977","442,672" -2275,Income,Income sources,Catalogue no. 98-400-X2016122, Market income: Population with an amount,"1,889,205","19,610","16,490","9,045","23,725","20,470","11,055","19,170","15,730","9,345","16,675","4,015","19,130","15,565","11,625","4,900","10,180","6,990","8,205","11,090","8,820","6,940","8,850","9,800","25,450","17,455","11,790","10,815","10,385","6,705","11,995","18,335","15,615","26,835","23,480","9,135","14,375","11,565","13,650","5,905","13,845","13,850","8,090","12,345","9,405","8,750","17,925","9,685","7,420","10,210","16,705","18,115","9,350","11,890","7,430","7,920","9,470","10,720","8,515","32,445","10,505","7,280","10,600","12,645","13,765","7,060","5,265","29,015","11,835","10,290","11,205","12,140","12,115","7,475","27,230","6,980","8,200","17,710","25,895","11,205","13,735","8,320","18,025","12,425","23,195","7,770","11,075","16,355","26,500","8,845","12,290","7,295","14,635","12,110","6,610","11,235","23,165","7,590","5,735","11,310","8,450","6,445","6,980","14,640","10,450","16,400","30,890","7,245","5,920","9,440","14,800","19,375","13,030","16,965","18,560","18,425","9,360","16,010","6,570","10,080","12,770","5,365","11,225","56,725","16,710","22,250","17,875","10,980","7,300","18,855","35,635","12,095","15,735","32,290","8,550","5,695","9,695","9,020","10,155","18,405","10,040" -2276,Income,Income sources,Catalogue no. 98-400-X2016122, Market income: Average amount ($),"54,901","30,017","31,854","46,761","117,981","68,234","47,015","64,645","54,357","47,319","125,630","33,207","33,857","55,442","25,601","52,949","34,642","320,819","45,571","32,320","66,162","34,867","170,158","53,618","56,673","36,681","51,666","45,200","41,553","57,258","52,864","38,136","32,086","40,368","33,183","40,697","57,351","104,515","29,752","31,309","48,846","45,288","37,892","29,445","87,721","207,463","26,516","49,276","50,717","39,224","58,411","71,303","39,890","41,481","44,047","28,961","29,201","66,750","31,903","53,747","50,540","33,497","31,760","41,165","36,340","145,108","80,422","31,844","75,738","113,540","173,535","128,031","46,868","48,261","29,653","35,451","60,682","27,441","56,160","31,918","66,614","30,737","26,840","86,374","59,031","46,242","49,146","36,172","72,546","74,277","35,085","27,869","39,954","45,703","53,889","59,372","43,478","37,677","73,398","36,018","99,270","38,904","33,752","33,560","53,842","214,620","40,357","72,340","29,977","33,948","37,101","57,628","105,406","31,373","64,083","33,861","31,326","93,901","32,444","30,853","51,731","52,904","36,328","73,320","33,719","31,489","32,863","33,745","34,289","34,642","49,377","47,442","42,711","31,509","57,832","48,841","56,605","90,726","116,815","30,001","37,252" -2277,Income,Income sources,Catalogue no. 98-400-X2016122, Market income: Aggregate amount ($'000),"103,719,123","588,637","525,280","422,949","2,799,103","1,396,754","519,755","1,239,247","855,040","442,192","2,094,872","133,327","647,682","862,953","297,614","259,452","352,654","2,242,528","373,913","358,425","583,553","241,978","1,505,895","525,457","1,442,324","640,263","609,147","488,833","431,533","383,913","634,103","699,227","501,030","1,083,266","779,131","371,770","824,421","1,208,712","406,109","184,879","676,276","627,234","306,550","363,497","825,019","1,815,300","475,306","477,236","376,320","400,476","975,756","1,291,645","372,969","493,211","327,270","229,370","276,533","715,565","271,652","1,743,830","530,923","243,858","336,652","520,526","500,218","1,024,461","423,423","923,947","896,357","1,168,325","1,944,459","1,554,298","567,810","360,751","807,450","247,447","497,589","485,988","1,454,270","357,645","914,942","255,732","483,783","1,073,193","1,369,213","359,304","544,289","591,594","1,922,467","656,976","431,195","203,306","584,724","553,460","356,203","667,039","1,007,159","285,967","420,940","407,365","838,833","250,737","235,586","491,322","562,652","3,519,764","1,246,629","524,106","177,466","320,468","549,088","1,116,544","1,373,443","532,245","1,189,381","623,887","293,216","1,503,358","213,159","310,995","660,599","283,829","407,784","4,159,094","563,439","700,629","587,435","370,523","250,309","653,176","1,759,561","573,811","672,052","1,017,427","494,461","278,150","548,782","818,351","1,186,255","552,171","374,008" -2278,Income,Income sources,Catalogue no. 98-400-X2016122, Net self-employment income: Population with an amount,"279,825","2,685","2,305",935,"4,915","3,255","1,885","2,570","2,495","1,465","3,245",440,"2,045","2,095","1,220",910,"1,530","1,315","1,285","1,365","1,625",870,"1,875","1,125","3,930","2,155","2,085","1,310","1,630","1,045","1,920","2,835","1,640","4,605","2,510","1,925","2,360","1,895","1,370",665,"2,290","1,750","1,190","1,890","1,870","1,865","1,965","1,670",795,"1,365","2,935","3,340","1,120","1,680",995,875,"1,090","1,995",855,"4,325","1,960",850,"1,085","1,975","1,690","1,000",920,"3,895","2,180","1,745","2,225","2,065","2,285","1,005","3,020",785,"1,040","2,515","4,395","1,235","2,560","1,145","2,100","2,105","3,540","1,130","1,925","2,790","4,640","1,915","1,430",985,"2,350","1,510","1,075","2,240","2,970",865,"1,315","1,405","1,230","1,055",870,"1,965","2,280","3,280","3,670","1,145",620,"1,105","2,300","3,530","2,250","2,415","2,800","2,245","1,150","3,085",805,"1,675","2,530",980,"1,310","8,125","1,915","2,415","3,320","1,425","1,125","2,385","5,550","1,795","1,850","3,800","1,530",825,"1,825","1,695","1,940","1,940","1,050" -2279,Income,Income sources,Catalogue no. 98-400-X2016122, Employment income: Population with an amount,"1,578,750","15,340","13,045","7,420","19,675","15,550","9,250","15,185","12,520","6,775","13,205","3,370","15,665","12,925","9,990","4,305","8,785","5,140","6,970","9,575","7,660","5,915","6,985","7,980","22,445","14,935","9,980","8,830","8,685","5,685","10,120","14,745","13,345","23,265","19,380","7,860","12,575","9,220","11,570","4,940","11,485","11,060","6,855","10,550","7,960","6,890","14,630","8,500","5,550","8,960","14,480","15,385","7,400","8,670","5,690","6,095","8,090","9,400","7,350","27,165","9,300","6,120","8,990","10,530","11,065","5,365","4,450","22,855","9,790","8,545","9,135","9,995","10,865","6,505","23,620","5,535","6,210","13,840","22,325","9,360","12,605","7,385","16,005","10,565","20,170","6,865","8,540","13,305","25,050","7,585","11,240","6,260","12,275","10,270","5,535","9,550","19,520","6,270","4,995","8,650","6,615","5,970","5,835","12,130","9,290","12,485","26,940","6,185","4,650","8,045","13,555","17,240","10,085","12,535","15,190","14,035","8,170","13,540","5,420","8,665","10,700","4,540","9,165","51,895","13,955","19,055","15,095","9,580","6,340","15,520","27,940","9,330","11,995","26,880","7,565","4,905","8,210","7,685","8,175","15,790","7,870" -2280,Income,Income sources,Catalogue no. 98-400-X2016122, Employment income: Average amount ($),"54,032","31,860","33,908","49,899","102,593","63,371","46,786","63,009","51,853","45,292","112,273","35,218","35,897","57,365","27,575","53,921","36,740","308,154","47,698","32,454","63,274","37,774","146,115","53,559","55,168","38,852","50,564","45,539","44,480","60,085","56,057","38,701","34,113","42,687","36,227","42,507","58,664","94,418","31,208","33,188","44,910","46,587","39,198","30,763","74,708","164,751","29,386","51,648","51,960","40,242","58,349","70,201","40,718","41,429","45,831","32,617","31,321","62,707","33,307","54,171","51,329","36,304","33,653","42,026","37,193","141,819","77,782","33,729","69,048","116,617","160,251","129,429","47,866","48,818","31,240","38,895","58,304","29,634","55,527","32,952","65,762","31,865","28,126","84,248","57,252","47,334","46,259","36,155","71,623","73,304","35,246","29,081","42,629","46,274","56,216","54,358","43,071","41,217","70,908","38,509","90,343","38,576","35,988","36,149","54,542","197,930","41,075","73,644","32,836","34,067","37,823","59,354","97,657","33,880","64,645","36,529","32,458","90,228","34,385","31,231","53,805","49,661","38,096","72,028","35,383","33,340","33,115","35,270","36,779","36,566","51,669","49,035","44,908","32,810","60,207","51,310","56,444","86,328","100,017","31,161","40,770" -2281,Income,Income sources,Catalogue no. 98-400-X2016122, Investment income: Population with an amount,"731,395","8,605","6,730","3,485","11,975","11,095","4,645","8,875","7,540","5,270","10,400",950,"6,640","5,950","2,175","1,870","2,755","5,120","2,800","2,790","3,560","2,115","5,085","4,375","9,405","5,470","4,900","4,130","3,720","2,780","4,865","7,545","4,420","9,330","6,850","3,305","5,245","5,700","3,355","1,515","5,470","5,780","2,580","3,075","4,325","5,530","4,465","3,675","3,430","3,060","6,675","8,415","4,145","6,365","3,215","2,515","2,285","4,185","2,260","13,135","3,925","1,880","3,120","4,810","4,460","4,530","2,400","11,620","5,995","5,750","6,920","6,840","4,015","2,600","6,815","2,765","4,000","8,055","9,875","3,015","4,860","1,890","3,480","6,135","9,160","2,280","5,600","6,040","9,880","4,270","2,565","1,830","5,130","4,045","2,795","4,550","7,535","2,685","2,595","5,180","4,990","1,540","1,975","4,345","3,805","10,265","10,165","3,480","1,850","2,460","3,265","7,820","7,815","8,780","8,525","7,685","2,160","7,835","2,010","2,080","5,310","2,280","3,510","23,915","4,810","6,510","5,445","2,555","2,005","6,365","18,350","5,980","6,480","9,435","3,225","2,165","3,775","4,455","5,335","4,710","4,110" -2282,Income,Income sources,Catalogue no. 98-400-X2016122, Employment income: Aggregate amount ($'000),"85,303,058","488,735","442,330","370,251","2,018,520","985,421","432,769","956,788","649,203","306,854","1,482,565","118,684","562,330","741,444","275,476","232,132","322,765","1,583,912","332,453","310,749","484,680","223,432","1,020,611","427,402","1,238,252","580,258","504,628","402,109","386,308","341,585","567,299","570,653","455,233","993,120","702,079","334,108","737,705","870,530","361,079","163,947","515,793","515,247","268,699","324,552","594,673","1,135,133","429,914","439,004","288,379","360,569","844,893","1,080,046","301,311","359,192","260,778","198,800","253,383","589,444","244,807","1,471,543","477,357","222,183","302,542","442,533","411,542","760,859","346,128","770,884","675,979","996,491","1,463,889","1,293,639","520,059","317,561","737,887","215,285","362,069","410,138","1,239,637","308,431","828,929","235,320","450,163","890,078","1,154,777","324,949","395,056","481,046","1,794,146","556,008","396,168","182,048","523,274","475,229","311,153","519,116","840,740","258,430","354,186","333,103","597,616","230,298","209,989","438,488","506,693","2,471,162","1,106,561","455,490","152,688","274,065","512,692","1,023,262","984,869","424,688","981,953","512,690","265,183","1,221,683","186,364","270,619","575,718","225,461","349,153","3,737,905","493,767","635,299","499,865","337,884","233,176","567,511","1,443,624","457,492","538,669","881,936","455,464","251,678","463,405","663,429","817,635","492,037","320,859" -2283,Income,Income sources,Catalogue no. 98-400-X2016122," Wages, salaries and commissions: Population with an amount","1,419,130","13,735","11,645","6,810","17,010","13,485","8,145","13,765","10,990","5,875","11,265","3,145","14,380","11,610","9,230","3,795","7,915","4,375","6,260","8,795","6,820","5,440","5,920","7,315","20,605","13,720","8,785","8,040","7,810","5,155","9,015","13,040","12,315","20,955","17,850","6,950","11,190","8,110","10,785","4,530","10,100","9,980","6,085","9,320","6,815","5,875","13,465","7,635","5,060","8,195","12,985","13,600","6,735","7,600","5,065","5,620","7,485","8,350","6,905","24,755","8,340","5,585","8,285","9,560","9,985","4,805","3,955","20,505","8,420","7,515","7,760","8,785","9,905","5,920","21,960","5,050","5,570","12,155","19,830","8,630","11,380","6,775","14,790","9,300","18,340","6,245","7,295","11,410","22,865","6,535","10,400","5,700","10,910","9,395","4,905","8,505","17,850","5,770","4,345","7,795","5,845","5,390","5,360","10,830","8,225","10,415","24,975","5,585","4,270","7,385","12,485","15,375","8,730","10,945","13,530","12,720","7,495","11,805","4,955","7,510","9,395","4,015","8,355","47,840","12,785","17,715","12,955","8,735","5,740","14,085","24,580","8,120","10,870","24,675","6,695","4,505","7,180","6,790","7,020","14,635","7,295" -2284,Income,Income sources,Catalogue no. 98-400-X2016122," Wages, salaries and commissions: Average amount ($)","55,111","33,560","35,665","52,227","107,463","64,162","47,950","64,208","54,046","47,594","108,566","35,546","37,635","58,104","28,474","55,504","38,188","331,198","48,211","33,630","64,153","38,593","154,565","55,754","56,052","40,289","50,910","48,910","45,678","61,731","58,877","40,579","35,543","44,007","37,512","43,481","60,550","96,462","32,212","34,574","44,917","48,863","41,799","32,799","70,300","170,129","30,532","53,987","53,221","41,413","59,620","70,722","42,525","44,246","47,376","34,088","32,489","59,743","34,297","55,660","52,524","37,564","35,154","42,351","38,888","142,247","74,947","35,532","68,558","117,254","161,043","129,951","48,110","50,186","32,480","40,646","60,736","31,649","57,848","34,190","64,658","32,738","29,130","85,520","57,591","46,197","51,295","38,870","73,760","74,630","36,378","30,332","44,546","47,781","57,588","54,221","44,185","43,293","70,134","40,382","88,653","39,511","37,581","38,227","56,239","210,166","42,622","75,155","34,030","35,092","38,491","60,995","98,145","36,027","65,827","38,346","33,868","92,802","36,144","33,625","54,234","51,136","39,583","73,189","37,000","34,476","35,105","36,577","37,932","38,200","54,409","52,539","46,720","34,142","62,981","53,144","56,507","82,592","100,082","32,297","41,872" -2285,Income,Income sources,Catalogue no. 98-400-X2016122," Wages, salaries and commissions: Aggregate amount ($'000)","78,209,574","460,940","415,320","355,663","1,827,941","865,223","390,550","883,821","593,966","279,617","1,222,995","111,792","541,188","674,585","262,812","210,639","302,255","1,448,993","301,801","295,779","437,522","209,944","915,025","407,841","1,154,953","552,767","447,245","393,239","356,747","318,222","530,772","529,148","437,715","922,168","669,586","302,194","677,554","782,307","347,410","156,618","453,658","487,648","254,346","305,691","479,092","999,506","411,118","412,194","269,299","339,381","774,169","961,824","286,404","336,271","239,957","191,574","243,178","498,855","236,818","1,377,851","438,054","209,793","291,255","404,880","388,292","683,495","296,417","728,584","577,255","881,166","1,249,692","1,141,620","476,526","297,102","713,257","205,264","338,302","384,690","1,147,128","295,057","735,805","221,800","430,839","795,339","1,056,225","288,502","374,196","443,503","1,686,517","487,707","378,329","172,892","485,999","448,903","282,471","461,152","788,702","249,798","304,731","314,777","518,178","212,964","201,432","413,994","462,566","2,188,878","1,064,477","419,739","145,310","259,152","480,556","937,801","856,808","394,314","890,635","487,760","253,844","1,095,525","179,094","252,525","509,528","205,311","330,720","3,501,371","473,046","610,734","454,784","319,498","217,730","538,040","1,337,366","426,616","507,847","842,455","421,656","239,412","405,722","560,797","702,576","472,663","305,455" -2286,Income,Income sources,Catalogue no. 98-400-X2016122, Net self-employment income: Average amount ($),"25,349","10,358","11,650","15,382","39,160","36,939","22,581","28,197","21,966","18,368","79,743","15,607","10,444","31,495","10,540","23,421","13,437","103,307","24,132","10,988","29,356","15,584","56,328","17,205","21,350","12,651","27,641","6,711","17,809","22,281","19,057","14,544","10,576","15,459","12,912","16,549","25,454","46,213","10,215","10,602","27,193","15,779","12,013","10,059","61,487","72,692","9,418","15,922","24,580","15,378","23,300","35,267","13,221","13,700","21,055","8,065","9,366","45,480","9,357","19,487","20,147","14,433","10,699","18,966","13,623","68,713","54,308","10,895","45,756","65,670","97,253","73,329","19,169","20,403","8,032","12,803","22,922","10,090","20,477","10,514","36,424","11,856","9,260","44,712","26,882","32,866","10,953","13,603","23,050","35,850","12,309","9,207","16,017","17,595","26,700","25,788","17,580","10,114","37,611","13,070","63,864","16,498","10,041","12,545","19,212","85,295","11,395","31,565","12,273","13,302","13,891","23,813","57,008","12,660","32,534","11,204","9,797","40,794","9,112","10,717","26,070","20,607","13,942","29,131","10,910","10,201","13,663","12,804","13,758","12,286","19,148","17,114","16,505","10,275","22,101","14,912","31,543","60,460","60,265","9,926","14,891" -2287,Income,Income sources,Catalogue no. 98-400-X2016122, Net self-employment income: Aggregate amount ($'000),"7,093,396","27,811","26,854","14,382","192,472","120,237","42,566","72,466","54,805","26,909","258,766","6,867","21,359","65,981","12,859","21,313","20,559","135,849","31,009","14,998","47,703","13,558","105,615","19,356","83,905","27,263","57,632","8,792","29,028","23,284","36,590","41,233","17,344","71,188","32,410","31,856","60,071","87,574","13,994","7,050","62,271","27,614","14,296","19,011","114,981","135,571","18,507","26,590","19,541","20,991","68,386","117,792","14,808","23,016","20,950","7,057","10,209","90,732","8,000","84,283","39,489","12,268","11,608","37,457","23,023","68,713","49,963","42,437","99,747","114,594","216,387","151,424","43,801","20,505","24,258","10,050","23,839","25,377","89,995","12,985","93,246","13,575","19,447","94,118","95,162","37,139","21,085","37,952","106,954","68,653","17,602","9,069","37,639","26,569","28,703","57,764","52,214","8,749","49,459","18,363","78,553","17,405","8,736","24,650","43,804","279,766","41,819","36,142","7,609","14,699","31,950","84,059","128,267","30,575","91,095","25,154","11,267","125,849","7,335","17,951","65,958","20,195","18,264","236,691","20,892","24,635","45,360","18,245","15,478","29,301","106,271","30,720","30,534","39,046","33,814","12,302","57,566","102,480","116,914","19,256","15,636" -2288,Income,Income sources,Catalogue no. 98-400-X2016122, Investment income: Average amount ($),"13,584","3,646","4,380","4,820","44,538","20,893","10,273","17,050","14,638","11,674","41,765","5,056","2,951","5,741","1,613","5,666","3,032","104,514","4,268","8,529","12,999","2,837","74,095","5,203","9,404","2,155","12,237","6,613","5,538","5,529","5,183","6,566","2,308","3,777","3,639","5,021","7,144","41,239","2,526","3,017","19,050","5,857","3,480","2,946","41,604","102,730","2,423","4,623","5,835","4,445","8,149","13,462","5,276","9,349","7,349","3,538","2,453","17,835","2,510","8,708","5,465","3,673","2,236","8,336","5,895","33,859","20,200","3,809","25,306","15,647","49,089","21,732","6,269","6,802","1,373","5,030","13,559","3,236","9,920","2,616","9,866","2,113","2,088","16,527","10,500","5,417","17,177","9,512","8,224","12,709","4,351","2,170","4,567","6,737","5,649","25,245","7,846","3,073","15,057","4,170","28,408","5,988","2,347","2,510","7,275","69,779","3,546","8,813","6,118","5,567","4,661","5,950","33,752","5,382","11,103","4,325","3,318","19,331","3,020","6,004","7,952","11,686","4,542","10,334","3,032","2,636","6,938","2,528","2,438","3,330","9,798","9,440","6,753","3,124","4,620","3,920","13,250","18,420","43,565","3,117","5,339" -2289,Income,Income sources,Catalogue no. 98-400-X2016122, Investment income: Aggregate amount ($'000),"9,935,417","31,378","29,480","16,798","533,339","231,811","47,716","151,319","110,367","61,524","434,351","4,803","19,594","34,159","3,508","10,595","8,354","535,112","11,951","23,795","46,276","6,000","376,771","22,765","88,447","11,789","59,963","27,311","20,603","15,371","25,217","49,542","10,203","35,237","24,924","16,594","37,469","235,061","8,475","4,570","104,201","33,851","8,979","9,059","179,937","568,097","10,817","16,989","20,014","13,602","54,393","113,285","21,870","59,506","23,627","8,898","5,605","74,640","5,672","114,385","21,452","6,906","6,976","40,097","26,293","153,382","48,481","44,257","151,712","89,971","339,698","148,650","25,170","17,686","9,356","13,907","54,234","26,064","97,959","7,886","47,948","3,994","7,267","101,394","96,177","12,351","96,193","57,452","81,253","54,267","11,161","3,972","23,427","27,251","15,788","114,865","59,119","8,250","39,074","21,602","141,757","9,222","4,636","10,907","27,682","716,286","36,050","30,670","11,318","13,696","15,217","46,529","263,773","47,253","94,654","33,239","7,167","151,455","6,070","12,489","42,224","26,645","15,942","247,139","14,584","17,158","37,777","6,460","4,888","21,196","179,786","56,454","43,761","29,474","14,899","8,487","50,020","82,061","232,418","14,682","21,942" -2290,Income,Income sources,Catalogue no. 98-400-X2016122, Private retirement income: Population with an amount,"242,790","2,665","2,090","1,585","3,425","4,545","1,410","1,735","2,200","1,990","2,755",440,"2,815","2,710",995,410,"1,160","1,200","1,155","1,145","1,205",755,"1,760","1,935","2,170","2,045","1,450","1,795","1,205",860,"1,635","2,625","1,490","2,335","3,285",825,"1,560","2,255","1,705",765,"1,775","2,885","1,165","1,330","1,125","1,645","2,185",840,"2,035",730,"2,130","2,590","1,690","2,310","1,660","1,260","1,025","1,100",995,"4,775",975,920,"1,245",930,"2,380","1,625",720,"4,300","1,390","1,430","1,660","2,005",785,965,"2,665","1,155","2,160","2,010","3,395","1,580",755,750,"1,290","1,770","2,710",845,"1,460","2,110",900,"1,095",675,685,"1,750","1,735",965,"1,180","3,345","1,055",710,"2,030","1,675",180,"1,070","2,120",875,"3,735","3,415",980,945,"1,070",945,"1,375","2,015","2,415","3,295","3,340",795,"2,405","1,005",965,"1,250",620,"1,770","3,185","2,410","2,405","2,120","1,140",670,"2,810","3,305","1,760","3,615","4,200",795,665,"1,170","1,250","1,995","1,905","1,675" -2291,Income,Income sources,Catalogue no. 98-400-X2016122, Private retirement income: Average amount ($),"23,620","18,482","18,200","18,562","42,918","29,704","18,528","37,712","32,763","28,249","37,101","16,907","18,837","24,526","10,554","23,273","12,881","55,725","18,905","13,776","30,480","12,750","39,286","29,064","33,813","16,507","20,219","24,144","13,773","16,603","18,673","22,622","16,009","13,764","11,984","14,578","21,778","30,817","16,316","14,089","19,952","22,654","20,113","16,097","28,634","47,658","10,923","16,126","28,126","22,484","26,138","27,920","22,298","25,810","20,844","12,531","11,766","26,816","15,030","24,601","19,870","11,925","15,892","18,243","21,601","40,836","28,233","20,068","30,480","35,666","44,390","35,789","13,591","19,551","15,002","12,494","28,728","18,780","25,796","21,337","31,408","16,723","13,879","30,531","30,177","15,962","26,943","18,677","22,903","28,591","16,947","14,854","13,206","20,172","23,150","17,508","24,127","14,285","23,307","18,257","35,571","17,011","15,549","16,222","17,678","47,811","21,008","26,401","11,071","21,921","11,962","18,769","36,400","19,042","25,594","17,961","16,835","32,359","17,314","20,856","17,750","26,958","18,797","28,481","17,762","14,722","16,201","16,761","10,346","18,034","27,432","24,524","21,041","20,190","22,003","19,674","19,513","36,438","48,170","13,455","14,165" -2292,Income,Income sources,Catalogue no. 98-400-X2016122, Private retirement income: Aggregate amount ($'000),"5,734,698","49,254","38,037","29,421","146,993","135,006","26,125","65,431","72,078","56,216","102,213","7,439","53,026","66,465","10,501","9,542","14,942","66,870","21,835","15,774","36,728","9,626","69,143","56,239","73,375","33,756","29,318","43,338","16,596","14,279","30,531","59,383","23,854","32,139","39,366","12,027","33,973","69,493","27,819","10,778","35,414","65,356","23,432","21,409","32,213","78,397","23,867","13,546","57,236","16,413","55,675","72,314","37,683","59,620","34,601","15,789","12,060","29,498","14,955","117,469","19,373","10,971","19,785","16,966","51,410","66,358","20,328","86,292","42,367","51,003","73,688","71,756","10,669","18,867","39,979","14,430","62,052","37,748","87,579","33,713","23,713","12,542","17,904","54,040","81,779","13,488","39,337","39,409","20,613","31,307","11,439","10,175","23,110","34,998","22,340","20,660","80,704","15,071","16,548","37,061","59,581","3,062","16,637","34,391","15,468","178,574","71,742","25,873","10,462","23,455","11,304","25,808","73,345","45,986","84,332","59,989","13,384","77,823","17,401","20,126","22,187","16,714","33,270","90,711","42,807","35,406","34,346","19,107","6,932","50,675","90,664","43,162","76,065","84,796","17,492","13,083","22,830","45,547","96,100","25,631","23,727" -2293,Income,Income sources,Catalogue no. 98-400-X2016122, Market income not included elsewhere: Population with an amount,"358,290","3,840","3,105","1,430","6,150","4,920","2,135","5,565","3,550","2,600","4,570",665,"3,145","2,835","1,895",745,"1,695","2,225","1,255","1,975","1,810","1,045","2,570","2,040","5,305","2,880","2,035","2,040","1,850","1,090","1,760","3,535","2,585","4,470","3,720","1,400","2,295","2,635","2,400","1,040","2,910","2,635","1,440","2,140","2,110","2,615","2,905","1,370","1,620","1,785","2,875","3,515","1,890","2,930","1,475","1,300","1,485","2,300","1,205","6,115","1,815","1,155","1,930","3,060","2,645","2,110","1,080","5,595","2,600","2,475","3,270","2,925","2,015","1,195","4,615","1,235","1,825","3,170","3,925","2,130","2,310","1,310","2,760","2,680","4,110","1,345","2,560","2,835","3,475","1,760","2,125","1,335","2,235","2,005","1,085","2,165","4,400","1,330","1,185","2,255","2,260","1,250","1,085","2,340","1,760","4,925","5,685","1,330","1,050","1,730","2,085","2,865","3,660","3,385","3,390","3,670","1,650","3,115","1,080","1,640","2,265","1,380","1,940","9,045","3,090","3,595","3,020","1,760","1,140","3,115","7,355","2,605","3,055","5,615","1,205",910,"1,820","1,975","2,590","3,535","1,805" -2294,Income,Income sources,Catalogue no. 98-400-X2016122, Market income not included elsewhere: Average amount ($),"7,663","5,048","4,997","4,780","16,105","8,901","5,924","11,122","6,654","6,567","16,864","4,320","3,942","7,288","3,952","9,981","3,872","23,919","5,902","4,245","8,826","2,834","15,054","9,391","7,927","5,080","7,538","7,599","4,501","11,415","6,352","5,550","4,703","5,006","3,402","6,644","6,461","12,831","3,407","5,438","7,214","4,635","3,822","4,039","8,655","13,145","3,755","5,584","6,420","5,857","7,153","7,451","6,289","5,125","5,430","4,574","3,634","9,584","5,107","6,627","7,030","3,341","3,850","6,901","4,116","20,978","8,234","4,034","9,913","12,672","19,713","13,875","5,803","5,522","4,487","3,168","10,487","3,844","6,652","3,583","6,373","3,027","3,225","10,383","7,756","6,315","5,536","4,853","7,521","8,522","5,929","4,723","6,720","7,978","6,203","5,600","5,974","2,972","9,492","6,878","17,865","6,720","3,643","2,991","7,486","31,354","5,778","9,277","2,870","5,453","4,495","7,406","13,940","4,162","8,434","4,980","4,510","16,957","3,069","4,742","9,222","10,216","4,783","9,245","4,008","3,582","4,917","4,119","4,496","4,381","6,130","6,453","4,433","3,832","5,749","5,169","6,757","13,903","15,007","5,682","4,220" -2295,Income,Income sources,Catalogue no. 98-400-X2016122, Market income not included elsewhere: Aggregate amount ($'000),"2,745,713","19,385","15,515","6,835","99,046","43,794","12,648","61,892","23,621","17,075","77,070","2,873","12,397","20,662","7,489","7,436","6,563","53,220","7,407","8,384","15,975","2,962","38,689","19,158","42,055","14,630","15,340","15,502","8,327","12,442","11,179","19,621","12,158","22,376","12,655","9,301","14,829","33,809","8,177","5,656","20,992","12,214","5,504","8,643","18,261","34,373","10,909","7,650","10,401","10,454","20,565","26,189","11,886","15,016","8,009","5,946","5,396","22,044","6,154","40,523","12,760","3,859","7,431","21,116","10,886","44,264","8,893","22,573","25,775","31,363","64,462","40,584","11,694","6,599","20,709","3,912","19,139","12,185","26,108","7,631","14,722","3,965","8,902","27,827","31,879","8,494","14,173","13,758","26,134","14,998","12,599","6,305","15,020","15,996","6,730","12,124","26,284","3,953","11,248","15,511","40,375","8,400","3,953","6,998","13,175","154,418","32,849","12,338","3,014","9,434","9,373","21,217","51,019","14,090","28,591","18,277","7,442","52,822","3,314","7,777","20,887","14,098","9,279","83,623","12,386","12,877","14,848","7,250","5,125","13,646","45,088","16,811","13,543","21,519","6,928","4,704","12,298","27,458","38,869","20,086","7,618" -2296,Income,Income sources,Catalogue no. 98-400-X2016122, Government transfers: Population with an amount,"1,598,720","19,045","15,060","6,775","17,480","15,655","9,260","16,105","12,460","8,195","11,855","3,970","18,065","12,520","13,355","4,255","8,945","4,465","7,000","10,795","6,590","5,930","6,395","7,400","18,415","14,945","9,345","9,210","8,470","5,395","9,220","16,400","14,615","22,650","21,780","7,315","11,665","8,765","13,820","5,610","12,230","10,940","6,895","13,250","7,045","5,810","19,050","8,200","5,865","9,345","12,220","12,595","7,730","11,045","6,125","7,900","9,370","8,325","8,350","24,400","7,905","6,850","10,735","12,460","13,280","4,825","4,065","28,685","8,950","7,095","7,510","8,360","9,055","6,015","26,705","6,315","6,470","17,365","18,875","10,510","10,655","8,090","19,710","8,530","16,555","6,715","10,105","15,310","14,310","6,310","11,780","8,350","12,830","10,925","5,140","8,815","20,235","6,205","4,385","9,980","5,970","6,565","6,240","13,860","8,570","11,430","26,540","5,070","6,030","9,830","13,940","14,755","9,640","16,195","13,785","17,295","9,400","11,020","6,300","11,440","10,280","4,410","10,810","33,135","16,615","20,315","17,005","10,925","6,720","16,825","29,200","10,405","13,460","32,590","6,600","4,350","8,110","6,410","7,210","17,825","8,830" -2297,Income,Income sources,Catalogue no. 98-400-X2016122, Government transfers: Average amount ($),"6,631","6,622","6,048","7,339","5,148","7,467","7,009","3,152","5,268","6,938","6,426","8,230","6,816","7,264","8,399","6,988","6,461","5,482","7,088","7,459","6,624","6,823","6,574","7,101","4,192","6,853","6,226","7,598","6,911","7,103","7,423","6,448","6,920","6,031","7,701","5,582","6,617","7,078","7,564","7,994","7,782","7,893","6,947","7,538","6,379","6,164","8,748","6,629","8,520","5,010","5,932","5,994","6,888","6,912","8,547","8,563","7,614","5,535","6,984","6,663","5,614","7,729","7,595","5,483","8,653","6,715","7,499","7,067","4,896","5,459","5,181","5,783","4,876","6,702","6,882","7,648","7,806","6,208","6,602","7,452","5,940","7,531","7,551","6,045","5,480","7,134","5,281","5,983","3,556","5,849","5,825","7,954","7,546","7,569","7,643","5,103","6,958","7,317","5,679","6,762","6,509","6,580","7,748","8,237","6,105","6,579","6,465","6,035","9,500","8,115","5,972","6,145","5,877","6,673","7,076","7,278","6,952","6,023","7,690","7,987","5,664","4,533","7,889","3,618","8,298","6,591","6,936","7,975","7,483","7,292","4,275","5,790","8,445","7,318","6,759","7,200","6,406","5,516","6,536","6,380","7,735" -2298,Income,Income sources,Catalogue no. 98-400-X2016122, Government transfers: Aggregate amount ($'000),"10,601,770","126,113","91,090","49,724","89,988","116,902","64,906","50,762","65,644","56,860","76,177","32,673","123,126","90,940","112,175","29,734","57,796","24,475","49,619","80,524","43,650","40,459","42,040","52,544","77,191","102,419","58,178","69,982","58,537","38,318","68,444","105,749","101,136","136,593","167,732","40,833","77,188","62,036","104,537","44,848","95,179","86,348","47,903","99,882","44,937","35,815","166,654","54,358","49,971","46,822","72,490","75,493","53,246","76,348","52,352","67,650","71,341","46,078","58,316","162,572","44,381","52,947","81,529","68,321","114,906","32,399","30,482","202,728","43,815","38,732","38,913","48,350","44,148","40,315","183,779","48,297","50,507","107,798","124,615","78,323","63,288","60,925","148,825","51,567","90,725","47,902","53,364","91,602","50,893","36,905","68,614","66,413","96,812","82,695","39,284","44,982","140,805","45,401","24,904","67,488","38,856","43,195","48,347","114,170","52,319","75,198","171,582","30,596","57,283","79,771","83,253","90,670","56,657","108,071","97,540","125,873","65,348","66,378","48,447","91,372","58,223","19,991","85,279","119,871","137,868","133,890","117,949","87,125","50,283","122,693","124,822","60,249","113,669","238,489","44,607","31,322","51,954","35,358","47,125","113,726","68,297" -2299,Income,Income sources,Catalogue no. 98-400-X2016122, Old Age Security pension (OAS) and Guaranteed Income Supplement (GIS): Population with an amount,"342,245","5,090","3,350","1,795","3,260","5,030","2,340","1,615","2,435","2,475","2,790",790,"4,150","3,060","2,385",780,"1,875",850,"1,650","1,945","1,595","1,255","1,605","2,030","2,225","2,900","2,075","2,305","1,895","1,410","2,405","3,755","2,805","3,990","5,170","1,375","2,130","2,380","2,725","1,165","2,740","3,395","1,520","2,600","1,510","1,355","4,445","1,520","2,190","1,115","2,495","2,735","2,115","3,525","2,035","2,140","1,930","1,510","1,680","5,840","1,325","1,675","2,320","2,285","3,235","1,415",830,"7,500","1,580","1,480","1,405","1,875","1,370","1,215","5,140","1,720","2,325","4,010","4,315","2,215","1,325","1,310","2,970","1,930","3,175","1,295","2,300","3,360","1,200","1,330","1,420","1,295","3,250","2,305","1,330","1,785","4,535","1,465",995,"2,790","1,545",650,"1,515","3,435","1,485","2,940","5,490","1,080","1,600","1,685","1,865","2,550","2,035","4,600","3,505","5,180","1,370","2,315","1,460","1,830","2,145",775,"2,775","3,625","3,750","4,285","4,195","2,075","1,230","3,945","4,585","2,615","4,500","6,905","1,210",985,"1,950","1,175","1,735","3,280","2,475" -2300,Income,Income sources,Catalogue no. 98-400-X2016122, Old Age Security pension (OAS) and Guaranteed Income Supplement (GIS): Average amount ($),"8,406","9,443","8,691","7,353","7,306","7,289","8,747","7,465","7,676","7,537","6,933","8,491","8,552","7,613","9,888","9,812","8,456","6,620","8,415","8,674","8,480","8,543","6,825","7,315","7,877","8,390","8,074","8,096","8,349","8,961","8,644","8,137","9,321","8,968","8,514","8,984","8,557","7,293","8,824","8,702","8,960","7,260","8,101","9,572","7,787","6,430","9,147","9,847","7,090","8,658","7,941","7,294","7,566","8,734","7,505","8,564","8,768","8,257","9,000","7,931","8,093","9,010","8,947","10,742","7,994","6,203","7,887","9,152","7,144","7,159","6,142","6,415","8,901","7,854","9,545","7,892","6,978","9,522","8,149","8,433","9,531","9,237","9,606","7,394","8,158","9,390","8,899","8,665","8,379","7,849","10,281","9,525","9,038","8,318","7,786","8,134","7,801","7,680","8,443","8,006","6,641","11,388","8,253","9,146","9,206","6,339","8,831","7,259","8,501","8,829","9,662","9,462","7,048","9,187","7,401","8,756","9,366","6,960","8,410","9,715","8,524","8,466","8,885","8,052","8,719","8,855","9,476","9,431","9,605","8,134","8,243","8,821","7,663","9,238","8,978","8,864","8,961","7,038","6,609","8,648","8,319" -2301,Income,Income sources,Catalogue no. 98-400-X2016122, Old Age Security pension (OAS) and Guaranteed Income Supplement (GIS): Aggregate amount ($'000),"2,876,956","48,066","29,115","13,199","23,818","36,665","20,467","12,056","18,692","18,655","19,342","6,708","35,490","23,295","23,583","7,653","15,855","5,627","13,884","16,871","13,526","10,722","10,954","14,850","17,527","24,330","16,754","18,662","15,821","12,635","20,790","30,555","26,145","35,782","44,016","12,353","18,227","17,358","24,045","10,138","24,550","24,649","12,313","24,887","11,759","8,713","40,660","14,967","15,527","9,654","19,814","19,948","16,002","30,787","15,272","18,327","16,922","12,468","15,120","46,315","10,723","15,092","20,756","24,545","25,860","8,777","6,546","68,637","11,288","10,596","8,629","12,029","12,194","9,543","49,059","13,574","16,224","38,183","35,165","18,679","12,629","12,101","28,531","14,271","25,903","12,160","20,468","29,115","10,055","10,439","14,599","12,335","29,374","19,172","10,356","14,519","35,377","11,251","8,401","22,337","10,261","7,402","12,504","31,415","13,671","18,636","48,482","7,840","13,602","14,877","18,019","24,129","14,342","42,259","25,939","45,357","12,832","16,113","12,278","17,778","18,285","6,561","24,657","29,188","32,698","37,943","39,752","19,569","11,814","32,090","37,793","23,067","34,483","63,791","10,863","8,731","17,474","8,270","11,466","28,366","20,590" -2302,Income,Income sources,Catalogue no. 98-400-X2016122, Old Age Security pension (OAS): Population with an amount,"335,825","4,935","3,250","1,780","3,240","4,985","2,315","1,595","2,395","2,440","2,765",760,"4,060","3,010","2,335",775,"1,830",850,"1,625","1,900","1,575","1,215","1,605","1,995","2,215","2,815","2,040","2,270","1,835","1,395","2,345","3,670","2,715","3,910","5,080","1,335","2,110","2,355","2,630","1,145","2,730","3,380","1,490","2,515","1,505","1,365","4,325","1,495","2,175","1,085","2,465","2,715","2,085","3,470","1,990","2,100","1,885","1,480","1,660","5,775","1,310","1,625","2,285","2,215","3,145","1,420",825,"7,285","1,565","1,470","1,405","1,855","1,330","1,215","4,955","1,700","2,295","3,905","4,265","2,175","1,290","1,270","2,895","1,910","3,155","1,275","2,230","3,280","1,170","1,325","1,400","1,280","3,220","2,270","1,295","1,760","4,475","1,425",980,"2,765","1,535",610,"1,475","3,365","1,455","2,935","5,295","1,075","1,570","1,630","1,825","2,480","2,005","4,445","3,485","5,040","1,345","2,310","1,435","1,800","2,080",780,"2,710","3,595","3,685","4,175","4,155","2,000","1,200","3,855","4,475","2,575","4,455","6,710","1,190",975,"1,910","1,170","1,720","3,210","2,445" -2303,Income,Income sources,Catalogue no. 98-400-X2016122, Old Age Security pension (OAS): Average amount ($),"5,557","4,412","5,035","6,138","5,769","5,720","5,492","5,591","5,399","5,576","5,734","5,775","5,467","6,186","5,205","5,551","5,680","5,542","6,121","5,730","5,552","5,835","5,670","5,952","5,691","5,741","5,774","5,926","6,241","5,871","6,082","5,386","5,109","5,781","5,971","5,720","5,928","5,955","5,386","5,889","5,591","5,941","5,994","5,150","5,916","5,562","5,476","5,522","6,196","5,018","5,998","6,115","5,507","4,687","6,171","5,945","5,481","5,762","5,528","5,724","5,526","5,751","5,313","4,839","5,842","5,854","5,719","4,977","5,663","5,827","5,603","6,033","6,081","5,946","4,694","6,278","6,057","4,218","5,685","5,503","5,469","5,508","4,912","5,837","5,768","5,550","4,905","5,343","5,604","6,060","5,167","5,190","5,871","6,131","6,192","6,141","5,655","6,194","6,019","5,878","6,046","4,615","5,822","5,749","5,591","5,697","4,972","6,328","5,832","5,516","5,341","5,408","5,613","4,409","6,101","5,196","5,570","6,097","5,674","4,974","6,029","5,837","5,568","5,642","5,712","5,201","4,658","5,757","5,718","5,785","5,010","5,206","6,022","5,276","5,629","5,945","5,966","5,988","5,698","5,575","6,100" -2304,Income,Income sources,Catalogue no. 98-400-X2016122, Old Age Security pension (OAS): Aggregate amount ($'000),"1,866,302","21,775","16,365","10,925","18,692","28,513","12,714","8,917","12,931","13,606","15,855","4,389","22,196","18,619","12,154","4,302","10,394","4,711","9,946","10,887","8,745","7,090","9,101","11,874","12,605","16,161","11,778","13,451","11,453","8,190","14,262","19,765","13,870","22,604","30,331","7,636","12,509","14,023","14,165","6,743","15,264","20,082","8,931","12,952","8,903","7,592","23,682","8,255","13,476","5,444","14,786","16,603","11,483","16,263","12,280","12,484","10,332","8,528","9,176","33,056","7,239","9,346","12,141","10,719","18,373","8,313","4,718","36,260","8,863","8,565","7,872","11,191","8,088","7,224","23,260","10,672","13,900","16,470","24,245","11,969","7,055","6,995","14,221","11,148","18,199","7,076","10,938","17,525","6,557","8,029","7,234","6,643","18,905","13,917","8,018","10,808","25,308","8,827","5,899","16,253","9,280","2,815","8,587","19,346","8,135","16,720","26,327","6,803","9,156","8,991","9,748","13,413","11,254","19,597","21,262","26,189","7,492","14,084","8,142","8,954","12,541","4,553","15,088","20,284","21,047","21,715","19,352","11,514","6,861","22,302","22,418","13,405","26,830","35,400","6,699","5,796","11,395","7,006","9,800","17,895","14,914" -2305,Income,Income sources,Catalogue no. 98-400-X2016122, Guaranteed Income Supplement (GIS) and spousal allowance: Population with an amount,"143,275","2,920","1,640",445,805,"1,245","1,045",465,770,705,530,395,"1,830",885,"1,485",445,950,120,700,965,640,685,290,455,755,"1,210",770,775,975,750,"1,100","1,425","1,645","2,315","2,410",730,875,605,"1,405",535,"1,205",815,555,"1,535",470,200,"2,525",960,430,500,785,660,575,"1,610",640,975,995,570,810,"1,970",515,"1,055","1,215","1,525","1,225",130,250,"3,975",385,270,160,175,785,395,"3,010",600,410,"2,390","1,580",890,775,725,"1,715",520,"1,040",730,"1,050","1,520",490,475,900,715,"1,745",915,455,700,"1,460",470,430,"1,015",190,525,655,"1,865",770,370,"2,570",220,740,845,"1,125","1,515",455,"2,585",900,"2,470",760,390,600,"1,000","1,150",310,"1,320","1,240","1,580","2,115","2,340","1,150",860,"1,520","1,935","1,140","1,290","3,285",620,485,970,255,280,"1,535","1,105" -2306,Income,Income sources,Catalogue no. 98-400-X2016122, Guaranteed Income Supplement (GIS) and spousal allowance: Average amount ($),"7,054","8,943","7,694","5,020","6,380","6,455","7,431","6,598","7,640","7,153","6,606","5,823","7,249","5,185","7,679","7,620","5,693","5,175","5,623","6,172","7,238","5,269","6,476","6,591","6,577","6,661","6,484","6,724","4,422","5,944","5,961","7,490","7,447","5,695","5,665","6,507","6,512","5,440","7,038","6,542","7,731","5,589","6,119","7,831","6,177","4,720","6,710","7,031","4,730","8,322","6,288","5,042","8,030","8,999","4,683","5,988","6,624","6,898","7,277","6,739","6,495","5,452","7,114","9,035","6,162","2,915","7,344","8,135","6,294","7,519","3,106","4,337","5,213","5,724","8,532","4,827","5,585","9,105","6,916","7,606","7,270","7,054","8,245","6,000","7,385","6,870","9,080","7,638","6,849","5,128","8,169","7,860","6,026","5,741","5,088","5,333","7,043","5,266","5,749","6,029","5,347","8,634","5,957","6,490","7,044","4,624","8,585","4,223","6,043","7,026","7,305","6,939","6,695","8,738","5,242","7,797","7,009","5,203","6,962","8,725","5,042","6,442","7,243","7,098","7,372","7,683","8,686","7,016","5,797","6,475","8,021","8,478","5,908","8,651","6,700","6,074","6,226","5,071","5,068","6,809","5,122" -2307,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, Internal migrants,"184,120",880,980,680,"3,930","1,405",915,"5,250","1,995",830,995,215,"1,335",995,785,295,445,495,695,600,"1,165",320,"1,010",320,"5,575",915,"1,055",500,780,510,580,"1,475",910,"3,050","1,480","1,055","1,040",815,730,395,730,835,895,680,520,570,"1,000",660,440,"1,485","2,255","2,290",425,535,355,405,545,"1,145",395,"4,525","1,130",250,500,"2,365","1,045",525,340,"1,350","1,200",715,720,760,"2,200","1,285","1,485",325,740,775,"5,090",580,"2,945",440,"1,265","1,135","3,845",935,"1,010","1,375","7,380",585,"1,610",410,835,775,440,"1,830","1,860",435,540,710,485,930,450,745,"1,165","1,305","1,790",465,220,560,"2,500","1,805","1,040",675,"1,470","1,215",730,"1,380",295,855,"1,405",955,580,"16,650","1,040","1,690","1,535",950,405,960,"5,005","1,545","1,110","1,720",610,395,780,"1,260","1,355","1,700",580 -2308,Income,Income sources,Catalogue no. 98-400-X2016122, Guaranteed Income Supplement (GIS) and spousal allowance: Aggregate amount ($'000),"1,010,675","26,115","12,618","2,234","5,136","8,036","7,765","3,068","5,883","5,043","3,501","2,300","13,265","4,589","11,403","3,391","5,408",621,"3,936","5,956","4,632","3,609","1,878","2,999","4,966","8,060","4,993","5,211","4,311","4,458","6,557","10,673","12,251","13,183","13,653","4,750","5,698","3,291","9,888","3,500","9,316","4,555","3,396","12,021","2,903",944,"16,944","6,750","2,034","4,161","4,936","3,328","4,617","14,488","2,997","5,838","6,591","3,932","5,894","13,276","3,345","5,752","8,644","13,779","7,549",379,"1,836","32,338","2,423","2,030",497,759,"4,092","2,261","25,682","2,896","2,290","21,762","10,927","6,769","5,634","5,114","14,140","3,120","7,680","5,015","9,534","11,609","3,356","2,436","7,352","5,620","10,516","5,253","2,315","3,733","10,283","2,475","2,472","6,119","1,016","4,533","3,902","12,104","5,424","1,711","22,064",929,"4,472","5,937","8,218","10,513","3,046","22,588","4,718","19,259","5,327","2,029","4,177","8,725","5,798","1,997","9,561","8,801","11,647","16,250","20,325","8,068","4,985","9,842","15,520","9,665","7,621","28,418","4,154","2,946","6,039","1,293","1,419","10,452","5,660" -2309,Income,Income sources,Catalogue no. 98-400-X2016122, Canada Pension Plan (CPP) and Qubec Pension Plan (QPP) benefits: Population with an amount,"401,610","4,815","3,530","2,275","4,855","6,055","2,605","2,210","2,965","2,785","3,845",980,"4,540","3,940","2,560",940,"2,130","1,560","1,900","2,320","1,985","1,555","2,565","2,610","3,210","3,360","2,300","2,830","2,240","1,670","2,925","3,970","3,270","4,720","5,820","1,620","2,720","3,155","3,110","1,465","3,330","4,060","1,815","2,740","2,025","2,165","4,920","1,755","2,580","1,240","3,060","3,485","2,440","3,450","2,400","2,480","2,215","1,865","1,950","6,900","1,585","2,055","2,675","2,290","3,645","1,935","1,005","7,505","1,925","1,910","2,175","2,505","1,580","1,575","5,625","1,965","2,830","3,660","5,490","2,735","1,690","1,660","3,330","2,450","4,055","1,540","2,345","3,585","1,515","1,625","1,605","1,465","3,575","2,875","1,685","2,040","5,345","1,750","1,115","2,995","2,230",730,"1,770","4,090","1,720","4,760","6,215","1,325","1,810","2,025","2,115","3,000","2,935","4,095","4,445","5,120","1,665","3,250","1,645","1,815","2,320",885,"3,110","4,645","4,480","4,820","4,325","2,480","1,580","4,750","4,835","2,630","5,115","7,325","1,540","1,240","2,190","1,730","2,760","3,530","2,865" -2310,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Disability benefits: Aggregate amount ($'000),"245,731","1,385",985,"1,546",584,"1,478","1,850","1,465",678,0,"1,168","1,726","2,837","2,099","2,063",454,"1,696",0,799,"2,069","1,219","1,914",656,"1,274","3,872","2,266",661,"1,752","2,018","1,143","1,148",274,"2,731","4,017","4,396","1,099","1,809","1,211","1,751","1,581","2,152","2,604",697,"1,285",887,489,"4,246","1,291","1,132",333,"1,544","1,602","1,349",370,"1,358","2,006","2,052","1,038","1,922","2,913",756,"2,207","2,347",974,"1,966",0,758,"3,173",376,0,0,335,942,"1,269","3,375","1,324","1,659",399,"4,087","2,894","2,323","2,621","2,625",385,"2,646","1,551",256,"1,265",744,842,"1,614","1,465","2,888","2,088","1,215",343,"3,186","1,684",448,"1,566",419,326,"1,407","3,275",323,815,"3,438","1,257","1,873","1,449","1,879","1,724",0,343,"2,175",919,"1,418","1,364","1,280",350,"1,950",0,"1,752","1,773","3,582","4,234","1,841","2,032","1,959","4,243","1,680",966,"2,444","3,116","1,361",973,"1,198",772,357,"2,133","1,953" -2311,Income,Income sources,Catalogue no. 98-400-X2016122, Canada Pension Plan (CPP) and Qubec Pension Plan (QPP) benefits: Average amount ($),"7,312","5,739","6,190","8,047","8,250","8,242","7,476","8,217","7,716","7,871","8,659","7,457","7,172","7,880","6,282","6,288","7,250","8,834","7,444","7,102","7,509","7,112","8,676","7,902","8,016","7,366","7,444","7,707","7,208","7,207","7,035","6,979","6,231","6,800","7,503","6,221","7,374","8,228","6,711","7,332","7,275","8,297","7,523","6,089","8,159","9,164","6,874","5,985","8,521","6,732","7,946","8,234","7,658","6,865","8,024","7,347","6,828","7,604","7,072","7,619","7,144","6,736","6,554","5,405","7,815","8,892","7,924","6,494","7,977","8,427","8,594","8,766","6,822","7,843","5,964","8,076","8,399","5,546","7,721","7,318","6,663","7,022","6,126","8,108","7,869","7,243","6,618","6,806","6,761","7,951","6,147","6,377","6,999","7,846","7,862","7,134","7,512","7,830","7,492","7,484","8,333","4,621","7,255","6,897","6,546","8,884","6,755","8,066","7,387","7,006","6,436","6,337","8,295","6,157","8,294","6,591","6,766","8,182","7,596","6,672","7,398","7,836","6,825","7,423","7,004","6,778","5,959","6,720","6,486","7,483","6,848","7,383","8,044","6,605","6,627","7,194","7,087","8,261","8,928","7,231","7,495" -2312,Income,Income sources,Catalogue no. 98-400-X2016122, Canada Pension Plan (CPP) and Qubec Pension Plan (QPP) benefits: Aggregate amount ($'000),"2,936,529","27,635","21,851","18,308","40,052","49,907","19,476","18,159","22,877","21,920","33,295","7,308","32,561","31,048","16,083","5,911","15,442","13,781","14,144","16,477","14,906","11,059","22,254","20,624","25,730","24,751","17,122","21,812","16,145","12,035","20,576","27,708","20,374","32,097","43,667","10,078","20,057","25,960","20,871","10,741","24,225","33,686","13,654","16,685","16,521","19,840","33,818","10,504","21,985","8,348","24,315","28,695","18,686","23,683","19,257","18,221","15,124","14,182","13,791","52,572","11,323","13,842","17,533","12,377","28,485","17,206","7,964","48,739","15,355","16,095","18,691","21,959","10,779","12,352","33,550","15,869","23,770","20,299","42,387","20,015","11,261","11,656","20,398","19,864","31,909","11,154","15,520","24,399","10,243","12,921","9,866","9,342","25,023","22,557","13,248","14,554","40,149","13,702","8,354","22,416","18,582","3,373","12,842","28,209","11,259","42,287","41,981","10,687","13,371","14,187","13,612","19,012","24,346","25,211","36,868","33,745","11,266","26,591","12,496","12,109","17,163","6,935","21,225","34,480","31,377","32,669","25,773","16,666","10,248","35,544","33,110","19,418","41,146","48,381","10,206","8,920","15,521","14,292","24,642","25,524","21,474" -2313,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Retirement benefits: Population with an amount,"358,125","4,470","3,240","1,950","4,425","5,675","2,290","1,955","2,730","2,680","3,500",780,"4,030","3,530","2,190",840,"1,835","1,475","1,735","1,925","1,775","1,295","2,365","2,355","2,660","2,980","2,105","2,445","1,860","1,440","2,605","3,730","2,770","4,065","5,160","1,415","2,395","2,825","2,740","1,190","2,925","3,620","1,640","2,455","1,870","2,045","4,285","1,480","2,395","1,130","2,715","3,155","2,195","3,260","2,135","2,155","1,960","1,725","1,700","6,215","1,375","1,660","2,285","1,990","3,290","1,805",895,"6,945","1,760","1,755","1,995","2,300","1,335","1,400","4,960","1,740","2,540","3,410","4,850","2,370","1,405","1,380","2,770","2,260","3,625","1,325","2,180","3,325","1,310","1,470","1,320","1,270","3,195","2,555","1,470","1,825","4,725","1,510","1,020","2,760","1,990",595,"1,535","3,540","1,525","4,440","5,510","1,150","1,540","1,750","1,820","2,670","2,730","3,895","4,045","4,755","1,425","2,920","1,410","1,665","2,040",815,"2,760","4,165","3,890","4,175","3,935","2,100","1,240","4,115","4,450","2,430","4,635","6,535","1,320","1,085","1,935","1,490","2,595","3,100","2,540" -2314,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Retirement benefits: Average amount ($),"6,743","5,350","5,691","7,298","8,004","7,617","6,743","7,863","7,314","7,394","8,320","6,351","6,582","7,297","5,596","5,720","6,530","8,411","7,039","6,382","7,167","6,003","8,448","7,587","7,489","6,760","6,941","7,118","6,337","6,481","6,422","6,490","5,559","5,871","6,595","5,517","6,809","7,761","6,025","6,692","6,652","7,660","6,800","5,473","7,799","8,720","6,041","5,442","7,900","6,253","7,461","7,724","7,464","6,442","7,256","6,398","5,973","7,106","6,282","7,088","6,628","5,742","5,793","4,942","7,184","8,505","7,232","5,973","7,513","8,144","8,444","8,480","5,989","7,121","5,549","7,205","7,771","5,261","7,084","6,616","5,821","5,814","5,733","7,708","7,516","6,234","6,163","6,041","6,394","7,574","5,628","5,602","6,068","7,147","7,131","6,648","6,977","6,959","6,989","6,842","8,095","4,195","6,465","6,133","5,954","8,615","6,376","7,283","6,356","6,503","5,684","5,626","8,135","5,745","7,640","6,027","6,196","7,901","6,993","6,168","6,310","7,432","6,251","6,998","6,420","6,051","5,373","5,965","5,518","6,663","6,373","6,808","7,333","6,109","6,016","6,428","6,564","8,148","8,607","6,627","6,593" -2315,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, Intraprovincial migrants,"141,135",735,760,615,"2,630","1,190",745,"3,275","1,485",720,760,200,"1,040",785,685,210,315,385,480,485,825,260,690,290,"4,060",695,910,450,555,395,385,"1,105",745,"2,080","1,305",760,740,705,560,265,555,790,775,490,420,420,825,455,335,"1,115","1,650","1,625",350,440,290,370,430,805,315,"3,865",810,165,415,"1,645",910,385,260,"1,120",985,550,455,570,"1,555","1,105","1,265",280,665,670,"4,210",515,"2,145",380,"1,050",765,"2,865",820,790,"1,150","5,595",430,"1,150",295,655,660,355,"1,195","1,560",360,410,605,395,690,405,635,840,965,"1,510",390,205,415,"1,895","1,260",790,545,"1,235",955,505,980,280,530,985,645,485,"12,440",850,"1,485","1,325",830,330,705,"3,745","1,070",960,"1,400",350,320,570,970,"1,025","1,490",445 -2316,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Retirement benefits: Aggregate amount ($'000),"2,414,826","23,915","18,438","14,232","35,417","43,227","15,442","15,372","19,967","19,816","29,120","4,954","26,525","25,757","12,255","4,805","11,982","12,406","12,212","12,286","12,721","7,774","19,979","17,868","19,920","20,145","14,611","17,404","11,787","9,332","16,730","24,209","15,398","23,866","34,030","7,806","16,307","21,925","16,508","7,963","19,458","27,728","11,152","13,436","14,585","17,832","25,887","8,054","18,920","7,066","20,257","24,368","16,384","21,001","15,492","13,787","11,708","12,257","10,680","44,054","9,114","9,532","13,238","9,834","23,634","15,351","6,473","41,484","13,222","14,292","16,846","19,503","7,995","9,970","27,525","12,536","19,739","17,940","34,355","15,681","8,179","8,024","15,880","17,421","27,244","8,260","13,435","20,085","8,376","11,134","7,429","7,114","19,388","18,261","10,482","12,132","32,966","10,508","7,129","18,883","16,109","2,496","9,924","21,712","9,080","38,249","35,132","8,375","9,788","11,381","10,345","15,021","22,209","22,375","30,903","28,660","8,829","23,070","9,860","10,269","12,872","6,057","17,253","29,145","24,974","25,265","21,144","12,527","6,842","27,419","28,360","16,544","33,987","39,924","7,941","6,974","12,701","12,141","22,335","20,545","16,745" -2317,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Disability benefits: Population with an amount,"22,720",160,125,135,160,145,165,150,90,55,110,125,265,210,210,55,190,30,70,200,110,165,75,105,405,190,60,180,230,110,145,125,265,390,450,110,155,135,205,140,205,205,95,190,80,70,405,120,70,75,155,155,125,95,130,175,190,85,185,305,100,225,240,110,175,40,60,325,70,40,45,75,120,125,405,125,145,125,410,220,205,210,280,75,240,125,60,145,115,75,210,145,255,205,110,60,355,135,60,150,70,55,130,340,85,80,330,95,155,155,220,200,40,90,175,170,130,145,130,95,145,25,175,215,345,370,210,210,210,385,160,95,225,345,130,90,115,60,60,240,165 -2318,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Disability benefits: Average amount ($),"10,816","8,656","7,880","11,452","3,650","10,193","11,212","9,767","7,533",0,"10,618","13,808","10,706","9,995","9,824","8,255","8,926",0,"11,414","10,345","11,082","11,600","8,747","12,133","9,560","11,926","11,017","9,733","8,774","10,391","7,917","2,192","10,306","10,300","9,769","9,991","11,671","8,970","8,541","11,293","10,498","12,702","7,337","6,763","11,088","6,986","10,484","10,758","16,171","4,440","9,961","10,335","10,792","3,895","10,446","11,463","10,800","12,212","10,389","9,551","7,560","9,809","9,779","8,855","11,234",0,"12,633","9,763","5,371",0,0,"4,467","7,850","10,152","8,333","10,592","11,441","3,192","9,968","13,155","11,332","12,481","9,375","5,133","11,025","12,408","4,267","8,724","6,470","11,227","7,686","10,103","11,325","10,185","11,045","5,717","8,975","12,474","7,467","10,440","5,986","5,927","10,823","9,632","3,800","10,188","10,418","13,232","12,084","9,348","8,541","8,620",0,"3,811","12,429","5,406","10,908","9,407","9,846","3,684","13,448",0,"10,011","8,247","10,383","11,443","8,767","9,676","9,329","11,021","10,500","10,168","10,862","9,032","10,469","10,811","10,417","12,867","5,950","8,888","11,836" -2319,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Survivor benefits: Average amount ($),"3,658","3,202","3,674","3,685","3,847","3,838","3,747","3,016","3,848","3,360","3,931","3,753","3,431","3,610","3,538","3,579","3,672","3,345","3,244","4,006","3,136","3,912","3,584","3,536","3,388","3,385","4,180","3,699","4,163","3,741","3,958","3,508","3,544","3,856","4,136","3,997","3,517","3,606","3,499","4,069","3,770","3,522","3,852","3,139","3,508","3,312","3,541","3,569","3,361","3,147","3,757","3,586","2,961","2,994","3,714","4,109","3,797","3,434","3,693","3,573","3,492","4,640","3,455","3,386","3,714","3,221","3,672","3,357","4,135","3,756","3,669","3,514","4,055","3,510","3,227","3,692","3,763","2,795","3,624","3,207","3,690","4,004","3,433","3,980","3,376","3,866","3,941","3,961","3,196","3,212","3,091","3,626","3,915","3,826","4,022","3,814","3,493","3,807","3,842","3,725","3,901","3,165","3,561","3,746","3,862","3,997","3,155","4,188","4,222","3,327","3,096","3,122","3,447","3,165","3,664","3,455","3,310","3,567","3,950","3,088","4,073","4,140","3,482","3,458","3,405","3,662","3,301","4,130","4,153","3,762","3,311","3,606","3,860","3,532","3,524","3,554","3,690","4,323","3,418","3,491","4,099" -2320,Income,Income sources,Catalogue no. 98-400-X2016122, CPP/QPP - Survivor benefits: Aggregate amount ($'000),"275,980","2,065","2,076","2,414","3,001","4,990","2,173","1,312","2,020","1,613","2,752",713,"3,174","2,816","1,769",519,"1,689",970,"1,103","2,123",878,"1,330","1,559","1,609","1,440","2,251","1,902","2,423","2,165","1,384","2,454","2,175","2,233","3,914","5,087","1,159","1,741","2,578","2,292","1,180","2,658","3,346","1,637","1,334","1,140","1,093","3,647","1,053","2,000",598,"2,367","2,367",992,"1,557","2,284","2,383","1,386",996,"1,237","5,127","1,030","2,111","1,900","1,473","2,953","1,208",716,"3,810","1,468","1,183","1,321","1,546","1,541","1,211","2,259","2,012","2,446","1,076","3,733","1,427",738,"1,121","1,957","1,612","1,941","1,295","1,478","2,614",831,787,510,689,"2,780","1,932","1,488","1,850","3,720","1,542",730,"2,030","1,736",364,"1,478","3,147","1,178","3,058","3,108","1,068","1,710","1,281",836,"1,530","1,689","1,709","3,646","3,213","1,026","1,855","1,343",803,"2,403",621,"2,333","2,663","2,843","3,131","2,591","2,127","1,516","3,912","2,781","1,857","4,787","4,839",969,924,"1,642","1,405","1,743","2,444","2,787" -2321,Income,Income sources,Catalogue no. 98-400-X2016122, Employment Insurance (EI) benefits: Population with an amount,"129,805","1,620","1,165",755,910,920,765,595,735,370,625,415,"1,370","1,090","1,255",325,875,145,545,"1,150",515,670,345,705,"1,100","1,595",810,775,980,385,895,"1,250","1,505","2,315","2,160",690,"1,120",640,"1,260",460,995,900,595,"1,105",425,270,"1,770",775,475,625,"1,145","1,060",590,595,525,605,945,605,685,"2,215",775,775,855,540,"1,150",260,325,"2,280",550,405,415,490,785,540,"2,550",575,340,"1,450","1,660",915,775,905,"1,890",680,"1,335",705,390,"1,040","1,405",495,930,645,"1,180","1,010",445,555,"1,615",690,300,705,345,500,605,"1,460",760,480,"2,435",465,550,825,"1,265","1,485",390,"1,110","1,170","1,225",820,890,605,765,800,215,900,"2,710","1,395","1,870","1,310","1,115",740,"1,415","1,615",560,"1,120","2,805",750,420,675,435,420,"1,520",745 -2322,Income,Income sources,Catalogue no. 98-400-X2016122, Employment Insurance (EI) benefits: Average amount ($),"7,340","6,841","7,393","7,495","6,959","8,202","6,983","8,106","8,020","6,759","9,058","6,320","6,499","8,153","6,790","6,323","6,871","6,772","7,428","6,350","7,256","6,881","8,148","7,609","7,005","7,195","8,017","7,754","7,571","8,236","8,564","7,739","6,897","6,977","7,035","7,126","8,109","7,263","7,330","6,726","6,707","7,266","6,807","7,144","8,278","6,881","6,384","7,901","7,625","7,093","8,138","7,299","7,339","6,802","7,230","6,752","7,283","7,600","6,101","7,802","7,747","6,848","7,140","6,413","7,331","9,323","9,271","7,133","8,542","9,059","7,971","9,002","7,243","7,857","6,810","6,946","6,221","6,801","7,293","7,228","6,854","7,262","7,080","9,501","6,924","6,689","7,008","7,710","7,473","8,935","7,324","6,870","7,524","7,735","8,654","7,139","7,808","6,704","7,347","6,728","7,438","7,388","7,187","7,045","7,703","9,238","7,446","9,723","7,364","6,472","6,940","7,961","8,469","7,077","8,388","7,296","7,091","8,884","8,137","7,842","7,100","7,507","6,841","7,454","7,332","6,496","7,574","7,020","6,291","6,749","7,913","8,000","6,898","6,844","8,392","7,886","7,668","8,143","7,395","6,300","7,030" -2323,Income,Income sources,Catalogue no. 98-400-X2016122, Employment Insurance (EI) benefits: Aggregate amount ($'000),"952,732","11,083","8,613","5,659","6,333","7,546","5,342","4,823","5,895","2,501","5,661","2,623","8,904","8,887","8,522","2,055","6,012",982,"4,048","7,303","3,737","4,610","2,811","5,364","7,705","11,476","6,494","6,009","7,420","3,171","7,665","9,674","10,380","16,152","15,195","4,917","9,082","4,648","9,236","3,094","6,673","6,539","4,050","7,894","3,518","1,858","11,300","6,123","3,622","4,433","9,318","7,737","4,330","4,047","3,796","4,085","6,882","4,598","4,179","17,281","6,004","5,307","6,105","3,463","8,431","2,424","3,013","16,264","4,698","3,669","3,308","4,411","5,686","4,243","17,365","3,994","2,115","9,861","12,106","6,614","5,312","6,572","13,382","6,461","9,244","4,716","2,733","8,018","10,500","4,423","6,811","4,431","8,878","7,812","3,851","3,962","12,610","4,626","2,204","4,743","2,566","3,694","4,348","10,285","5,854","4,434","18,130","4,521","4,050","5,339","8,779","11,822","3,303","7,855","9,814","8,937","5,815","7,907","4,923","5,999","5,680","1,614","6,157","20,199","10,228","12,147","9,922","7,827","4,655","9,550","12,779","4,480","7,726","19,197","6,294","3,312","5,176","3,542","3,106","9,576","5,237" -2324,Income,Income sources,Catalogue no. 98-400-X2016122, EI - Regular benefits: Population with an amount,"84,315","1,135",825,500,600,590,465,410,465,250,325,285,855,745,835,175,630,65,335,830,385,445,185,470,805,"1,030",495,525,630,230,470,925,920,"1,585","1,475",480,595,445,840,300,625,605,350,690,230,185,"1,175",370,285,370,670,665,410,405,355,435,610,405,455,"1,385",470,530,600,395,760,125,155,"1,520",320,210,250,300,585,320,"1,720",395,240,960,"1,090",620,545,605,"1,240",355,900,465,280,660,965,255,595,385,740,640,220,430,"1,105",505,195,495,245,290,400,"1,015",500,300,"1,605",205,365,530,905,870,265,715,685,790,530,480,400,500,510,140,580,"1,875",935,"1,225",790,720,510,925,995,365,720,"1,830",430,270,415,265,305,"1,080",500 -2325,Income,Income sources,Catalogue no. 98-400-X2016122, EI - Regular benefits: Average amount ($),"6,109","5,580","6,192","5,996","5,757","7,146","5,628","6,332","6,680","6,288","6,468","5,611","5,501","6,979","6,400","4,606","5,805","6,185","6,600","5,630","6,106","6,263","5,692","6,243","5,843","5,755","6,899","6,429","6,186","6,117","6,443","6,946","5,440","5,652","6,411","6,400","5,476","6,243","6,617","6,277","5,064","5,734","5,603","6,264","6,130","6,427","6,078","5,954","6,396","5,889","6,401","6,086","6,195","5,758","6,468","6,255","6,236","6,504","5,279","6,254","5,566","5,366","6,072","5,719","6,267","5,832","7,813","5,697","6,200","6,114","5,428","5,937","6,234","6,663","6,011","5,559","4,975","6,397","6,064","5,771","6,228","6,387","6,218","6,732","5,709","5,826","6,168","6,127","6,180","6,529","6,235","5,590","5,924","6,505","7,086","5,728","6,958","5,802","6,154","5,994","6,424","5,755","6,375","5,878","6,014","6,680","5,663","8,117","5,929","5,600","6,379","5,492","6,328","5,267","5,863","6,209","5,760","6,015","7,293","6,680","6,065","5,743","5,845","6,094","6,165","5,936","6,913","6,182","5,610","6,031","6,151","5,827","5,832","5,821","6,012","5,874","6,501","5,857","6,859","5,806","6,432" -2326,Income,Income sources,Catalogue no. 98-400-X2016122, EI - Regular benefits: Aggregate amount ($'000),"515,093","6,333","5,108","2,998","3,454","4,216","2,617","2,596","3,106","1,572","2,102","1,599","4,703","5,199","5,344",806,"3,657",402,"2,211","4,673","2,351","2,787","1,053","2,934","4,704","5,928","3,415","3,375","3,897","1,407","3,028","6,425","5,005","8,958","9,456","3,072","3,258","2,778","5,558","1,883","3,165","3,469","1,961","4,322","1,410","1,189","7,142","2,203","1,823","2,179","4,289","4,047","2,540","2,332","2,296","2,721","3,804","2,634","2,402","8,662","2,616","2,844","3,643","2,259","4,763",729,"1,211","8,660","1,984","1,284","1,357","1,781","3,647","2,132","10,339","2,196","1,194","6,141","6,610","3,578","3,394","3,864","7,710","2,390","5,138","2,709","1,727","4,044","5,964","1,665","3,710","2,152","4,384","4,163","1,559","2,463","7,689","2,930","1,200","2,967","1,574","1,669","2,550","5,966","3,007","2,004","9,089","1,664","2,164","2,968","5,773","4,778","1,677","3,766","4,016","4,905","3,053","2,887","2,917","3,340","3,093",804,"3,390","11,427","5,764","7,272","5,461","4,451","2,861","5,579","6,120","2,127","4,199","10,652","2,585","1,586","2,698","1,552","2,092","6,270","3,216" -2327,Income,Income sources,Catalogue no. 98-400-X2016122, EI - Other benefits: Average amount ($),"8,544","8,185","8,517","9,221","8,468","9,274","7,765","8,985","8,862","3,222","11,039","6,690","6,923","9,128","6,669","7,491","8,098","8,631","7,738","6,945","8,284","7,690","8,503","9,756","7,530","8,616","8,717","9,017","9,244","10,764","10,367","7,234","7,929","8,868","7,301","7,433","10,369","7,502","7,097","6,616","8,323","8,988","7,564","7,108","9,498","5,000","6,160","9,548","9,521","7,889","9,137","8,367","8,725","7,265","7,036","7,282","7,838","8,464","7,065","8,802","10,524","8,043","7,600","6,444","7,991","6,679","9,700","8,434","10,928","11,295","8,189","9,036","9,451","9,098","7,250","8,630","7,042","6,859","7,628","8,532","7,156","7,427","7,080","11,530","9,022","6,687","1,386","8,789","10,155","11,261","7,750","7,089","9,324","8,610","10,143","6,180","7,990","8,161","9,136","7,517","7,913","9,204","7,308","8,015","9,156","10,373","9,061","10,491","8,980","6,809","7,556","10,009","8,660","9,013","9,880","8,533","8,200","11,441","8,150","7,952","8,787","3,329","7,405","9,871","8,128","6,765","7,596","7,647","7,248","7,048","10,144","10,061","7,474","7,550","10,411","9,531","8,978","11,337","7,311","6,477","8,015" -2328,Income,Income sources,Catalogue no. 98-400-X2016122, EI - Other benefits: Aggregate amount ($'000),"437,652","4,829","3,492","2,674","2,752","3,385","2,679","1,842","2,570",435,"3,643",970,"3,981","3,651","3,201","1,236","2,308",561,"1,857","2,639","1,284","1,884","1,403","2,439","2,598","5,514","3,051","2,660","3,605","1,776","4,717","2,749","5,352","7,094","5,804","1,784","5,962","1,688","3,584","1,224","3,454","3,056","2,080","3,554","2,137",425,"4,189","3,867","1,809","2,209","4,523","3,765","1,745","1,671","1,372","1,420","3,135","1,989","1,731","8,142","3,473","2,413","2,394","1,031","3,716",935,"1,746","7,506","2,732","2,372","1,515","1,988","2,032","2,138","6,960","1,726",845,"3,738","4,920","3,029","1,932","2,748","5,735","4,093","4,150","1,772",194,"3,867","4,519","2,759","3,100","2,304","4,522","3,573","2,333",927,"4,634","1,673","1,005","1,804",910,"2,071","1,827","4,248","2,701","1,919","8,970","2,885","1,841","2,349","3,098","6,506","1,299","4,101","5,533","4,053","2,747","4,977","1,956","2,664","2,636",283,"2,814","8,933","4,430","4,871","4,254","3,441","1,812","3,947","6,746","2,314","3,513","8,531","3,696","1,668","2,469","1,984",987,"3,368","2,084" -2329,Income,Income sources,Catalogue no. 98-400-X2016122, Child benefits: Population with an amount,"271,740","3,005","2,375","1,280","1,455","2,555","1,645",865,"1,770","1,220","2,435",805,"3,160","2,415","2,920",925,"1,495",760,"1,010","2,435",510,"1,125",695,"1,460",800,"3,325","1,815","1,920","1,395","1,025","2,075","2,920","2,940","3,180","4,230",805,"2,580","1,470","3,010","1,165","2,525","1,910","1,275","2,665","1,315",755,"4,020","1,665",985,"1,535","1,880","2,295","1,165","1,680","1,035","1,470","2,025","1,335","1,615","3,845","1,460","1,255","2,040","1,005","2,695",955,"1,095","4,600","1,550","1,920","1,565","2,000",945,"1,015","5,480","1,085","1,015","2,710","2,505","2,010",875,"1,760","4,565","1,855","1,710","1,195","1,180","2,230","1,460","1,235","1,510","1,820","2,310","2,170","1,025",810,"3,905","1,375",735,"1,560","1,185","1,180","1,170","2,380","1,470","1,515","5,750","1,280","1,310","2,290","1,550","2,625","1,765","2,435","2,700","2,660","1,915","2,340","1,205","2,795","1,160",295,"1,900","2,400","3,335","3,690","2,770","2,000","1,200","3,030","4,265","1,265","2,355","6,590","1,605",850,"1,230","1,095",685,"2,890","1,430" -2330,Income,Income sources,Catalogue no. 98-400-X2016122, Child benefits: Average amount ($),"5,541","6,244","5,882","3,933","3,313","3,835","4,419","5,014","4,604","4,937","3,966","7,248","6,598","4,185","8,902","5,802","4,607","2,833","5,316","6,684","4,182","4,650","3,521","4,116","4,766","5,573","4,689","4,827","4,115","3,766","3,966","5,615","6,529","4,802","5,834","4,523","4,310","4,076","6,981","8,060","7,692","4,526","5,523","8,026","4,087","2,934","8,136","4,790","3,886","6,233","3,426","3,702","5,065","4,675","5,353","7,653","7,161","3,784","6,070","4,623","3,610","5,708","6,544","6,493","7,960","2,407","5,089","6,166","3,796","2,657","2,590","2,724","4,761","4,433","7,242","5,388","3,346","6,825","4,187","6,963","7,847","6,886","8,295","2,998","3,989","5,236","4,464","4,930","3,986","3,185","7,494","9,063","5,034","5,324","4,020","3,451","5,890","4,559","2,795","5,020","3,067","8,792","5,928","6,574","4,283","2,675","5,282","2,777","8,194","7,718","5,634","4,697","4,360","6,011","3,719","6,085","7,460","3,048","6,753","9,818","4,368","2,383","6,081","4,363","7,103","6,141","5,691","7,198","5,888","6,150","4,441","3,788","5,596","7,143","3,933","3,924","3,820","3,023","3,309","6,800","5,589" -2331,Income,Income sources,Catalogue no. 98-400-X2016122, Child benefits: Aggregate amount ($'000),"1,505,673","18,764","13,969","5,034","4,821","9,799","7,269","4,337","8,149","6,023","9,657","5,835","20,849","10,107","25,994","5,367","6,888","2,153","5,369","16,276","2,133","5,231","2,447","6,009","3,813","18,529","8,510","9,268","5,740","3,860","8,230","16,397","19,194","15,269","24,679","3,641","11,121","5,992","21,014","9,390","19,422","8,644","7,042","21,388","5,375","2,215","32,706","7,976","3,828","9,567","6,440","8,497","5,901","7,854","5,540","11,250","14,502","5,051","9,803","17,775","5,270","7,164","13,349","6,525","21,451","2,299","5,573","28,363","5,884","5,102","4,053","5,448","4,499","4,500","39,686","5,846","3,396","18,495","10,489","13,996","6,866","12,120","37,866","5,561","6,822","6,257","5,267","10,993","5,820","3,934","11,316","16,494","11,628","11,554","4,121","2,795","23,001","6,269","2,054","7,831","3,634","10,374","6,936","15,645","6,296","4,052","30,369","3,554","10,734","17,674","8,732","12,329","7,695","14,636","10,040","16,187","14,285","7,132","8,137","27,441","5,067",703,"11,553","10,472","23,689","22,659","15,763","14,396","7,066","18,635","18,940","4,792","13,178","47,070","6,313","3,335","4,698","3,310","2,267","19,652","7,992" -2332,Income,Income sources,Catalogue no. 98-400-X2016122, Basic Canada Child Tax Benefit (CCTB): Population with an amount,"216,200","2,795","2,185",895,780,"1,555","1,270",675,"1,320",990,"1,055",755,"2,925","1,645","2,875",645,"1,335",215,770,"2,290",300,980,325,995,615,"2,915","1,355","1,550","1,125",535,"1,300","2,545","2,815","2,555","3,870",585,"1,685",920,"2,920","1,110","2,065","1,415","1,095","2,555",780,285,"3,940","1,175",680,"1,385","1,110","1,255",965,"1,420",830,"1,415","1,960",780,"1,510","2,815",945,"1,180","1,940",890,"2,410",225,655,"4,240",855,520,450,645,660,785,"5,315",905,575,"2,580","1,875","1,925",730,"1,715","4,495",685,"1,250",925,905,"1,960",975,570,"1,455","1,800","1,880","1,725",655,475,"3,315","1,165",285,"1,335",470,"1,125","1,060","2,190",945,485,"4,940",530,"1,210","2,155","1,365","1,740","1,205","2,250","1,565","2,380","1,835",915,"1,145","2,690",775,115,"1,645","1,730","3,145","3,445","2,615","1,880","1,090","2,750","3,220",835,"1,875","6,315",970,650,825,495,305,"2,750","1,215" -2333,Income,Income sources,Catalogue no. 98-400-X2016122, Basic Canada Child Tax Benefit (CCTB): Average amount ($),"1,895","1,933","1,876","1,524","1,286","1,594","1,574","1,521","1,615","1,706","1,933","2,123","2,108","1,573","2,499","2,107","1,596","1,470","1,881","2,044","1,623","1,629","1,412","1,647","1,541","1,826","1,712","1,666","1,436","1,594","1,535","1,827","2,038","1,661","1,836","1,694","1,516","1,697","2,094","2,447","2,678","1,681","1,857","2,380","1,662","1,421","2,335","1,595","1,510","1,906","1,292","1,457","1,785","1,615","1,827","2,295","2,139","1,459","1,941","1,618","1,347","1,786","2,009","1,947","2,440","1,009","1,965","1,954","1,494","1,212","1,224","1,318","1,724","1,517","2,242","1,834","1,433","2,057","1,445","2,112","2,367","2,038","2,452","1,375","1,394","1,699","1,510","1,612","1,396","1,346","2,180","2,449","1,681","1,795","1,531","1,385","1,975","1,553","1,126","1,756","1,383","2,441","1,884","2,005","1,590","1,221","1,888","1,128","2,383","2,279","1,714","1,661","1,661","1,886","1,466","1,932","2,138","1,338","2,112","2,781","1,630",974,"1,922","1,508","2,131","2,024","1,774","2,106","1,878","1,972","1,484","1,377","1,926","2,163","1,444","1,323","1,366","1,178","1,266","2,066","1,841" -2334,Income,Income sources,Catalogue no. 98-400-X2016122, Basic Canada Child Tax Benefit (CCTB): Aggregate amount ($'000),"409,703","5,402","4,100","1,364","1,003","2,478","1,999","1,027","2,132","1,689","2,039","1,603","6,165","2,588","7,185","1,359","2,131",316,"1,448","4,680",487,"1,596",459,"1,639",948,"5,323","2,320","2,583","1,616",853,"1,995","4,650","5,736","4,243","7,104",991,"2,555","1,561","6,115","2,716","5,530","2,379","2,033","6,080","1,296",405,"9,198","1,874","1,027","2,640","1,434","1,829","1,723","2,294","1,516","3,248","4,193","1,138","2,931","4,556","1,273","2,107","3,897","1,733","5,880",227,"1,287","8,286","1,277",630,551,850,"1,138","1,191","11,918","1,660",824,"5,307","2,710","4,065","1,728","3,496","11,023",942,"1,742","1,572","1,367","3,160","1,361",767,"3,172","4,409","3,160","3,096","1,003",658,"6,546","1,809",321,"2,344",650,"2,746","1,997","4,391","1,503",592,"9,327",598,"2,883","4,911","2,339","2,890","2,001","4,243","2,294","4,598","3,924","1,224","2,418","7,481","1,263",112,"3,162","2,609","6,701","6,973","4,638","3,959","2,047","5,423","4,779","1,150","3,611","13,657","1,401",860,"1,127",583,386,"5,681","2,237" -2335,Income,Income sources,Catalogue no. 98-400-X2016122, National Child Benefit Supplement (NCBS): Average amount ($),"2,744","2,601","2,429","2,106","1,748","2,172","2,153","2,242","2,399","2,603","2,485","2,911","2,940","2,445","3,391","3,240","2,071","1,971","2,658","2,798","2,107","2,162","2,077","2,375","2,435","2,810","2,394","2,608","2,000","2,408","2,314","2,536","2,870","2,298","2,512","2,388","2,684","2,179","2,821","3,321","3,419","2,540","2,635","3,110","2,107","1,636","3,360","2,688","2,251","2,786","1,826","2,470","2,694","2,409","2,834","3,338","2,993","2,112","2,626","2,457","2,039","2,528","2,788","2,797","3,650",0,"3,202","2,686","2,168","2,224",708,"2,019","2,494","2,364","2,991","2,441","2,476","2,734","2,119","3,021","3,485","2,830","3,287","2,130","2,144","2,515","2,103","2,163","2,325","1,991","2,903","3,441","2,679","2,644","2,523","1,900","2,855","2,283","1,715","2,378","2,239","3,614","2,687","3,174","2,300","1,762","2,493","1,663","3,390","3,161","2,533","2,506","2,298","2,520","2,256","2,886","3,008","1,981","2,714","3,817","2,457",586,"2,817","2,370","3,184","2,673","2,313","3,069","2,920","2,786","2,196","1,724","2,849","2,952","2,815","2,211","2,165","2,113","1,557","2,885","2,549" -2336,Income,Income sources,Catalogue no. 98-400-X2016122, National Child Benefit Supplement (NCBS): Aggregate amount ($'000),"380,285","5,162","3,632",874,699,"1,890","1,615","1,132","1,967","1,588","1,466","1,790","5,484","2,054","8,002","1,377","1,595",207,"1,382","4,588",432,"1,124",405,"1,057",974,"4,707","1,700","2,152","1,040",602,"1,504","4,286","5,037","3,447","6,444",776,"2,442","1,166","6,037","2,707","4,855","1,765","1,871","6,143","1,085",229,"10,062","1,855",664,"2,633",968,"1,507","1,401","1,819","1,403","3,204","4,100",866,"2,573","3,943",846,"1,833","3,819","1,972","6,314",0,"1,361","7,856","1,095",378,138,535,"1,010",993,"10,976","1,440",619,"5,263","2,299","3,897","2,091","3,467","11,158",671,"1,501","1,597","1,283","2,769","1,279",448,"3,353","5,317","2,786","2,975",820,399,"6,010","1,404",223,"1,831",459,"3,415","1,760","4,333","1,173",370,"6,756",316,"3,390","5,327","2,470","2,744","1,712","3,994","1,726","4,387","4,226",921,"2,239","8,244","1,130",41,"3,254","2,382","6,862","5,706","4,291","4,112","1,825","4,876","4,755",845,"3,134","13,283","1,295",619,812,486,288,"5,539","2,039" -2337,Income,Income sources,Catalogue no. 98-400-X2016122, Universal Child Care Benefit (UCCB): Population with an amount,"266,430","2,885","2,300","1,250","1,420","2,535","1,620",845,"1,755","1,190","2,420",785,"3,095","2,390","2,850",920,"1,480",760,"1,010","2,360",500,"1,105",690,"1,435",780,"3,255","1,780","1,840","1,335","1,010","2,070","2,835","2,850","3,125","4,160",775,"2,530","1,420","2,940","1,140","2,490","1,870","1,255","2,640","1,290",755,"3,915","1,645",970,"1,510","1,855","2,265","1,155","1,645","1,015","1,445","1,985","1,310","1,575","3,785","1,445","1,235","2,015",970,"2,665",935,"1,075","4,485","1,510","1,920","1,540","1,975",920,"1,010","5,350","1,040","1,005","2,645","2,455","1,955",860,"1,745","4,460","1,845","1,670","1,185","1,165","2,170","1,450","1,230","1,490","1,810","2,260","2,135","1,010",810,"3,865","1,345",730,"1,510","1,175","1,130","1,115","2,345","1,460","1,505","5,605","1,270","1,290","2,250","1,510","2,565","1,755","2,365","2,645","2,600","1,890","2,315","1,180","2,720","1,130",290,"1,840","2,350","3,230","3,625","2,690","1,940","1,180","2,970","4,155","1,255","2,310","6,455","1,570",850,"1,190","1,080",675,"2,830","1,400" -2338,Income,Income sources,Catalogue no. 98-400-X2016122, Universal Child Care Benefit (UCCB): Average amount ($),"1,848","1,785","1,800","1,838","1,845","1,709","1,732","1,761","1,656","1,537","2,170","1,842","1,875","1,802","2,085","1,962","1,528","1,936","1,711","1,817","1,808","1,679","1,935","1,873","1,731","1,780","1,962","1,783","1,834","2,040","1,876","1,757","1,905","1,792","1,783","1,781","1,896","1,835","1,797","1,996","2,376","1,835","1,695","2,029","1,830","1,865","1,940","1,973","1,802","1,827","1,818","1,880","1,709","1,612","1,748","1,965","1,931","1,941","1,794","1,823","1,838","1,721","1,719","1,742","2,032","1,967","2,003","1,714","1,919","2,033","1,920","1,908","1,932","1,770","1,908","1,867","1,626","1,824","1,700","1,920","2,017","1,791","2,000","1,951","1,649","1,804","1,627","1,582","1,708","1,953","1,889","2,058","1,818","1,758","1,849","1,768","1,802","1,692","1,916","1,666","1,854","1,930","1,916","1,879","1,902","1,868","1,817","1,935","1,954","1,895","1,663","1,967","1,692","1,712","1,888","1,814","1,928","1,907","1,853","2,407","1,782","1,721","1,777","1,781","1,867","1,826","1,657","1,981","1,793","1,831","1,608","1,791","1,932","1,883","1,850","1,753","1,904","1,813","1,973","1,845","1,789" -2339,Income,Income sources,Catalogue no. 98-400-X2016122, Universal Child Care Benefit (UCCB): Aggregate amount ($'000),"492,344","5,149","4,139","2,298","2,620","4,332","2,806","1,488","2,907","1,829","5,251","1,446","5,803","4,307","5,942","1,805","2,262","1,471","1,728","4,288",904,"1,855","1,335","2,688","1,350","5,793","3,493","3,280","2,448","2,060","3,884","4,982","5,429","5,600","7,417","1,380","4,798","2,606","5,283","2,275","5,915","3,432","2,127","5,357","2,361","1,408","7,594","3,246","1,748","2,759","3,372","4,258","1,974","2,652","1,774","2,840","3,834","2,543","2,825","6,901","2,656","2,125","3,464","1,690","5,415","1,839","2,153","7,686","2,898","3,903","2,957","3,768","1,777","1,788","10,210","1,942","1,634","4,824","4,174","3,754","1,735","3,125","8,918","3,599","2,754","2,138","1,895","3,432","2,477","2,402","2,815","3,725","4,109","3,754","1,867","1,432","6,966","2,276","1,399","2,515","2,179","2,181","2,136","4,406","2,777","2,811","10,183","2,458","2,521","4,263","2,511","5,046","2,969","4,048","4,994","4,716","3,643","4,415","2,186","6,546","2,014",499,"3,269","4,186","6,031","6,621","4,458","3,843","2,116","5,438","6,682","2,248","4,462","12,157","2,905","1,490","2,266","1,958","1,332","5,222","2,504" -2340,Income,Income sources,Catalogue no. 98-400-X2016122, Provincial and territorial child benefits: Population with an amount,"136,780","1,925","1,495",410,365,840,735,515,835,590,600,585,"1,885",825,"2,380",435,725,100,540,"1,645",180,475,195,405,390,"1,615",710,815,510,240,605,"1,665","1,775","1,480","2,460",320,860,515,"2,085",805,"1,460",645,695,"2,000",500,150,"3,025",640,295,920,530,595,515,780,485,"1,010","1,355",385,985,"1,550",395,735,"1,340",670,"1,750",85,400,"2,895",490,185,180,280,395,395,"3,665",560,270,"1,935","1,035","1,285",605,"1,215","3,480",335,645,625,590,"1,240",560,215,"1,185","1,500","1,045","1,095",310,205,"2,115",565,125,730,195,940,690,"1,345",505,235,"2,755",160,"1,000","1,725",965,"1,040",700,"1,580",750,"1,525","1,350",430,785,"2,185",445,80,"1,065",970,"2,170","2,080","1,755","1,295",645,"1,780","2,100",435,"1,080","4,480",440,265,375,230,180,"1,875",770 -2341,Income,Income sources,Catalogue no. 98-400-X2016122, Provincial and territorial child benefits: Average amount ($),"1,633","1,577","1,411","1,246","1,005","1,310","1,203","1,307","1,356","1,551","1,547","1,723","1,781","1,424","2,037","1,968","1,217","1,030","1,485","1,654","1,350","1,379","1,226","1,570","1,410","1,721","1,401","1,547","1,241","1,513","1,456","1,480","1,690","1,356","1,504","1,506","1,557","1,297","1,728","2,091","2,158","1,625","1,491","1,897","1,246",807,"1,962","1,577","1,315","1,692","1,077","1,503","1,550","1,358","1,627","1,921","1,773","1,291","1,509","1,452","1,210","1,460","1,640","1,697","2,174",0,"2,023","1,570","1,227","1,130",606,943,"1,458","1,314","1,798","1,473","1,270","1,594","1,189","1,794","2,058","1,670","1,952","1,033","1,211","1,461","1,195","1,299","1,280","1,247","1,663","2,075","1,514","1,559","1,439","1,151","1,648","1,379",920,"1,545","1,395","2,167","1,538","1,843","1,333",962,"1,482","1,081","1,962","1,848","1,423","1,529","1,439","1,485","1,331","1,663","1,844","1,247","1,683","2,357","1,467",325,"1,756","1,374","1,872","1,613","1,350","1,883","1,678","1,622","1,298","1,039","1,701","1,783","1,648","1,377","1,200","1,217",828,"1,727","1,578" -2342,Income,Income sources,Catalogue no. 98-400-X2016122, Provincial and territorial child benefits: Aggregate amount ($'000),"223,333","3,036","2,110",511,367,"1,100",884,673,"1,132",915,928,"1,008","3,358","1,175","4,849",856,882,103,802,"2,721",243,655,239,636,550,"2,779",995,"1,261",633,363,881,"2,465","3,000","2,007","3,700",482,"1,339",668,"3,603","1,683","3,151","1,048","1,036","3,793",623,121,"5,934","1,009",388,"1,557",571,894,798,"1,059",789,"1,940","2,403",497,"1,486","2,251",478,"1,073","2,198","1,137","3,804",0,809,"4,546",601,209,109,264,576,519,"6,590",825,343,"3,085","1,231","2,305","1,245","2,029","6,792",346,781,913,705,"1,611",717,268,"1,971","3,112","1,582","1,707",446,236,"3,485",779,115,"1,128",272,"2,037","1,061","2,479",673,226,"4,084",173,"1,962","3,187","1,373","1,590","1,007","2,347",998,"2,536","2,489",536,"1,321","5,151",653,26,"1,870","1,333","4,063","3,355","2,369","2,439","1,082","2,888","2,725",452,"1,837","7,986",725,365,450,280,149,"3,238","1,215" -2343,Income,Income sources,Catalogue no. 98-400-X2016122, Other government transfers: Population with an amount,"1,253,705","15,345","12,135","4,725","13,245","10,050","7,090","14,205","9,515","5,695","7,535","3,350","14,310","8,985","11,745","3,440","7,365","2,610","5,630","8,910","5,145","4,605","3,955","4,440","16,090","11,575","6,960","6,655","6,745","4,200","6,825","12,705","11,950","19,045","17,545","6,200","8,910","6,050","11,410","4,525","9,610","7,260","5,435","11,090","5,120","3,680","16,350","6,735","3,520","7,960","9,355","9,080","5,365","8,060","4,395","6,235","7,735","6,635","6,805","18,125","6,285","5,480","8,865","11,285","10,250","2,515","3,055","23,335","6,760","4,395","4,775","5,140","7,850","4,680","21,920","4,905","3,940","14,430","14,445","8,195","9,600","6,750","16,660","5,790","13,135","5,555","8,095","12,465","12,470","4,615","10,710","7,270","10,435","8,395","3,790","7,365","15,525","4,535","3,315","7,565","3,435","5,920","4,880","10,980","6,965","6,660","19,925","3,480","4,910","8,170","12,505","12,260","6,540","12,975","9,445","13,630","7,920","7,270","5,060","9,415","8,640","3,715","8,590","28,650","13,125","16,215","13,890","9,215","5,560","13,080","24,165","8,180","9,255","26,325","4,980","3,295","6,440","4,615","4,700","15,230","6,930" -2344,Income,Income sources,Catalogue no. 98-400-X2016122, Other government transfers: Average amount ($),"1,858","1,344","1,453","1,585","1,127","1,285","1,737",802,"1,055","1,353","1,083","3,049","1,769","1,950","3,237","2,554","1,857",620,"2,153","2,658","1,807","1,929",899,"1,281","1,397","2,018","1,339","2,153","1,980","1,576","1,631","1,685","2,098","1,959","2,283","1,594","2,087","1,338","2,574","2,526","2,119","1,768","1,999","2,615","1,508",848,"2,940","2,209","1,431","1,865","1,356","1,162","1,550","1,261","1,937","2,512","2,301","1,461","2,265","1,584","1,771","2,119","2,683","1,907","2,980",655,"2,440","1,755",977,754,880,873,"1,399","2,071","2,013","1,834","1,262","1,438","1,699","2,315","2,840","2,731","2,925",929,"1,279","2,459","1,155","1,538","1,138","1,125","2,436","3,282","2,102","2,575","2,010","1,251","1,907","2,107","1,185","1,332","1,096","3,099","2,382","2,615","2,184",875,"1,649","1,133","3,161","3,394","2,681","1,905","1,057","1,399","1,578","1,590","2,674","1,170","2,102","2,978","1,392","1,110","2,518",879,"3,034","1,754","1,925","3,119","2,958","2,057",918,"1,019","1,848","2,280","2,194","2,138","1,414","1,303","1,135","2,002","1,876" -2345,Income,Income sources,Catalogue no. 98-400-X2016122, Other government transfers: Aggregate amount ($'000),"2,329,868","20,627","17,627","7,489","14,925","12,916","12,316","11,395","10,037","7,704","8,160","10,213","25,314","17,524","38,013","8,787","13,674","1,617","12,119","23,686","9,297","8,881","3,556","5,686","22,478","23,361","9,319","14,327","13,355","6,621","11,134","21,409","25,076","37,300","40,060","9,883","18,594","8,097","29,369","11,428","20,363","12,834","10,867","29,005","7,723","3,122","48,077","14,875","5,037","14,848","12,690","10,554","8,318","10,166","8,512","15,662","17,801","9,692","15,413","28,711","11,133","11,611","23,788","21,522","30,547","1,648","7,455","40,948","6,606","3,316","4,201","4,486","10,985","9,693","44,120","8,995","4,971","20,746","24,548","18,971","27,265","18,432","48,733","5,378","16,804","13,657","9,353","19,170","14,197","5,193","26,089","23,862","21,931","21,619","7,618","9,210","29,601","9,553","3,928","10,074","3,764","18,348","11,626","28,712","15,214","5,827","32,847","3,944","15,521","27,732","33,521","23,351","6,916","18,156","14,903","21,676","21,177","8,505","10,637","28,039","12,023","4,124","21,629","25,193","39,819","28,438","26,739","28,738","16,448","26,909","22,182","8,332","17,100","60,024","10,927","7,045","9,105","6,015","5,334","30,486","12,999" -2346,Income,Income sources,Catalogue no. 98-400-X2016122, Social assistance benefits: Population with an amount,"132,255",815,815,285,845,615,535,435,425,370,280,670,"1,215","1,175","2,380",635,700,35,770,"1,425",620,435,160,205,"1,505","1,440",470,910,550,365,660,"1,125","1,385","2,110","2,150",490,"1,360",370,"1,815",705,"1,140",525,570,"1,685",455,150,"2,830",995,280,715,795,540,345,455,410,715,985,565,"1,035","1,580",610,565,"1,700","1,395","1,710",25,485,"2,030",285,165,200,225,555,610,"2,380",350,185,815,"1,560","1,175","2,335","1,255","2,915",275,"1,035",940,375,945,795,335,"1,965","1,650","1,145","1,345",430,455,"1,835",400,225,415,145,"1,360",720,"1,700","1,060",300,"1,525",160,935,"1,885","2,435","1,555",300,665,685,"1,120","1,480",490,650,"1,560",555,240,"1,415","1,225","2,860","1,290","1,380","2,015",945,"1,480",685,310,840,"3,595",790,450,520,180,250,"1,670",665 -2347,Income,Income sources,Catalogue no. 98-400-X2016122, Social assistance benefits: Average amount ($),"9,538","8,602","8,926","9,642","8,296","8,348","9,708","8,917","8,280","8,835","9,096","9,378","10,030","8,748","10,311","9,169","8,970",0,"10,058","10,149","9,239","9,166","8,375","10,683","9,143","9,360","8,983","9,835","8,771","8,068","8,320","10,284","10,333","9,128","9,412","8,896","8,854","9,097","10,350","9,350","9,562","9,507","10,918","11,205","9,062","5,873","9,460","9,822","8,329","12,476","7,897","9,261","9,142","7,345","9,783","10,529","10,049","9,216","9,344","9,038","9,451","8,412","9,214","9,028","11,477",0,"9,130","9,737","8,614","7,042","6,645","6,107","9,735","10,003","9,797","8,711","9,486","9,124","8,738","9,968","8,804","9,213","10,975","8,622","8,344","9,264","8,771","9,934","9,020","7,639","9,337","10,099","8,684","10,395","9,000","8,207","9,114","10,150","8,422","8,243","7,379","9,684","9,088","8,989","9,963","7,060","10,193","8,275","9,357","10,492","10,193","9,219","7,940","8,203","9,815","8,925","9,954","7,733","8,617","11,869","8,760","7,971","9,858","7,970","9,355","9,367","10,112","9,826","9,051","10,312","7,996","7,052","9,888","10,026","9,129","9,542","7,804","9,894","8,544","9,507","8,316" -2348,Income,Income sources,Catalogue no. 98-400-X2016122, Social assistance benefits: Aggregate amount ($'000),"1,261,440","7,011","7,275","2,748","7,010","5,134","5,194","3,879","3,519","3,269","2,547","6,283","12,186","10,279","24,539","5,822","6,279",0,"7,745","14,462","5,728","3,987","1,340","2,190","13,760","13,478","4,222","8,950","4,824","2,945","5,491","11,570","14,311","19,260","20,236","4,359","12,041","3,366","18,786","6,592","10,901","4,991","6,223","18,881","4,123",881,"26,773","9,773","2,332","8,920","6,278","5,001","3,154","3,342","4,011","7,528","9,898","5,207","9,671","14,280","5,765","4,753","15,663","12,594","19,625",0,"4,428","19,766","2,455","1,162","1,329","1,374","5,403","6,102","23,316","3,049","1,755","7,436","13,632","11,712","20,557","11,562","31,991","2,371","8,636","8,708","3,289","9,388","7,171","2,559","18,348","16,664","9,943","13,981","3,870","3,734","16,725","4,060","1,895","3,421","1,070","13,170","6,543","15,282","10,561","2,118","15,545","1,324","8,749","19,777","24,819","14,336","2,382","5,455","6,723","9,996","14,732","3,789","5,601","18,515","4,862","1,913","13,949","9,763","26,754","12,083","13,954","19,799","8,553","15,262","5,477","2,186","8,306","36,044","7,212","4,294","4,058","1,781","2,136","15,877","5,530" -2349,Income,Income sources,Catalogue no. 98-400-X2016122, Workers' compensation benefits: Population with an amount,"25,140",135,160,240,120,155,255,40,65,75,90,135,275,230,350,35,230,10,130,225,55,225,25,125,95,205,120,145,430,115,195,185,260,550,780,205,160,160,200,130,175,230,75,150,60,20,725,135,80,55,165,110,185,95,150,350,240,90,150,375,170,250,200,95,280,50,80,310,35,25,40,20,155,125,360,255,75,135,300,160,65,170,430,40,120,175,70,125,125,30,90,115,390,205,130,220,270,220,45,205,55,60,190,410,100,35,365,120,225,185,115,150,60,125,285,195,130,75,160,70,210,55,165,160,350,460,240,280,280,330,85,80,300,415,105,80,160,50,45,465,365 -2350,Income,Income sources,Catalogue no. 98-400-X2016122, Goods and services tax (GST) credit and harmonized sales tax (HST) credit: Population with an amount,"1,007,670","12,930","10,195","3,520","10,310","7,465","5,685","11,385","7,615","4,570","4,770","2,840","11,820","6,670","10,340","2,640","6,115","1,490","4,690","7,585","4,150","3,670","3,000","3,205","13,400","9,390","5,450","5,055","5,260","3,085","4,975","10,110","10,170","15,640","14,725","5,085","6,610","4,480","9,670","3,875","7,895","5,535","4,495","9,475","3,855","2,520","14,130","5,225","2,615","6,335","7,200","6,445","4,315","6,430","3,500","5,270","6,470","5,050","5,560","14,350","4,820","4,640","7,405","9,795","8,450","1,380","2,045","19,465","5,065","2,350","2,695","2,990","6,675","3,695","18,660","4,045","2,865","12,335","11,615","6,900","8,130","5,850","14,200","3,790","10,585","4,440","6,525","10,225","10,595","3,205","9,140","6,230","8,420","6,670","2,810","5,995","12,210","3,620","2,400","6,005","2,205","5,205","4,015","9,260","5,410","4,315","15,870","2,055","4,290","6,800","10,800","9,780","4,705","10,845","6,780","11,225","6,575","4,570","4,245","7,900","7,095","2,930","7,065","24,050","10,815","13,210","11,790","7,645","4,745","10,675","19,225","6,575","7,435","22,170","3,560","2,510","5,020","3,145","3,490","12,740","5,650" -2351,Income,Income sources,Catalogue no. 98-400-X2016122, Goods and services tax (GST) credit and harmonized sales tax (HST) credit: Average amount ($),343,356,341,327,300,326,342,283,318,336,335,385,347,334,401,359,338,299,346,380,315,350,307,324,296,354,337,346,328,330,340,345,360,332,359,323,340,332,380,381,374,335,351,371,336,307,391,346,329,331,317,319,336,341,343,374,371,324,359,330,318,357,363,322,375,304,380,352,313,301,299,308,318,327,366,349,334,353,323,362,326,379,386,317,313,352,325,337,299,314,344,391,352,354,342,307,354,347,312,328,318,374,354,363,330,297,349,306,409,386,337,335,339,350,330,349,369,317,363,396,323,296,358,297,380,348,355,373,346,355,313,313,355,366,346,335,327,308,299,347,348 -2352,Income,Income sources,Catalogue no. 98-400-X2016122, Goods and services tax (GST) credit and harmonized sales tax (HST) credit: Aggregate amount ($'000),"345,818","4,606","3,475","1,150","3,088","2,434","1,947","3,226","2,421","1,535","1,596","1,093","4,098","2,230","4,142",948,"2,066",445,"1,623","2,885","1,308","1,285",920,"1,038","3,973","3,322","1,835","1,751","1,725","1,017","1,693","3,486","3,657","5,198","5,280","1,644","2,250","1,486","3,677","1,476","2,952","1,853","1,578","3,519","1,294",773,"5,528","1,807",860,"2,094","2,285","2,057","1,450","2,195","1,199","1,973","2,398","1,634","1,998","4,736","1,534","1,655","2,689","3,154","3,165",419,778,"6,848","1,587",707,805,920,"2,120","1,209","6,834","1,410",957,"4,360","3,749","2,496","2,650","2,216","5,484","1,201","3,318","1,562","2,118","3,443","3,165","1,005","3,141","2,434","2,966","2,361",960,"1,840","4,328","1,256",748,"1,968",702,"1,947","1,421","3,362","1,784","1,281","5,533",628,"1,753","2,625","3,638","3,274","1,595","3,798","2,236","3,923","2,425","1,447","1,539","3,131","2,291",867,"2,532","7,149","4,106","4,603","4,188","2,855","1,640","3,785","6,023","2,061","2,639","8,114","1,231",842,"1,642",970,"1,045","4,426","1,969" -2353,Income,Income sources,Catalogue no. 98-400-X2016122, Government transfers not included elsewhere: Population with an amount,"909,400","11,680","8,950","3,410","9,000","7,445","5,285","10,095","6,765","4,250","5,950","2,485","10,550","6,800","8,925","2,765","5,290","2,140","3,835","6,595","3,610","3,185","2,575","3,395","10,040","8,700","4,930","5,070","4,765","3,345","5,140","9,480","8,595","13,235","12,645","3,970","6,990","4,295","8,505","3,440","7,275","5,530","3,850","8,250","3,785","2,585","12,335","4,985","2,685","5,720","6,375","6,280","3,970","6,370","3,300","4,390","5,750","4,605","5,010","12,655","4,400","4,055","6,800","8,560","7,545","1,985","2,535","17,645","4,855","3,665","3,725","4,140","4,885","3,360","16,090","3,515","2,995","10,940","9,555","6,205","6,835","4,855","12,450","4,350","8,265","4,220","6,170","9,415","6,440","3,390","7,565","5,525","7,795","6,330","2,855","4,785","11,550","3,285","2,375","5,635","2,750","4,385","3,725","8,195","5,080","4,730","14,800","2,715","3,800","6,180","8,445","8,885","5,090","9,980","6,940","10,180","5,735","5,540","3,635","6,895","5,885","2,765","6,260","15,080","10,130","11,980","10,515","7,045","4,220","9,595","17,185","6,120","6,760","19,565","3,805","2,465","4,670","3,065","3,000","11,320","4,895" -2354,Income,Income sources,Catalogue no. 98-400-X2016122, Government transfers not included elsewhere: Average amount ($),420,514,452,342,336,399,426,346,418,411,362,448,464,360,543,427,390,328,376,457,373,389,351,380,333,427,380,386,348,380,368,446,491,375,433,396,348,360,471,471,465,372,412,538,350,424,499,391,336,426,336,318,409,485,392,505,486,337,425,395,339,439,451,430,492,273,396,488,340,280,282,275,349,352,516,387,382,518,377,442,375,458,509,309,360,397,445,424,339,316,411,526,415,413,358,343,425,401,324,421,319,485,413,445,359,323,448,291,491,491,377,390,388,521,365,486,475,277,462,623,376,322,456,354,447,472,468,432,417,419,428,428,411,495,332,340,356,302,318,417,400 -2355,Income,Income sources,Catalogue no. 98-400-X2016122, Government transfers not included elsewhere: Aggregate amount ($'000),"381,968","6,006","4,049","1,166","3,027","2,971","2,253","3,493","2,827","1,748","2,153","1,113","4,891","2,449","4,846","1,180","2,062",701,"1,442","3,011","1,348","1,238",904,"1,291","3,347","3,711","1,871","1,956","1,657","1,270","1,889","4,227","4,219","4,964","5,479","1,573","2,434","1,545","4,010","1,619","3,384","2,058","1,586","4,441","1,326","1,097","6,149","1,947",903,"2,434","2,141","2,000","1,622","3,092","1,293","2,219","2,794","1,553","2,128","4,997","1,490","1,779","3,067","3,680","3,709",542,"1,005","8,616","1,650","1,025","1,051","1,139","1,703","1,182","8,296","1,362","1,145","5,664","3,598","2,740","2,565","2,224","6,341","1,342","2,978","1,675","2,746","3,988","2,184","1,071","3,112","2,907","3,234","2,617","1,023","1,640","4,910","1,317",769,"2,371",878,"2,127","1,539","3,650","1,826","1,526","6,625",791,"1,866","3,036","3,186","3,465","1,974","5,199","2,531","4,944","2,725","1,534","1,678","4,295","2,212",891,"2,853","5,332","4,524","5,657","4,922","3,045","1,758","4,025","7,352","2,620","2,779","9,682","1,264",839,"1,662",925,955,"4,717","1,956" -2356,Income,Income sources,Catalogue no. 98-400-X2016122, After-tax income: Population with an amount,"2,187,505","23,505","19,370","9,920","25,620","22,335","12,710","22,845","17,705","10,560","17,660","4,915","23,170","17,575","15,775","5,960","11,800","7,360","9,500","13,500","9,960","8,035","9,375","10,690","28,370","20,490","13,045","12,500","11,735","7,645","13,555","21,535","18,995","30,705","27,705","10,160","16,595","12,525","16,995","7,170","16,020","15,185","9,275","16,180","10,235","9,065","22,935","11,505","8,005","12,315","18,250","19,195","10,400","14,100","8,315","9,660","11,780","11,680","10,505","36,115","11,580","8,905","13,505","15,730","16,770","7,295","5,930","35,400","12,995","10,805","11,710","12,765","13,365","8,465","33,525","7,965","8,800","21,165","29,015","13,490","16,615","10,275","23,850","13,190","25,605","9,240","13,225","19,580","27,940","9,480","15,300","10,060","17,120","14,490","7,415","12,250","27,015","8,490","6,295","13,055","8,870","8,510","8,250","17,775","12,160","17,295","35,865","7,720","7,380","12,175","17,960","22,430","14,240","20,145","20,060","21,945","11,775","16,960","7,970","13,940","14,190","5,985","13,785","60,630","21,040","26,270","21,545","13,865","8,960","22,140","41,565","14,225","17,790","40,665","9,775","6,475","11,045","9,555","10,805","22,240","11,490" -2357,Income,Income sources,Catalogue no. 98-400-X2016122, After-tax income: Average amount ($),"41,462","26,955","27,928","39,159","80,138","51,874","37,927","43,427","41,440","38,196","85,678","29,453","28,953","43,027","23,786","39,515","30,341","193,454","37,018","28,552","49,123","30,529","115,033","43,854","43,039","31,369","41,837","36,364","35,165","43,924","42,455","31,875","28,052","33,777","29,774","34,403","43,567","72,156","26,865","28,355","39,911","39,203","32,942","25,608","62,714","142,627","25,395","38,307","43,848","30,931","45,893","54,872","34,837","34,203","38,150","27,334","26,403","49,925","27,852","42,550","40,679","29,133","27,439","31,282","31,447","97,836","57,429","27,944","54,879","79,100","111,586","85,496","37,924","39,000","26,505","31,957","48,586","25,109","43,971","28,497","45,877","27,461","24,122","63,862","45,441","37,209","36,139","29,760","54,803","56,122","28,541","24,247","33,777","36,221","43,038","46,199","35,409","33,581","54,115","31,338","71,025","29,525","30,201","29,764","40,926","134,865","33,736","55,942","28,118","28,634","30,293","43,297","70,885","27,889","49,002","29,756","27,064","67,490","28,842","25,675","40,658","40,931","30,769","54,292","29,221","28,066","28,613","28,965","29,334","30,272","36,740","36,093","36,713","27,341","44,594","39,565","43,054","65,356","80,555","26,651","32,904" -2358,Income,Income sources,Catalogue no. 98-400-X2016122, After-tax income: Aggregate amount ($'000),"90,697,781","633,574","540,969","388,460","2,053,142","1,158,599","482,056","992,101","733,692","403,347","1,513,078","144,761","670,835","756,206","375,229","235,511","358,028","1,423,819","351,670","385,449","489,261","245,300","1,078,432","468,804","1,221,015","642,752","545,762","454,551","412,663","335,799","575,482","686,438","532,843","1,037,114","824,881","349,531","722,994","903,751","456,573","203,304","639,380","595,302","305,541","414,333","641,876","1,292,910","582,436","440,718","351,003","380,911","837,547","1,053,260","362,300","482,258","317,217","264,047","311,024","583,126","292,590","1,536,690","471,061","259,427","370,560","492,061","527,362","713,716","340,556","989,212","713,156","854,677","1,306,671","1,091,352","506,851","330,135","888,593","254,534","427,558","531,437","1,275,825","384,427","762,241","282,164","575,316","842,342","1,163,508","343,810","477,933","582,694","1,531,187","532,035","436,673","243,924","578,256","524,845","319,129","565,943","956,565","285,103","340,657","409,112","629,991","251,255","249,159","529,050","497,659","2,332,496","1,209,928","431,869","207,511","348,617","544,069","971,149","1,009,396","561,816","982,988","652,986","318,682","1,144,627","229,873","357,911","576,933","244,973","424,152","3,291,752","614,802","737,298","616,464","401,594","262,835","670,224","1,527,084","513,418","653,131","1,111,814","435,906","256,184","475,529","624,474","870,402","592,713","378,065" -2359,Income,Income taxes,Catalogue no. 98-400-X2016122, Income taxes: Population with an amount,"1,373,645","12,025","10,480","7,255","18,195","16,245","8,075","12,770","11,385","6,490","13,455","2,785","13,090","12,175","7,275","3,475","7,340","5,565","6,300","7,495","6,880","5,130","7,195","7,680","19,115","12,235","9,075","7,940","7,515","5,020","9,400","12,510","10,775","19,155","16,935","6,680","11,060","9,300","9,150","3,955","9,785","10,650","5,860","7,745","7,190","7,300","11,595","7,200","5,920","6,790","13,145","14,600","6,730","8,005","5,605","5,220","6,410","8,090","6,065","25,260","7,980","5,125","7,215","7,845","9,390","5,945","4,090","18,640","8,990","8,390","9,220","9,900","9,230","5,735","17,870","5,180","6,420","10,415","20,760","7,630","10,345","5,730","11,310","10,050","18,635","5,635","7,365","10,825","22,600","6,890","8,325","4,385","10,420","8,955","5,085","8,365","16,845","5,690","4,525","7,685","6,710","3,920","4,960","10,425","7,855","13,750","22,195","5,890","3,840","6,030","10,555","14,815","9,735","10,215","14,730","12,435","6,130","13,075","4,515","5,970","9,195","3,675","7,920","47,185","11,495","15,090","11,930","7,630","4,970","13,545","24,385","8,415","11,740","21,640","6,790","4,440","7,280","7,240","8,635","11,935","7,305" -2360,Income,Income taxes,Catalogue no. 98-400-X2016122, Income taxes: Average amount ($),"17,197","6,726","7,185","11,626","45,973","21,829","12,656","23,471","16,439","14,685","48,920","7,726","7,640","16,230","4,750","15,416","7,141","150,999","11,409","7,185","20,130","7,181","65,118","14,219","15,650","8,178","13,400","13,088","10,298","17,224","13,521","9,494","6,448","9,535","7,204","9,464","16,115","39,507","5,886","6,666","13,461","11,074","8,345","6,366","31,718","76,424","5,148","12,604","12,746","9,848","16,030","21,485","9,476","10,929","11,126","6,353","5,726","22,120","6,115","14,633","13,085","7,275","6,620","12,354","9,341","57,874","27,841","7,380","25,233","42,008","73,244","51,704","11,364","12,408","5,754","7,924","18,745","5,984","14,596","6,764","20,904","6,036","5,064","28,071","15,915","11,311","16,333","9,290","19,543","23,490","7,603","5,842","9,904","12,446","14,990","17,466","11,375","8,088","23,207","8,518","36,827","10,958","6,949","7,361","15,018","91,781","9,396","20,849","7,077","8,581","8,368","15,949","43,206","7,689","20,635","7,820","6,486","32,490","7,040","7,449","15,441","16,019","8,688","20,930","7,554","6,429","7,438","7,353","7,565","7,789","14,631","14,346","11,278","6,658","15,236","11,987","17,156","31,634","41,938","6,140","8,842" -2361,Income,Income taxes,Catalogue no. 98-400-X2016122, Income taxes: Aggregate amount ($'000),"23,622,931","80,881","75,294","84,349","836,470","354,616","102,199","299,729","187,163","95,305","658,221","21,518","100,005","197,597","34,559","53,572","52,413","840,311","71,874","53,852","138,492","36,839","468,521","109,200","299,145","100,052","121,604","103,916","77,392","86,466","127,097","118,767","69,477","182,640","121,998","63,222","178,229","367,417","53,861","26,365","131,711","117,934","48,900","49,302","228,056","557,893","59,688","90,752","75,459","66,865","210,709","313,685","63,771","87,487","62,360","33,162","36,701","178,949","37,085","369,641","104,421","37,284","47,762","96,921","87,710","344,059","113,870","137,556","226,845","352,445","675,313","511,870","104,887","71,161","102,818","41,045","120,342","62,321","303,013","51,611","216,255","34,588","57,276","282,114","296,582","63,735","120,290","100,562","441,680","161,848","63,291","25,616","103,203","111,455","76,226","146,099","191,618","46,018","105,010","65,462","247,107","42,956","34,467","76,741","117,964","1,261,988","208,538","122,799","27,175","51,746","88,322","236,287","420,612","78,544","303,958","97,240","39,757","424,806","31,784","44,473","141,983","58,869","68,808","987,598","86,837","97,014","88,736","56,105","37,600","105,500","356,777","120,724","132,405","144,070","103,455","53,224","124,899","229,032","362,138","73,283","64,592" -2362,Income,Income taxes,Catalogue no. 98-400-X2016122, Net federal tax: Population with an amount,"1,271,925","10,910","9,555","6,860","16,675","15,250","7,460","10,970","10,295","5,875","12,360","2,570","12,085","11,615","6,665","3,255","6,770","5,185","5,865","6,915","6,460","4,835","6,725","7,375","17,525","11,505","8,370","7,485","7,015","4,725","8,955","11,295","9,980","17,645","15,555","6,160","10,485","8,730","8,410","3,630","8,740","10,070","5,475","7,035","6,720","6,670","10,545","6,805","5,575","6,025","12,480","13,880","6,245","7,330","5,160","4,740","5,840","7,415","5,540","23,765","7,520","4,775","6,660","6,860","8,675","5,650","3,895","16,800","8,240","8,010","8,550","9,340","8,595","5,470","16,365","4,730","6,155","9,420","19,740","7,060","9,575","5,330","10,310","9,620","17,460","5,335","6,630","9,735","21,470","6,555","7,585","3,880","9,625","8,405","4,820","7,620","15,600","5,320","4,255","6,885","6,330","3,630","4,560","9,755","7,390","12,795","20,765","5,655","3,430","5,550","9,845","14,085","8,980","9,250","13,970","11,195","5,525","12,550","4,100","5,520","8,470","3,285","7,330","43,605","10,680","13,865","10,855","7,145","4,645","12,590","21,865","7,620","10,935","19,765","6,405","4,270","6,725","6,780","8,060","10,770","6,785" -2363,Income,Income taxes,Catalogue no. 98-400-X2016122, Net federal tax: Average amount ($),"11,542","4,795","5,102","7,895","30,496","14,370","8,645","16,729","11,062","10,191","32,139","5,418","5,364","10,755","3,388","10,505","5,022","95,070","7,830","4,960","13,384","4,971","40,970","9,461","10,806","5,649","9,113","8,819","7,093","11,529","9,081","6,737","4,534","6,676","5,062","6,601","10,783","25,291","4,148","4,729","9,316","7,558","5,809","4,518","20,488","49,228","3,692","8,531","8,659","7,104","10,719","14,139","6,580","7,600","7,737","4,526","4,085","14,921","4,334","9,906","8,781","5,085","4,656","8,877","6,484","36,696","18,021","5,270","16,812","26,958","47,166","33,285","7,854","8,324","4,099","5,596","12,205","4,299","9,753","4,751","14,109","4,231","3,635","18,151","10,758","7,685","11,095","6,556","13,010","15,428","5,392","4,309","6,866","8,419","10,111","11,956","7,795","5,637","15,372","6,105","24,010","7,571","4,943","5,133","10,135","58,397","6,480","13,677","5,127","5,981","5,783","10,682","28,162","5,446","13,597","5,577","4,650","20,811","5,019","5,198","10,611","11,231","6,044","14,233","5,260","4,561","5,227","5,130","5,278","5,413","10,281","10,050","7,742","4,737","10,297","8,049","11,560","20,794","27,170","4,420","6,119" -2364,Income,Income taxes,Catalogue no. 98-400-X2016122, Net federal tax: Aggregate amount ($'000),"14,680,842","52,315","48,753","54,161","508,525","219,140","64,491","183,513","113,887","59,871","397,240","13,924","64,820","124,921","22,582","34,195","33,998","492,936","45,925","34,298","86,461","24,035","275,522","69,774","189,367","64,993","76,274","66,009","49,756","54,476","81,324","76,094","45,246","117,801","78,747","40,664","113,062","220,793","34,888","17,168","81,419","76,107","31,804","31,782","137,677","328,349","38,928","58,053","48,275","42,802","133,775","196,252","41,093","55,709","39,923","21,451","23,859","110,638","24,010","235,411","66,030","24,283","31,012","60,893","56,246","207,335","70,192","88,532","138,529","215,933","403,267","310,878","67,509","45,530","67,072","26,468","75,121","40,492","192,530","33,544","135,094","22,550","37,473","174,617","187,836","40,999","73,560","63,822","279,334","101,133","40,899","16,718","66,085","70,760","48,734","91,105","121,598","29,991","65,408","42,033","151,984","27,483","22,539","50,068","74,899","747,186","134,554","77,342","17,586","33,192","56,929","150,453","252,899","50,380","189,944","62,429","25,693","261,182","20,578","28,694","89,873","36,895","44,304","620,636","56,178","63,245","56,742","36,657","24,515","68,144","224,786","76,583","84,656","93,634","65,954","34,368","77,742","140,984","218,987","47,600","41,518" -2365,Income,Income taxes,Catalogue no. 98-400-X2016122, Provincial and territorial income taxes: Population with an amount,"1,339,410","11,585","10,060","7,060","17,930","15,915","7,830","12,575","11,155","6,325","13,245","2,685","12,725","11,905","6,970","3,390","7,070","5,525","6,115","7,265","6,775","4,990","7,120","7,550","18,755","11,880","8,835","7,745","7,315","4,895","9,215","12,170","10,460","18,595","16,460","6,480","10,850","9,050","8,930","3,830","9,500","10,420","5,710","7,535","7,030","7,180","11,110","6,985","5,840","6,615","12,920","14,410","6,570","7,770","5,490","5,085","6,125","7,970","5,880","24,710","7,725","4,950","6,965","7,620","9,135","5,910","3,995","18,040","8,790","8,265","9,085","9,800","9,015","5,590","17,260","5,070","6,290","9,780","20,300","7,385","10,160","5,495","10,940","9,880","18,325","5,445","7,140","10,395","22,285","6,720","8,100","4,225","10,150","8,700","5,000","8,150","16,545","5,515","4,395","7,485","6,585","3,820","4,765","10,070","7,725","13,595","21,570","5,780","3,705","5,860","10,295","14,445","9,590","9,790","14,385","12,075","5,940","12,865","4,355","5,755","8,885","3,600","7,695","46,570","11,220","14,580","11,540","7,400","4,775","13,150","23,775","8,240","11,530","20,985","6,635","4,350","7,105","7,090","8,530","11,525","7,115" -2366,Income,Income taxes,Catalogue no. 98-400-X2016122, Provincial and territorial income taxes: Average amount ($),"6,676","2,472","2,642","4,274","18,254","8,509","4,814","9,224","6,569","5,608","19,736","2,835","2,766","6,094","1,719","5,733","2,604","62,927","4,238","2,694","7,644","2,567","27,032","5,229","5,845","2,950","5,132","4,898","3,779","6,504","4,968","3,512","2,317","3,489","2,632","3,484","6,019","16,238","2,121","2,404","5,309","4,015","2,995","2,323","12,862","31,961","1,867","4,671","4,642","3,645","5,954","8,146","3,448","4,083","4,077","2,299","2,094","8,567","2,224","5,438","4,972","2,628","2,404","4,736","3,440","23,112","10,926","2,720","10,053","16,523","29,871","20,499","4,150","4,583","2,074","2,881","7,194","2,231","5,440","2,451","7,989","2,190","1,810","10,895","5,939","4,174","6,552","3,537","7,290","9,060","2,760","2,113","3,659","4,674","5,486","6,748","4,225","2,908","9,011","3,122","14,436","4,057","2,502","2,654","5,578","37,818","3,429","7,861","2,581","3,173","3,049","5,945","17,472","2,876","7,934","2,881","2,369","12,734","2,575","2,735","5,863","6,081","3,181","7,884","2,728","2,317","2,770","2,631","2,740","2,837","5,557","5,347","4,150","2,403","5,643","4,331","6,635","12,435","16,766","2,227","3,244" -2367,Income,Income taxes,Catalogue no. 98-400-X2016122, Provincial and territorial income taxes: Aggregate amount ($'000),"8,942,171","28,636","26,579","30,171","327,289","135,426","37,695","115,997","73,277","35,470","261,409","7,612","35,197","72,555","11,981","19,434","18,411","347,674","25,914","19,572","51,785","12,810","192,469","39,480","109,629","35,051","45,337","37,935","27,642","31,838","45,782","42,742","24,237","64,883","43,327","22,577","65,304","146,956","18,939","9,208","50,437","41,837","17,102","17,503","90,419","229,479","20,737","32,626","27,108","24,109","76,928","117,388","22,655","31,728","22,380","11,689","12,823","68,277","13,078","134,384","38,406","13,008","16,747","36,090","31,426","136,591","43,650","49,063","88,362","136,564","271,380","200,888","37,411","25,619","35,799","14,608","45,253","21,823","110,441","18,102","81,165","12,034","19,802","107,640","108,837","22,727","46,784","36,768","162,459","60,881","22,355","8,928","37,136","40,666","27,430","54,993","69,900","16,040","39,604","23,367","95,064","15,497","11,920","26,729","43,087","514,140","73,967","45,437","9,562","18,591","31,386","85,869","167,559","28,155","114,131","34,784","14,074","163,824","11,214","15,741","52,096","21,892","24,474","367,140","30,606","33,784","31,970","19,468","13,083","37,300","132,123","44,061","47,848","50,429","37,438","18,839","47,141","88,161","143,014","25,666","23,078" -2368,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001,Total - Mobility status 1 year ago - 25% sample data,"2,663,555","28,595","23,235","11,860","28,385","26,765","15,340","25,355","20,920","12,575","22,895","6,310","28,805","21,500","21,240","7,590","14,020","9,130","11,220","17,515","10,910","9,800","10,765","13,255","30,115","25,935","16,225","15,685","13,925","9,500","16,845","26,620","24,145","35,820","34,630","11,555","20,760","15,115","22,045","9,360","21,550","18,390","11,345","21,570","12,595","10,530","29,865","14,160","9,575","15,525","21,565","23,110","12,395","16,820","10,015","12,245","15,290","14,075","13,445","42,695","13,875","10,935","16,870","17,345","21,670","9,100","7,895","43,105","15,925","14,425","14,980","16,550","14,950","9,950","43,280","9,780","10,385","25,765","32,925","16,950","18,280","13,080","32,375","16,555","28,595","11,135","15,410","23,420","30,070","11,590","18,160","13,420","20,755","18,265","9,130","13,695","34,320","10,590","7,565","15,705","10,995","10,585","10,185","22,010","14,680","20,445","45,610","9,915","9,645","16,240","20,450","26,685","17,585","24,075","24,635","26,780","15,295","21,270","10,015","20,470","16,045","6,640","17,025","64,950","26,710","32,565","25,885","17,475","10,955","27,260","49,710","16,530","21,915","52,390","12,250","7,760","13,125","11,660","12,210","27,260","13,915" -2369,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, Non-movers,"2,284,060","25,775","20,155","10,895","21,980","23,720","13,405","16,515","16,775","11,065","20,420","5,680","24,990","19,380","18,960","6,685","12,530","8,075","9,660","15,910","9,095","8,705","8,980","12,400","21,960","23,165","13,855","14,450","12,265","8,435","15,125","22,405","21,480","30,305","30,565","9,620","18,375","13,285","19,100","8,345","19,280","16,795","9,875","18,645","11,095","9,140","27,590","12,385","8,885","11,475","17,560","19,555","11,510","15,130","9,180","11,140","13,330","12,120","11,900","36,235","12,180","9,770","14,920","13,465","19,050","7,955","7,110","38,340","13,030","13,095","13,270","15,140","11,205","8,510","38,845","8,790","9,410","23,135","25,745","15,030","14,105","11,910","28,555","14,450","21,985","9,680","12,530","19,495","22,060","10,400","15,085","11,920","18,405","15,935","8,315","10,940","29,770","9,715","6,655","13,615","10,205","8,405","9,245","19,980","12,495","17,620","41,760","9,025","8,895","14,200","16,800","22,855","15,240","21,790","22,245","23,360","12,995","18,400","9,180","17,250","13,505","4,990","14,660","44,415","23,900","28,530","22,205","15,225","9,765","24,110","37,445","12,995","19,805","45,720","10,965","6,830","11,465","9,345","9,835","23,155","12,445" -2370,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, Movers,"379,495","2,830","3,070",965,"6,395","3,040","1,945","8,845","4,145","1,510","2,460",625,"3,820","2,120","2,275",905,"1,485","1,055","1,550","1,610","1,810","1,095","1,790",855,"8,150","2,780","2,370","1,245","1,660","1,070","1,710","4,190","2,670","5,520","4,035","1,935","2,385","1,825","2,930","1,015","2,260","1,605","1,475","2,920","1,505","1,400","2,270","1,770",690,"4,050","3,995","3,555",880,"1,690",830,"1,100","1,960","1,950","1,545","6,440","1,690","1,160","1,950","3,880","2,610","1,150",785,"4,770","2,895","1,335","1,710","1,410","3,745","1,445","4,445",995,970,"2,620","7,170","1,925","4,180","1,165","3,825","2,110","6,620","1,460","2,870","3,930","8,005","1,185","3,075","1,510","2,345","2,325",815,"2,755","4,555",880,910,"2,095",795,"2,185",940,"2,030","2,190","2,830","3,865",885,745,"2,035","3,650","3,840","2,350","2,290","2,400","3,410","2,295","2,870",830,"3,210","2,540","1,660","2,370","20,540","2,815","4,040","3,675","2,250","1,185","3,145","12,275","3,535","2,120","6,675","1,280",930,"1,655","2,310","2,370","4,100","1,470" -2371,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, Non-migrants,"253,780","1,875","2,180",640,"4,275","2,255","1,265","4,820","2,645",795,"1,750",425,"2,825","1,665","1,590",725,"1,040",750,"1,155","1,100","1,355",845,"1,280",670,"4,945","2,015","1,540",790,"1,195",740,"1,340","2,405","1,885","3,825","2,940","1,390","1,725","1,410","2,140",770,"1,520","1,115",940,"1,830",915,965,"1,765","1,475",500,"2,050","2,710","2,405",550,"1,095",610,735,"1,475","1,375",920,"4,120","1,285",950,"1,385","2,410","1,865",855,650,"3,185","1,840","1,070","1,160","1,025","2,635",870,"3,290",710,610,"1,820","4,445","1,345","2,725",910,"2,635","1,430","4,135",960,"1,685","2,425","5,160",945,"1,820",995,"1,700","1,540",650,"1,955","2,885",655,670,"1,180",555,"1,770",655,"1,555","1,655","2,030","2,735",605,580,"1,505","2,515","2,950","1,430","1,435","1,550","2,105","1,440","2,115",555,"1,770","1,955","1,000","1,550","12,185","2,165","2,405","2,270","1,605",980,"1,955","7,195","2,295","1,450","4,695","1,045",725,"1,240","1,515","1,690","2,740","1,140" -2372,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, Migrants,"125,715",950,895,330,"2,120",790,685,"4,030","1,500",715,720,205,990,450,680,180,445,305,395,510,465,245,515,180,"3,215",760,835,445,470,325,360,"1,795",775,"1,690","1,095",545,660,420,790,245,750,485,535,"1,095",590,435,510,315,185,"2,005","1,290","1,165",325,585,225,370,495,580,630,"2,335",415,215,555,"1,465",745,300,135,"1,575","1,050",255,540,385,"1,110",575,"1,155",280,360,800,"2,750",580,"1,460",275,"1,185",670,"2,470",490,"1,190","1,495","2,850",240,"1,255",505,650,795,170,810,"1,660",220,235,900,240,410,285,490,545,810,"1,135",290,165,540,"1,125",880,925,865,845,"1,310",860,765,275,"1,435",580,655,810,"8,350",640,"1,640","1,405",645,205,"1,185","5,080","1,245",665,"1,990",230,200,425,800,685,"1,360",325 -2373,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, Internal migrants,"65,770",345,395,260,"1,280",405,310,"2,285",870,325,345,130,545,300,290,90,215,175,215,230,320,80,305,135,"2,040",300,510,235,310,160,165,700,305,940,480,255,330,275,255,125,255,355,305,305,195,225,330,175,160,870,685,835,195,180,160,215,240,285,140,"1,525",255,95,205,900,420,235,70,450,535,165,250,205,815,445,485,60,255,310,"2,020",290,960,130,435,360,"1,260",295,435,540,"2,120",160,530,140,195,290,130,515,735,135,170,320,160,265,170,255,325,445,615,160,65,215,700,595,505,235,635,450,215,475,145,355,295,380,315,"5,880",345,750,645,325,125,490,"2,020",725,400,670,155,145,195,470,420,690,190 -2374,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, Intraprovincial migrants,"49,990",275,320,220,900,345,205,"1,500",630,225,260,100,435,275,265,80,140,120,140,170,250,75,230,115,"1,455",220,420,185,180,135,110,450,245,710,435,180,265,220,150,80,175,335,290,165,140,175,235,140,135,665,505,620,135,135,140,170,225,200,115,"1,320",115,55,165,610,370,160,60,360,440,115,170,125,615,400,430,45,225,290,"1,770",255,730,120,420,260,955,265,305,360,"1,605",110,330,110,145,220,105,315,605,100,105,250,120,205,140,235,245,310,515,135,50,125,510,440,385,170,480,365,155,325,130,190,215,235,205,"4,430",300,620,500,250,90,385,"1,550",470,365,510,115,120,140,345,320,500,145 -2375,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, Interprovincial migrants,"15,780",75,90,40,385,75,105,785,235,110,90,30,115,40,20,10,65,60,80,55,75,10,75,25,585,75,90,50,120,25,60,250,55,230,30,75,65,50,105,55,80,20,10,130,50,55,95,50,25,215,175,205,55,40,20,40,20,90,30,200,125,40,30,295,35,50,0,105,110,45,80,85,210,55,60,20,35,10,250,25,235,10,35,105,290,45,125,190,510,40,195,35,50,75,25,205,125,35,60,75,40,60,25,15,70,115,80,30,10,90,200,165,115,60,150,70,65,145,10,165,85,140,110,"1,440",55,130,135,65,30,105,470,250,30,160,55,20,60,130,110,180,35 -2376,Mobility,Mobility status - Place of residence 1 year ago,Census Profile 98-316-X2016001, External migrants,"59,945",605,490,70,835,380,375,"1,735",625,395,375,75,435,150,390,85,235,130,175,280,150,165,210,45,"1,170",465,320,210,170,165,200,"1,090",480,755,615,290,325,145,515,125,495,125,225,790,395,210,190,130,25,"1,135",605,330,140,410,70,160,260,290,490,815,165,125,360,570,335,65,65,"1,130",510,95,275,190,295,120,680,210,100,500,715,290,500,140,740,310,"1,220",205,745,960,735,85,720,365,445,495,40,285,920,95,70,575,70,150,115,230,225,380,525,120,100,325,420,275,425,625,225,845,635,300,135,"1,090",280,275,500,"2,485",300,875,770,320,85,695,"3,060",520,280,"1,295",60,60,225,325,265,680,140 -2377,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001,Total - Mobility status 5 years ago - 25% sample data,"2,556,120","27,490","22,325","11,370","27,715","25,925","14,750","24,640","20,250","12,280","21,815","6,025","27,630","20,660","20,000","7,195","13,545","8,825","10,840","16,660","10,685","9,415","10,500","12,725","29,635","24,720","15,440","15,035","13,375","8,975","15,855","25,500","23,010","34,470","33,065","11,220","19,595","14,615","21,005","8,955","20,290","17,820","10,875","20,375","12,045","10,265","28,505","13,300","9,220","14,775","20,715","22,170","12,060","16,290","9,675","11,680","14,485","13,510","12,785","41,000","13,245","10,490","16,140","16,970","20,575","8,745","7,515","41,485","15,275","13,615","14,480","15,845","14,490","9,540","41,395","9,390","10,115","24,730","31,840","16,190","17,840","12,400","30,700","15,720","27,810","10,665","14,975","22,610","29,250","11,010","17,415","12,630","19,800","17,490","8,745","13,320","32,890","10,225","7,250","15,255","10,580","10,155","9,740","21,075","14,080","19,840","43,730","9,295","9,100","15,375","19,820","25,375","17,105","23,165","23,510","25,695","14,320","20,220","9,550","18,840","15,495","6,490","16,345","63,520","25,525","31,330","24,875","16,525","10,580","26,210","48,000","15,945","20,945","49,910","11,530","7,400","12,630","11,230","11,865","26,110","13,420" -2378,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, Non-movers,"1,516,110","18,865","13,565","8,235","12,980","16,300","8,845","6,470","9,055","7,740","14,135","3,960","16,665","13,690","13,180","4,905","8,835","5,715","6,485","11,010","6,065","6,290","5,490","9,915","11,565","15,615","9,090","10,450","8,605","6,330","10,915","14,365","14,085","19,805","21,345","6,185","12,335","9,565","13,115","5,970","12,655","13,555","6,760","12,235","7,270","6,070","19,975","8,725","6,490","5,340","10,775","12,965","9,165","11,075","6,945","8,135","9,115","7,975","8,085","22,170","8,335","7,040","10,580","8,100","12,795","5,890","5,110","27,190","7,930","9,435","9,240","11,135","6,385","5,260","28,030","6,345","6,990","16,725","14,765","10,695","7,560","7,905","18,940","10,015","11,595","6,620","8,195","12,000","8,790","7,455","8,765","7,320","13,620","10,870","6,245","7,030","19,715","6,620","4,410","9,910","7,690","4,595","6,535","14,255","8,355","11,860","31,485","6,725","6,630","9,200","9,755","15,040","10,665","15,845","16,000","16,175","7,695","12,595","7,115","8,990","8,875","2,955","9,970","17,595","17,475","20,390","13,660","9,970","7,305","17,830","20,140","7,870","13,920","30,665","7,605","4,690","7,930","5,785","5,660","14,720","9,125" -2379,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, Movers,"1,040,015","8,610","8,775","3,130","14,735","9,625","5,905","18,170","11,200","4,525","7,690","2,065","10,960","6,965","6,850","2,295","4,710","3,105","4,355","5,650","4,620","3,125","5,015","2,810","18,060","9,095","6,345","4,580","4,770","2,635","4,940","11,145","8,930","14,640","11,725","5,040","7,265","5,050","7,880","2,985","7,625","4,265","4,120","8,130","4,770","4,200","8,525","4,580","2,730","9,440","9,950","9,210","2,895","5,210","2,730","3,540","5,365","5,530","4,700","18,825","4,900","3,455","5,565","8,870","7,775","2,860","2,405","14,290","7,335","4,185","5,240","4,710","8,110","4,280","13,395","3,040","3,130","8,000","17,090","5,495","10,285","4,495","11,755","5,695","16,220","4,050","6,775","10,600","20,475","3,545","8,655","5,315","6,185","6,620","2,495","6,280","13,185","3,600","2,840","5,345","2,905","5,570","3,210","6,820","5,725","7,985","12,240","2,575","2,480","6,170","10,075","10,330","6,445","7,320","7,515","9,520","6,635","7,625","2,435","9,860","6,635","3,535","6,365","45,930","8,050","10,945","11,225","6,560","3,285","8,385","27,855","8,070","7,020","19,235","3,920","2,710","4,700","5,450","6,195","11,400","4,290" -2380,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, Non-migrants,"639,060","5,445","5,610","2,200","8,340","6,480","3,680","6,390","6,175","2,495","5,415","1,485","6,890","5,495","4,455","1,680","3,190","2,210","2,925","3,980","2,850","2,215","3,330","2,295","8,455","6,290","4,140","3,455","3,205","1,745","3,840","5,590","6,395","9,585","7,945","3,180","5,160","3,700","5,050","2,135","5,265","2,975","2,470","4,510","3,075","3,005","6,235","3,460","2,095","3,910","5,830","5,965","1,980","3,185","2,095","2,345","3,540","3,445","2,705","10,945","3,370","2,470","4,015","4,685","5,220","2,070","1,800","8,940","4,170","2,900","3,750","3,560","4,975","2,460","9,430","1,900","2,090","5,105","9,650","3,845","6,020","3,375","6,680","3,605","8,715","2,505","3,515","5,755","10,830","2,615","4,190","3,210","3,995","4,415","1,750","3,690","8,470","2,910","2,015","2,865","2,110","4,090","2,270","5,035","3,715","5,155","9,045","1,775","1,860","4,165","5,895","7,300","3,735","4,755","4,780","5,780","3,375","5,405","1,470","5,075","4,215","1,775","4,215","21,170","5,835","6,195","6,300","4,325","2,390","5,585","12,880","4,305","4,740","11,975","2,920","2,100","3,355","3,020","3,895","6,435","2,940" -2381,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, Migrants,"400,950","3,170","3,145",925,"6,390","3,140","2,235","11,780","5,015","2,030","2,265",580,"4,060","1,475","2,380",620,"1,515",890,"1,440","1,675","1,755",910,"1,690",515,"9,610","2,805","2,200","1,120","1,575",900,"1,100","5,535","2,530","5,065","3,800","1,855","2,105","1,355","2,835",850,"2,365","1,295","1,645","3,625","1,700","1,195","2,295","1,130",635,"5,525","4,095","3,255",920,"2,025",640,"1,190","1,825","2,090","1,990","7,865","1,525",970,"1,545","4,190","2,560",785,600,"5,335","3,165","1,280","1,480","1,145","3,140","1,815","3,970","1,150","1,045","2,895","7,435","1,660","4,265","1,125","5,075","2,095","7,495","1,545","3,260","4,835","9,640",930,"4,470","2,100","2,185","2,200",755,"2,595","4,705",700,825,"2,475",795,"1,470",945,"1,775","2,005","2,830","3,190",805,625,"2,005","4,180","3,020","2,710","2,575","2,730","3,730","3,255","2,215",960,"4,775","2,415","1,765","2,150","24,770","2,210","4,745","4,910","2,235",890,"2,805","14,980","3,765","2,270","7,260",985,620,"1,350","2,425","2,310","4,965","1,345" -2382,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, Interprovincial migrants,"42,985",135,220,70,"1,310",220,170,"1,970",510,115,235,15,300,215,95,95,120,120,205,110,335,65,325,30,"1,495",220,145,45,235,130,195,380,155,960,180,280,310,100,175,120,180,40,115,195,105,155,170,200,95,370,585,660,70,85,70,40,110,335,85,660,315,90,80,725,135,155,75,240,220,155,250,200,645,185,215,50,80,85,895,55,795,60,215,370,975,120,225,215,"1,790",145,475,120,175,120,80,625,300,70,135,110,100,245,40,110,320,345,275,75,20,160,615,540,245,145,250,255,230,400,20,320,420,315,90,"4,195",170,210,210,125,90,255,"1,270",475,150,335,250,85,210,290,325,195,135 -2383,Mobility,Mobility status - Place of residence 5 years ago,Census Profile 98-316-X2016001, External migrants,"216,835","2,280","2,170",245,"2,460","1,735","1,310","6,545","3,030","1,205","1,270",360,"2,720",480,"1,590",320,"1,075",395,745,"1,065",600,590,685,195,"4,035","1,885","1,155",620,785,385,520,"4,065","1,625","2,010","2,315",805,"1,070",540,"2,100",455,"1,645",460,755,"2,950","1,175",625,"1,295",475,205,"4,035","1,865",960,500,"1,495",290,795,"1,285",945,"1,600","3,335",395,730,"1,050","1,825","1,510",260,265,"3,985","1,965",565,765,380,930,535,"2,470",820,300,"2,120","2,335","1,075","1,325",690,"3,805",965,"3,655",610,"2,245","3,475","2,255",360,"2,850","1,680","1,350","1,430",320,765,"2,840",265,285,"1,765",310,550,490,"1,035",840,"1,515","1,400",335,400,"1,430","1,670","1,210","1,675","1,895","1,245","2,520","2,530",845,665,"3,925","1,010",805,"1,580","8,130","1,180","3,040","3,375","1,275",480,"1,840","9,975","2,220","1,175","5,540",395,220,575,"1,160",955,"3,285",775 diff --git a/05_src/data/slides_data/neighbourhoods.csv b/05_src/data/slides_data/neighbourhoods.csv deleted file mode 100644 index da7a2a992..000000000 --- a/05_src/data/slides_data/neighbourhoods.csv +++ /dev/null @@ -1,142 +0,0 @@ -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 -Agincourt North,129,No Designation,29113,30279,-0.039,9371,9120,3929,7.41,11820,7155,930,3350,265,70,45,0.005922165820642978 -Agincourt South-Malvern West,128,No Designation,23757,21988,0.08,8535,8136,3034,7.83,10160,6135,665,2985,280,35,65,0.0034448818897637795 -Alderwood,20,No Designation,12054,11904,0.013000000000000001,4732,4616,2435,4.95,6045,4090,355,1285,195,65,65,0.010752688172043012 -Annex,95,No Designation,30526,29177,0.046,18109,15934,10863,2.81,14910,3290,290,6200,3200,1675,225,0.11234071093226022 -Banbury-Don Mills,42,No Designation,27695,26918,0.028999999999999998,12473,12124,2775,9.98,11395,7150,500,2945,615,65,140,0.005704256252742431 -Bathurst Manor,34,No Designation,15873,15434,0.027999999999999997,6418,6089,3377,4.7,7360,3910,265,2870,215,15,90,0.0020380434782608695 -Bay Street Corridor,76,No Designation,25797,19348,0.33299999999999996,18436,15074,14097,1.83,11815,1780,165,3540,5840,325,175,0.027507405840033854 -Bayview Village,52,No Designation,21396,17671,0.21100000000000002,10111,9532,4195,5.1,9825,5270,385,3695,345,30,100,0.0030534351145038168 -Bayview Woods-Steeles,49,No Designation,13154,13530,-0.027999999999999997,4895,4698,3240,4.06,4965,2920,240,1610,110,10,65,0.002014098690835851 -Bedford Park-Nortown,39,No Designation,23236,23185,0.002,9052,8607,4209,5.52,9520,5940,355,2415,550,90,180,0.009453781512605041 -Beechborough-Greenbrook,112,NIA,6577,6488,0.013999999999999999,2796,2650,3614,1.82,2655,1235,175,1105,100,20,20,0.007532956685499058 -Bendale,127,No Designation,29960,27876,0.075,11293,10766,4011,7.47,12430,6465,620,4680,520,45,100,0.0036202735317779565 -Birchcliffe-Cliffside,122,No Designation,22291,21856,0.02,9637,9198,3765,5.92,10100,5695,480,3210,415,140,140,0.013861386138613862 -Black Creek,24,NIA,21737,22057,-0.015,7671,7324,6282,3.46,7910,4040,735,2720,245,85,85,0.010745891276864728 -Blake-Jones,69,No Designation,7727,7763,-0.005,3269,3125,8134,0.95,3380,1075,115,1605,225,305,40,0.09023668639053255 -Briar Hill-Belgravia,108,No Designation,14257,14302,-0.003,6080,5737,7791,1.83,7220,2870,305,3595,305,60,85,0.008310249307479225 -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 -Broadview North,57,No Designation,11499,11563,-0.006,5812,5663,6764,1.7,5585,2010,165,2710,345,295,55,0.052820053715308866 -Brookhaven-Amesbury,30,No Designation,17757,17787,-0.002,6667,6482,5045,3.52,7925,3825,395,3380,255,25,55,0.0031545741324921135 -Cabbagetown-South St. James Town,71,No Designation,11669,12053,-0.032,6761,6442,8335,1.4,6055,1295,120,2010,1805,710,105,0.11725846407927333 -Caledonia-Fairbank,109,No Designation,9955,9851,0.011000000000000001,3935,3680,6464,1.54,4950,2070,470,2130,160,70,55,0.014141414141414142 -Casa Loma,96,No Designation,10968,10487,0.046,5833,5406,5683,1.93,5090,2040,130,1970,630,215,100,0.04223968565815324 -Centennial Scarborough,133,No Designation,13362,13093,0.021,4439,4379,2479,5.39,6170,3955,350,1675,110,0,70,0.0 -Church-Yonge Corridor,75,No Designation,31340,28349,0.106,21983,19680,23044,1.36,18135,2705,245,7000,7275,690,190,0.0380479735318445 -City of Toronto,,,2731571,2615060,0.045,1179057,1112929,4334,630.2,1251055,575255,57170,463000,107665,34355,13610,0.02746082306533286 -Clairlea-Birchmount,120,No Designation,26984,24770,0.08900000000000001,9529,9246,3632,7.43,12390,5860,560,5435,340,90,80,0.007263922518159807 -Clanton Park,33,No Designation,16472,14612,0.127,6881,6554,3979,4.14,8075,4195,280,3230,200,80,85,0.009907120743034056 -Cliffcrest,123,No Designation,15935,15703,0.015,6094,5902,2273,7.01,6795,3970,260,2320,170,35,40,0.0051508462104488595 -Corso Italia-Davenport,92,No Designation,14133,13743,0.027999999999999997,5903,5489,7478,1.89,7255,2980,500,3020,330,355,70,0.04893177119228118 -Danforth,66,No Designation,9666,9444,0.024,4108,3925,8554,1.13,4615,1545,155,2290,295,295,40,0.06392199349945829 -Danforth East York,59,No Designation,17180,16712,0.027999999999999997,7275,7022,7881,2.18,8035,3380,355,3370,425,400,120,0.049782202862476664 -Don Valley Village,47,No Designation,27051,26739,0.012,10196,9968,6441,4.2,11480,5845,510,4605,375,20,140,0.0017421602787456446 -Dorset Park,126,Emerging Neighbourhood,25003,24363,0.026000000000000002,8995,8777,4146,6.03,11015,5580,600,4255,440,55,95,0.004993191103041307 -Dovercourt-Wallace Emerson-Junction,93,No Designation,36625,34631,0.057999999999999996,16248,15320,9819,3.73,19090,5825,820,8950,1215,1980,310,0.1037192247249869 -Downsview-Roding-CFB,26,NIA,35052,34659,0.011000000000000001,14244,13121,2337,15.0,16165,8405,1060,6085,460,10,145,0.0006186204763377668 -Dufferin Grove,83,No Designation,11785,11449,0.028999999999999998,5815,5436,8540,1.38,6295,1655,185,3010,600,775,80,0.12311358220810167 -East End-Danforth,62,No Designation,21381,20839,0.026000000000000002,9535,9180,8038,2.66,10050,4145,365,4410,610,365,160,0.03631840796019901 -Edenbridge-Humber Valley,9,No Designation,15535,14943,0.04,6606,6254,2840,5.47,7095,4490,345,2010,175,40,45,0.005637773079633545 -Eglinton East,138,NIA,22776,22829,-0.002,8199,7912,7051,3.23,9265,3940,445,4595,195,10,65,0.0010793308148947653 -Elms-Old Rexdale,5,NIA,9456,9550,-0.01,3344,3219,3306,2.86,4045,2350,250,1330,70,20,30,0.004944375772558714 -Englemount-Lawrence,32,Emerging Neighbourhood,22372,22086,0.013000000000000001,8858,8247,6466,3.46,8920,3890,265,3945,590,85,150,0.00952914798206278 -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 -Etobicoke West Mall,13,No Designation,11848,10927,0.084,4727,4583,6582,1.8,5550,3185,315,1750,200,65,45,0.011711711711711712 -Flemingdon Park,44,NIA,21933,22168,-0.011000000000000001,7964,7830,9026,2.43,8380,3705,260,3860,405,50,90,0.0059665871121718375 -Forest Hill North,102,No Designation,12806,12474,0.027000000000000003,5784,5446,8054,1.59,6290,2910,185,2720,280,95,90,0.015103338632750398 -Forest Hill South,101,No Designation,10732,10926,-0.018000000000000002,5353,4951,4380,2.45,4805,2355,100,1830,285,150,85,0.031217481789802288 -Glenfield-Jane Heights,25,NIA,30491,31390,-0.028999999999999998,10423,9917,5864,5.2,11555,6205,975,3965,280,55,90,0.004759844223279966 -Greenwood-Coxwell,65,No Designation,14417,14083,0.024,6443,6053,8582,1.68,6875,2395,275,3050,485,580,85,0.08436363636363636 -Guildwood,140,No Designation,9917,9816,0.01,4044,3991,2673,3.71,4165,2490,175,1320,130,10,50,0.0024009603841536613 -Henry Farm,53,No Designation,15723,11333,0.387,6646,6362,6047,2.6,7260,3105,325,3425,340,20,65,0.0027548209366391185 -High Park North,88,No Designation,22162,21292,0.040999999999999995,11541,11023,11726,1.89,11350,3665,235,6260,520,565,90,0.04977973568281938 -High Park-Swansea,87,No Designation,23925,21740,0.10099999999999999,11526,10877,4893,4.89,11935,5310,345,4725,620,810,130,0.06786761625471303 -Highland Creek,134,No Designation,12494,13097,-0.046,3907,3700,2403,5.2,5725,3805,325,1480,75,25,15,0.004366812227074236 -Hillcrest Village,48,No Designation,16934,17656,-0.040999999999999995,6642,6398,3148,5.38,6430,3695,320,2170,180,10,40,0.0015552099533437014 -Humber Heights-Westmount,8,Emerging Neighbourhood,10948,10583,0.034,4261,4136,3981,2.75,4345,2800,205,1200,65,10,55,0.0023014959723820483 -Humber Summit,21,NIA,12416,12525,-0.009000000000000001,4288,3897,1570,7.91,5050,3225,365,1305,95,10,35,0.0019801980198019802 -Humbermede,22,NIA,15545,15853,-0.019,5390,5052,3565,4.36,6705,3925,505,2070,115,20,55,0.002982848620432513 -Humewood-Cedarvale,106,No Designation,14365,14108,0.018000000000000002,6865,6566,7682,1.87,7450,2585,275,3725,450,280,140,0.03758389261744966 -Ionview,125,NIA,13641,13091,0.042,5312,5168,7031,1.94,6085,2440,255,3025,235,30,95,0.0049301561216105174 -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 -Junction Area,90,No Designation,14366,14027,0.024,6431,6029,5442,2.64,7580,2860,285,3335,535,525,45,0.06926121372031663 -Keelesdale-Eglinton West,110,NIA,11058,10638,0.039,4575,4182,6467,1.71,4980,2410,465,1835,185,50,35,0.010040160642570281 -Kennedy Park,124,NIA,17123,17058,0.004,6885,6576,4770,3.59,7435,3335,325,3505,125,45,80,0.00605245460659045 -Kensington-Chinatown,78,No Designation,17945,18495,-0.03,9745,8735,11806,1.52,8405,1100,165,2245,3840,940,120,0.11183819155264724 -Kingsview Village-The Westway,6,NIA,22000,21723,0.013000000000000001,8159,7782,4356,5.05,8835,5335,450,2665,270,45,65,0.0050933786078098476 -Kingsway South,15,No Designation,9271,9170,0.011000000000000001,3710,3584,3593,2.58,3735,2210,120,1185,115,30,50,0.008032128514056224 -L'Amoreaux,117,Emerging Neighbourhood,43993,44919,-0.021,15486,15037,6144,7.16,17715,10005,1220,5895,370,85,120,0.004798193621224951 -Lambton Baby Point,114,No Designation,7985,7921,0.008,3217,3121,4697,1.7,3465,1610,135,1400,140,125,40,0.03607503607503607 -Lansing-Westgate,38,No Designation,16164,14642,0.10400000000000001,6943,6588,3038,5.32,7585,3705,195,3015,530,30,115,0.003955174686882004 -Lawrence Park North,105,No Designation,14607,14541,0.005,5622,5418,6407,2.28,6465,3065,195,2695,340,85,85,0.013147718484145398 -Lawrence Park South,103,No Designation,15179,15070,0.006999999999999999,6017,5749,4685,3.24,6615,3480,305,2160,420,135,110,0.02040816326530612 -Leaside-Bennington,56,No Designation,16828,17011,-0.011000000000000001,6712,6436,3596,4.68,7410,4475,350,1795,505,235,65,0.03171390013495277 -Little Portugal,84,No Designation,15559,12050,0.29100000000000004,8095,7427,12859,1.21,8965,2555,275,3450,1335,1260,90,0.14054656999442275 -Long Branch,19,No Designation,10084,9632,0.047,5145,4815,4584,2.2,5290,3145,230,1585,175,110,45,0.020793950850661626 -Malvern,132,Emerging Neighbourhood,43794,45086,-0.028999999999999998,13936,13426,4948,8.85,19225,10785,1400,6425,425,60,115,0.0031209362808842654 -Maple Leaf,29,No Designation,10111,10197,-0.008,3696,3556,4012,2.52,4580,2495,225,1620,180,10,60,0.002183406113537118 -Markland Wood,12,No Designation,10554,10436,0.011000000000000001,4348,4309,3614,2.92,4665,3025,275,1085,180,40,55,0.00857449088960343 -Milliken,130,No Designation,26572,27167,-0.022000000000000002,7825,7681,2830,9.39,10480,6540,1145,2510,180,40,50,0.003816793893129771 -Mimico (includes Humber Bay Shores),17,No Designation,33964,26541,0.28,20486,17781,4915,6.91,17975,11095,760,5040,505,310,265,0.017246175243393603 -Morningside,135,NIA,17455,17587,-0.008,6044,5879,3041,5.74,7450,4240,505,2485,130,10,75,0.0013422818791946308 -Moss Park,73,No Designation,20506,16306,0.258,12513,11554,14753,1.39,10420,2195,165,3295,3915,690,155,0.06621880998080615 -Mount Dennis,115,NIA,13593,13145,0.034,5386,5177,6442,2.11,5925,2725,330,2665,125,25,40,0.004219409282700422 -Mount Olive-Silverstone-Jamestown,2,NIA,32954,32788,0.005,10220,9875,7291,4.52,12600,6965,930,4110,385,35,170,0.002777777777777778 -Mount Pleasant East,99,No Designation,16775,15982,0.05,7715,7438,5411,3.1,7765,3590,310,2890,675,215,85,0.027688345138441726 -Mount Pleasant West,104,No Designation,29658,28593,0.037000000000000005,18495,17497,21969,1.35,16745,4745,370,9435,1840,250,100,0.014929829799940281 -New Toronto,18,No Designation,11463,10900,0.052000000000000005,5657,5372,3342,3.43,5520,2995,240,1815,265,155,60,0.028079710144927536 -Newtonbrook East,50,No Designation,16097,16423,-0.02,6470,6114,3926,4.1,6600,3245,295,2705,270,35,55,0.005303030303030303 -Newtonbrook West,36,No Designation,23831,23052,0.034,9416,8960,5070,4.7,10565,4760,625,4535,470,55,130,0.005205868433506862 -Niagara,82,No Designation,31180,21274,0.466,19660,18774,10156,3.07,21125,6820,640,6965,5070,1330,285,0.0629585798816568 -North Riverdale,68,No Designation,11916,12191,-0.023,5306,5008,6770,1.76,5875,1940,175,2335,695,615,115,0.1046808510638298 -North St. James Town,74,No Designation,18615,17832,0.044000000000000004,10109,9558,44321,0.42,9220,1290,140,5230,1945,475,135,0.05151843817787419 -O'Connor-Parkview,54,No Designation,18675,18316,0.02,7713,7468,3780,4.94,8075,4040,375,3240,245,95,85,0.011764705882352941 -Oakridge,121,NIA,13845,13497,0.026000000000000002,5586,5282,7444,1.86,4980,1795,130,2725,245,35,50,0.007028112449799197 -Oakwood Village,107,No Designation,21210,21073,0.006999999999999999,9235,8687,9511,2.23,10110,3825,410,4930,390,430,140,0.04253214638971316 -Old East York,58,No Designation,9233,9118,0.013000000000000001,3960,3790,3997,2.31,4525,2370,235,1560,170,145,30,0.032044198895027624 -Palmerston-Little Italy,80,No Designation,13826,13746,0.006,6862,6334,9601,1.44,7710,1755,175,2775,1390,1470,135,0.19066147859922178 -Parkwoods-Donalda,45,No Designation,34805,34617,0.005,13921,13315,4691,7.42,15270,8580,820,5275,420,45,115,0.0029469548133595285 -Pelmo Park-Humberlea,23,No Designation,10722,8710,0.231,3860,3710,2547,4.21,5300,3460,330,1375,85,10,40,0.0018867924528301887 -Playter Estates-Danforth,67,No Designation,7804,7653,0.02,3767,3576,8671,0.9,3860,1110,105,1980,355,255,50,0.06606217616580311 -Pleasant View,46,No Designation,15818,16144,-0.02,5703,5519,5273,3.0,6790,3980,420,2155,135,35,70,0.005154639175257732 -Princess-Rosethorn,10,No Designation,11051,11197,-0.013000000000000001,3958,3861,2138,5.17,4800,3515,230,950,75,0,30,0.0 -Regent Park,72,NIA,10803,10007,0.08,5183,4960,16880,0.64,4730,1130,115,2245,880,300,60,0.06342494714587738 -Rexdale-Kipling,4,No Designation,10529,10488,0.004,3989,3846,4229,2.49,4730,2930,235,1345,150,25,55,0.005285412262156448 -Rockcliffe-Smythe,111,NIA,22246,22267,-0.001,9487,9055,4414,5.04,9705,4860,690,3630,360,85,95,0.008758371973209686 -Roncesvalles,86,No Designation,14974,15050,-0.005,7305,6887,9851,1.52,7310,2340,195,2845,715,1075,140,0.14705882352941177 -Rosedale-Moore Park,98,No Designation,20923,20631,0.013999999999999999,10702,10054,4500,4.65,9010,3430,300,3530,1200,325,210,0.03607103218645949 -Rouge,131,No Designation,46496,45912,0.013000000000000001,13730,13389,1260,36.89,21500,13665,1510,5935,220,20,160,0.0009302325581395349 -Runnymede-Bloor West Village,89,No Designation,10070,9632,0.045,3987,3818,6333,1.59,4790,2195,95,1960,255,265,30,0.055323590814196244 -Rustic,28,NIA,9941,9951,-0.001,3726,3650,4734,2.1,3590,1905,200,1370,90,0,25,0.0 -Scarborough Village,139,NIA,16724,16609,0.006999999999999999,6133,5923,5395,3.1,6250,3065,350,2570,210,0,50,0.0 -South Parkdale,85,NIA,21849,21251,0.027999999999999997,12085,11390,9583,2.28,11180,2610,225,5785,1305,1145,120,0.10241502683363149 -South Riverdale,70,No Designation,27876,25642,0.087,12732,12073,3136,8.89,13765,5000,655,5315,1425,1145,200,0.08318198329095532 -St.Andrew-Windfields,40,No Designation,17812,17958,-0.008,6685,6428,2430,7.33,7155,4555,245,1975,270,20,80,0.002795248078266946 -Steeles,116,Emerging Neighbourhood,24623,25017,-0.016,8032,7819,5436,4.53,9370,5860,975,2195,245,20,60,0.0021344717182497333 -Stonegate-Queensway,16,No Designation,25051,24691,0.015,10896,10377,3199,7.83,11750,7090,440,3505,380,235,115,0.02 -Tam O'Shanter-Sullivan,118,No Designation,27446,27398,0.002,10384,10063,5073,5.41,10920,5950,705,3820,300,35,110,0.003205128205128205 -Taylor-Massey,61,NIA,15683,15594,0.006,6452,6272,15528,1.01,6665,1940,135,4245,260,55,35,0.008252063015753939 -The Beaches,63,No Designation,21567,21130,0.021,9926,9428,6058,3.56,10220,5165,590,2995,750,570,135,0.05577299412915851 -Thistletown-Beaumond Heights,3,NIA,10360,10138,0.022000000000000002,3472,3280,3130,3.31,4345,2860,320,1030,110,15,20,0.0034522439585730723 -Thorncliffe Park,55,NIA,21108,19225,0.098,7225,7123,6787,3.11,7025,2835,290,3190,565,55,90,0.007829181494661922 -Trinity-Bellwoods,81,No Designation,16556,16802,-0.015,7562,6910,9570,1.73,8255,2075,315,2605,1760,1380,125,0.16717141126589946 -University,79,No Designation,7607,7782,-0.022000000000000002,3826,3393,5395,1.41,3505,585,90,1260,950,555,65,0.15834522111269614 -Victoria Village,43,NIA,17510,17182,0.019,7562,7412,3710,4.72,7330,3650,320,3025,260,20,55,0.002728512960436562 -Waterfront Communities-The Island,77,No Designation,65913,43361,0.52,47209,40756,8943,7.37,43785,9100,760,10915,20855,1570,610,0.035857028662784056 -West Hill,136,NIA,27392,26547,0.032,10318,9986,2856,9.59,11050,5980,640,3990,290,30,95,0.0027149321266968325 -West Humber-Clairville,1,No Designation,33312,34100,-0.023,11045,10285,1117,29.81,15575,9445,1140,4380,425,60,95,0.0038523274478330658 -Westminster-Branson,35,Emerging Neighbourhood,26274,25446,0.033,10454,10234,7339,3.58,11905,5585,550,5275,345,60,110,0.00503989920201596 -Weston,113,NIA,17992,18170,-0.01,8061,7600,7197,2.5,7805,4015,430,2975,285,30,90,0.003843689942344651 -Weston-Pelham Park,91,NIA,11098,12010,-0.076,4559,4226,7601,1.46,5185,2070,415,2200,225,205,70,0.03953712632594021 -Wexford/Maryvale,119,No Designation,27917,27018,0.033,10462,10106,2724,10.25,12360,7025,595,4170,380,80,105,0.006472491909385114 -Willowdale East,51,No Designation,50434,45041,0.12,23901,22304,10087,5.0,21785,9890,695,9390,1550,50,215,0.0022951572182694515 -Willowdale West,37,No Designation,16936,15004,0.129,8054,7549,5820,2.91,6900,3260,275,2845,405,55,55,0.007971014492753623 -Willowridge-Martingrove-Richview,7,No Designation,22156,21343,0.038,8721,8509,4007,5.53,9360,6220,515,2380,140,20,65,0.002136752136752137 -Woburn,137,NIA,53485,53350,0.003,19098,18436,4345,12.31,21595,11505,1405,7635,780,45,210,0.002083815698078259 -Woodbine Corridor,64,No Designation,12541,11703,0.07200000000000001,5620,5454,7838,1.6,5965,2480,165,2540,340,380,70,0.06370494551550712 -Woodbine-Lumsden,60,No Designation,7865,7826,0.005,3604,3449,6722,1.17,4100,1685,120,1940,145,175,30,0.042682926829268296 -Wychwood,94,No Designation,14349,13986,0.026000000000000002,6185,5887,8541,1.68,6595,2190,195,3005,525,610,55,0.09249431387414708 -Yonge-Eglinton,100,No Designation,11817,10578,0.11699999999999999,6103,5676,7162,1.65,5935,1970,155,2935,635,145,90,0.02443133951137321 -Yonge-St.Clair,97,No Designation,12528,11652,0.075,7475,7012,10708,1.17,6345,2050,155,3170,715,155,95,0.02442868400315209 -York University Heights,27,NIA,27593,27713,-0.004,11051,10170,2086,13.23,12790,5945,665,5405,585,115,75,0.008991399530883503 -Yorkdale-Glen Park,31,Emerging Neighbourhood,14804,14687,0.008,5847,5344,2451,6.04,6420,3205,355,2400,360,30,85,0.004672897196261682 diff --git a/05_src/data/slides_data/subway_stations.csv b/05_src/data/slides_data/subway_stations.csv deleted file mode 100644 index cff6bdce2..000000000 --- a/05_src/data/slides_data/subway_stations.csv +++ /dev/null @@ -1,78 +0,0 @@ -stop_lat,stop_lon,station -43.666061,-79.411065,BATHURST STATION -43.670149,-79.390089,BAY STATION -43.766872,-79.386703,BAYVIEW STATION -43.769202,-79.376312,BESSARION STATION -43.670049,-79.385389,BLOOR STATION -43.67715,-79.357849,BROADVIEW STATION -43.673452,-79.369136,CASTLE FRANK STATION -43.678241,-79.352502,CHESTER STATION -43.664124,-79.418567,CHRISTIE STATION -43.660149,-79.382688,COLLEGE STATION -43.684079,-79.322919,COXWELL STATION -43.697614,-79.396911,DAVISVILLE STATION -43.776123,-79.346242,DON MILLS STATION -43.681149,-79.337487,DONLANDS STATION -43.753311,-79.478693,DOWNSVIEW PARK STATION -43.660849,-79.43389,DUFFERIN STATION -43.655949,-79.380788,DUNDAS STATION -43.656975,-79.453099,DUNDAS WEST STATION -43.674949,-79.40709,DUPONT STATION -43.70565,-79.399863,EGLINTON STATION -43.699447,-79.436493,EGLINTON WEST STATION -43.766548,-79.276186,ELLESMERE STATION -43.780942,-79.414829,FINCH STATION -43.764855,-79.491118,FINCH WEST STATION -43.709467,-79.441148,GLENCAIRN STATION -43.682549,-79.331687,GREENWOOD STATION -43.65397,-79.466354,HIGH PARK STATION -43.783359,-79.523454,HIGHWAY 407 STATION -43.645159,-79.524843,ISLINGTON STATION -43.649911,-79.484072,JANE STATION -43.65565,-79.459571,KEELE STATION -43.732739,-79.263253,KENNEDY STATION -43.648449,-79.377688,KING STATION -43.637209,-79.536117,KIPLING STATION -43.659246,-79.442463,LANSDOWNE STATION -43.750347,-79.270358,LAWRENCE EAST STATION -43.725556,-79.402351,LAWRENCE STATION -43.716218,-79.444374,LAWRENCE WEST STATION -43.77041,-79.367644,LESLIE STATION -43.689037,-79.301926,MAIN STREET STATION -43.774882,-79.251654,MCCOWAN STATION -43.770448,-79.272286,MIDLAND STATION -43.667249,-79.393389,MUSEUM STATION -43.767347,-79.412492,NORTH YORK CENTRE STATION -43.650156,-79.495072,OLD MILL STATION -43.651749,-79.386888,OSGOODE STATION -43.662271,-79.426546,OSSINGTON STATION -43.680042,-79.344585,PAPE STATION -43.77675,-79.509372,PIONEER VILLAGE STATION -43.652149,-79.379188,QUEEN STATION -43.660549,-79.390689,QUEEN'S PARK STATION -43.66359,-79.590572,RENFORTH STATION -43.676049,-79.388089,ROSEDALE STATION -43.780709,-79.130359,ROUGE HILL GO STATION LOOP -43.648338,-79.511178,ROYAL YORK STATION -43.651732,-79.475954,RUNNYMEDE STATION -43.77429,-79.25875,SCARBOROUGH CENTRE STATION -43.749571,-79.462186,SHEPPARD WEST STATION -43.761885,-79.412389,SHEPPARD-YONGE STATION -43.672103,-79.376162,SHERBOURNE STATION -43.667271,-79.403784,SPADINA STATION -43.648249,-79.385088,ST ANDREW STATION -43.687857,-79.391958,ST CLAIR STATION -43.684231,-79.415227,ST CLAIR WEST STATION -43.668655,-79.398053,ST GEORGE STATION -43.655249,-79.388388,ST PATRICK STATION -43.682049,-79.390789,SUMMERHILL STATION -43.645652,-79.37921,UNION STATION -43.794021,-79.527906,VAUGHAN METROPOLITAN CENTRE STATION -43.693745,-79.288368,VICTORIA PARK STATION -43.710967,-79.279432,WARDEN STATION -43.665358,-79.383941,WELLESLEY STATION -43.734475,-79.45092,WILSON STATION -43.68644,-79.312471,WOODBINE STATION -43.670997,-79.385956,YONGE STATION -43.745172,-79.40593,YORK MILLS STATION -43.725248,-79.447692,YORKDALE STATION diff --git a/05_src/data/slides_data/ttc_bus_delay_data_2021.xlsx b/05_src/data/slides_data/ttc_bus_delay_data_2021.xlsx deleted file mode 100644 index b9450e9b8..000000000 Binary files a/05_src/data/slides_data/ttc_bus_delay_data_2021.xlsx and /dev/null differ diff --git a/05_src/data/slides_data/ttc_subway_delay_codes.xlsx b/05_src/data/slides_data/ttc_subway_delay_codes.xlsx deleted file mode 100644 index 242ab8e12..000000000 Binary files a/05_src/data/slides_data/ttc_subway_delay_codes.xlsx and /dev/null differ diff --git a/05_src/data/slides_data/ttc_subway_delay_data_2021.xlsx b/05_src/data/slides_data/ttc_subway_delay_data_2021.xlsx deleted file mode 100644 index b7fe5ac2d..000000000 Binary files a/05_src/data/slides_data/ttc_subway_delay_data_2021.xlsx and /dev/null differ diff --git a/05_src/data/slides_data/ttc_subway_delays_w_reasons.xlsx b/05_src/data/slides_data/ttc_subway_delays_w_reasons.xlsx deleted file mode 100644 index 799dc6de8..000000000 Binary files a/05_src/data/slides_data/ttc_subway_delays_w_reasons.xlsx and /dev/null differ diff --git a/.github/issue_template.yaml b/Assignments/Shell and Git/.github/issue_template.yaml similarity index 100% rename from .github/issue_template.yaml rename to Assignments/Shell and Git/.github/issue_template.yaml diff --git a/.github/pull_request_template.md b/Assignments/Shell and Git/.github/pull_request_template.md similarity index 100% rename from .github/pull_request_template.md rename to Assignments/Shell and Git/.github/pull_request_template.md diff --git a/Assignments/Shell and Git/.github/workflows/autograder.yml b/Assignments/Shell and Git/.github/workflows/autograder.yml new file mode 100644 index 000000000..565cd32b4 --- /dev/null +++ b/Assignments/Shell and Git/.github/workflows/autograder.yml @@ -0,0 +1,42 @@ +name: Assignment autograder +on: + pull_request: + branches: + - main + types: [opened, synchronize, reopened] +jobs: + autograder: + name: Assignment autograder + if: startsWith(github.head_ref, 'assignment') + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r 03_instructional_team/autograder/requirements.txt + - name: Setup working directory for script + run: | + UUID=$(uuidgen) + echo "UUID=$UUID" >> $GITHUB_ENV + mkdir /tmp/$UUID + cp $GITHUB_WORKSPACE/02_activities/assignments/assignment.sh /tmp/$UUID + - name: Run assignment script + run: | + bash -c "bash assignment.sh 2>&1 | tee /tmp/${{ env.UUID }}_output.txt" + working-directory: /tmp/${{ env.UUID }} + - name: Grade responses + id: grade + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO_OWNER: ${{ github.repository_owner }} + REPO_NAME: ${{ github.event.repository.name }} + PR_NUMBER: ${{ github.event.pull_request.number }} + REPO_BRANCH: ${{ github.event.pull_request.head.ref }} + WORKING_DIR: /tmp/${{ env.UUID }} + run: | + wget -O /tmp/autograder.py https://github.com/UofT-DSI/shell/raw/refs/heads/main/03_instructional_team/autograder/autograder.py + python /tmp/autograder.py diff --git a/.github/workflows/automatic_pr_comment.yaml b/Assignments/Shell and Git/.github/workflows/automatic_pr_comment.yaml similarity index 75% rename from .github/workflows/automatic_pr_comment.yaml rename to Assignments/Shell and Git/.github/workflows/automatic_pr_comment.yaml index 3218a6a71..0fb764cd0 100644 --- a/.github/workflows/automatic_pr_comment.yaml +++ b/Assignments/Shell and Git/.github/workflows/automatic_pr_comment.yaml @@ -1,4 +1,4 @@ -name: Automatic PR Comment +name: UofT-DSI Main Repository PR Workflow on: pull_request_target: @@ -6,6 +6,7 @@ on: jobs: comment: + if: github.repository_owner == 'UofT-DSI' runs-on: ubuntu-latest steps: - name: Comment on PR @@ -16,11 +17,9 @@ jobs: const repo = context.repo; const commentBody = `Hello, thank you for your contribution. If you are a participant, please close this pull request and open it in your own forked repository instead of here. Please read the instructions on your onboarding [Assignment Submission Guide](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md) more carefully. If you are not a participant, please give us up to 72 hours to review your PR. Alternatively, you can reach out to us directly to expedite the review process.`; // Check if the PR is made to a repo in the UofT-DSI organization - if (repo.owner === 'UofT-DSI') { - github.rest.issues.createComment({ - owner: repo.owner, - repo: repo.repo, - issue_number: issue_number, - body: commentBody - }); - } \ No newline at end of file + github.rest.issues.createComment({ + owner: repo.owner, + repo: repo.repo, + issue_number: issue_number, + body: commentBody + }); \ No newline at end of file diff --git a/Assignments/Shell and Git/.gitignore b/Assignments/Shell and Git/.gitignore new file mode 100644 index 000000000..a3442bc64 --- /dev/null +++ b/Assignments/Shell and Git/.gitignore @@ -0,0 +1,18 @@ +.DS_Store +.vscode/ +03_instructional_team/lessons/pdf/* +03_instructional_team/lessons/html/* + +# local node modules +node_modules/ +package-lock.json +package.json + +### Running the assignment script unzips a large number of files into the tree +# Ignore all files in shell/02_activities/assignments/ +02_activities/assignments/* + +# Un-ignore the specific files +!02_activities/assignments/assignment.sh +!02_activities/assignments/assignment_instructions.md + diff --git a/Assignments/Shell and Git/01_materials/slides/optional_unix_slides.pdf b/Assignments/Shell and Git/01_materials/slides/optional_unix_slides.pdf new file mode 100644 index 000000000..2cab6d03d Binary files /dev/null and b/Assignments/Shell and Git/01_materials/slides/optional_unix_slides.pdf differ diff --git a/Assignments/Shell and Git/01_materials/slides/unix_slides.pdf b/Assignments/Shell and Git/01_materials/slides/unix_slides.pdf new file mode 100644 index 000000000..ad8a49edc Binary files /dev/null and b/Assignments/Shell and Git/01_materials/slides/unix_slides.pdf differ diff --git a/Assignments/Shell and Git/02_activities/assignments/assignment.sh b/Assignments/Shell and Git/02_activities/assignments/assignment.sh new file mode 100644 index 000000000..1aeaaed4b --- /dev/null +++ b/Assignments/Shell and Git/02_activities/assignments/assignment.sh @@ -0,0 +1,51 @@ +#!/bin/bash +set -x + +############################################ +# DSI CONSULTING INC. Project setup script # +############################################ +# This script creates standard analysis and output directories +# for a new project. It also creates a README file with the +# project name and a brief description of the project. +# Then it unzips the raw data provided by the client. + +mkdir analysis output +touch README.md +echo "# Project Name: DSI Consulting Inc." > README.md +touch analysis/main.py + +# download client data +wget -O rawdata.zip https://github.com/UofT-DSI/shell/raw/refs/heads/main/02_activities/assignments/rawdata.zip +unzip rawdata.zip + +########################################### +# Complete assignment here + +# 1. Create a directory named data +mkdir data + +# 2. Move the ./rawdata directory to ./data/raw +mv rawdata data/raw + +# 3. List the contents of the ./data/raw directory +ls data/raw + +# 4. In ./data/processed, create the following directories: server_logs, user_logs, and event_logs +mkdir -p data/processed/{server_logs,user_logs,event_logs} + +# 5. Copy all server log files (files with "server" in the name AND a .log extension) from ./data/raw to ./data/processed/server_logs +cp data/raw/*server*log*.log data/processed/server_logs + +# 6. Repeat the above step for user logs and event logs +cp data/raw/*user*log*.log data/processed/user_logs && cp data/raw/*event*log*.log data/processed/event_logs + +# 7. For user privacy, remove all files containing IP addresses (files with "ipaddr" in the filename) from ./data/raw and ./data/processed/user_logs +rm -f data/raw/*ipaddr* && rm -f data/processed/user_logs/*ipaddr* + +# 8. Create a file named ./data/inventory.txt that lists all the files in the subfolders of ./data/processed +find data/processed -type f > data/inventory.txt + + +############################################ + +echo "Project setup is complete!" diff --git a/Assignments/Shell and Git/02_activities/assignments/assignment_instructions.md b/Assignments/Shell and Git/02_activities/assignments/assignment_instructions.md new file mode 100644 index 000000000..7f9dd3447 --- /dev/null +++ b/Assignments/Shell and Git/02_activities/assignments/assignment_instructions.md @@ -0,0 +1,93 @@ +# Shell / Git Assignment +You work in the data team at a consulting firm, and one of your team's products is helping companies optimize and manage their cloud hosting expenditures. + +Your team has an existing bash script that initializes an analysis directory for each new client. + +You've been asked to update this script to also automate the initial organization of data files provided by clients. + +## Instructions + +### Setup +1. **Forking the Repository**: If you have not already done so, fork this Shell learning module repository following these [instructions](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md#setting-up). + - Forking creates a copy of the main repository in your GitHub account. This allows you to work on your version without affecting the original repository. +2. **Create a Branch for Your Work**: To keep your changes organized, create a new branch named `assignment`: + ```bash + git checkout -b assignment + ``` + +--- + +### Part 1: Update the Data Ingest Script +1. **Modify the Script**: Using the template in ``02_activities/assignments/assignment.sh``, fill in the correct commands as described by the comments. + - It may help to paste your commands into the Terminal as you write your script (or vice versa) to test as you go +2. **Test Your Script Locally**: Execute your script to ensure it works as expected. You may need to make additional tweaks and re-run it until you are satisfied with the results. +3. **Commit Your Changes**: As you complete parts of your script and confirmed that it is working correctly, commit your changes to ensure your progress is saved. + ```bash + git commit assignment.sh -m "describe your changes here" + ``` + +--- + +### Part 2: Merge in Updates from Your Coworkers +Your coworkers have made some other changes to the script. You'll need to incorporate their updates and resolve any conflicts. +1. **Merge the Updates**: Use the following command to pull in changes from the coworker's branch: + ```bash + git pull https://github.com/UofT-DSI/shell coworker-changes --no-rebase + ``` +2. **Resolve Merge Conflicts**: If there are any conflicts, use ```git status``` to see which files are affected, resolve the conflicts manually, and then mark them as resolved. +3. **Commit the Merge**: Once all conflicts are resolved, commit the merge. + +--- + +### Part 3: Test Your Script +1. **Re-test Your Script**: Make sure that your script still works after merging the updates. +2. **Optional Clean Test Setup**: If you'd like to test your script in a clean environment, follow these steps: + ```bash + mkdir assignment_test_clean # make an empty directory + ``` + ```bash + cp assignment.sh assignment_test_clean # copy your script into the empty directory + ``` + ```bash + cd assignment_test_clean # change your working directory to the new clean directory + ``` +3. **Run Your Script**: + ```bash + bash assignment.sh + ``` +4. **Verify the Output**: + - Check if the expected directories are created. + - Verify that files are moved or copied as expected. + - Ensure that files that should be deleted are no longer present. + +--- + +### Submit Your Changes for Review +1. **Commit Your Final Changes**: Ensure all changes are committed in your `assignment` branch. You can verify this with: + ```bash + git status + ``` +2. **Enable GitHub Actions**: Click on the **Actions** tab in your repository and enable workflows if prompted. +3. **Create a Pull Request**: + - Open a pull request from your `assignment` branch to your repository's `main` branch. + - The autograder will run automatically and post your assignment grade as a comment. + +--- + +## Submission Information + +🚨 **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. + +### Submission Parameters: +* Submission Due Date: `2024-11-24 - 23:59` +* The branch name for your repo should be: `assignment` +* What to submit for this assignment: + * One or more commits that update the `assignment.sh` script +* What the pull request link should look like for this assignment: `https://github.com//shell/pull/` + * 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. + +Checklist: +- [ ] Create a branch called `assignment`. +- [ ] Ensure that your repository is public. +- [ ] Review [the PR description guidelines](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md#guidelines-for-pull-request-descriptions) and adhere to them. +- [ ] Verify that your link is accessible in a private browser window. \ No newline at end of file diff --git a/Assignments/Shell and Git/02_activities/homework/homework.sh b/Assignments/Shell and Git/02_activities/homework/homework.sh new file mode 100644 index 000000000..a43292248 --- /dev/null +++ b/Assignments/Shell and Git/02_activities/homework/homework.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# On your terminal, input all the commands you have used to create the following: + +# 1. How would you create 5 directories? Feel free to use any name for your directories. + +# 2. How would you verify the creation of all 5 directories? + +# 3. In each directory, how would you create 5 .txt files and write "I love data" into each within the directories? + +# 4. How would you verify the presence of all 5 files? + +# 5. How would you append to one of the existing files " and machine learning!"? + +# 6. How would you verify that the text was indeed appended to the existing file? + +# 7. How would you delete all files except for the one with the appended text? + +# 8. How would you navigate back to the parent directory containing all the directories? + +# 9. How would you remove each directory along with its contents? + +# 10. How would you verify that all directories and files have been deleted? diff --git a/03_instructional_team/README.md b/Assignments/Shell and Git/03_instructional_team/README.md similarity index 72% rename from 03_instructional_team/README.md rename to Assignments/Shell and Git/03_instructional_team/README.md index a2574e741..d16e11b24 100644 --- a/03_instructional_team/README.md +++ b/Assignments/Shell and Git/03_instructional_team/README.md @@ -1,4 +1,4 @@ -# Technical Facilitator Playbook +# Instructional Team Playbook ## How do you interact with the repo? The Technical Facilitator will deliver the content in the `/01_materials/slides` directory. You are encouraged to live code with participants during live sessions. Please ensure that live coding files are uploaded to a new directory called `/live_code` under `/04_cohort_three` in this repository using a new branch. Please open a pull request for it to be merged. @@ -13,37 +13,22 @@ The `/01_materials/slides` directory contains the live learning session slides. The `/02_activities/assignments` contains assignments participants should submit for evaluation as `complete` or `incomplete`. The assignments measure a participant's achievement of the learning outcomes, and help technical facilitators determine if a participant has successfully completed the learning module. -The `/02_activities/homework` directory contains homework participants can complete to further develop and practice the skills covered in a learning module. Homework is optional, but participants are encouraged to complete as much as they can. +The `/02_activities/homework` directory contains homework participants can complete to further develop and practice the skills covered in a learning module. Homework is optional, but participants are encouraged to complete as much as they can. ### Week 1 -#### Live Learning Session 1 -The focus of this session is to deliver the `data_types` and `control_flow` content first, and let the cohort play around with it via `homework` or `assignment`. For `control_flow`, focus on `conditionals` and `for loops`. The cohort can go through the rest of the Python notebook and learn interactively. +#### Live Learning Session +The focus of the live learning session is to introduce participants to basic bash commands such as `cd` and `pwd`, as well as creating files using `touch` and directories using `mkdir`. The module also introduces intermediate commands like `rm`, how to recursively remove files from a nested directory, and how to make copies or move files using `mv`. -#### Live Learning Session 2 -The focus of this session is to deliver the `comments_and_errors`, `inputs`, `strings`, and `converting_types` content next. For `converting_types`, you can allow the cohort to go through the `converting_types` asynchronously, rather than synchronously. +Note: If someone wants to open up the "manual", recommend they use the `man` command. -#### Live Learning Session 3 -TBD - -#### Assignment 1 -The assignment guides participants through programming an anagram checker. There are three parts to this assignment, where each part builds upon each other. Examples are given and it is up to the participants how they build the program. - -### Week 2 - -#### Live Learning Session 4 -Introduce the cohort to `functions` and `testing`. Spend more time on `functions` and emphasize how it allows anyone to create reusable blocks of code. - -#### Live Learning Session 5 -Introduce the cohort to `object_oriented_programming` and `numPy`. The emphasis will be on `numPy` as it is needed for their second assignment. - -#### Assignment 2 -The assignment in the second week of this module is to analyze a fictional clinical trial where 60 patients were administered a new drug for arthritis. Participants must evaluate the effectiveness of a fictional medication designed to reduce inflammation caused by arthritis flare-ups. +#### Assignment +The assignment for this week is to have participants find the secret password by navigating directories and files. ## How do you assign assignments? -Technical Facilitators are encouraged to introduce assignments as early as possible in the learning module. The Technical Facilitator should describe the assignment to participants and explain how the topics covered in the module will equip them with the knowledge and skills to complete the assignment. +Technical Facilitators are encouraged to introduce assignments as early as possible in the learning module. The Technical Facilitator should describe the assignment to participants and explain how the topics covered in the module will equip them with the knowledge and skills to complete the assignment. -## How an assignment is expected to be completed and delivered? +## How is an assignment is expected to be completed and delivered? Participants are expected to complete the assignment by the end of the first week. They will deliver the assignment by opening a pull request on their copied repo. The participants will also add a Learning Support Staff as a reviewer indicating they delivered a completed assignment, and it is ready to be evaluated as `complete` or `incomplete`. ## What is the criteria for `complete` or `incomplete`? diff --git a/Assignments/Shell and Git/03_instructional_team/autograder/autograder.py b/Assignments/Shell and Git/03_instructional_team/autograder/autograder.py new file mode 100644 index 000000000..e52807074 --- /dev/null +++ b/Assignments/Shell and Git/03_instructional_team/autograder/autograder.py @@ -0,0 +1,311 @@ +import pandas as pd +import os +import requests +import glob + +# get environment variables for output +github_step_output = os.environ['GITHUB_STEP_SUMMARY'] +github_token = os.environ["GITHUB_TOKEN"] +github_repo_owner = os.environ["REPO_OWNER"] +github_repo_name = os.environ["REPO_NAME"] +github_repo_branch = os.environ["REPO_BRANCH"] +github_pr_number = os.environ["PR_NUMBER"] +working_dir = os.environ["WORKING_DIR"] + +status_c = '✅' +status_i = '❌' + + +# functions +def is_commit_in_branch( + owner, + repo, + branch, + other_owner, + other_repo, + other_branch, +): + headers = {} + headers['Authorization'] = f'token {github_token}' + + # Step 1: Get the latest commit SHA of the other repository's branch + other_commit_url = f'https://api.github.com/repos/{other_owner}/{other_repo}/commits/{other_branch}' + response = requests.get(other_commit_url, headers=headers) + response.raise_for_status() + other_commit_sha = response.json()['sha'] + print(f'Commit SHA of {other_owner}/{other_repo}/{other_branch}: {other_commit_sha}') + + # Step 2: Check if this commit exists in the given repository + commit_in_repo_url = f'https://api.github.com/repos/{owner}/{repo}/commits/{other_commit_sha}' + response = requests.get(commit_in_repo_url, headers=headers) + if response.status_code == 404: + # Commit does not exist in the given repository + print(f'Commit {other_commit_sha} not found in {owner}/{repo}') + return False + response.raise_for_status() + + # Step 3: Compare the commit with the branch in the given repository + compare_url = f'https://api.github.com/repos/{owner}/{repo}/compare/main...{branch}' + response = requests.get(compare_url, headers=headers) + response.raise_for_status() + compare_data = response.json() + + commit_shas = [commit['sha'] for commit in compare_data['commits']] + + # If the status is 'ahead' or 'identical', the commit is in the history + print(f'Commit SHAs in {owner}/{repo}/{branch}: {commit_shas}') + return other_commit_sha in commit_shas + + +# score table +s = [] + +# load script output +with open(working_dir + '_output.txt', 'r') as f: + script_rslt = f.read() + +script_rslt = script_rslt.split('\n+') +script_rslt = [{ + 'command': x.split('\n')[0][1:].strip(), + 'output': x.split('\n')[1:] +} for x in script_rslt] + +qn = 0 + +############################################################################################################ +# Step 1: Check if 'data' directory exists +qn += 1 +if os.path.isdir(os.path.join(working_dir, 'data')): + s.append({'question': qn, 'status': 1}) +else: + s.append({ + 'question': qn, + 'status': 0, + 'comment': 'data directory does not exist' + }) + +############################################################################################################ +# Step 2: Check that 'rawdata' directory was moved to 'data/raw' +qn += 1 +if os.path.isdir(os.path.join(working_dir, 'data/raw')) and not os.path.exists( + os.path.join(working_dir, 'rawdata')): + s.append({'question': qn, 'status': 1}) +else: + s.append({ + 'question': qn, + 'status': 0, + 'comment': 'rawdata not moved to data/raw' + }) + +############################################################################################################ +# Step 4: Check that 'ls data/raw' command was run +qn += 1 +indx = [i for i, x in enumerate(script_rslt) if x['command'].startswith('ls')] +if len(indx) > 0: + if any(['data/raw' in script_rslt[i]['command'] for i in indx]): + s.append({'question': qn, 'status': 1}) + else: + s.append({ + 'question': qn, + 'status': 0, + 'comment': '`ls` command run on wrong directory' + }) +else: + s.append({'question': qn, 'status': 0, 'comment': '`ls` command not run'}) + +############################################################################################################ +# Step 5: Check that in 'data/processed', the directories server_logs, user_logs, and event_logs were created +qn += 1 +dirs = [ + 'data/processed/server_logs', 'data/processed/user_logs', + 'data/processed/event_logs' +] +if all([os.path.isdir(os.path.join(working_dir, d)) for d in dirs]): + s.append({'question': qn, 'status': 1}) +else: + missing_dirs = [ + d for d in dirs if not os.path.isdir(os.path.join(working_dir, d)) + ] + s.append({ + 'question': qn, + 'status': 0, + 'comment': f'Missing directories: {", ".join(missing_dirs)}' + }) + + +############################################################################################################ +# Step 6: Check that server log files were copied from 'data/raw' to 'data/processed/server_logs' +def check_logs(log_type): + raw_logs = glob.glob( + os.path.join(working_dir, f'data/raw/*{log_type}*.log')) + processed_logs = glob.glob( + os.path.join(working_dir, f'data/processed/{log_type}_logs/*')) + if len(raw_logs) == 0: + return {'status': 0, 'comment': f'No {log_type} log files in data/raw'} + else: + raw_log_files = [os.path.basename(f) for f in raw_logs] + processed_log_files = [os.path.basename(f) for f in processed_logs] + if all([f in processed_log_files for f in raw_log_files]): + return {'status': 1} + else: + return { + 'status': 0, + 'comment': f'Missing files in data/processed/{log_type}_logs' + } + + +# Check server logs +qn += 1 +result = check_logs('server') +if result['status'] == 1: + s.append({'question': qn, 'status': 1}) +else: + s.append({'question': qn, 'status': 0, 'comment': result['comment']}) + +############################################################################################################ +# Step 7: Check that user logs and event logs were copied appropriately +qn += 1 + +result_user = check_logs('user') +result_event = check_logs('event') + +if result_user['status'] == 1 and result_event['status'] == 1: + s.append({'question': qn, 'status': 1}) +else: + comments = [] + if result_user['status'] == 0: + comments.append(result_user['comment']) + if result_event['status'] == 0: + comments.append(result_event['comment']) + s.append({'question': qn, 'status': 0, 'comment': '; '.join(comments)}) + +############################################################################################################ +# Step 8: Check that files containing 'ipaddr' in the filename were removed from 'data/raw' and 'data/processed/user_logs' +qn += 1 + +ipaddr_files_raw = glob.glob(os.path.join(working_dir, 'data/raw/*ipaddr*')) +ipaddr_files_user_logs = glob.glob( + os.path.join(working_dir, 'data/processed/user_logs/*ipaddr*')) + +if not ipaddr_files_raw and not ipaddr_files_user_logs: + s.append({'question': qn, 'status': 1}) +else: + comments = [] + if ipaddr_files_raw: + comments.append( + 'One or more files with ipaddr in data/raw not removed.') + if ipaddr_files_user_logs: + comments.append( + 'One or more files with ipaddr in data/processed/user_logs not removed' + ) + s.append({'question': qn, 'status': 0, 'comment': '; '.join(comments)}) + +############################################################################################################ +# Step 9: Check that 'data/inventory.txt' was created and contains all files in 'data/processed' subfolders +qn += 1 + +if os.path.isfile(os.path.join(working_dir, 'data/inventory.txt')): + with open(os.path.join(working_dir, 'data/inventory.txt'), 'r') as f: + inventory_files = [line.strip() for line in f.readlines()] + + # Now, find all files in 'data/processed' and its subfolders + processed_files = [] + for root, dirs, files in os.walk( + os.path.join(working_dir, 'data/processed')): + # remove working_dir from start of root + root = root[len(working_dir) + 1:] + + for name in files: + processed_files.append(name) + + foldername_in_inventory = ['data/processed' in x for x in inventory_files] + files_in_inventory = [ + any([f in x for x in inventory_files]) for f in processed_files + ] + + if foldername_in_inventory and all(files_in_inventory): + s.append({'question': qn, 'status': 1}) + else: + s.append({ + 'question': + qn, + 'status': + 0, + 'comment': + 'data/inventory.txt does not contain all files in data/processed' + }) +else: + s.append({ + 'question': qn, + 'status': 0, + 'comment': 'data/inventory.txt does not exist' + }) + +############################################################################################################ +# Step 10: Check if the coworker's commit ID is in the commit history +qn += 1 + +try: + # Check if commit_id is in git rev-list HEAD using grep and wc -l + result = is_commit_in_branch( + github_repo_owner, + github_repo_name, + github_repo_branch, + 'UofT-DSI', + 'shell', + 'coworker-changes', + ) + if result: + s.append({'question': qn, 'status': 1}) + else: + s.append({ + 'question': + qn, + 'status': + 0, + 'comment': + f'`coworker-changes` branch not found in commit history' + }) + +except Exception as e: + s.append({ + 'question': qn, + 'status': 0, + 'comment': f'Error checking git commit history.' + }) + print(f"Error checking git commit history: {e}") + +############################################################################################################ + +### Postprocessing ### +df = pd.DataFrame(s) +df.fillna('', inplace=True) + +# compute percentage correct +correct = df['status'].sum() +total = df.shape[0] + +# output the score table +df['status'] = df['status'].replace({1: status_c, 0: status_i}) +df.to_markdown(github_step_output, index=False) + +# also display markdown to console +render_md = df.to_markdown(index=False) +print(render_md) + +# create GitHub comment with markdown +headers = { + "Authorization": f"Bearer {github_token}", + "Accept": "application/vnd.github+json" +} +requests.post( + f"https://api.github.com/repos/{github_repo_owner}/{github_repo_name}/issues/{github_pr_number}/comments", + json={"body": "## Autograder results\n" + render_md}, + headers=headers) + +if correct == total: + print('All tests passed!') + exit(0) +else: + print(f'Only {correct}/{total} tests passed.') + exit(0) diff --git a/Assignments/Shell and Git/03_instructional_team/autograder/requirements.txt b/Assignments/Shell and Git/03_instructional_team/autograder/requirements.txt new file mode 100644 index 000000000..60edec395 --- /dev/null +++ b/Assignments/Shell and Git/03_instructional_team/autograder/requirements.txt @@ -0,0 +1,3 @@ +pandas +tabulate +requests diff --git a/Assignments/Shell and Git/03_instructional_team/generate_slides.sh b/Assignments/Shell and Git/03_instructional_team/generate_slides.sh new file mode 100644 index 000000000..12c01991d --- /dev/null +++ b/Assignments/Shell and Git/03_instructional_team/generate_slides.sh @@ -0,0 +1,182 @@ +#!/bin/bash + +# CONFIGURATION +folder_md="markdown_slides/" +folder_output="../01_materials/slides" # This will be used for both PDF and HTML + +# Clear the screen for the splash screen +clear + +# Display the splash screen +echo "============================================" +echo " Generating Slides" +echo "============================================" +echo "" +echo "Configuration:" +echo " - Markdown Folder: $folder_md" +echo " - Output Folder: $folder_output" +echo "" +echo "To change the configuration, please manually change them in the file." +echo "============================================" +echo " Processing..." +echo -e "============================================\n\n" + +# ---------- # +# Generate HTML or PDF versions of slides, based on input flag. +# Usage: +# To generate HTML: ./generate_slides.sh --html [theme] +# To generate PDF: ./generate_slides.sh --pdf [theme] +# For help: ./generate_slides.sh --help +# ---------- # + +function show_help() { + echo -e "\n\nUsage: $0 --html|--pdf [--theme theme_path] [--help]" + echo "" + echo "This script converts Markdown files to slide presentations using Marp CLI." + echo "It supports generating slides in HTML or PDF format and allows applying" + echo "a custom CSS theme." + echo "" + echo "Options:" + echo " --html Generate slides in HTML format. This option" + echo " processes all Markdown files in the 'markdown_slides'" + echo " directory, outputting HTML files." + echo "" + echo " --pdf Generate slides in PDF format. Similar to --html," + echo " but outputs PDF files instead." + echo "" + echo " --theme theme_path Apply a custom CSS theme to the slides. The" + echo " 'theme_path' should be the path to the CSS file." + echo " This is optional and can be used with either" + echo " --html or --pdf options." + echo "" + echo " --help Display this detailed help message and exit." + echo "" + echo "Examples:" + echo " Generate HTML slides with a custom theme:" + echo " $0 --html --theme /path/to/theme.css" + echo "" + echo " Generate PDF slides without a theme:" + echo " $0 --pdf" + echo "" + echo "Note:" + echo " Ensure Node.js is installed and npm is accessible in your system's PATH." + echo " The script processes Markdown (.md) files located in the 'markdown_slides'" + echo -e " directory, preserving filenames but changing extensions to .html or .pdf.\n\n" +} + +if [ "$#" -lt 1 ]; then + echo "Error: the correct number of parameters isn't passed in." + show_help + exit 1 +fi + +# Check for Marp CLI installation +if ! command -v npx >/dev/null 2>&1; then + echo "- Error: npx is not installed. Please install Node.js to proceed." + exit 1 +fi + +if ! npx marp --version >/dev/null 2>&1; then + echo "- Marp CLI is not installed. Installing Marp CLI in this repository..." + npm install --no-save @marp-team/marp-cli +fi + +# Defaults +output_type="" +theme_path="" + +# Process command-line arguments +while [[ $# -gt 0 ]]; do + case "$1" in + --html|--pdf) + output_type="$1" + shift # Remove argument name from processing + ;; + --theme) + if [ -n "$2" ] && [ "${2:0:1}" != "-" ]; then + theme_path="$2" + shift 2 # Remove both argument name and value from processing + else + echo "Error: '--theme' requires a non-empty option argument." + exit 1 + fi + ;; + --help) + show_help + exit 0 + ;; + *) + # Unknown option + echo "Error: Unknown option: $1" + show_help + exit 1 + ;; + esac +done + +# Validate output type +if [ -z "$output_type" ]; then + echo "Error: You must specify either --html or --pdf." + show_help + exit 1 +fi + +# Create the output folder if it does not exist +if [ ! -d "$folder_output" ]; then + echo "- Creating output folder: '$folder_output'" + mkdir -p "$folder_output" +else + echo "- Output folder '$folder_output' already exists." +fi + +echo "- Starting slides generation..." + +# Get list of Markdown files +markdown_files=$(find "$folder_md" -name "*.md") +if [ -z "$markdown_files" ]; then + echo "- No Markdown files found in '$folder_md'. Exiting." + exit 1 +fi + +# Process each Markdown file +for markdown_file in $markdown_files; do + file_name=$(basename -- "$markdown_file") + base_name="${file_name%.md}" + echo "- Processing '$file_name'..." + output_file="$folder_output/$base_name" + + if [ "$output_type" = "--html" ]; then + # Generate HTML + output_file+=".html" + echo " - Generating HTML: $output_file" + npx marp "$markdown_file" --output "$output_file" --html --allow-local-files ${theme_path:+--theme-set $theme_path} # &> /dev/null + elif [ "$output_type" = "--pdf" ]; then + # Generate PDF + output_file+=".pdf" + echo " - Generating PDF: $output_file" + npx marp "$markdown_file" --output "$output_file" --pdf --allow-local-files --pdf-notes ${theme_path:+--theme-set $theme_path} # &> /dev/null + else + # nahhh + show_help + exit 1 +fi + + + if [ $? -eq 0 ]; then + echo " - Success: Generated '$output_file'" + else + echo " - Error: Failed to generate '$output_file'" + fi +done + +# Display the completion message with visual styling +echo -e "\n\n==================================================" +echo " Completion Status" +echo "==================================================" +echo "" +echo " - All files processed. Slides generation complete." +echo " - Generated files are located in: $folder_output" +echo "" +echo "==================================================" +echo " Done." +echo -e "==================================================\n\n" diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/1-terminal.png b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/1-terminal.png new file mode 100644 index 000000000..9489e2955 Binary files /dev/null and b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/1-terminal.png differ diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/2-shell.png b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/2-shell.png new file mode 100644 index 000000000..21c356237 Binary files /dev/null and b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/2-shell.png differ diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/3-gitbash.png b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/3-gitbash.png new file mode 100644 index 000000000..9b56096ae Binary files /dev/null and b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/3-gitbash.png differ diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/4-windows_shells.png b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/4-windows_shells.png new file mode 100644 index 000000000..5388aa56b Binary files /dev/null and b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/4-windows_shells.png differ diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/5-windows_terminals.png b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/5-windows_terminals.png new file mode 100644 index 000000000..928455548 Binary files /dev/null and b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/5-windows_terminals.png differ diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/terminology_explainer.afdesign b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/terminology_explainer.afdesign new file mode 100644 index 000000000..97d2dc989 Binary files /dev/null and b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/terminology_explainer.afdesign differ diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/terminology_explainer.afdesign~lock~ b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/terminology_explainer.afdesign~lock~ new file mode 100644 index 000000000..cce471a78 Binary files /dev/null and b/Assignments/Shell and Git/03_instructional_team/markdown_slides/images/terminology_explainer.afdesign~lock~ differ diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/optional_unix_slides.md b/Assignments/Shell and Git/03_instructional_team/markdown_slides/optional_unix_slides.md new file mode 100644 index 000000000..c0411a268 --- /dev/null +++ b/Assignments/Shell and Git/03_instructional_team/markdown_slides/optional_unix_slides.md @@ -0,0 +1,1767 @@ +--- +marp: true +theme: dsi_certificates_theme +_class: invert +paginate: true +--- +# Advanced Unix Shell + +``` +$ echo "Data Sciences Institute" +``` + +--- +# Navigate Files / Directories + +--- +## Files + +Knowing the different types of files available helps us better +understand how to navigate and manipulate them. + +- Regular files are text files with readable characters. +- Executable files are programs that are invoked as commands. +- Shell scripts are readable executable files, in contrast to bash, which is a non-human-readable executable + +--- +## Directories + +Directories, similar to folders, contain files and subdirectories, forming a hierarchical structure. + +- We can think of the structure of directories as a tree with the + top of the tree being the root. +- All files can be named and found in relation to the root by + listing the directory names in order from the root, separated + by slashes, followed by the file's name. + +--- +## Paths + +Using `cd` and `pwd`, let's explore how to use absolute and relative pathnames. + +``` +$ cd +$ pwd +``` + +``` +$ cd Desktop +$ pwd +``` + +``` +$ cd 15 +$ pwd +``` + +--- +Let's now try move through some directories to get comfortable. +Try out lots of different paths depending on the file structures +of your computer. Try getting into different directories from +different parent directories. The tilde notation ~ in the +examples below refer to our home directory. + +--- +``` +$ cd ~/Desktop +$ pwd +``` + +``` +$ cd ~/Desktop/dir1 +$ pwd +``` + +--- +## Options and Arguments + +Options and arguments are used to write commands that can +make changes to our system. The syntax is: + +``` +$ command -—option argument +``` + +--- +Options can also be combined, a topic we'll briefly touch on now and explore in more detail later. + +--- +There are two ways to write an `--option`: + +1. Short option: one dash followed by a single character +2. Long option: two dashes followed by a word + Some examples: + `-a` or `--all` + `-d` or `--directory` + `-r` or `--reverse` + +--- +Let's try these lines of code and see what happens: + +``` +$ ls -l +``` + +``` +$ ls -lt +``` + +``` +$ ls -lt --reverse +``` + +--- +- `—l` long format +- `—t` modification time +- `—reverse` reverse the sort order + +Notice how the `-lt` command combines multiple options. + +--- +## Wildcards + +Wildcards allow us to quickly specify groups of filenames based on character patterns. Let's look at a few examples below: + +--- +- `*` > matches any character +- `?` > matches any single character +- `[characters]` -> matches any character that is in the set +- `[!'characters]` -> matches any character that is not in the set + +Some other helpful character wildcards are: + +- `[:digit:]` > matches any numeral +- `[:lower]` ~ matches any lowercase letter +- `[:upper:]` > matches any uppercase letter + +--- +Let's try a few in our terminal: + +``` +$ ls +``` + +``` +$ ls * +``` + +``` +$ ls ax.txt +``` + +``` +$ ls [abc]x +``` + +``` +$ ls [[:upper:]]x +``` + +``` +$ ls [![:digit:]]x +``` + +--- +## Input / Output + +--- +### Standard Input/Output + +Each program uses standard input, output, and error channels. We can think of the standard input default as coming from the keyboard and if we think of everything as a file, a command such as `ls` will result in a file called `standard output` and the status message to a file called `standard error`. By default, both are linked to the screen and not saved to a disk file. + +--- +### Input/Output Redirection + +Input/Output redirection allows us to change where the input +comes from and where the output goes to, such as storing the +output of a command into a file. We can do this using the +redirection operator `>`. + +``` +$ ls -l /usr/bin > ls—output.txt +``` + +--- +Here we have redirected the output of `ls -—l /usr/bin` to a `.txt` file called _ls-output.txt_. + +We can now see the details of that file and if it worked: + +``` +$ ls -l ls-output.txt +``` + +--- +By examining the details, we can see that the file was created and is a fairly large text file, indicating that content was written to it. + +If we specify a directory that does not exist, we receive the Standard error: + +``` +$ ls -l /bin/usr > ls—-output.txt +``` + +--- +Why was the standard error not written to the `.txt` file? +What happened to our _ls-output.txt_ file? + +--- +Although the standard error was not written to the `.txt` file, +the destination file is always written from the beginning, +therefore, the redirection began to write the file and once +noticed there was an error, stopped, resulting in an empty file. + +--- +So how do we append rather than rewrite? By using the +redirection operator `>>`. + +``` +$ ls -l /usr/bin >> ls—-output. txt +``` + +--- +If we want to redirect the standard error, we need to use the +redirection operator `2>` + +``` +$ ls -l /bin/usr 2> ls—-error.txt +``` + +--- +If we want to redirect both the standard output and standard +error to one file, we have two options. + +1. Use `2>&1` at the end of the command. + +``` +$ ls -l /bin/usr > ls-output.txt 2>&1 +``` + +2. Use `&>` inplace of `>` + +``` +$ ls -l /bin/usr & 1ls-output. txt +``` + +--- +### cat + +`cat` takes one or more files and copies them to standard output. Using the previously created `ls-output.txt`, we can see how this is done: + +``` +$ cat ls—output.txt +``` + +--- +We can also use it to join files togther. Let's say | have two files, `file1` and `file2` and I want to combine them into a file called `file3`: + +``` +$ cat filel file2 > file3 +``` + +--- +Now the contents of file1 and file2 should be combined. + +We can also use `cat` to add to a `.txt` file. + +``` +$ cat > new_cat.txt +``` + +--- +Now we can type the desired text into the file. To finish, use `CTRL-D` to exit. + +What is the difference between `$ cat > new_cat.txt` and `$ cat >> new_cat.txt` ? + +Finally, we can redirect the standard input from the keyboard to the file _new_cat.txt_ + +``` +$ cat < new_cat.txt +``` + +This is almost identitcal to just typing _$ cat new_cat.txt_ but we can see later how it could be more useful. + +--- +# Pipes / Filters + +--- +Pipelines read data from standard output and send it to standard input using the pipe operator `|` . This means the standard output of one command can be piped into the standard input of another. + +Several commands put together in a pipeline are often referred to as filters. Filters take an input, change it and then output it. + +--- +## Commands + +Let's learn a few more commands that will help us further +understand pipelines and filters. We'll learn: + +- extract columns from output `cut` +- sort lines of text `sort` +- report or omit repeated lines `uniq` +- print lines matching a patter `grep` +- search directories and subdirectories for files `find` +- ouput the first part of a file `head` +- output the last part of afile `tail` + +--- +### cut + +Let's look at a `csv` to see how we Can initially see our data. Because it's a `csv`, each line is separated by a comma. Let's first read that file using `cat`: + +``` +$ cat parking_data.csv +``` + +We'll see a lot of text, so let's make some sense of it using cut. + +To use cut, I need to pass a couple options: + +1. `-d` which cuts the text based on what follows. For example, `—d:` will cut based on colons or `-d" "` will cut based on a + space. + +2. `-f`, which extracts a particular field based on what follows. For example, `-f1` will take the first field or `-f2` will take the second field and so on. + +--- +In this example, I'm taking the file _parking_data_ and cutting it based on colons and then only extracting the first field. + +``` +$ cut -d, -f1 < parking_data.csv +``` + +What happens if I add another `-f` option? What does this do? + +``` +$ cut -d, -f1 -f2 < parking_data.csv +``` + +--- +How would I specify more than three fields? + +--- +### sort + +How can we make our previous example more readable? + +One answer is to use the sort feature. We can pipe this with the cut feature: + +``` +$ cut -d, -f1 < parking_data.csv | sort +``` + +--- +### uniq + +Additionally, I can make the above command even more readable by removing any duplicates with `uniq` + +``` +$ cut -d, -f1 < parking_data.csv | sort | uniq +``` + +--- +### grep + +`grep` is a powerful tool for finding patterns in text files. The syntax is: + +``` +$ grep pattern [file...] +``` + +--- +In our case, we're going to use it with our previous example and +pipe it with other commands: + +``` +$ cut -d, -f1 parking_data.csv | sort | uniq | grep FIRE +``` + +The results are all patterns of FIRE in the text file. + +--- +### find + +Another useful use for `grep` is to find files in directories. `grep` is nicely combined with `find` for this feature. + +``` +$ find ~/Desktop/dir1 | grep cat +``` + +--- +Here we're searching in the directory _dir1_ with the pattern _cat_. This would be helpful if we wanted to know if there were any files with the word cat in the filename. + +--- +### head | tail + +We can also extract the first and last part of files using `head` and `tail`. We can also add the option `-n` followed by a number to extract a certain number of lines. + +``` +$ head -n 5 ls-output.txt +``` + +``` +$ tail -n 5 ls-output.txt +``` + +--- +`head` and `tail` can also be used in pipelines: + +``` +$ cut -d, -f1 < parking_data.csv | sort | uniq | head —-n 5 +``` + +``` +$ cut -d, -f1 < parking_data.csv | sort | unig | tail -n 5 +``` + +--- +## Expansions + +--- +Expansion uses special characters to expand upon something before the shell processes it. We have learned a few expansions so far such as the tilde `~` and wildcards `*`. We've also seen some character wildcards `[characters]`. + +Expansions are another feature that help us when we're manipulating and working with files and directories. + +--- +Other examples of expansions are: + +- arithmetic expansion +- brace expansion + +--- +### Arithmetic Expansion + +Arithmetic expansion basically makes the shell a calculator. The syntax is: + +``` +$((expression)) +``` + +For example: + +``` +$ echo $((2 + 2)) +``` + +--- +Arithmetic expressions can be nested: + +``` +$ echo $(($((2 + 2)) * 3)) +``` + +--- +Just for reference, here is a list of the arithmetic operators: + +| Operator | Description | +| -------- | ---------------- | +| `+` | Addition | +| `-` | Subtraction | +| `*` | Multiplication | +| `/` | Integer division | +| `**` | Exponentiation | + +--- +### Brace Expansion + +Brace expansions allow us to create multiple text strings from a pattern containing braces. Here are a few examples: + +``` +$ echo Test-{A,B,C}-Example +``` + +``` +$ echo Number_{1..5} +``` + +``` +$ echo {Z..A} +``` + +--- +Brace expansions can also be nested: + +``` +$ echo a{A{1,2},B{3,4}}b +``` + +--- +We can use brace expansion to help make multiple directories using `mkdir`. + +``` +$ mkdir dir-{1..3} +``` + +This command makes 3 directories named _dir-1_, _dir-2_, and _dir-3_ + +--- +## Quoting / Backslashing + +Quoting suppresses unwanted expansions. We can use double +quotes, single quotes or backslashes: + +- Double quotes force special characters to lose their meaning + and are treated as ordinary characters except for `*` , `\` , and `'`. +- Single quotes suppress all expansion +- Backslashes are used to escape single characters + +--- +Many times there will be file names or directories that are named with spaces. In this case, we'll need to use double quotes so that the shell can read it. Using `touch` we can create a text file named something separated with two words: + +``` +$ touch "two words.txt" +``` + +--- +We can then see the details of the file we just created: + +``` +$ ls -l "two words.txt" +``` + +--- +If we want to rename the text, we would do as follows: + +``` +$ mv "two words.txt" two_words.txt +``` + +--- +Let's see what these three examples do in shell: + +``` +$ echo '2 * 3 > 5 is an equation’ +``` + +``` +$ echo '2 * 3 > 5' is an equation +``` + +``` +$ echo 2 \x 3 \> 5 is an equation +``` + +--- +## Command Line Editing + +Getting familiar with command line editing can save you time. Bash uses a library called Redline to use command line editing +There are many shortcuts and you don’t have to memorize them all, just use the ones that you feel are best. There are even more shortcuts that you can read about in the textbooks! + +--- +### Command Character + +| Command | Description | +| ------- | --------------------------------------- | +| CTRL-B | Move one character backwards | +| CTRL-F | Move one character forwards | +| DEL | Delete one character backwards | +| CTRL-D | Delete one character at cursor location | + +--- +### Word Commands + +| Command | Description | +| ------- | ------------------------- | +| ESC-B | Move one word backwards | +| ESC-F | Move one word forwards | +| ESC-DEL | Delete one word backwards | +| ESC-D | Delete one word forwards | +| CTRL-Y | Undo | + +--- +### Line Commands + +Command Description +| Command | Description | +| ---------- | ------------------------------------------ | +| CTRL-A | Move to the beginning of the line | +| CTRL-E | Move to the end of the line | +| CTRL-K | Delete text from the cursor to the end of the line | +| CTRL-U | Delete text from the cursor to the beginning of the line | + +--- +### History Line Commands + +| Command | Description | +| ---------- | ----------------------------------------------------- | +| CTRL-P | Move to the previous line in your history of commands | +| CTRL-N | Move to the next line in your history of commands | +| `!!` | Repeat the last command | +| `!number` | Repeat history list item number | +| `!string` | Repeat last history item starting with string | +| `!?string` | Repeat last history item containing string | + +--- +## Completion Command + +Completion commands autocomplete your command if it exists by hitting `tab`. If it does not exist, the command will not be able to complete. + +If multiple exist, the command will also not be able to complete because it will not know which one to choose. + +--- +For example, let's say we have two files called `file1` and `file2`. If would not be able to use autocomplete because the shell will not know which to choose until the last character. + +If we have two files, one called `foot.txt` and one called `file.txt`. This command would not be able to autocomplete: + +``` +$ ls f +``` + +--- +But this one will: + +``` +$ ls fil +``` + +--- +# Shell Scripts + +--- +### Shell Scripts + +Shell scripts allow us to combine several commands into one file, rather than one by one on the command line. + +The shell will read the script just as if you were to write the command on the command line. + +Most things that can be done in the shell script can be done on the command line and vice versa. + +--- +### Writing Shell Scripts + +There are three important considerations when writing the shell script + +1. **Write a script:** scripts are ordinary text files. You can use a text editor that will provide syntax highlighting (color coding elements of the script). It can help find errors but writing in TextEdit is possible. + +2. **Make a shell script executable:** set the script permissions to allow it to be executed + +3. **Put the shell script somewhere the shell can find it:** the shell script automatically searches certain directories for executable files when no explicit pathname is specified. + +--- +### Set Up + +Open either TextEdit or your text editor of choice. Some popular programs are Sublime Text, Vim, Atom, and Notepad++. +If you want to see the syntax highlighting, you might have to save your script as a `.sh` file. Without doing this, your file will just look like a regular `.txt` file. +Once you open your text editor and save it, we can begin our first script! + +--- +### Script File Format + +We must first tell the shell the name of the interpreter that should be used to execute the script. This is marked by using a shebang: `#!` +Throughout the script, you can and **should** use `#` to make comments. Comments make your code more readable and can help you understand your code when you come back to it. + +``` +#!/bin/bash +# this is our first comment +echo "This is our first script!" +``` + +--- +Here we can see we've told the shell to use `/bin/bash` using the shebang `#!` +We've also added a comment using `#` +And finally, something quite familiar, we have our first line of script using `echo` + +--- +### A Note on Commenting + +Commenting is important not just so you can understand your own work, but also so others can understand your work in collaborative projects. It also helps make your code reproducible. + +Comments can be inline: + +``` +echo "Hello World" #this is an inline comment +``` + +or as comment blocks: + +``` +#this is a comment block +echo "Hello World" +``` + +--- +### Executable File Permission + +In order to execute our file, we have to add file permissions: `chmod` helps make our script executable, `775` is used to make scripts that everyone can execute, `700` is used to make scripts that only the owner can execute + +Here, `chmod` is combined with `775` so that everyone can execute the script: + +``` +$ ls -l first_script.sh +``` + +``` +$ chmod 775 first_script.sh +``` + +--- +### Script File Location + +In order to run our script, we have to call it using `./` in front of the script filename ( `./Script` ). +File location is important to run your script. If just `Script` was written, the shell would not be able to find the script and try to read it as a command, outputting `command not found`. +Running `echo $PATH` helps us see what directories are being searched for the script. + +--- +If we want to run our script without `./`, we can create a `/bin` for our script, move our script into the bin folder and then run it. It's important to note that we have to make this bin in our home directory. If we made it on our Desktop, the script would still not be found. + +``` +$ mkdir bin +$ mv first_script.sh bin +$ first_script.sh +``` + +--- +In this block of code, we're making the bin folder using `mkdir`, +moving the script into the bin with `mv` and then running the +script without `./`. + +--- +### Good Locations for Scripts + +For personal use, a good place to put your script is `/bin`. +For everyone's access, it's better to put scripts in `/usr/local/bin`. + +--- +# Shell Functions + +--- +### Functions + +Functions are a good way to break down code into smaller, more manageable chunks. Each chunk can represent a task. + +For example, let's say your entire process is make pasta. It can be broken down into: + +1. Prepare vegetables +2. Make sauce +3. Cook pasta +4. Serve + +--- +Each of these steps can be expanded further into subprocesses. Cook pasta can be: + +1. Fill pot with water +2. Boil water +3. Measure pasta +4. Add pasta to boiling water +5. Cook for 8-12 minutes +6. Strain + +--- +Functions have two syntactic forms: + +``` +function name { + commands + return +} +``` + +``` +name () { + commands + return +} +``` + +`name` is the name of the function +`commands` are the commands contained in the function + +--- +Let's write our first function: + +``` +#!/bin/bash +function funct { + echo "Step 2" + return +} + +--- +#program starts here + +echo "Step 1" +funct +Echo “Step 3" +``` + +--- +What do you think this function will output? + +--- +Let's save and run this function in our terminal to see what happens. + +Here's a good time to recap how to save, grant permissions, and run the script. + +- `chmod` - permissions command +- `775` - grant permissions to everyone +- `700` - grant permissions to yourself +- `/bin` - where to save permissions + +--- +## Variables + +--- +### Global Variables + +Let's make our script more complex with some variables. We can first define variables directly through the terminal. + +``` +$ foo="Something cool" +$ echo $foo +``` + +--- +Notice how in order to call the variable we need to add `$` before the variable. The quotes are not necessary if the value of the variable doesn't include spaces when defining it. If we did not include the quotes here, we would receive an error. + +--- +Now let's add some global variables to our script: + +``` +#!/bin/bash + +step="Step 2" + +function funct { + echo $step + return +} + +#program starts here + +echo, step yl” +funct +echo "Step 3" +``` + +What do we think will be the output in this example? + +--- +### Local Variables + +Local variables are variables that are contained within the function. Because they're contained, they can have names that already exist in the shell globally or within other shell functions. + +``` +#!/bin/bash + +foo=@ # global variable foo + +funct_1 () { + local foo # variable foo local to funct_1 + foo=1 + + echo "funct_1: foo = $foo" +} + +funct_2 () { + local foo # variable foo local to funct_2 + foo=2 + echo "funct_2: foo = $foo" +} + +echo "global: foo = $foo" +funct_1 +echo "global: foo = $foo" +funct_2 +echo "global: foo = $foo" + +``` + +--- +What would happen if we removed `local` ? + +``` +#!/bin/bash + +foo=@ # global variable foo +funct_1 () { + foo=1 + echo "funct_1: foo = $foo" +} + +funct_2 () { + foo=2 + echo "funct_2: foo = $foo" +} + +echo "global: foo = $foo" +funct_1 +echo "global: foo = $foo" +funct_2 +echo "global: foo $foo" +``` + +--- +## Parameters + +--- +### Positional Parameters + +Positional parameters are built-in parameters that allow our programs to get access to the contents of the command line. +This is extremely valuable when we are creating scripts and then want to pass a parameter through the script from the command line. + +If our code has more than 9 positional parameters, you need to enclose the positional parameter in curly brackets `${10}` + +Let's create a script to see how this works: + +``` +#!/bin/bash + +echo " +Number of arguments: $# +\$0 = $0 +\$1 = $1 +\$2 = $2 +\$3 = $3 +\$4 = $4 +\$5 = $5 +\$6 = $6 +\$7 = $7 +\$8 = $8 +\$9 = $9 +" +``` + +--- +In the example, you may notice that we haven't given `$0` any specific value. +Let's try to run the script a couple ways through the command line to see what this means: + +1. Run the script with arguments `a` `b` `c` `d`. +2. Run the script with any arguments of your choice. + +What do we notice? + +--- +### \$\* and $@ + +`$*` —> Expands into the list of positional parameters, starting with 1. When surrounded by double quotes, it expands into a double-quoted string containing all of the positional parameters, each separated by the first character of the IFS shell variable (by default a space character). + +`$@` —> Expands into the list of positional parameters, starting with 1. When surrounded by double quotes, it expands each positional parameter into a separate word surrounded by double quotes. + +--- +Let's take a look at this code piece by piece: + +``` +print_params () { + echo "\\$1 = $1" + echo "\\$2 = $2" + echo "\\$3 = $3" + echo "\\$4 = $4" +} +pass_params () { + echo -e "\\n" '$* :'3 print_params $x + echo -e "\\n" '"$x" :'s print_params '$x" + echo -e "\\n" '$@ :'; print_params $@ + echo -e "\\n" '"$@" :'; print_params '$@"' +} +pass_params "word" "words with spaces" +``` + +--- +1. Here we have two functions: `print_params ()` and `pass_params ()`. `pass_params ()` calls on the function `print_params ()` within its function. +2. In the first function, `echo` is printing the line inside the double quotes. The `\` infront of `$1` escapes the `$`, thus losing its meaning, as we learned earlier. + +``` +print_params () { + echo "\\$1 = $1" + echo "\\$2 = $2" + echo "\\$3 = $3" + echo "\\$4 = $4" +} +``` + +--- +3. In the second function, `echo` again is printing the line inside the single quotes. `"\n"` is adding a tab at the beginning of the line for readability. It is then calling on the first function ( `print_params ()` ) with the argument `$*` . The second echo is calling the first function but with the argument `$*` in double quotes. This is repeated for `$@` + +``` +pass_params () { + echo -e "\\n" '$x :'; print_params $x + echo -e "\\n" '"$x" :'s print_params '$x" + echo -e "\\n" '$@ :'; print_params $@ + echo -e "\\n" '"$@" :'; print_params '$@"' +} +``` + +--- +4. In the final part of the code, we're calling on the `pass_params ()` function and passing two arguments: `"word"` and `"words with spaces"`. + +``` +pass_params "word" "words with spaces" +``` + +--- +Let's see what happens's when we run the script in terminal. Remember, we don't have to pass any arguments in the command line because we have done so in our script. + +--- +Let's take a look at another example. In this example we'll get a greater understanding of variables and positional parameters: + +``` +function afunc { + echo in function: $0 $1 $2 + var1="in function" + echo var1: $var1 +} +var1="outside function" + +echo var1: $var1 +echo $0: $1 $2 +afunc funcarg1 funcarg2 +echo var1: $var1 +echo $0: $1 $2 +``` + +--- +Let's break it down again: + +1. In our first function called `afunc` , using `echo` we will print + `in function:` and pass 3 positional parameters. We will + then define the variable `var1` and call it `"in function"` + and print it using echo again. + +``` +function afunc { + echo in function: $@ $1 $2 + var1="in function" + echo var1: $var1 +} +``` + +--- +2. Outside of the function, we'll create another variable also named `var1` and give it the value of `"outside function"` + +``` +var1="outside function" +``` + +--- +3. We'll then add the program. + a) `echo`, we'll print `var1` + b) Print 3 positional parameters + c) Call the function with two arguments + d) Print `var1` again + e) Print 3 positional parameters again + +``` +echo var1: $var1 +echo $0: $1 $2 +afunc funcarg1 funcarg2 +echo var1: $var1 +echo $0: $1 $2 +``` + +--- +Let's run it in our terminal without any additional arguments and see what the output is. + +- Why did `echo $@: $1 $2` only output one argument? +- Why did `var1` change the third time to `inside function` rather than `outside function` ? + +--- +Now let's change and add a few things to see what happens: + +- In our terminal, what happens if we pass two arguments by entering `ascript.sh arg1 arg2` with `ascript.sh` being the name of our script and `arg1 arg2` being two random arguments? +- What happens if we add `local` to our function? + +--- +### Parameter Expansion + +Let's discuss the difference between `$a` and `${a}` + +`$a` on its own is fine, but when placed next to another string, it can confuse the shell. For example: + +- `$a_file` the shell will try to expand a variable named + `a_file` rather than `a` +- `${a}_file` the shell will now try to expand the variable `a` + +--- +This can help us be more flexible when navigating and manipulating files and directories. + +Let's look at the code below to see how this helps us: + +``` +$ filename="myfile" +$ touch $filename +$ mv $filename ${filename}1 +``` + +--- +This block of code creates a file based on our defined variable and then renames it with the same variable but with an additional component. + +Parameter expansion also help us if our variables are unset (i.e. do not exist) or are empty. Let's take a look at a couple examples in the next few slides. + +--- +1. `${parameter:=x}` If parameter is unset or empty, expansion results in the value of `x` and the value of `x` is assigned to the parameter. If it's not empty, it results in the value of the parameter + +``` +$ foo= +$ echo ${foo:="Something else"} +$ echo $foo +$ foo=bar +$ echo ${foo:="something else"} +$ echo $foo + +``` + +Through this sequence of commands we can see that when `$foo` is empty, `:-` fills the variable with `"something else"`. Once we define the variable, `:-` results in our defined variable. + +--- +2. `${parameter:=x}` If parameter is unset or empty, expansion results in the value of x and the value of x is assigned to the parameter. If it's not empty, it results in the value of the parameter + +``` +$ foo= +$ echo ${foo:="something else"} +$ echo $foo +$ foo=bar +$ echo ${foo:="Something else"} +$ echo $foo +``` + +We can see that when `$foo` is empty, `:=` assigns the variable with `"something else"`. If we define the variable again, `:-` results in our second defined variable. + +--- +3. `${parameter:?x}` If parameter is unset or empty, this expansion causes the script to exit with an error, and the contents of `x` are sent to standard error. If parameter is not empty, the expansion results in the value of parameter. + +``` +$ foo= +$ echo ${foo:?"something else"} +$ echo $? +$ foo=bar +$ echo ${foo:?"something else"} +$ echo $? +``` + +We can see that when `$foo` is empty, `:?` gives us an error which we can see as `echo $?` outputs `1`. If we define the variable again, `:?` results in the value of our variable. + +--- +4. `${parameter:+x}` If parameter is unset or empty, the expansion results in nothing. If parameter is not empty, the value of `x` is substituted for parameter; however, the value of parameter is not changed. + +``` +$ foo= +$ echo ${foo:+"something else"} +$ echo $foo +$ foo=bar +$ echo ${foo:+"something else"} +$ echo $foo +``` + +Here, `:+` resulted in an empty output and the value of `$foo` remains empty. If we define the variable, `:+` will still output what we defined, but it will not reassign the variable permanently. + +--- +### String Operators + +String operators are extremely valuable for operations on pathnames. They can help extract parts of pathnames, especially if they follow a pattern. Many pathnames typically follow patterns, such as all extensions are preceded with `.`. +Some character expansions are: + +1. `${#parameter}` +2. `${parameter:offset}` +3. `${parameter:offset: Length}` +4. `${#parameter}` expands into the length of the string +contained by the parameter. + +``` +$ foo="Toronto needs more trees" +$ echo "'$foo' is ${#foo} characters long." +``` + +--- +With the following expansions, we can extract a portion the string contained by the parameter. + +2. `${parameter:offset}` will extract characters from _offset_ characters to the end of the string. For example, counting from the beginning of the string, the _n_ of _needs_ is 8 characters from the beginning. Because did not specify an end, `echo` will print from _needs_ onwards. + +``` +$ foo="Toronto needs more trees" +¢ echo ${foo:8} +``` + +--- +3. `${parameter:offset: length}` will specify the length that we want to extract. This length is counted not from the beginning of the string, but from the offset of the string. + +``` +$ foo="Toronto needs more trees" +$ echo ${foo:8:5} +``` + +--- +We can see that from the beginning of the string, _n_ is 8 +characters in, and from _n_, s of _needs_ is the 5th character from +_n_. Therefore, our ouput will be _needs_. + +Let's now see how to use patterns in our parameter expansions. +There are several ways we can achieve this: + +1. `${parameter#pattern}` +2. `${parameter##pattern}` +3. `${parameterxpattern}` +4. `${parameterxspattern}` + +--- + +1. `${parameter#pattern}` removes the shortest leading portion of the string contained in _parameter_ defined by the _pattern_. + +``` +$ foo=/User/name/Desktop/file.txt.zip +$ echo ${foo#/x/} +``` + +In this example, we've defined foo as a file with an extension. +The expansion matches any (`*`) pattern of `/*/` and returns the shortest leading portion. + +--- + +2. `${parameter##pattern}` is very similar to the previous expansion except it removes the longest leading portion of the string. + +``` +$ foo=/User/name/Desktop/file.txt.zip +$ echo ${foo##/x/} +``` + +Very similar to the previous example, the expansion matches any (`*`) pattern of `/*/` and returns the longest leading portion. + +--- + +3. `${parameter%spattern}` removes the shortest ending portion of the string rather than the beginning. + +``` +$ foo=/User/name/Desktop/file.txt.zip +$ echo ${fo00%.x} +``` + +--- + +4. `${parameter%spattern}` removes the longest ending portion of the string. + +``` +$ foo=/User/name/Desktop/file.txt.zip +$ echo ${fo00%%.\*} +``` + +What happens if we change our pattern to `#*_` ? + +Let's pretend a file named "rachaels_file" and we want to know its extension. How would we do that? + +What if our file was name "rachaels file" + +We can also use expansions to replace the contents of the parameter with a string based on the pattern. + +1. `${parameter/pattern/string}` replaces only the first occurence of pattern. +2. `${parameter//pattern/string}` replaces all occurances. +3. `${parameter/#pattern/string}` requires the match to occur at the beginning of the string to replace it. +4. `${parameter/%pattern/string}` requires the match to occur at the end of the string to replace it. + +Let's see how this would work: + +``` +$ foo="MP3.MP3" +``` + +``` +$ echo ${foo/MP3/mp3} +``` + +--- +``` +$ echo ${foo//MP3/mp3} +``` + +``` +$ echo ${foo/#MP3/mp3} +``` + +``` +$ echo ${foo/%MP3/mp3} +``` + +Can you think of when this might be helpful? + +--- +Let's say I have a a named "rachaels cool file". I want to rename them because spaces cause problems in filenames. How would I do this? + +--- +### Arithmetic Assignment + +We have seen assignment before with examples such as `foo=5` . This is a simple assignment but we can also add complexity to this assignment with other operators. + +- `$((parameter += x))` assigns the parameter to itself `+` x +- `$((parameter -= x))` assigns the parameter to itself `-` x +- `$((parameter *= x))` assigns the parameter to itself `*` x +- `$((parameter /= x))` assigns the parameter to itself `/` x + +We can also increase or decrease our parameters by one. + +- `$((parameter++))` increases parameter by one after the parameter is retruned +- `$((parameter--))` decreases the parameter by one after the parameter is returned +- `$((++parameter))` increases parameter by one before the parameter is returned +- `$((--parameter))` decreases parameter by one before the parameter is returned. + +--- +These are very subtle changes so let's see what we mean after and before a parameter is returned: + +``` +$ foo=1 +$ echo $((foo++)) +$ echo $foo +``` + +``` +$ foo=1 +$ echo $((++foo)) +$ echo $foo +``` + +--- +### Command Substitution + +So far we've learned how to get values into variables by using assignment statements ( `x=5` ) and positional parameters ( `x=$1` ). Another way is command substitution which allows you to use the standard output of the command as if it were a variable. + +--- +Let's say we want to assign a variable to the output of a command so that we can apply another command to that output. In this particular case, we want to make a variable equalall files beginning with _t_. We then want to apply a sort command on that variable: + +``` +$ x=$(find tx) +$ echo $x | sort +``` + +Although this seems quite simple now, we'll see how this can be +extremely powerful when we move into flow control. + +--- +# Flow Control + +Flow control allows programs to "change directions" based on the results from a given input. +Bash supports several constructs: + +- `if/else` +- `while` / `until` +- `case` +- `for` + +--- +## if / else + +`if/else` is a conditional statement that chooses whether or +not to do something based on a true or false statement. + +--- +``` +if condition; then + commands +[elseif condition; then + commands... ] +[else + commands ] +fi +``` + +--- +Here, we've assigned `x` to the value `5`. We've then written an +`if/else` statement that asks if `x` is equal to `5` than tell us +that `x` equals `5`. Otherwise (`else`), tell us that `x` does not +equal `5`. + +--- +``` +x=5 +if [ $x = 5 ]; then + echo "x equals 5." +else + echo "x does not equal 5." +fi +``` + +--- +Let's take a look at a more practical example: we want to know if there are any files in our directory that contain spaces. + +``` +#!/bin/bash +cd ~/Desktop/dir1 +if [[ -n $(find . -type f | grep " ") ]]; then + echo "A file contains a space" +else + echo "No files contain a space" +fi +``` + +--- +First we've changed our working directory to _dir1_: + +``` +cd ~/Desktop/dir1 +``` + +We then utilized command substitutions that we've just learned +by storing the output of files that contain a space. The `-n` +option checks if the length of a string is _nonzero_: + +``` +-n $(find . -type f | grep " ") +``` + +--- +By wrapping our output in an if statement, we're stating: + +1. `if` the value of `$(find . -type f | grep " ")` is nonzero, then + print (`echo`) "A file contains a space" +2. Otherwise (`else`), print (`echo`) `"No files contain a space"` + +--- +### Control Operators + +Control operators ( `&&` and `||` ) allow you to test more than one thing at a time. Their syntax is: + +``` +if command1 && command2; then + ... +fi +``` + +``` +if command1 || command2; then + ... +fi +``` + +--- +With the `&&` operator, command1 is executed and command2 is executed only if command1 is **successful**. +With the `||` operator, command1 is executed and command2 is +executed only if command1 is _unsuccessful_. + +Example of `&&` + +``` +filename=$1 +word1=$2 +word2=$3 + +if grep $word1 $filename && grep $word2 $filename; then + echo "$word1 and $word2 are both in $filename." +fi +``` + +--- +Using positional parameters that we learned earlier, what do you think will happen if we run the previous code? + +- What happens if both words exist? +- What happens if only one word exists? +- What happens if no words exist? + +--- +Example of `||` + +``` +filename=$1 +word1=$2 +word2=$3 + +if grep $word1 $filename || grep $word2 $filename; then + echo "$word1 or $word2 is in $filename." +fi +``` + +--- +Similarly, what will happen if... + +- What happens if both words exist? +- What happens if only one word exists? +- What happens if no words exist? + +--- +## While + +Using the while command, let's discuss looping. Looping allows portions of a program to repeat as long as the condition is false. +This syntax is: + +``` +while condition; do + commands +done +``` + +--- +Let's make a basic while script that displays five numbers in sequential order from 1 to 5 and then tells us when it's finished. + +``` +#!/bin/bash + +# script called while-count.sh + +count=1 + +while [ $count -le 5 ]; do + echo $count + count=$((count +1)) +done +echo "Finished." +``` + +--- +Why does the loop end? + +While loops are extremely helpful to read lines of a file and then perform some command if a line meets a certain condition. Let's explore how to read lines first: + +``` +file=file1 +while read -r line; do + echo $line +done < "$file" +``` + +--- +In this script, we're creating a variable with our file. We're then reading the file until the last line is read. In this example, we're using an input redirection that we learned earlier ( `<` ), which passes the file into the read command. We've also used `-r` so that any backslashes are escaped. + +Because line is acting as a variable, we can also nest another loop if `$file` meets a condition. Let's say we have a file and we want to know every line that has `bananas` in it. +How would we combine the while loop with an if statement? + +``` +while read -r line; do + if [[ $line == *"bananas"* ]]; then + echo $line + fi +done < "$file" +``` + +--- +Here we're reading the file line by line using the `while` loop. +We're then saying `if` our variable, `$line` equals `"banana"` , +then print the `$line`. + +1. Why have we added the wildcard `*` ? +2. What would happen if we didn't include `*` ? + +--- +## Until + +Until loops are similar to while, except unlike while loops that run as long as the condition is true, the until loop will run as long as the condition is **false** + +``` +until condition; do + commands +done +``` + +--- +Let's create a script similar to the while statement: a basic while script that displays five numbers in sequential order from 1 to 5 and then tells us when it's finished. + +``` +count=1 + +until [ $count -gt 5 ]; do + echo $count + count=$((count +1) ) +done +echo "Finished." +``` + +How is this script different to the while loop? + +--- +How might this be useful? Let's say we want to create 3 +directories labeled _dir1_, _dir2_ and _dir3_: + +``` +x=1 +until [[ $x == 4 ]]; do + echo "Creating dir$x..." + mkdir dirs~x + ((x++) ) +done +``` + +--- +Here we've created a variable `x=1` because we want our first directory to be _dir1_. We're then saying up until `x=4`, make a directory `mkdir` called _dir_ plus our variable. We've then added 1 to `x` each iteration using an arithmetic assignment. The `echo` part is just to give us some feedback on what is happening behind the scenes. + +--- +## for + +For our final flow control, we're going to learn a powerful loop called `for`. The syntax is: + +``` +for variable [in words]; do + commands +done +``` + +What we might notice is that this flow uses variables that will increment during the execution of the loop. + +How would we use `for` if we wanted to list all files and directories in a folder? + +--- +``` +for i in $(find x«); do + echo $i +done +``` + +--- +The variable `i` becomes all instances of the variable `$(find *)` . For each instance of `i`, we are then printing it. Although this seems quite basic and there more simple ways to list all files and directories ( `ls` ), this enables us to do many things with the looped variable `i` by nesting other loops. + +What other ways can we use for loops? +What other ways can we use for loops within files? + +--- +### Questions? + +- Why do we use `i`? + +--- +### Next Week: Git and Github + +- Please make sure to come with a GitHub account + +--- +## Additional Material + +--- +### Exit Status + +Commands issue a value to the system when they terminate, which is an integer in the range of O and 255 indicating the success or failure of a command's execution. + +Conventionally, zero indicates success and any other value indicates failure. + +--- +Let's list a file that we know exists on our desktop: + +``` +$ ls -d /usr/bin +$ echo $? +``` + +`-d` is an option that returns the file if it exists and is a directory. + +`$?` returns the value of the last executed command. The value being either zero for success or any other number for failure. + +--- +If we then list a file that we know does not exist in our desktop and return the value of `$?`, what do we expect to happen? + +``` +$ ls -d /bin/usr +$ echo $? +``` + +--- +### Exit Command + +The `exit` command ina script replaces the return command and accepts a single, optional argument, which becomes the scripts exit status. + +When no argument is passed, it defaults to zero. This enables our scripts to indicate an error. + +--- +If the script is a function in a larger program, we can use `return` instead of `exit` with a single, optional argument, allowing our function to indicate an error. + +--- +``` +#!/bin/bash + +# test-file: Evaluate the status of a file + +FILE=~/.bashrc + +if [ -e "$FILE" ]; then + if [ -f "$FILE" ]; then + echo "$FILE 1sva regular file." + fi + if [ -d "$FILE" ]; then + echo "$FILE is a directory." + fi +else + echo "$FILE does not exist" + exit 1 +fi + +exit + +test_file () { + # test-file: Evaluate the status of a file + + FILE=~/.bashrc + + if [ -e "$FILE" ]; then + if [ -f "$FILE" ]; then + echo "$FILE is a regular file." + fi + if [ -d "$FILE" ]; then + echo "$FILE is a directory." + fi + else + echo "$FILE does not exist" + return 1 + fi +} + +``` + +--- +`if / else` statements are most frequently used with `test` + +`test` performs a variety of checks and comparisons + +Its syntax is: + + `test expression` + + or + + `[ expression ]` + +--- +There are many expressions that are used to evaluate the status +of files. Some important **File Expressions** include: + +| Expression | Is True If | +| ---------- | ----------------------------------------------------------------------------- | +| -e file | file exists | +| -d file | file exists and is a directory | +| -f file | file exists and is a regular file | +| -r file | file exists and is readable (has readable permissions for the effective user) | +| -s file | file exists and has a length greater than zero | + +--- +#### String Expressions + +| Expression | Is True If | +| ------------------ | ----------------------------------------- | +| string | string is not null | +| -n string | the length of string is greater than zero | +| -z string | the length of string is zero | +| string1 == string2 | string1 equals string2 | +| string1 != string2 | string1 and string2 are not equal | + +--- +### Breaking Out Of A Loop + +Bash has two build-in commands that can be used to control program flow inside loops. + +- `break` command immediately terminates a loop and resumes with the next statement following the loop + +- `continue` command skips the remainder the loop that is not needed (ie. a condition has been met) and resumes with the next iteration of the loop. `continue` allows for a more efficient execution + +--- +``` +if condition; then + if condition; then + commands + continue + fi + + if condition; then + commands + continue + fi +else condition; then + command +fi +``` + +--- +If the first `if` condition is met, then the second one will be skipped and resumed with the next iteration. + +``` +if condition; then + if condition; then + commands + continue + fi + if condition; then + commands + break + fi +else condition; then + command +fi + +If the second `if` condition is met, then the break immediately +terminates the loop and resumes with the next statement. +``` diff --git a/Assignments/Shell and Git/03_instructional_team/markdown_slides/unix_slides.md b/Assignments/Shell and Git/03_instructional_team/markdown_slides/unix_slides.md new file mode 100644 index 000000000..21246f56a --- /dev/null +++ b/Assignments/Shell and Git/03_instructional_team/markdown_slides/unix_slides.md @@ -0,0 +1,559 @@ +--- +marp: true +style: | + section { + font-family: Inter, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif; + } +_class: invert +paginate: true +--- + +# Unix Shell + +``` +$ echo "Data Sciences Institute" +``` + +--- +### What is Unix? + +Unix was a text-based operating system created in 1970. Many of its derivatives are commonly used today, including Linux and MacOS. + +Linux powers +* 90% of global cloud infrastructure +* 100% of the world's top 500 high performance computers +* 97% of embedded and IoT devices + +--- +*Bash* and similar shells +* are the primary way of interacting with most production Linux systems +* empower you to quickly and easily navigate the system, manipulate files, and automate tasks + +--- +### So what is the shell? + +A *shell* is any user interface/program that takes an input from the user, translates it into instructions that the operating system can understand, and conveys the output back to the user. + +--- +There are various types of user interfaces: + +- graphical user interfaces (GUI) +- touch screen interfaces +- command line interfaces (CLI) + +--- +### And what is Bash? + +We'll be focusing on command line interfaces (CLI), more +specifically Bash, which stands for the Bourne Again SHell. + +On Windows: open the **Git Bash** or **Windows Terminal** app +On MacOS or Linux: open the **Terminal** app + +On newer macs, the default shell is zsh, which is almost identical to Bash. + +--- +### Clearing up an abundance of terminology + + +--- +### Clearing up an abundance of terminology + + +--- +### Clearing up an abundance of terminology + + +--- +### Clearing up an abundance of terminology + + +--- +### Clearing up an abundance of terminology + + +--- +### Let's get started! + +First, we'll open our terminal. As mentioned earlier, this is most +likely called terminal and can be found by searching our +computer, which on a Mac would be through cmd + space + +--- +Let's take a look at the terminal. What do we notice? + +- last login +- name +- location +- shell + +--- +### Looking at the Shell +Let's start with a few commands and see what happens in our +terminal. + +```bash +$ echo Rachael +$ date +$ cal +$ lksjfs +``` + +--- +- What happens when we type something that does not exist? +- What happens with errors? + +--- +# Getting help and accessing documentation +Bash includes built-in documentation for all commands + +```bash +$ man ls +``` + +Retrieve the **man**ual for each commands using `man`. +* Many manuals are also available online + + +--- +View a list of commonly used Bash commands + +```bash +$ help +``` + +--- +# Navigate Files / Directories + +--- +## Directories + +Let's try three commands that help us navigate our system: + +1. When using Bash, we always have a *working directory*: + +```bash +$ pwd +``` + +`pwd` prints our current working directory. If we ever need to know +where we are, we can execute this command. + +--- +2. To know what files and folders exist in our working directory, + we can use the code below: + +```bash +$ ls +``` + +--- +3. We can change the working directory using the following command: + +```bash +$ cd +``` + +By default, `cd` changes your *working directory* to your *home +directory*. You can also use `cd` to set your *working directory* by +including the desired *pathname* + +```bash +$ cd Desktop +``` + +--- + +```bash +$ cd Desktop +``` + +Note #1: In this example +* We can change the behaviour of the `cd` command by providing *arguments* +* By default, `cd` changes the *working directory* to our *home directory* +* By adding `Desktop` after the `cd` command, we change to the `Desktop` directory instead +* Most other bash commands have their own *arguments* that allow you to modify the behaviour and effect of the command + +--- + +Let's try using a *pathname argument* with the `ls` command too! + +```bash +$ cd +$ ls Desktop +``` + +--- + +```bash +$ cd Desktop +``` + +Note #2: +* we were able to refer to the `Desktop` directory using only its directory name because it existed within our *working directory* at the time the command was *called* +* in this context, `Desktop` is a *relative pathname* +* to refer to paths outside our working directory, use the full path instead + + +If we wanted to change the working directory to a directory +outside of our working directory, we would need to specify an *absolute pathname*: + +```bash +$ cd /Users/rachellam/Documents +$ cd /c/Users/simeo/Downloads +``` + +--- +## Paths + +As we've seen, directory names separated by slashes are paths. +There are two types of paths, _absolute_ and _relative_. + +- An *absolute pathname* begins at the *root directory* and + includes each directory, separated by slashes until the + desired directory or file is reached. +- A *relative pathname* starts from the current *working directory* and + uses symbols `.` or `..` to represent relative positions in the + file tree. + +--- +Using `cd` and `pwd` let's take a look at how we can use +*absolute* and *relative pathnames*. + +```bash +$ cd /usr/bin +$ pwd +``` + +```bash +$ cd /usr +$ pwd +``` + +```bash +$ cd .. +$ pwd +``` + +--- +## Working with Files / Directories + +We're going to learn some basic commands to begin some +preliminary coding. We'll also be using these throughout the +module, so it's important to understand how they work now: + +- create directory `mkdir` +- create an empty file `touch` +- copy `cp` +- move and rename `mv` +- remove `rm` + +--- +## Commands + +--- +### mkdir + +First let's make a directory. It's important to remember what +directory you're working in currently, because that's where the +new directory will be made. Let's assume for now, we're working +on our Desktop. + +```bash +$ mkdir my_directory +``` + +We can also create multiple directories at the same time: + +```bash +$ mkdir dir1 dir2 dir3 +``` + +--- +### touch + +We can also make new empty files from the command line. +Using `touch`, we can make a new file in our +*working directory*. + +```bash +$ touch file1 +``` + +We can also create a specific file type by adding the extension: + +```bash +$ touch file1.txt +``` + +--- +### cp + +Now we're going to copy a file that we have in our *working directory*. It +can be any file but remember to include the extension or if it +has multiple characters, special characters and spaces, to wrap +it in quotes. + +```bash +$ cp file1 file2 +``` + +--- +We can also copy files or directories into a directory. + +```bash +$ cp file1 dir1/ +``` + +And all files from one directory into another using *wildcards*: + +```bash +$ cp dirl/* dir2 +``` + +--- +#### Wildcards +*Wildcards* enable us to use commands on more than one file at a time. +The `*` is a placeholder that represents zero or more characters when used in a *pathname*. + +For example: +* `./*` matches all files and folders in the current directory +* `./*.txt` matches all files and folders that have a txt extension in the current directory +* `/home/simeo/project1_*` matches all files and folders that begin with `project1_` in the `/home/simeo` directory + +--- +*Wildcards* are one of many reasons why bash so powerful! + +Many of the features in bash empower you to work with a large number of files easily. + + +--- +There are some useful *options* that accompany `cp`: +| Option | Description | +| ------ | ------------------------------------------------------------- | +| -i | Before overwriting an existing file, prompt the user for confirmation. | +| -R | Recursively copy directories and their contents. | +| -v | Display informative messages as the copy is performed. | + +--- +### mv + +The mv command enables us to move and rename files and +directories, depending on how it's used. In th example below, `mv` renames `file1` to `file2`. + +Rename a file: +```bash +$ mv file1 file2 +``` + +Here, `mv` moves `file1` from the *working directory* into `./dir1`: +```bash +$ mv file1 dir1 +``` + +--- +We can also move directories into other directories: + +```bash +$ mv dir1 dir2 +``` + +--- + +```bash +$ mv dir1 dir2 +``` + +In this case, if `dir2` exists, `dir1` will be moved into `dir2` (eg. from `./dir1` to `./dir2/dir1`). + +If `dir2` does not exist, `dir1` will be renamed to `dir2`. + +In both cases the entire directory will be affected (moved into another directory, or renamed), rather than the contents. + +--- +Let's say we're in the directory `Desktop` and we just moved +`file1` into `dir1` but now we want to put it back in `Desktop`. How would we move a file out of a directory into another one? Unfortunatly we can't just say + +```bash +$ mv file1 Desktop +``` + +because `file1` does not exist in `Desktop` any more and the command will try and rename `file1` to `Desktop`. + +--- +The answer involves using *absolute pathnames* and the tilde `~` notation: + +``` +$ mv dir1/file1 ~/Desktop +``` + +The `~` is shortform for your *home directory*. + +--- +If we just wanted to move `file1` into `dir2` (if `dir2` is in our *working directory*), we could type: + +```bash +$ mv dir1/file1 dir2 +``` + +--- +What if we want to move just the contents of dir1 to another +directory rather than the whole folder? + +HINT: it is very similar to copying (`cp`). + +--- +Move just the contents of dir1 to another +directory rather than the whole folder: + +```bash +$ mv dir1/* dir2 +``` + +This is a combination of the directory `dir1`, pathnames `/` and wildcards `*`. Here, `dir1/*` takes the all the contents of `dir1` and puts it in `dir2`. + +--- +We could also use the same technique to specify certain files to move rather than all of them. + +How would we move all txt files from `dir1` into `dir2`? + +--- +#### Questions? + +We're starting to combine our knowledge of files, directories and pathnames with some basic commands. How do we feel up to this point? + +--- +### rm + +To remove files we use the command `rm`. Because we're now +deleting files, it's important that you're sure of what you're deleting because there is no way to undo. Fortunately!! there +are ways to do this. + +```bash +$ rm file1 +``` + +Without specifying any *options*, `file1` will be deleted +without any feedback. + +--- +To ensure we want to delete something, we can use the option `-i` (interactive) that we learned earlier. + +```bash +$ rm -i file1 +``` + +This will prompt a question asking us if we want to delete `file1`. We can respond with `y` (yes) or `n` (no). + +--- +If we want to delete a directory, we need to use the option `-r` (recursive) as we did when copying (`cp`). This will recursively delete everything inside of the directory and the directory itself. + +```bash +$ rm -r dir1 +``` + +--- +If we're specifying multiple deletions and a directory does not exist, the shell will tell us. If we don't want that message, we can add the `-option`, `-f` (force). Force will override `-i` if it is included. + +1. How do you delete multiple directories? +2. What happens if you delete multiple directories with `-i`? +3. What happens if you delete multiple directories with `-i` but one does not exist? + +--- +Remember, it's extremely important to remember that you cannot undo `rm`. This means, if you start using wildcards to specify filenames and don't include `-i`, you could delete things by accident. For example, let's say you want to delete all `.txt` files in a directory: + +```bash +$ rm *.txt +``` + +If you accidently add a space between `*` and `.txt`,the `rm` command will delete all the files in the directory and then try to find a `.txt` file which does not exist because it delete everything. + + +--- +## Working with text files +--- +Output the contents of any text file using `cat` + +```bash +$ cat file1.txt +``` + +* Quick way to preview file contents +* Note, this might flood your terminal if the file is too big. + +--- +Write the output of a command to a text file using `>` or `>>` + +```bash +$ ls >> dirlist.txt +``` + +* `>` replaces the destination file (deletes existing content) +* `>>` appends to the destination file + +--- + +We can also write custom content + +```bash +$ echo "Hello, world!" > myfile.txt +``` + +--- +We can also edit text files in the command line using `nano` + +```bash +$ nano file1.txt +``` + +To exit `nano`, press Control + X. The shortcuts are also shown at the bottom of the terminal while in the `nano` editor, where `^` denotes the Control key. + +--- +For more complex edits, we can launch Visual Studio Code directly from the command line. + +```bash +$ code file1.txt +``` + +Note: MacOS users may need to setup the `code` command first. + +--- +## Bash scripts +--- +We can write down a list of commands in a *script*, useful for +* A set of commands we need to frequently *execute* together +* Sharing commands with others + +A bash *script* is a text file with commands on different lines. +* bash will *execute* each command in sequence + +--- +Lines that begin with a `#` are *comments* that are ignored by bash. +* Use *comments* to annotate your thought process + +```bash +# copy text files from temp directory +cp tempdir/*.txt data/ + +# delete the rest of the temporary files +rm tempdir/* +``` + +--- +Bash scripts usually have a special *comment* as the very first line that indicates which shell should be used to run the script. +* This is also known as the sh-bang (ha**sh** symbol + exclamation mark/**bang**) + +Typically, the shell used is bash: +```bash +#!/bin/bash + +# do stuff +cp file1 dir2/ +``` + +--- + +Execute a script by running: +```bash +$ bash myscript.sh +``` diff --git a/Assignments/Shell and Git/04_this_cohort/additional_resources/.keep b/Assignments/Shell and Git/04_this_cohort/additional_resources/.keep new file mode 100644 index 000000000..945c9b46d --- /dev/null +++ b/Assignments/Shell and Git/04_this_cohort/additional_resources/.keep @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/Assignments/Shell and Git/04_this_cohort/live_code/.keep b/Assignments/Shell and Git/04_this_cohort/live_code/.keep new file mode 100644 index 000000000..945c9b46d --- /dev/null +++ b/Assignments/Shell and Git/04_this_cohort/live_code/.keep @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/LICENSE b/Assignments/Shell and Git/LICENSE similarity index 97% rename from LICENSE rename to Assignments/Shell and Git/LICENSE index 9cf106272..f1b34f022 100644 --- a/LICENSE +++ b/Assignments/Shell and Git/LICENSE @@ -1,5 +1,7 @@ MIT License +Copyright (c) 2022 Rachael + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights diff --git a/Assignments/Shell and Git/README.md b/Assignments/Shell and Git/README.md new file mode 100644 index 000000000..27b54b4fb --- /dev/null +++ b/Assignments/Shell and Git/README.md @@ -0,0 +1,152 @@ +# Unix shell + +## Content + +* [Description](#description) +* [Learning Outcomes](#learning-outcomes) +* [Assignments](#assignments) +* [Contacts](#contacts) +* [Delivery of the Learning Module](#delivery-of-the-learning-module) +* [Schedule](#schedule) +* [Requirements](#requirements) +* [Resources](#resources) + + [Cheat sheet](#cheat-sheet) + + [Videos](#videos) + + [How to get help](#how-to-get-help) +* [Folder Structure](#folder-structure) + +## Description + +This module introduces the Unix shell language and covers file and directory navigation and manipulation. Participants gain proficiency in various commands, script creation, and writing basic functions using pipes, filters, and loops. + +Participants will acquire problem-solving skills through live coding sessions. Additionally, they will explore the concept of reproducibility and its integration into their work. + +## Learning Outcomes +By the end of the module, participants will be able to: +* Comfortably access and navigate the terminal +* Create, modify and delete directories and files + + +## Activities +This module has two types of activities. +1. Assignments are mandatory, and form part of your evaluation. +1. Homework is not assessed, but are provided to you for extra practice. We encourage you to check each other's homework solutions during Work Periods or ask a Learning Support! + +### Assignments +Participants should review the [Assignment Submission Guide](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md) for instructions on how to complete assignments in this module. + +Assignments are typically due on the Sunday following the module's live learning session. + +1. [Shell script assignment](./02_activities/assignments/assignment_instructions.md) + +### Homework +1. [Shell Homework](./02_activities/homework/homework.sh) + + +## Contacts + +**Questions can be submitted to the _#cohort-4-help_ channel on Slack** + +* Technical Facilitator: + * **Simeon Wong** + simeonm.wong@utoronto.ca + +* Learning Support Staff: + * **Anjali Shrivastava** + anju_shrivastava@yahoo.com + * **Moniz Chan** + chanmoniz526@gmail.com + * **Pedram Asli** + pedram.aliniayeasli@gmail.com +  +## Delivery of the Learning Module + +This module will include live learning sessions and optional, asynchronous work periods. During live learning sessions, the Technical Facilitator will introduce and explain key concepts and demonstrate core skills. Learning is facilitated during this time. Before and after each live learning session, the instructional team will be available for questions related to the core concepts of the module. Optional work periods are to be used to seek help from peers, the Learning Support team, and to work through the homework and assignments in the learning module, with access to live help. Content is not facilitated, but rather this time should be driven by participants. We encourage participants to come to these work periods with questions and problems to work through. +  +Participants are encouraged to engage actively during the learning module. They key to developing the core skills in each learning module is through practice. The more participants engage in coding along with the instructional team, and applying the skills in each module, the more likely it is that these skills will solidify. + +## Schedule + +||Day 1|Day 2|Day 3|Day 4|Day 5| +|---|---|---|---|---|---| +|Week 1|Live Learning Session 1 (Shell)|Live Learning Session 2 (Shell)|Live Learning Session 3 ([Git & GitHub](https://github.com/UofT-DSI/git))|Work Period 1|Work Period 2| +  +## Requirements + +* Participants are not expected to have any coding experience; the learning content has been designed for beginners. +* Participants are encouraged to ask questions, and collaborate with others to enhance their learning experience. +* Participants must have a computer and an internet connection to participate in online activities. +* Participants must not use generative AI such as ChatGPT to generate code in order to complete assignments. It should be used as a supportive tool to seek out answers to questions you may have. +* We expect participants to have completed the steps in the [onboarding repo](https://github.com/UofT-DSI/onboarding/). +* We encourage participants to default to having their camera on at all times, and turning the camera off only as needed. This will greatly enhance the learning experience for all participants and provides real-time feedback for the instructional team. + +## Resources + +Feel free to use the following as resources: + +### Cheat sheet +- [Devhints](https://devhints.io/bash) +- [Bash-Cheat-Sheet](https://github.com/RehanSaeed/Bash-Cheat-Sheet) + +### Videos +- [Change Directory](https://www.youtube.com/watch?v=6U4XV4w8qtE) +- [Deleting Files and Directories](https://www.youtube.com/watch?v=-L3XeZPwj_Y) +- [Bash in 100 seconds](https://www.youtube.com/watch?v=I4EWvMFj37g) + +### How to get help +#### 1. Gather information about your problem +- Copy and paste your error message +- Copy and paste the code that caused the error, and the last few commands leading up to the error +- Write down what you are trying to accomplish with your code. Include both the specific action, and the bigger picture and context +- (optional) Take a screenshot of your entire workspace + +#### 2. Try searching the web for your error message +- Sometimes, the error has common solutions that can be easy to find! + - This will be faster than waiting for an answer +- If none of the solutions apply, consider asking a Generative AI tool + - Paste your code, the error message, and a description of your overall goals + +#### 3. Try asking in your cohort's Slack help channel +- Since we're all working through the same material, there's a good chance one of your peers has encountered the same error, or has already solved it +- Try searching in the DSI Certificates Slack help channel for whether a similar query has been posted +- If the question has not yet been answered, post your question! + - Describe your the overall goals, the context, and the specific details of what you were trying to accomplish + - Make sure to **copy and paste** your code, your error message + - Copying and pasting helps: + 1. your peers and teaching team quickly try out your code + 1. others to find your question in the future + +#### Great resources on how to ask good technical questions that get useful answers +- [Asking for Help - The Odin Project](https://www.theodinproject.com/lessons/foundations-asking-for-help) +- [How do I ask a good question? - Stack Overflow](https://stackoverflow.com/help/how-to-ask) +- [The XY problem: A question pitfall that won't get useful answers](https://xyproblem.info/) +- [How to create a minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) + +#### Getting help: A summary + + +
+ +## Folder Structure +Below is an outline of the folder structure for this module: +``` +. +├── .github +├── 01_materials +├── 02_activities +├── 03_instructional_team +├── 04_this_cohort +├── .gitignore +├── LICENSE +├── README.md +└── steps_to_ask_for_help.png +``` +* **.github**: Contains issue templates and pull request templates for the repository. +* **materials**: Module slides and interactive notebooks (.ipynb files) used during learning sessions. +* **activities**: Contains graded assignments, exercises, and homework to practice concepts covered in the learning module. +* **instructional_team**: Resources for the instructional team. +* **this_cohort**: Additional materials for this cohort. +* **.gitignore**: Files to exclude from this folder, specified by the Technical Facilitator +* **LICENSE**: The license for this repository. +* **README**: This file. +* **steps_to_ask_for_help.png**: Guide on how to ask for help. diff --git a/Assignments/Shell and Git/helloworld b/Assignments/Shell and Git/helloworld new file mode 100644 index 000000000..e69de29bb diff --git a/steps_to_ask_for_help.png b/Assignments/Shell and Git/steps_to_ask_for_help.png similarity index 100% rename from steps_to_ask_for_help.png rename to Assignments/Shell and Git/steps_to_ask_for_help.png diff --git a/Assignments/python b/Assignments/python new file mode 160000 index 000000000..53cd90d40 --- /dev/null +++ b/Assignments/python @@ -0,0 +1 @@ +Subproject commit 53cd90d407bc1eb34c5dd21113609dcee6f677cb diff --git a/README.md b/README.md deleted file mode 100644 index d3b813fe4..000000000 --- a/README.md +++ /dev/null @@ -1,135 +0,0 @@ -# Python -  -## Content - -* [Description](#description) -* [Learning Outcomes](#learning-outcomes) -* [Assignments](#assignments) -* [Contacts](#contacts) -* [Delivery of the Learning Module](#delivery-of-the-learning-module) -* [Schedule](#schedule) -* [Requirements](#requirements) -* [Resources](#resources) - + [Documents](#documents) - + [Videos](#videos) -* [Folder Structure](#folder-structure) - -## Description - -This module introduces participants to the fundamentals of programming using Python. Participants will be introduced to the concepts of functions and object-oriented programming to make use of reusable blocks of code and models, respectively. We also introduce `numPy`, an important library in data science and machine learning. By the end of this module, participants will be able to write reusable code to analyze data. - -## Learning Outcomes - -By the end of the module, participants will be able to: - -1. Identify the differences between data types -2. Identify and resolve errors -3. Write a block of code as a reusable function -4. Write blocks of code in Python using variables and conditionals -5. Use a loop to go over elements of an array -6. Describe the benefits of Object Oriented programming -7. Use the `numPy` library to perform mathematical operations on arrays and datasets - -## Assignments - -Participants should review the [Assignment Submission Guide](https://github.com/UofT-DSI/onboarding/blob/main/onboarding_documents/submissions.md) for instructions on how to complete assignments in this module. - -There are two assignments (one per week) in this module: - -1. [Anagram Checker](https://github.com/UofT-DSI/python/blob/main/02_activities/assignments/assignment_1.ipynb): Due **Sunday December 2 at 11:59 PM** -2. [Efficacy Analysis of a Hypothetical Arthritis Drug](https://github.com/UofT-DSI/python/blob/main/02_activities/assignments/assignment_2.ipynb): Due **Sunday December 8 at 11:59 PM** - -## Contacts - -**Questions can be submitted to the _#cohort-5-help_ channel on Slack** - -* Technical Facilitator: - * **Kaylie Lau** (She/Her): kaylie.lau@mail.utoronto.ca -* Learning Support Staff: - * **Anjali Shrivastava** (She/Her): anju_shrivastava@yahoo.com - * **Moniz Chan**: chanmoniz526@gmail.com - * **Pedram Aliniaye Asli** (He/Him): pedram.aliniayeasli@gmail.com - -## Delivery of the Learning Module - -This module will include live learning sessions and optional, asynchronous work periods. During live learning sessions, the Technical Facilitator will introduce and explain key concepts and demonstrate core skills. Learning is facilitated during this time. Before and after each live learning session, the instructional team will be available for questions related to the core concepts of the module. The Technical Facilitator will introduce concepts through a collaborative live coding session using the Python notebooks found under `/01_materials/slides`. The Technical Facilitator will also upload live coding files to this repository for participants to revisit under `./04_this_cohort/live_code`. - - -Optional work periods are to be used to seek help from peers, the Learning Support team, and to work through the homework and assignments in the learning module, with access to live help. Content is not facilitated, but rather this time should be driven by participants. We encourage participants to come to these work periods with questions and problems to work through. -  - -Participants are encouraged to engage actively during the learning module. They key to developing the core skills in each learning module is through practice. The more participants engage in coding along with the instructional team, and applying the skills in each module, the more likely it is that these skills will solidify. - -## Schedule - -||Day 1|Day 2|Day 3|Day 4|Day 5| -|---|---|---|---|---|---| -|Week 1|Live Learning Session 1 (Introduction, Data Types, Error)|Live Learning Session 2 (Functions, Strings, Converting Types, Input)|Live Learning Session 3 (Control Flow) |Work Period 1|Work Period 2| -|Week 2|Live Learning Session 4 (Reading/Writing, Object Oriented Programming)|Live Learning Session 5 (`numPy`)|Case Study|Work Period 3|Work Period 4| - -While Testing, `pandas`, Visualization, and APIs are not covered in this course, you are encouraged to explore the slides at your own pace to deepen your understanding. -  -## Requirements - -* Participants are not expected to have any coding experience; the learning content has been designed for beginners. -* Participants are encouraged to ask questions, and collaborate with others to enhance their learning experience. -* Participants must have a computer and an internet connection to participate in online activities. -* Participants must not use generative AI such as ChatGPT to generate code in order to complete assignments. It should be used as a supportive tool to seek out answers to questions you may have. -* We expect participants to have completed the instructions mentioned in the [onboarding repo](https://github.com/UofT-DSI/onboarding/). -* We encourage participants to default to having their camera on at all times, and turning the camera off only as needed. This will greatly enhance the learning experience for all participants and provides real-time feedback for the instructional team. - -## Resources - -Feel free to use the following as resources: - -### Documents - -- [Cheatsheet](https://www.datacamp.com/cheat-sheet/getting-started-with-python-cheat-sheet) - - [Direct to image](https://images.datacamp.com/image/upload/v1673614099/Python_Cheat_Sheet_for_Beginners_f939d6b1bb.png) -- [Interactive Cheatsheet](https://www.pythoncheatsheet.org/) -- [W3Schools](https://www.w3schools.com/python/) -- [Official Python Docs](https://docs.python.org/3.12/) - -### Videos - -- [Dictionaries](https://www.youtube.com/watch?v=u0yr9B3nH8c) -- [Loops](https://www.youtube.com/watch?v=dHANJ4l6fwA) -- [Function](https://www.youtube.com/watch?v=NSbOtYzIQI0) -- [Return vs print](https://www.youtube.com/watch?v=LWdsF79H1Pg) -- [OOP Part 1](https://www.youtube.com/watch?v=wfcWRAxRVBA) -- [OOP Part 2](https://www.youtube.com/watch?v=WOwi0h_-dfA) -- [NumPy Playlist](https://www.youtube.com/playlist?list=PLGZqdNxqKzfYVbCaAKTPHVjz-VjQtBzbl) - -### How to get help - -![image](./steps_to_ask_for_help.png) - -
- -## Folder Structure - -```markdown -. -├── .github -├── 01_materials/slides -├── 02_activities -├── 03_instructional_team -├── 04_this_cohort -├── 05_src/data -├── .gitignore -├── LICENSE -├── README.md -└── steps_to_ask_for_help.png -``` - -* **.github**: Contains issue templates and pull request templates for the repository. -* **materials/slides**: Module slides and interactive notebooks (.ipynb files) used during learning sessions. -* **activities**: Contains graded assignments, exercises, and homework to practice concepts covered in the learning module. -* **instructional_team**: Resources for the instructional team. -* **this_cohort**: Additional materials and resources for this cohort, including live coding files. -* **src/data**: Source code, databases, logs, and required dependencies (requirements.txt) needed during the module. -* **.gitignore**: Files to exclude from this folder, specified by the Technical Facilitator -* **LICENSE**: The license for this repository. -* **README**: This file. -* **steps_to_ask_for_help.png**: Guide on how to ask for help. -